blob: 6647db567145461789353fe893a6307bc6f86dfc [file] [log] [blame]
Neil Booth93c803682000-10-28 17:59:06 +00001/* Part of CPP library. (Macro and #define handling.)
Zack Weinberg711b8822000-07-18 00:59:49 +00002 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
Tom Tromeyee380362007-01-30 15:46:01 +00003 1999, 2000, 2001, 2002, 2003, 2004, 2005,
Joseph Myers148e4212009-03-29 23:56:07 +01004 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
Zack Weinberg711b8822000-07-18 00:59:49 +00005 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
9This program is free software; you can redistribute it and/or modify it
10under the terms of the GNU General Public License as published by the
Jakub Jelinek748086b2009-04-09 17:00:19 +020011Free Software Foundation; either version 3, or (at your option) any
Zack Weinberg711b8822000-07-18 00:59:49 +000012later version.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
Jakub Jelinek748086b2009-04-09 17:00:19 +020020along with this program; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>.
Zack Weinberg711b8822000-07-18 00:59:49 +000022
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 Bonzini4f4e53dd2004-05-24 10:50:45 +000030#include "internal.h"
Zack Weinberg711b8822000-07-18 00:59:49 +000031
Neil Booth93c803682000-10-28 17:59:06 +000032typedef struct macro_arg macro_arg;
33struct macro_arg
34{
Neil Booth4ed5bcf2001-09-24 22:53:12 +000035 const cpp_token **first; /* First token in unexpanded argument. */
Kazu Hirata6d2f8882001-10-10 11:33:39 +000036 const cpp_token **expanded; /* Macro-expanded argument. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +000037 const cpp_token *stringified; /* Stringified argument. */
Neil Booth93c803682000-10-28 17:59:06 +000038 unsigned int count; /* # of tokens in argument. */
39 unsigned int expanded_count; /* # of tokens in expanded argument. */
40};
Zack Weinberg711b8822000-07-18 00:59:49 +000041
Neil Booth93c803682000-10-28 17:59:06 +000042/* Macro expansion. */
43
Jakub Jelinek765d6002008-01-25 10:01:27 +010044static int enter_macro_context (cpp_reader *, cpp_hashnode *,
45 const cpp_token *);
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000046static int builtin_macro (cpp_reader *, cpp_hashnode *);
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000047static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
48 const cpp_token **, unsigned int);
Jakub Jelinek765d6002008-01-25 10:01:27 +010049static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
50 _cpp_buff **);
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000051static cpp_context *next_context (cpp_reader *);
52static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
53static void expand_arg (cpp_reader *, macro_arg *);
54static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
55static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
56static void paste_all_tokens (cpp_reader *, const cpp_token *);
57static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *);
58static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
59 macro_arg *);
Jakub Jelinek765d6002008-01-25 10:01:27 +010060static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
61 _cpp_buff **);
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000062static bool create_iso_definition (cpp_reader *, cpp_macro *);
Neil Booth93c803682000-10-28 17:59:06 +000063
Neil Booth93c803682000-10-28 17:59:06 +000064/* #define directive parsing and handling. */
65
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000066static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
67static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
68static bool warn_of_redefinition (cpp_reader *, const cpp_hashnode *,
69 const cpp_macro *);
70static bool parse_params (cpp_reader *, cpp_macro *);
71static void check_trad_stringification (cpp_reader *, const cpp_macro *,
72 const cpp_string *);
Zack Weinberg711b8822000-07-18 00:59:49 +000073
Neil Bootha69cbaa2002-07-23 22:57:49 +000074/* Emits a warning if NODE is a macro defined in the main file that
75 has not been used. */
76int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000077_cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
78 void *v ATTRIBUTE_UNUSED)
Neil Bootha69cbaa2002-07-23 22:57:49 +000079{
80 if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
81 {
82 cpp_macro *macro = node->value.macro;
83
84 if (!macro->used
Per Bothner50f59cd2004-01-19 21:30:18 -080085 && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line)))
John David Anglin0527bc42003-11-01 22:56:54 +000086 cpp_error_with_line (pfile, CPP_DL_WARNING, macro->line, 0,
Neil Bootha69cbaa2002-07-23 22:57:49 +000087 "macro \"%s\" is not used", NODE_NAME (node));
88 }
89
90 return 1;
91}
92
Neil Booth4ed5bcf2001-09-24 22:53:12 +000093/* Allocates and returns a CPP_STRING token, containing TEXT of length
94 LEN, after null-terminating it. TEXT must be in permanent storage. */
95static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000096new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
Zack Weinberg711b8822000-07-18 00:59:49 +000097{
Neil Booth4ed5bcf2001-09-24 22:53:12 +000098 cpp_token *token = _cpp_temp_token (pfile);
Zack Weinberg711b8822000-07-18 00:59:49 +000099
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000100 text[len] = '\0';
Neil Booth93c803682000-10-28 17:59:06 +0000101 token->type = CPP_STRING;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000102 token->val.str.len = len;
103 token->val.str.text = text;
Neil Booth93c803682000-10-28 17:59:06 +0000104 token->flags = 0;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000105 return token;
Neil Booth93c803682000-10-28 17:59:06 +0000106}
107
Neil Booth93c803682000-10-28 17:59:06 +0000108static const char * const monthnames[] =
109{
110 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
111 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
112};
113
Zack Weinberg21b11492004-09-09 19:16:56 +0000114/* Helper function for builtin_macro. Returns the text generated by
115 a builtin macro. */
Neil Booth278c4662002-06-19 05:40:08 +0000116const uchar *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000117_cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +0000118{
Per Bothner12f9df42004-02-11 07:29:30 -0800119 const struct line_map *map;
Neil Booth278c4662002-06-19 05:40:08 +0000120 const uchar *result = NULL;
Manuel López-Ibáñez1bb64662008-07-21 09:33:38 +0000121 linenum_type number = 1;
Neil Booth644edda2001-10-02 12:57:24 +0000122
Neil Booth93c803682000-10-28 17:59:06 +0000123 switch (node->value.builtin)
124 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000125 default:
John David Anglin0527bc42003-11-01 22:56:54 +0000126 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
Neil Boothebef4e82002-04-14 18:42:47 +0000127 NODE_NAME (node));
Neil Booth278c4662002-06-19 05:40:08 +0000128 break;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000129
Grigory Zagorodnevbe8ac3e2006-02-18 09:25:31 +0000130 case BT_TIMESTAMP:
131 {
132 cpp_buffer *pbuffer = cpp_get_buffer (pfile);
133 if (pbuffer->timestamp == NULL)
134 {
135 /* Initialize timestamp value of the assotiated file. */
136 struct _cpp_file *file = cpp_get_file (pbuffer);
137 if (file)
138 {
139 /* Generate __TIMESTAMP__ string, that represents
140 the date and time of the last modification
141 of the current source file. The string constant
142 looks like "Sun Sep 16 01:03:52 1973". */
143 struct tm *tb = NULL;
144 struct stat *st = _cpp_get_file_stat (file);
145 if (st)
146 tb = localtime (&st->st_mtime);
147 if (tb)
148 {
149 char *str = asctime (tb);
150 size_t len = strlen (str);
151 unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
152 buf[0] = '"';
153 strcpy ((char *) buf + 1, str);
154 buf[len] = '"';
155 pbuffer->timestamp = buf;
156 }
157 else
158 {
159 cpp_errno (pfile, CPP_DL_WARNING,
160 "could not determine file timestamp");
Kris Van Heesb6baa672008-04-18 13:58:08 +0000161 pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
Grigory Zagorodnevbe8ac3e2006-02-18 09:25:31 +0000162 }
163 }
164 }
165 result = pbuffer->timestamp;
166 }
167 break;
Neil Booth93c803682000-10-28 17:59:06 +0000168 case BT_FILE:
169 case BT_BASE_FILE:
Zack Weinberg711b8822000-07-18 00:59:49 +0000170 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000171 unsigned int len;
Neil Booth0bda4762000-12-11 07:45:16 +0000172 const char *name;
Neil Booth562a5c22002-04-21 18:46:42 +0000173 uchar *buf;
Per Bothner500bee02004-04-22 19:22:27 -0700174 map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line);
Neil Booth93c803682000-10-28 17:59:06 +0000175
Neil Booth0bda4762000-12-11 07:45:16 +0000176 if (node->value.builtin == BT_BASE_FILE)
Neil Boothbb74c962001-08-17 22:23:49 +0000177 while (! MAIN_FILE_P (map))
Per Bothner50f59cd2004-01-19 21:30:18 -0800178 map = INCLUDED_FROM (pfile->line_table, map);
Neil Booth93c803682000-10-28 17:59:06 +0000179
Neil Boothbb74c962001-08-17 22:23:49 +0000180 name = map->to_file;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000181 len = strlen (name);
Andrew Pinski651ed942005-11-04 00:23:01 +0000182 buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
Neil Booth278c4662002-06-19 05:40:08 +0000183 result = buf;
184 *buf = '"';
185 buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
186 *buf++ = '"';
187 *buf = '\0';
Zack Weinberg711b8822000-07-18 00:59:49 +0000188 }
Neil Booth644edda2001-10-02 12:57:24 +0000189 break;
190
Neil Booth93c803682000-10-28 17:59:06 +0000191 case BT_INCLUDE_LEVEL:
Neil Boothd8693c62001-08-21 23:05:12 +0000192 /* The line map depth counts the primary source as level 1, but
193 historically __INCLUDE_DEPTH__ has called the primary source
194 level 0. */
Per Bothner50f59cd2004-01-19 21:30:18 -0800195 number = pfile->line_table->depth - 1;
Neil Booth644edda2001-10-02 12:57:24 +0000196 break;
Neil Booth93c803682000-10-28 17:59:06 +0000197
198 case BT_SPECLINE:
Per Bothner500bee02004-04-22 19:22:27 -0700199 map = &pfile->line_table->maps[pfile->line_table->used-1];
Neil Booth93c803682000-10-28 17:59:06 +0000200 /* If __LINE__ is embedded in a macro, it must expand to the
201 line of the macro's invocation, not its definition.
202 Otherwise things like assert() will not work properly. */
Manuel López-Ibáñez1bb64662008-07-21 09:33:38 +0000203 number = SOURCE_LINE (map,
204 CPP_OPTION (pfile, traditional)
205 ? pfile->line_table->highest_line
206 : pfile->cur_token[-1].src_loc);
Neil Booth644edda2001-10-02 12:57:24 +0000207 break;
Neil Booth93c803682000-10-28 17:59:06 +0000208
Zack Weinberg5279d732002-05-16 19:03:02 +0000209 /* __STDC__ has the value 1 under normal circumstances.
210 However, if (a) we are in a system header, (b) the option
Zack Weinberg2a1dc0d2002-05-21 21:55:37 +0000211 stdc_0_in_system_headers is true (set by target config), and
212 (c) we are not in strictly conforming mode, then it has the
Jakub Jelinek83900992006-01-23 22:50:15 +0100213 value 0. (b) and (c) are already checked in cpp_init_builtins. */
Neil Booth93c803682000-10-28 17:59:06 +0000214 case BT_STDC:
Jakub Jelinek83900992006-01-23 22:50:15 +0100215 if (cpp_in_system_header (pfile))
216 number = 0;
217 else
218 number = 1;
Neil Booth644edda2001-10-02 12:57:24 +0000219 break;
Neil Booth93c803682000-10-28 17:59:06 +0000220
221 case BT_DATE:
222 case BT_TIME:
Neil Booth278c4662002-06-19 05:40:08 +0000223 if (pfile->date == NULL)
Neil Booth93c803682000-10-28 17:59:06 +0000224 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000225 /* Allocate __DATE__ and __TIME__ strings from permanent
226 storage. We only do this once, and don't generate them
227 at init time, because time() and localtime() are very
228 slow on some systems. */
Zack Weinberg56da7202002-08-02 04:18:16 +0000229 time_t tt;
230 struct tm *tb = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000231
Zack Weinberg56da7202002-08-02 04:18:16 +0000232 /* (time_t) -1 is a legitimate value for "number of seconds
233 since the Epoch", so we have to do a little dance to
234 distinguish that from a genuine error. */
235 errno = 0;
236 tt = time(NULL);
237 if (tt != (time_t)-1 || errno == 0)
238 tb = localtime (&tt);
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000239
Zack Weinberg56da7202002-08-02 04:18:16 +0000240 if (tb)
241 {
242 pfile->date = _cpp_unaligned_alloc (pfile,
243 sizeof ("\"Oct 11 1347\""));
244 sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000245 monthnames[tb->tm_mon], tb->tm_mday,
246 tb->tm_year + 1900);
Zack Weinberg56da7202002-08-02 04:18:16 +0000247
248 pfile->time = _cpp_unaligned_alloc (pfile,
249 sizeof ("\"12:34:56\""));
250 sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
251 tb->tm_hour, tb->tm_min, tb->tm_sec);
252 }
253 else
254 {
John David Anglin0527bc42003-11-01 22:56:54 +0000255 cpp_errno (pfile, CPP_DL_WARNING,
Zack Weinberg56da7202002-08-02 04:18:16 +0000256 "could not determine date and time");
257
Kris Van Heesb6baa672008-04-18 13:58:08 +0000258 pfile->date = UC"\"??? ?? ????\"";
259 pfile->time = UC"\"??:??:??\"";
Zack Weinberg56da7202002-08-02 04:18:16 +0000260 }
Neil Booth93c803682000-10-28 17:59:06 +0000261 }
Neil Booth93c803682000-10-28 17:59:06 +0000262
Neil Booth644edda2001-10-02 12:57:24 +0000263 if (node->value.builtin == BT_DATE)
Neil Booth278c4662002-06-19 05:40:08 +0000264 result = pfile->date;
Neil Booth644edda2001-10-02 12:57:24 +0000265 else
Neil Booth278c4662002-06-19 05:40:08 +0000266 result = pfile->time;
Neil Booth644edda2001-10-02 12:57:24 +0000267 break;
Ollie Wilda7020452007-05-24 20:55:36 +0000268
269 case BT_COUNTER:
Ollie Wildccfc4c92007-07-30 18:29:20 +0000270 if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
271 cpp_error (pfile, CPP_DL_ERROR,
272 "__COUNTER__ expanded inside directive with -fdirectives-only");
Ollie Wilda7020452007-05-24 20:55:36 +0000273 number = pfile->counter++;
274 break;
Neil Booth278c4662002-06-19 05:40:08 +0000275 }
Neil Booth644edda2001-10-02 12:57:24 +0000276
Neil Booth278c4662002-06-19 05:40:08 +0000277 if (result == NULL)
278 {
279 /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */
280 result = _cpp_unaligned_alloc (pfile, 21);
281 sprintf ((char *) result, "%u", number);
282 }
283
284 return result;
285}
286
287/* Convert builtin macros like __FILE__ to a token and push it on the
Zack Weinberg21b11492004-09-09 19:16:56 +0000288 context stack. Also handles _Pragma, for which a new token may not
289 be created. Returns 1 if it generates a new token context, 0 to
Neil Booth278c4662002-06-19 05:40:08 +0000290 return the token to the caller. */
291static int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000292builtin_macro (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth278c4662002-06-19 05:40:08 +0000293{
294 const uchar *buf;
Neil Booth26aea072003-04-19 00:22:51 +0000295 size_t len;
296 char *nbuf;
Neil Booth278c4662002-06-19 05:40:08 +0000297
298 if (node->value.builtin == BT_PRAGMA)
299 {
Neil Booth644edda2001-10-02 12:57:24 +0000300 /* Don't interpret _Pragma within directives. The standard is
301 not clear on this, but to me this makes most sense. */
302 if (pfile->state.in_directive)
303 return 0;
304
Tom Tromey5b9a40d2007-10-31 14:50:13 +0000305 return _cpp_do__Pragma (pfile);
Neil Booth93c803682000-10-28 17:59:06 +0000306 }
Neil Booth644edda2001-10-02 12:57:24 +0000307
Neil Booth278c4662002-06-19 05:40:08 +0000308 buf = _cpp_builtin_macro_text (pfile, node);
Neil Booth26aea072003-04-19 00:22:51 +0000309 len = ustrlen (buf);
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +0000310 nbuf = (char *) alloca (len + 1);
Neil Booth26aea072003-04-19 00:22:51 +0000311 memcpy (nbuf, buf, len);
312 nbuf[len]='\n';
Neil Booth278c4662002-06-19 05:40:08 +0000313
Per Bothner40de9f72003-10-02 07:30:34 +0000314 cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
Neil Booth26aea072003-04-19 00:22:51 +0000315 _cpp_clean_line (pfile);
Neil Booth278c4662002-06-19 05:40:08 +0000316
317 /* Set pfile->cur_token as required by _cpp_lex_direct. */
318 pfile->cur_token = _cpp_temp_token (pfile);
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800319 _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1);
Neil Booth278c4662002-06-19 05:40:08 +0000320 if (pfile->buffer->cur != pfile->buffer->rlimit)
John David Anglin0527bc42003-11-01 22:56:54 +0000321 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
Neil Booth278c4662002-06-19 05:40:08 +0000322 NODE_NAME (node));
323 _cpp_pop_buffer (pfile);
324
Neil Booth644edda2001-10-02 12:57:24 +0000325 return 1;
Neil Booth93c803682000-10-28 17:59:06 +0000326}
327
Neil Boothd15a58c2002-01-03 18:32:55 +0000328/* Copies SRC, of length LEN, to DEST, adding backslashes before all
Andrew Pinski651ed942005-11-04 00:23:01 +0000329 backslashes and double quotes. DEST must be of sufficient size.
330 Returns a pointer to the end of the string. */
Neil Booth562a5c22002-04-21 18:46:42 +0000331uchar *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000332cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
Neil Booth93c803682000-10-28 17:59:06 +0000333{
334 while (len--)
335 {
Neil Booth562a5c22002-04-21 18:46:42 +0000336 uchar c = *src++;
Neil Booth93c803682000-10-28 17:59:06 +0000337
338 if (c == '\\' || c == '"')
339 {
340 *dest++ = '\\';
341 *dest++ = c;
342 }
343 else
Andrew Pinski651ed942005-11-04 00:23:01 +0000344 *dest++ = c;
Neil Booth93c803682000-10-28 17:59:06 +0000345 }
346
347 return dest;
348}
349
Neil Boothd15a58c2002-01-03 18:32:55 +0000350/* Convert a token sequence ARG to a single string token according to
351 the rules of the ISO C #-operator. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000352static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000353stringify_arg (cpp_reader *pfile, macro_arg *arg)
Neil Booth93c803682000-10-28 17:59:06 +0000354{
Neil Booth6338b352003-04-23 22:44:06 +0000355 unsigned char *dest;
Neil Boothece54d52001-09-28 09:40:22 +0000356 unsigned int i, escape_it, backslash_count = 0;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000357 const cpp_token *source = NULL;
Neil Boothece54d52001-09-28 09:40:22 +0000358 size_t len;
Neil Booth93c803682000-10-28 17:59:06 +0000359
Neil Booth6338b352003-04-23 22:44:06 +0000360 if (BUFF_ROOM (pfile->u_buff) < 3)
361 _cpp_extend_buff (pfile, &pfile->u_buff, 3);
362 dest = BUFF_FRONT (pfile->u_buff);
363 *dest++ = '"';
364
Neil Booth93c803682000-10-28 17:59:06 +0000365 /* Loop, reading in the argument's tokens. */
366 for (i = 0; i < arg->count; i++)
367 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000368 const cpp_token *token = arg->first[i];
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000369
370 if (token->type == CPP_PADDING)
371 {
Joseph Myers18f41a12009-04-12 23:20:02 +0100372 if (source == NULL
373 || (!(source->flags & PREV_WHITE)
374 && token->val.source == NULL))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000375 source = token->val.source;
376 continue;
377 }
Neil Booth93c803682000-10-28 17:59:06 +0000378
Kris Van Heesb6baa672008-04-18 13:58:08 +0000379 escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
Ian Lance Taylorfd2ab212009-09-02 17:35:30 +0000380 || token->type == CPP_WSTRING || token->type == CPP_WCHAR
Kris Van Heesb6baa672008-04-18 13:58:08 +0000381 || token->type == CPP_STRING32 || token->type == CPP_CHAR32
Jakub Jelinek2c6e3f52009-10-19 23:41:15 +0200382 || token->type == CPP_STRING16 || token->type == CPP_CHAR16
383 || token->type == CPP_UTF8STRING);
Neil Booth93c803682000-10-28 17:59:06 +0000384
Neil Boothece54d52001-09-28 09:40:22 +0000385 /* Room for each char being written in octal, initial space and
Neil Booth6338b352003-04-23 22:44:06 +0000386 final quote and NUL. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000387 len = cpp_token_len (token);
Neil Booth93c803682000-10-28 17:59:06 +0000388 if (escape_it)
Neil Booth93c803682000-10-28 17:59:06 +0000389 len *= 4;
Neil Booth6338b352003-04-23 22:44:06 +0000390 len += 3;
Neil Booth93c803682000-10-28 17:59:06 +0000391
Neil Boothece54d52001-09-28 09:40:22 +0000392 if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
Neil Booth93c803682000-10-28 17:59:06 +0000393 {
Neil Boothece54d52001-09-28 09:40:22 +0000394 size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
Neil Booth8c3b2692001-09-30 10:03:11 +0000395 _cpp_extend_buff (pfile, &pfile->u_buff, len);
Neil Boothece54d52001-09-28 09:40:22 +0000396 dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
Neil Booth93c803682000-10-28 17:59:06 +0000397 }
398
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000399 /* Leading white space? */
Neil Booth6338b352003-04-23 22:44:06 +0000400 if (dest - 1 != BUFF_FRONT (pfile->u_buff))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000401 {
402 if (source == NULL)
403 source = token;
404 if (source->flags & PREV_WHITE)
405 *dest++ = ' ';
406 }
407 source = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000408
409 if (escape_it)
410 {
Neil Boothece54d52001-09-28 09:40:22 +0000411 _cpp_buff *buff = _cpp_get_buff (pfile, len);
412 unsigned char *buf = BUFF_FRONT (buff);
Geoffrey Keating47e20492005-03-12 10:44:06 +0000413 len = cpp_spell_token (pfile, token, buf, true) - buf;
Zack Weinbergdcc229e2002-03-14 18:17:18 +0000414 dest = cpp_quote_string (dest, buf, len);
Neil Boothece54d52001-09-28 09:40:22 +0000415 _cpp_release_buff (pfile, buff);
Neil Booth93c803682000-10-28 17:59:06 +0000416 }
417 else
Geoffrey Keating47e20492005-03-12 10:44:06 +0000418 dest = cpp_spell_token (pfile, token, dest, true);
Neil Booth93c803682000-10-28 17:59:06 +0000419
Neil Booth10676942003-04-22 19:28:00 +0000420 if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
Neil Booth93c803682000-10-28 17:59:06 +0000421 backslash_count++;
422 else
423 backslash_count = 0;
424 }
425
426 /* Ignore the final \ of invalid string literals. */
427 if (backslash_count & 1)
428 {
John David Anglin0527bc42003-11-01 22:56:54 +0000429 cpp_error (pfile, CPP_DL_WARNING,
Neil Boothebef4e82002-04-14 18:42:47 +0000430 "invalid string literal, ignoring final '\\'");
Neil Boothece54d52001-09-28 09:40:22 +0000431 dest--;
Neil Booth93c803682000-10-28 17:59:06 +0000432 }
433
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000434 /* Commit the memory, including NUL, and return the token. */
Neil Booth6338b352003-04-23 22:44:06 +0000435 *dest++ = '"';
Neil Boothece54d52001-09-28 09:40:22 +0000436 len = dest - BUFF_FRONT (pfile->u_buff);
437 BUFF_FRONT (pfile->u_buff) = dest + 1;
438 return new_string_token (pfile, dest - len, len);
Neil Booth93c803682000-10-28 17:59:06 +0000439}
440
Kazu Hiratada7d8302002-09-22 02:03:17 +0000441/* Try to paste two tokens. On success, return nonzero. In any
Neil Boothc9e7a602001-09-27 12:59:38 +0000442 case, PLHS is updated to point to the pasted token, which is
443 guaranteed to not have the PASTE_LEFT flag set. */
444static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000445paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs)
Neil Boothd63eefb2000-11-20 23:59:26 +0000446{
Jakub Jelinekde000d22006-10-12 11:25:59 +0200447 unsigned char *buf, *end, *lhsend;
Tom Tromeyfca35e12007-05-02 19:33:44 +0000448 cpp_token *lhs;
Neil Boothc9e7a602001-09-27 12:59:38 +0000449 unsigned int len;
Neil Boothd63eefb2000-11-20 23:59:26 +0000450
Tom Tromeyfca35e12007-05-02 19:33:44 +0000451 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +0000452 buf = (unsigned char *) alloca (len);
Tom Tromeyfca35e12007-05-02 19:33:44 +0000453 end = lhsend = cpp_spell_token (pfile, *plhs, buf, false);
Neil Boothd63eefb2000-11-20 23:59:26 +0000454
Neil Boothc9e7a602001-09-27 12:59:38 +0000455 /* Avoid comment headers, since they are still processed in stage 3.
456 It is simpler to insert a space here, rather than modifying the
457 lexer to ignore comments in some circumstances. Simply returning
458 false doesn't work, since we want to clear the PASTE_LEFT flag. */
Tom Tromeyfca35e12007-05-02 19:33:44 +0000459 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
Neil Boothc9e7a602001-09-27 12:59:38 +0000460 *end++ = ' ';
Tom Tromeyf373b442007-11-01 18:20:48 +0000461 /* In one obscure case we might see padding here. */
462 if (rhs->type != CPP_PADDING)
463 end = cpp_spell_token (pfile, rhs, end, false);
Neil Booth26aea072003-04-19 00:22:51 +0000464 *end = '\n';
Neil Boothd63eefb2000-11-20 23:59:26 +0000465
Per Bothner40de9f72003-10-02 07:30:34 +0000466 cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
Neil Booth26aea072003-04-19 00:22:51 +0000467 _cpp_clean_line (pfile);
Neil Boothd63eefb2000-11-20 23:59:26 +0000468
Neil Boothc9e7a602001-09-27 12:59:38 +0000469 /* Set pfile->cur_token as required by _cpp_lex_direct. */
470 pfile->cur_token = _cpp_temp_token (pfile);
Tom Tromeyfca35e12007-05-02 19:33:44 +0000471 lhs = _cpp_lex_direct (pfile);
Jakub Jelinekde000d22006-10-12 11:25:59 +0200472 if (pfile->buffer->cur != pfile->buffer->rlimit)
473 {
Tom Tromeyfca35e12007-05-02 19:33:44 +0000474 source_location saved_loc = lhs->src_loc;
475
Jakub Jelinekde000d22006-10-12 11:25:59 +0200476 _cpp_pop_buffer (pfile);
477 _cpp_backup_tokens (pfile, 1);
478 *lhsend = '\0';
Neil Boothd63eefb2000-11-20 23:59:26 +0000479
Tom Tromeyfca35e12007-05-02 19:33:44 +0000480 /* We have to remove the PASTE_LEFT flag from the old lhs, but
481 we want to keep the new location. */
482 *lhs = **plhs;
483 *plhs = lhs;
484 lhs->src_loc = saved_loc;
485 lhs->flags &= ~PASTE_LEFT;
486
Jakub Jelinekde000d22006-10-12 11:25:59 +0200487 /* Mandatory error for all apart from assembler. */
488 if (CPP_OPTION (pfile, lang) != CLK_ASM)
489 cpp_error (pfile, CPP_DL_ERROR,
490 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
491 buf, cpp_token_as_text (pfile, rhs));
492 return false;
493 }
494
Tom Tromeyfca35e12007-05-02 19:33:44 +0000495 *plhs = lhs;
Jakub Jelinekde000d22006-10-12 11:25:59 +0200496 _cpp_pop_buffer (pfile);
497 return true;
Neil Boothd63eefb2000-11-20 23:59:26 +0000498}
499
Neil Boothd15a58c2002-01-03 18:32:55 +0000500/* Handles an arbitrarily long sequence of ## operators, with initial
501 operand LHS. This implementation is left-associative,
502 non-recursive, and finishes a paste before handling succeeding
503 ones. If a paste fails, we back up to the RHS of the failing ##
504 operator before pushing the context containing the result of prior
505 successful pastes, with the effect that the RHS appears in the
506 output stream after the pasted LHS normally. */
Neil Booth93c803682000-10-28 17:59:06 +0000507static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000508paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
Neil Booth93c803682000-10-28 17:59:06 +0000509{
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000510 const cpp_token *rhs;
511 cpp_context *context = pfile->context;
512
Neil Booth93c803682000-10-28 17:59:06 +0000513 do
514 {
515 /* Take the token directly from the current context. We can do
516 this, because we are in the replacement list of either an
517 object-like macro, or a function-like macro with arguments
518 inserted. In either case, the constraints to #define
Neil Boothd63eefb2000-11-20 23:59:26 +0000519 guarantee we have at least one more token. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000520 if (context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +0000521 rhs = FIRST (context).token++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000522 else
Neil Booth82eda772002-06-04 13:07:06 +0000523 rhs = *FIRST (context).ptoken++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000524
525 if (rhs->type == CPP_PADDING)
Tom Tromeyf373b442007-11-01 18:20:48 +0000526 {
527 if (rhs->flags & PASTE_LEFT)
528 abort ();
529 }
Neil Boothc9e7a602001-09-27 12:59:38 +0000530 if (!paste_tokens (pfile, &lhs, rhs))
Jakub Jelinekde000d22006-10-12 11:25:59 +0200531 break;
Neil Booth93c803682000-10-28 17:59:06 +0000532 }
533 while (rhs->flags & PASTE_LEFT);
534
Neil Boothc9e7a602001-09-27 12:59:38 +0000535 /* Put the resulting token in its own context. */
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800536 _cpp_push_token_context (pfile, NULL, lhs, 1);
Neil Booth93c803682000-10-28 17:59:06 +0000537}
538
Neil Booth1ce676a2002-06-09 20:04:17 +0000539/* Returns TRUE if the number of arguments ARGC supplied in an
540 invocation of the MACRO referenced by NODE is valid. An empty
541 invocation to a macro with no parameters should pass ARGC as zero.
542
543 Note that MACRO cannot necessarily be deduced from NODE, in case
544 NODE was redefined whilst collecting arguments. */
545bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000546_cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
Neil Booth1ce676a2002-06-09 20:04:17 +0000547{
548 if (argc == macro->paramc)
549 return true;
550
551 if (argc < macro->paramc)
552 {
553 /* As an extension, a rest argument is allowed to not appear in
554 the invocation at all.
555 e.g. #define debug(format, args...) something
556 debug("string");
557
558 This is exactly the same as if there had been an empty rest
559 argument - debug("string", ). */
560
561 if (argc + 1 == macro->paramc && macro->variadic)
562 {
563 if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
John David Anglin0527bc42003-11-01 22:56:54 +0000564 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Booth1ce676a2002-06-09 20:04:17 +0000565 "ISO C99 requires rest arguments to be used");
566 return true;
567 }
568
John David Anglin0527bc42003-11-01 22:56:54 +0000569 cpp_error (pfile, CPP_DL_ERROR,
Neil Booth1ce676a2002-06-09 20:04:17 +0000570 "macro \"%s\" requires %u arguments, but only %u given",
571 NODE_NAME (node), macro->paramc, argc);
572 }
573 else
John David Anglin0527bc42003-11-01 22:56:54 +0000574 cpp_error (pfile, CPP_DL_ERROR,
Neil Booth1ce676a2002-06-09 20:04:17 +0000575 "macro \"%s\" passed %u arguments, but takes just %u",
576 NODE_NAME (node), argc, macro->paramc);
577
578 return false;
579}
580
Neil Boothd15a58c2002-01-03 18:32:55 +0000581/* Reads and returns the arguments to a function-like macro
582 invocation. Assumes the opening parenthesis has been processed.
583 If there is an error, emits an appropriate diagnostic and returns
584 NULL. Each argument is terminated by a CPP_EOF token, for the
Jakub Jelinek765d6002008-01-25 10:01:27 +0100585 future benefit of expand_arg(). If there are any deferred
586 #pragma directives among macro arguments, store pointers to the
587 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer. */
Neil Boothb8af0ca2001-09-26 17:52:50 +0000588static _cpp_buff *
Jakub Jelinek765d6002008-01-25 10:01:27 +0100589collect_args (cpp_reader *pfile, const cpp_hashnode *node,
590 _cpp_buff **pragma_buff)
Neil Booth93c803682000-10-28 17:59:06 +0000591{
Neil Boothb8af0ca2001-09-26 17:52:50 +0000592 _cpp_buff *buff, *base_buff;
593 cpp_macro *macro;
594 macro_arg *args, *arg;
595 const cpp_token *token;
596 unsigned int argc;
Neil Booth93c803682000-10-28 17:59:06 +0000597
Neil Boothb8af0ca2001-09-26 17:52:50 +0000598 macro = node->value.macro;
599 if (macro->paramc)
600 argc = macro->paramc;
601 else
602 argc = 1;
603 buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *)
604 + sizeof (macro_arg)));
605 base_buff = buff;
606 args = (macro_arg *) buff->base;
607 memset (args, 0, argc * sizeof (macro_arg));
Neil Boothece54d52001-09-28 09:40:22 +0000608 buff->cur = (unsigned char *) &args[argc];
Neil Boothb8af0ca2001-09-26 17:52:50 +0000609 arg = args, argc = 0;
Neil Booth93c803682000-10-28 17:59:06 +0000610
Neil Boothb8af0ca2001-09-26 17:52:50 +0000611 /* Collect the tokens making up each argument. We don't yet know
612 how many arguments have been supplied, whether too many or too
613 few. Hence the slightly bizarre usage of "argc" and "arg". */
614 do
Neil Booth93c803682000-10-28 17:59:06 +0000615 {
Neil Boothb8af0ca2001-09-26 17:52:50 +0000616 unsigned int paren_depth = 0;
617 unsigned int ntokens = 0;
618
Neil Booth93c803682000-10-28 17:59:06 +0000619 argc++;
Neil Boothb8af0ca2001-09-26 17:52:50 +0000620 arg->first = (const cpp_token **) buff->cur;
Neil Booth93c803682000-10-28 17:59:06 +0000621
Neil Boothb8af0ca2001-09-26 17:52:50 +0000622 for (;;)
623 {
624 /* Require space for 2 new tokens (including a CPP_EOF). */
Neil Boothece54d52001-09-28 09:40:22 +0000625 if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
Neil Boothb8af0ca2001-09-26 17:52:50 +0000626 {
Neil Booth8c3b2692001-09-30 10:03:11 +0000627 buff = _cpp_append_extend_buff (pfile, buff,
628 1000 * sizeof (cpp_token *));
Neil Boothb8af0ca2001-09-26 17:52:50 +0000629 arg->first = (const cpp_token **) buff->cur;
630 }
Neil Booth93c803682000-10-28 17:59:06 +0000631
Neil Boothb8af0ca2001-09-26 17:52:50 +0000632 token = cpp_get_token (pfile);
633
634 if (token->type == CPP_PADDING)
635 {
636 /* Drop leading padding. */
637 if (ntokens == 0)
638 continue;
639 }
640 else if (token->type == CPP_OPEN_PAREN)
641 paren_depth++;
642 else if (token->type == CPP_CLOSE_PAREN)
643 {
644 if (paren_depth-- == 0)
645 break;
646 }
647 else if (token->type == CPP_COMMA)
648 {
649 /* A comma does not terminate an argument within
650 parentheses or as part of a variable argument. */
651 if (paren_depth == 0
652 && ! (macro->variadic && argc == macro->paramc))
653 break;
654 }
655 else if (token->type == CPP_EOF
656 || (token->type == CPP_HASH && token->flags & BOL))
657 break;
Jakub Jelinek765d6002008-01-25 10:01:27 +0100658 else if (token->type == CPP_PRAGMA)
659 {
660 cpp_token *newtok = _cpp_temp_token (pfile);
661
662 /* CPP_PRAGMA token lives in directive_result, which will
663 be overwritten on the next directive. */
664 *newtok = *token;
665 token = newtok;
666 do
667 {
668 if (*pragma_buff == NULL
669 || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
670 {
671 _cpp_buff *next;
672 if (*pragma_buff == NULL)
673 *pragma_buff
674 = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
675 else
676 {
677 next = *pragma_buff;
678 *pragma_buff
679 = _cpp_get_buff (pfile,
680 (BUFF_FRONT (*pragma_buff)
681 - (*pragma_buff)->base) * 2);
682 (*pragma_buff)->next = next;
683 }
684 }
685 *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
686 BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
687 if (token->type == CPP_PRAGMA_EOL)
688 break;
689 token = cpp_get_token (pfile);
690 }
691 while (token->type != CPP_EOF);
692
693 /* In deferred pragmas parsing_args and prevent_expansion
694 had been changed, reset it. */
695 pfile->state.parsing_args = 2;
696 pfile->state.prevent_expansion = 1;
697
698 if (token->type == CPP_EOF)
699 break;
700 else
701 continue;
702 }
Neil Boothb8af0ca2001-09-26 17:52:50 +0000703
704 arg->first[ntokens++] = token;
705 }
706
707 /* Drop trailing padding. */
708 while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
709 ntokens--;
710
711 arg->count = ntokens;
712 arg->first[ntokens] = &pfile->eof;
713
714 /* Terminate the argument. Excess arguments loop back and
715 overwrite the final legitimate argument, before failing. */
716 if (argc <= macro->paramc)
717 {
Neil Boothece54d52001-09-28 09:40:22 +0000718 buff->cur = (unsigned char *) &arg->first[ntokens + 1];
Neil Boothb8af0ca2001-09-26 17:52:50 +0000719 if (argc != macro->paramc)
720 arg++;
721 }
Neil Booth93c803682000-10-28 17:59:06 +0000722 }
Neil Boothe808ec92002-02-27 07:24:53 +0000723 while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
Neil Booth93c803682000-10-28 17:59:06 +0000724
Neil Boothe808ec92002-02-27 07:24:53 +0000725 if (token->type == CPP_EOF)
Neil Booth93c803682000-10-28 17:59:06 +0000726 {
Neil Boothece54d52001-09-28 09:40:22 +0000727 /* We still need the CPP_EOF to end directives, and to end
728 pre-expansion of a macro argument. Step back is not
729 unconditional, since we don't want to return a CPP_EOF to our
730 callers at the end of an -include-d file. */
Neil Boothe808ec92002-02-27 07:24:53 +0000731 if (pfile->context->prev || pfile->state.in_directive)
Neil Boothb8af0ca2001-09-26 17:52:50 +0000732 _cpp_backup_tokens (pfile, 1);
John David Anglin0527bc42003-11-01 22:56:54 +0000733 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +0000734 "unterminated argument list invoking macro \"%s\"",
Neil Bootha28c50352001-05-16 22:02:09 +0000735 NODE_NAME (node));
Neil Booth93c803682000-10-28 17:59:06 +0000736 }
Neil Booth1ce676a2002-06-09 20:04:17 +0000737 else
Neil Booth93c803682000-10-28 17:59:06 +0000738 {
Neil Booth1ce676a2002-06-09 20:04:17 +0000739 /* A single empty argument is counted as no argument. */
740 if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
741 argc = 0;
742 if (_cpp_arguments_ok (pfile, macro, node, argc))
Neil Booth58551c22002-08-06 20:35:46 +0000743 {
744 /* GCC has special semantics for , ## b where b is a varargs
745 parameter: we remove the comma if b was omitted entirely.
746 If b was merely an empty argument, the comma is retained.
747 If the macro takes just one (varargs) parameter, then we
748 retain the comma only if we are standards conforming.
749
750 If FIRST is NULL replace_args () swallows the comma. */
751 if (macro->variadic && (argc < macro->paramc
752 || (argc == 1 && args[0].count == 0
753 && !CPP_OPTION (pfile, std))))
754 args[macro->paramc - 1].first = NULL;
755 return base_buff;
756 }
Neil Booth93c803682000-10-28 17:59:06 +0000757 }
758
Neil Booth1ce676a2002-06-09 20:04:17 +0000759 /* An error occurred. */
Neil Boothb8af0ca2001-09-26 17:52:50 +0000760 _cpp_release_buff (pfile, base_buff);
761 return NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000762}
763
Neil Boothd6da8362001-10-08 06:15:14 +0000764/* Search for an opening parenthesis to the macro of NODE, in such a
765 way that, if none is found, we don't lose the information in any
766 intervening padding tokens. If we find the parenthesis, collect
Jakub Jelinek765d6002008-01-25 10:01:27 +0100767 the arguments and return the buffer containing them. PRAGMA_BUFF
768 argument is the same as in collect_args. */
Neil Boothd6da8362001-10-08 06:15:14 +0000769static _cpp_buff *
Jakub Jelinek765d6002008-01-25 10:01:27 +0100770funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
771 _cpp_buff **pragma_buff)
Neil Booth93c803682000-10-28 17:59:06 +0000772{
Neil Boothd6da8362001-10-08 06:15:14 +0000773 const cpp_token *token, *padding = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000774
Neil Boothd6da8362001-10-08 06:15:14 +0000775 for (;;)
Neil Boothbdcbe492001-09-13 20:05:17 +0000776 {
Neil Boothd6da8362001-10-08 06:15:14 +0000777 token = cpp_get_token (pfile);
778 if (token->type != CPP_PADDING)
779 break;
780 if (padding == NULL
781 || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
782 padding = token;
Neil Boothbdcbe492001-09-13 20:05:17 +0000783 }
Neil Booth93c803682000-10-28 17:59:06 +0000784
Neil Boothd6da8362001-10-08 06:15:14 +0000785 if (token->type == CPP_OPEN_PAREN)
Neil Booth93c803682000-10-28 17:59:06 +0000786 {
Neil Boothd6da8362001-10-08 06:15:14 +0000787 pfile->state.parsing_args = 2;
Jakub Jelinek765d6002008-01-25 10:01:27 +0100788 return collect_args (pfile, node, pragma_buff);
Neil Booth93c803682000-10-28 17:59:06 +0000789 }
790
Neil Booth9ac3b1b2002-04-21 16:17:55 +0000791 /* CPP_EOF can be the end of macro arguments, or the end of the
792 file. We mustn't back up over the latter. Ugh. */
793 if (token->type != CPP_EOF || token == &pfile->eof)
794 {
795 /* Back up. We may have skipped padding, in which case backing
796 up more than one token when expanding macros is in general
797 too difficult. We re-insert it in its own context. */
798 _cpp_backup_tokens (pfile, 1);
799 if (padding)
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800800 _cpp_push_token_context (pfile, NULL, padding, 1);
Neil Booth9ac3b1b2002-04-21 16:17:55 +0000801 }
Neil Boothd6da8362001-10-08 06:15:14 +0000802
803 return NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000804}
805
Joseph Myersaa508502009-04-19 18:10:56 +0100806/* Return the real number of tokens in the expansion of MACRO. */
807static inline unsigned int
808macro_real_token_count (const cpp_macro *macro)
809{
810 unsigned int i;
811 if (__builtin_expect (!macro->extra_tokens, true))
812 return macro->count;
813 for (i = 0; i < macro->count; i++)
814 if (macro->exp.tokens[i].type == CPP_PASTE)
815 return i;
816 abort ();
817}
818
Neil Boothd15a58c2002-01-03 18:32:55 +0000819/* Push the context of a macro with hash entry NODE onto the context
820 stack. If we can successfully expand the macro, we push a context
821 containing its yet-to-be-rescanned replacement list and return one.
Jakub Jelinek765d6002008-01-25 10:01:27 +0100822 If there were additionally any unexpanded deferred #pragma directives
823 among macro arguments, push another context containing the
824 pragma tokens before the yet-to-be-rescanned replacement list
825 and return two. Otherwise, we don't push a context and return zero. */
Neil Booth93c803682000-10-28 17:59:06 +0000826static int
Jakub Jelinek765d6002008-01-25 10:01:27 +0100827enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
828 const cpp_token *result)
Neil Booth93c803682000-10-28 17:59:06 +0000829{
Neil Boothd15a58c2002-01-03 18:32:55 +0000830 /* The presence of a macro invalidates a file's controlling macro. */
Neil Booth644edda2001-10-02 12:57:24 +0000831 pfile->mi_valid = false;
832
Neil Booth36207112002-05-24 19:26:30 +0000833 pfile->state.angled_headers = false;
834
Joseph Myers93d45d92008-04-02 20:42:53 +0100835 if ((node->flags & NODE_BUILTIN) && !(node->flags & NODE_USED))
836 {
837 node->flags |= NODE_USED;
838 if (pfile->cb.used_define)
839 pfile->cb.used_define (pfile, pfile->directive_line, node);
840 }
841
Neil Boothd15a58c2002-01-03 18:32:55 +0000842 /* Handle standard macros. */
Neil Booth644edda2001-10-02 12:57:24 +0000843 if (! (node->flags & NODE_BUILTIN))
Neil Booth93c803682000-10-28 17:59:06 +0000844 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000845 cpp_macro *macro = node->value.macro;
Jakub Jelinek765d6002008-01-25 10:01:27 +0100846 _cpp_buff *pragma_buff = NULL;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000847
Neil Boothd6da8362001-10-08 06:15:14 +0000848 if (macro->fun_like)
849 {
850 _cpp_buff *buff;
851
852 pfile->state.prevent_expansion++;
853 pfile->keep_tokens++;
854 pfile->state.parsing_args = 1;
Jakub Jelinek765d6002008-01-25 10:01:27 +0100855 buff = funlike_invocation_p (pfile, node, &pragma_buff);
Neil Boothd6da8362001-10-08 06:15:14 +0000856 pfile->state.parsing_args = 0;
857 pfile->keep_tokens--;
858 pfile->state.prevent_expansion--;
859
860 if (buff == NULL)
861 {
862 if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
John David Anglin0527bc42003-11-01 22:56:54 +0000863 cpp_error (pfile, CPP_DL_WARNING,
Neil Boothd6da8362001-10-08 06:15:14 +0000864 "function-like macro \"%s\" must be used with arguments in traditional C",
Neil Boothebef4e82002-04-14 18:42:47 +0000865 NODE_NAME (node));
Neil Boothd6da8362001-10-08 06:15:14 +0000866
Jakub Jelinek765d6002008-01-25 10:01:27 +0100867 if (pragma_buff)
868 _cpp_release_buff (pfile, pragma_buff);
869
Neil Boothd6da8362001-10-08 06:15:14 +0000870 return 0;
871 }
872
Neil Boothe808ec92002-02-27 07:24:53 +0000873 if (macro->paramc > 0)
874 replace_args (pfile, node, macro, (macro_arg *) buff->base);
Neil Boothd6da8362001-10-08 06:15:14 +0000875 _cpp_release_buff (pfile, buff);
876 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000877
878 /* Disable the macro within its expansion. */
Neil Booth644edda2001-10-02 12:57:24 +0000879 node->flags |= NODE_DISABLED;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000880
Joseph Myers93d45d92008-04-02 20:42:53 +0100881 if (!(node->flags & NODE_USED))
882 {
883 node->flags |= NODE_USED;
884 if (pfile->cb.used_define)
885 pfile->cb.used_define (pfile, pfile->directive_line, node);
886 }
887
Arnaud Charlet3de8a542009-11-20 08:18:16 +0000888 if (pfile->cb.used)
889 pfile->cb.used (pfile, result->src_loc, node);
890
Neil Bootha69cbaa2002-07-23 22:57:49 +0000891 macro->used = 1;
892
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000893 if (macro->paramc == 0)
Joseph Myersaa508502009-04-19 18:10:56 +0100894 _cpp_push_token_context (pfile, node, macro->exp.tokens,
895 macro_real_token_count (macro));
Neil Booth644edda2001-10-02 12:57:24 +0000896
Jakub Jelinek765d6002008-01-25 10:01:27 +0100897 if (pragma_buff)
898 {
899 if (!pfile->state.in_directive)
900 _cpp_push_token_context (pfile, NULL,
901 padding_token (pfile, result), 1);
902 do
903 {
904 _cpp_buff *tail = pragma_buff->next;
905 pragma_buff->next = NULL;
906 push_ptoken_context (pfile, NULL, pragma_buff,
907 (const cpp_token **) pragma_buff->base,
908 ((const cpp_token **) BUFF_FRONT (pragma_buff)
909 - (const cpp_token **) pragma_buff->base));
910 pragma_buff = tail;
911 }
912 while (pragma_buff != NULL);
913 return 2;
914 }
915
Neil Booth644edda2001-10-02 12:57:24 +0000916 return 1;
Neil Booth93c803682000-10-28 17:59:06 +0000917 }
Neil Booth644edda2001-10-02 12:57:24 +0000918
Neil Boothd15a58c2002-01-03 18:32:55 +0000919 /* Handle built-in macros and the _Pragma operator. */
Neil Booth644edda2001-10-02 12:57:24 +0000920 return builtin_macro (pfile, node);
Zack Weinberg711b8822000-07-18 00:59:49 +0000921}
922
Neil Boothd15a58c2002-01-03 18:32:55 +0000923/* Replace the parameters in a function-like macro of NODE with the
924 actual ARGS, and place the result in a newly pushed token context.
925 Expand each argument before replacing, unless it is operated upon
926 by the # or ## operators. */
Neil Booth93c803682000-10-28 17:59:06 +0000927static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000928replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args)
Neil Booth93c803682000-10-28 17:59:06 +0000929{
930 unsigned int i, total;
931 const cpp_token *src, *limit;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000932 const cpp_token **dest, **first;
Neil Booth93c803682000-10-28 17:59:06 +0000933 macro_arg *arg;
Neil Booth1e013d22001-09-26 21:44:35 +0000934 _cpp_buff *buff;
Joseph Myersaa508502009-04-19 18:10:56 +0100935 unsigned int count;
Neil Booth93c803682000-10-28 17:59:06 +0000936
Neil Booth93c803682000-10-28 17:59:06 +0000937 /* First, fully macro-expand arguments, calculating the number of
Neil Booth1e013d22001-09-26 21:44:35 +0000938 tokens in the final expansion as we go. The ordering of the if
939 statements below is subtle; we must handle stringification before
940 pasting. */
Joseph Myersaa508502009-04-19 18:10:56 +0100941 count = macro_real_token_count (macro);
942 total = count;
943 limit = macro->exp.tokens + count;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000944
Neil Booth601328b2002-05-16 05:53:24 +0000945 for (src = macro->exp.tokens; src < limit; src++)
Neil Booth93c803682000-10-28 17:59:06 +0000946 if (src->type == CPP_MACRO_ARG)
947 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000948 /* Leading and trailing padding tokens. */
949 total += 2;
950
Neil Booth93c803682000-10-28 17:59:06 +0000951 /* We have an argument. If it is not being stringified or
952 pasted it is macro-replaced before insertion. */
Joseph Myers9a0c6182009-05-10 15:27:32 +0100953 arg = &args[src->val.macro_arg.arg_no - 1];
Neil Booth4c2b6472000-11-11 13:19:01 +0000954
Neil Booth93c803682000-10-28 17:59:06 +0000955 if (src->flags & STRINGIFY_ARG)
956 {
957 if (!arg->stringified)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000958 arg->stringified = stringify_arg (pfile, arg);
Neil Booth93c803682000-10-28 17:59:06 +0000959 }
960 else if ((src->flags & PASTE_LEFT)
Neil Booth601328b2002-05-16 05:53:24 +0000961 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
Neil Booth93c803682000-10-28 17:59:06 +0000962 total += arg->count - 1;
963 else
964 {
965 if (!arg->expanded)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000966 expand_arg (pfile, arg);
Neil Booth93c803682000-10-28 17:59:06 +0000967 total += arg->expanded_count - 1;
968 }
969 }
970
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000971 /* Now allocate space for the expansion, copy the tokens and replace
972 the arguments. */
Neil Booth1e013d22001-09-26 21:44:35 +0000973 buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *));
974 first = (const cpp_token **) buff->base;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000975 dest = first;
Neil Booth93c803682000-10-28 17:59:06 +0000976
Neil Booth601328b2002-05-16 05:53:24 +0000977 for (src = macro->exp.tokens; src < limit; src++)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000978 {
979 unsigned int count;
980 const cpp_token **from, **paste_flag;
Neil Booth93c803682000-10-28 17:59:06 +0000981
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000982 if (src->type != CPP_MACRO_ARG)
983 {
984 *dest++ = src;
985 continue;
986 }
987
988 paste_flag = 0;
Joseph Myers9a0c6182009-05-10 15:27:32 +0100989 arg = &args[src->val.macro_arg.arg_no - 1];
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000990 if (src->flags & STRINGIFY_ARG)
991 count = 1, from = &arg->stringified;
992 else if (src->flags & PASTE_LEFT)
993 count = arg->count, from = arg->first;
Neil Booth601328b2002-05-16 05:53:24 +0000994 else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000995 {
Neil Booth93c803682000-10-28 17:59:06 +0000996 count = arg->count, from = arg->first;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000997 if (dest != first)
998 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000999 if (dest[-1]->type == CPP_COMMA
1000 && macro->variadic
Joseph Myers9a0c6182009-05-10 15:27:32 +01001001 && src->val.macro_arg.arg_no == macro->paramc)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001002 {
Neil Booth58551c22002-08-06 20:35:46 +00001003 /* Swallow a pasted comma if from == NULL, otherwise
1004 drop the paste flag. */
1005 if (from == NULL)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001006 dest--;
1007 else
1008 paste_flag = dest - 1;
1009 }
1010 /* Remove the paste flag if the RHS is a placemarker. */
1011 else if (count == 0)
1012 paste_flag = dest - 1;
1013 }
1014 }
1015 else
1016 count = arg->expanded_count, from = arg->expanded;
Neil Booth93c803682000-10-28 17:59:06 +00001017
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001018 /* Padding on the left of an argument (unless RHS of ##). */
Zack Weinberga8d0dda2003-02-21 18:06:30 +00001019 if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
Neil Booth601328b2002-05-16 05:53:24 +00001020 && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001021 *dest++ = padding_token (pfile, src);
Neil Booth93c803682000-10-28 17:59:06 +00001022
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001023 if (count)
1024 {
1025 memcpy (dest, from, count * sizeof (cpp_token *));
1026 dest += count;
Neil Booth93c803682000-10-28 17:59:06 +00001027
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001028 /* With a non-empty argument on the LHS of ##, the last
1029 token should be flagged PASTE_LEFT. */
1030 if (src->flags & PASTE_LEFT)
1031 paste_flag = dest - 1;
1032 }
Andrew Haleye85edc92008-07-03 10:31:50 +00001033 else if (CPP_PEDANTIC (pfile) && ! macro->syshdr
1034 && ! CPP_OPTION (pfile, c99)
1035 && ! cpp_in_system_header (pfile))
1036 {
1037 cpp_error (pfile, CPP_DL_PEDWARN,
1038 "invoking macro %s argument %d: "
1039 "empty macro arguments are undefined"
1040 " in ISO C90 and ISO C++98",
1041 NODE_NAME (node),
Joseph Myers9a0c6182009-05-10 15:27:32 +01001042 src->val.macro_arg.arg_no);
Andrew Haleye85edc92008-07-03 10:31:50 +00001043 }
Neil Booth4c2b6472000-11-11 13:19:01 +00001044
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001045 /* Avoid paste on RHS (even case count == 0). */
1046 if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
1047 *dest++ = &pfile->avoid_paste;
Neil Booth26ec42e2001-01-28 11:22:23 +00001048
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001049 /* Add a new paste flag, or remove an unwanted one. */
1050 if (paste_flag)
1051 {
1052 cpp_token *token = _cpp_temp_token (pfile);
1053 token->type = (*paste_flag)->type;
Jakub Jelinek73096712005-03-04 16:33:23 +01001054 token->val = (*paste_flag)->val;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001055 if (src->flags & PASTE_LEFT)
1056 token->flags = (*paste_flag)->flags | PASTE_LEFT;
1057 else
1058 token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
1059 *paste_flag = token;
1060 }
1061 }
Neil Booth4c2b6472000-11-11 13:19:01 +00001062
Neil Booth93c803682000-10-28 17:59:06 +00001063 /* Free the expanded arguments. */
1064 for (i = 0; i < macro->paramc; i++)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001065 if (args[i].expanded)
1066 free (args[i].expanded);
1067
Neil Booth644edda2001-10-02 12:57:24 +00001068 push_ptoken_context (pfile, node, buff, first, dest - first);
Neil Booth93c803682000-10-28 17:59:06 +00001069}
1070
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001071/* Return a special padding token, with padding inherited from SOURCE. */
1072static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001073padding_token (cpp_reader *pfile, const cpp_token *source)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001074{
1075 cpp_token *result = _cpp_temp_token (pfile);
1076
1077 result->type = CPP_PADDING;
Paolo Bonzinibe0f1e52005-02-14 08:52:24 +00001078
1079 /* Data in GCed data structures cannot be made const so far, so we
1080 need a cast here. */
1081 result->val.source = (cpp_token *) source;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001082 result->flags = 0;
1083 return result;
1084}
1085
Neil Boothd15a58c2002-01-03 18:32:55 +00001086/* Get a new uninitialized context. Create a new one if we cannot
1087 re-use an old one. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001088static cpp_context *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001089next_context (cpp_reader *pfile)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001090{
1091 cpp_context *result = pfile->context->next;
1092
1093 if (result == 0)
1094 {
Bernardo Innocenti72bb2c32004-07-24 20:04:42 +02001095 result = XNEW (cpp_context);
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001096 result->prev = pfile->context;
1097 result->next = 0;
1098 pfile->context->next = result;
1099 }
1100
1101 pfile->context = result;
1102 return result;
1103}
1104
1105/* Push a list of pointers to tokens. */
1106static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001107push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
1108 const cpp_token **first, unsigned int count)
Neil Booth93c803682000-10-28 17:59:06 +00001109{
1110 cpp_context *context = next_context (pfile);
Neil Booth93c803682000-10-28 17:59:06 +00001111
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001112 context->direct_p = false;
1113 context->macro = macro;
Neil Booth1e013d22001-09-26 21:44:35 +00001114 context->buff = buff;
Neil Booth82eda772002-06-04 13:07:06 +00001115 FIRST (context).ptoken = first;
1116 LAST (context).ptoken = first + count;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001117}
1118
1119/* Push a list of tokens. */
Richard Hendersonbc4071d2006-01-04 08:33:38 -08001120void
1121_cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
1122 const cpp_token *first, unsigned int count)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001123{
1124 cpp_context *context = next_context (pfile);
1125
1126 context->direct_p = true;
1127 context->macro = macro;
Neil Booth1e013d22001-09-26 21:44:35 +00001128 context->buff = NULL;
Neil Booth82eda772002-06-04 13:07:06 +00001129 FIRST (context).token = first;
1130 LAST (context).token = first + count;
Neil Booth93c803682000-10-28 17:59:06 +00001131}
1132
Neil Boothcbc69f82002-06-05 20:27:12 +00001133/* Push a traditional macro's replacement text. */
1134void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001135_cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
1136 const uchar *start, size_t len)
Neil Boothcbc69f82002-06-05 20:27:12 +00001137{
1138 cpp_context *context = next_context (pfile);
1139
1140 context->direct_p = true;
1141 context->macro = macro;
1142 context->buff = NULL;
1143 CUR (context) = start;
Neil Booth1ce676a2002-06-09 20:04:17 +00001144 RLIMIT (context) = start + len;
Neil Booth974c43f2002-06-13 06:25:28 +00001145 macro->flags |= NODE_DISABLED;
Neil Boothcbc69f82002-06-05 20:27:12 +00001146}
1147
Neil Boothd15a58c2002-01-03 18:32:55 +00001148/* Expand an argument ARG before replacing parameters in a
1149 function-like macro. This works by pushing a context with the
1150 argument's tokens, and then expanding that into a temporary buffer
1151 as if it were a normal part of the token stream. collect_args()
1152 has terminated the argument's tokens with a CPP_EOF so that we know
1153 when we have fully expanded the argument. */
Neil Booth93c803682000-10-28 17:59:06 +00001154static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001155expand_arg (cpp_reader *pfile, macro_arg *arg)
Neil Booth93c803682000-10-28 17:59:06 +00001156{
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001157 unsigned int capacity;
Neil Booth56941bf2002-09-20 19:44:09 +00001158 bool saved_warn_trad;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001159
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001160 if (arg->count == 0)
1161 return;
Neil Booth93c803682000-10-28 17:59:06 +00001162
Neil Booth56941bf2002-09-20 19:44:09 +00001163 /* Don't warn about funlike macros when pre-expanding. */
1164 saved_warn_trad = CPP_WTRADITIONAL (pfile);
1165 CPP_WTRADITIONAL (pfile) = 0;
1166
Neil Booth93c803682000-10-28 17:59:06 +00001167 /* Loop, reading in the arguments. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001168 capacity = 256;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001169 arg->expanded = XNEWVEC (const cpp_token *, capacity);
Neil Booth93c803682000-10-28 17:59:06 +00001170
Neil Booth1e013d22001-09-26 21:44:35 +00001171 push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1);
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001172 for (;;)
Neil Booth93c803682000-10-28 17:59:06 +00001173 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001174 const cpp_token *token;
1175
1176 if (arg->expanded_count + 1 >= capacity)
Neil Booth93c803682000-10-28 17:59:06 +00001177 {
1178 capacity *= 2;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001179 arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded,
1180 capacity);
Neil Booth93c803682000-10-28 17:59:06 +00001181 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001182
1183 token = cpp_get_token (pfile);
1184
1185 if (token->type == CPP_EOF)
1186 break;
1187
1188 arg->expanded[arg->expanded_count++] = token;
Neil Booth93c803682000-10-28 17:59:06 +00001189 }
Neil Booth93c803682000-10-28 17:59:06 +00001190
Neil Booth1e013d22001-09-26 21:44:35 +00001191 _cpp_pop_context (pfile);
Neil Booth56941bf2002-09-20 19:44:09 +00001192
1193 CPP_WTRADITIONAL (pfile) = saved_warn_trad;
Neil Booth93c803682000-10-28 17:59:06 +00001194}
1195
Neil Boothd15a58c2002-01-03 18:32:55 +00001196/* Pop the current context off the stack, re-enabling the macro if the
1197 context represented a macro's replacement list. The context
1198 structure is not freed so that we can re-use it later. */
Neil Booth93c803682000-10-28 17:59:06 +00001199void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001200_cpp_pop_context (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001201{
Neil Booth1e013d22001-09-26 21:44:35 +00001202 cpp_context *context = pfile->context;
Neil Booth93c803682000-10-28 17:59:06 +00001203
Neil Booth1e013d22001-09-26 21:44:35 +00001204 if (context->macro)
Neil Booth644edda2001-10-02 12:57:24 +00001205 context->macro->flags &= ~NODE_DISABLED;
Neil Booth1e013d22001-09-26 21:44:35 +00001206
1207 if (context->buff)
1208 _cpp_release_buff (pfile, context->buff);
1209
1210 pfile->context = context->prev;
Neil Booth93c803682000-10-28 17:59:06 +00001211}
1212
Martin Schaffner48c47212003-06-25 23:01:10 +02001213/* External routine to get a token. Also used nearly everywhere
Neil Booth7f2f1a62000-11-14 18:32:06 +00001214 internally, except for places where we know we can safely call
Martin Schaffner48c47212003-06-25 23:01:10 +02001215 _cpp_lex_token directly, such as lexing a directive name.
Neil Booth7f2f1a62000-11-14 18:32:06 +00001216
1217 Macro expansions and directives are transparently handled,
1218 including entering included files. Thus tokens are post-macro
1219 expansion, and after any intervening directives. External callers
1220 see CPP_EOF only at EOF. Internal callers also see it when meeting
1221 a directive inside a macro call, when at the end of a directive and
1222 state.in_directive is still 1, and at the end of argument
1223 pre-expansion. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001224const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001225cpp_get_token (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001226{
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001227 const cpp_token *result;
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001228 bool can_set = pfile->set_invocation_location;
1229 pfile->set_invocation_location = false;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001230
Neil Booth29b10742000-11-13 18:40:37 +00001231 for (;;)
Neil Booth93c803682000-10-28 17:59:06 +00001232 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001233 cpp_hashnode *node;
Neil Booth93c803682000-10-28 17:59:06 +00001234 cpp_context *context = pfile->context;
1235
Neil Booth93c803682000-10-28 17:59:06 +00001236 /* Context->prev == 0 <=> base context. */
Neil Boothbdcbe492001-09-13 20:05:17 +00001237 if (!context->prev)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001238 result = _cpp_lex_token (pfile);
Neil Booth82eda772002-06-04 13:07:06 +00001239 else if (FIRST (context).token != LAST (context).token)
Neil Booth29b10742000-11-13 18:40:37 +00001240 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001241 if (context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +00001242 result = FIRST (context).token++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001243 else
Neil Booth82eda772002-06-04 13:07:06 +00001244 result = *FIRST (context).ptoken++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001245
1246 if (result->flags & PASTE_LEFT)
Neil Boothec1a23e2001-01-31 07:48:54 +00001247 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001248 paste_all_tokens (pfile, result);
1249 if (pfile->state.in_directive)
1250 continue;
1251 return padding_token (pfile, result);
Neil Boothec1a23e2001-01-31 07:48:54 +00001252 }
Neil Booth29b10742000-11-13 18:40:37 +00001253 }
Neil Booth93c803682000-10-28 17:59:06 +00001254 else
1255 {
Neil Boothbdcbe492001-09-13 20:05:17 +00001256 _cpp_pop_context (pfile);
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001257 if (pfile->state.in_directive)
1258 continue;
1259 return &pfile->avoid_paste;
Neil Booth93c803682000-10-28 17:59:06 +00001260 }
Neil Booth93c803682000-10-28 17:59:06 +00001261
Jason Thorpe477cdac2002-04-07 03:12:23 +00001262 if (pfile->state.in_directive && result->type == CPP_COMMENT)
1263 continue;
1264
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001265 if (result->type != CPP_NAME)
Neil Booth93c803682000-10-28 17:59:06 +00001266 break;
1267
Joseph Myers9a0c6182009-05-10 15:27:32 +01001268 node = result->val.node.node;
Neil Booth4c2b6472000-11-11 13:19:01 +00001269
Neil Booth644edda2001-10-02 12:57:24 +00001270 if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
1271 break;
Kazu Hiratadf383482002-05-22 22:02:16 +00001272
Neil Booth644edda2001-10-02 12:57:24 +00001273 if (!(node->flags & NODE_DISABLED))
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001274 {
Ben Elliston5950c3c2008-07-14 05:09:48 +00001275 int ret = 0;
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001276 /* If not in a macro context, and we're going to start an
1277 expansion, record the location. */
1278 if (can_set && !context->macro)
1279 pfile->invocation_location = result->src_loc;
Jakub Jelinek765d6002008-01-25 10:01:27 +01001280 if (pfile->state.prevent_expansion)
1281 break;
Ben Elliston5950c3c2008-07-14 05:09:48 +00001282
1283 /* Conditional macros require that a predicate be evaluated
1284 first. */
Jakub Jelineka37a7b82009-03-30 17:00:52 +02001285 if ((node->flags & NODE_CONDITIONAL) != 0)
1286 {
1287 if (pfile->cb.macro_to_expand)
1288 {
1289 bool whitespace_after;
1290 const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
1291
1292 whitespace_after = (peek_tok->type == CPP_PADDING
1293 || (peek_tok->flags & PREV_WHITE));
1294 node = pfile->cb.macro_to_expand (pfile, result);
1295 if (node)
1296 ret = enter_macro_context (pfile, node, result);
1297 else if (whitespace_after)
1298 {
1299 /* If macro_to_expand hook returned NULL and it
1300 ate some tokens, see if we don't need to add
1301 a padding token in between this and the
1302 next token. */
1303 peek_tok = cpp_peek_token (pfile, 0);
1304 if (peek_tok->type != CPP_PADDING
1305 && (peek_tok->flags & PREV_WHITE) == 0)
1306 _cpp_push_token_context (pfile, NULL,
1307 padding_token (pfile,
1308 peek_tok), 1);
1309 }
1310 }
1311 }
1312 else
1313 ret = enter_macro_context (pfile, node, result);
1314 if (ret)
Ben Elliston5950c3c2008-07-14 05:09:48 +00001315 {
Jakub Jelinek765d6002008-01-25 10:01:27 +01001316 if (pfile->state.in_directive || ret == 2)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001317 continue;
1318 return padding_token (pfile, result);
Neil Boothbd969772001-02-01 19:13:53 +00001319 }
Neil Booth93c803682000-10-28 17:59:06 +00001320 }
Neil Booth644edda2001-10-02 12:57:24 +00001321 else
1322 {
Neil Boothd15a58c2002-01-03 18:32:55 +00001323 /* Flag this token as always unexpandable. FIXME: move this
1324 to collect_args()?. */
Neil Booth644edda2001-10-02 12:57:24 +00001325 cpp_token *t = _cpp_temp_token (pfile);
1326 t->type = result->type;
1327 t->flags = result->flags | NO_EXPAND;
Jakub Jelinek73096712005-03-04 16:33:23 +01001328 t->val = result->val;
Neil Booth644edda2001-10-02 12:57:24 +00001329 result = t;
1330 }
Neil Bootha5c3ccc2000-10-30 22:29:00 +00001331
Neil Booth644edda2001-10-02 12:57:24 +00001332 break;
Neil Booth93c803682000-10-28 17:59:06 +00001333 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001334
1335 return result;
Neil Booth93c803682000-10-28 17:59:06 +00001336}
1337
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001338/* Like cpp_get_token, but also returns a location separate from the
1339 one provided by the returned token. LOC is an out parameter; *LOC
1340 is set to the location "as expected by the user". This matters
1341 when a token results from macro expansion -- the token's location
1342 will indicate where the macro is defined, but *LOC will be the
1343 location of the start of the expansion. */
1344const cpp_token *
1345cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
1346{
1347 const cpp_token *result;
1348
1349 pfile->set_invocation_location = true;
1350 result = cpp_get_token (pfile);
1351 if (pfile->context->macro)
1352 *loc = pfile->invocation_location;
1353 else
1354 *loc = result->src_loc;
1355
1356 return result;
1357}
1358
Neil Booth7065e132001-02-14 07:38:20 +00001359/* Returns true if we're expanding an object-like macro that was
1360 defined in a system header. Just checks the macro at the top of
1361 the stack. Used for diagnostic suppression. */
1362int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001363cpp_sys_macro_p (cpp_reader *pfile)
Neil Booth7065e132001-02-14 07:38:20 +00001364{
Neil Booth644edda2001-10-02 12:57:24 +00001365 cpp_hashnode *node = pfile->context->macro;
Neil Booth7065e132001-02-14 07:38:20 +00001366
Neil Booth644edda2001-10-02 12:57:24 +00001367 return node && node->value.macro && node->value.macro->syshdr;
Neil Booth7065e132001-02-14 07:38:20 +00001368}
1369
Neil Boothaf0d16c2002-04-22 17:48:02 +00001370/* Read each token in, until end of the current file. Directives are
1371 transparently processed. */
Neil Booth93c803682000-10-28 17:59:06 +00001372void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001373cpp_scan_nooutput (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001374{
Per Bothner22234f52004-02-18 14:02:39 -08001375 /* Request a CPP_EOF token at the end of this file, rather than
1376 transparently continuing with the including file. */
1377 pfile->buffer->return_at_eof = true;
1378
Zack Weinbergc6e83802004-06-05 20:58:06 +00001379 pfile->state.discarding_output++;
1380 pfile->state.prevent_expansion++;
1381
Neil Booth590e1982002-07-01 12:47:54 +00001382 if (CPP_OPTION (pfile, traditional))
1383 while (_cpp_read_logical_line_trad (pfile))
1384 ;
1385 else
1386 while (cpp_get_token (pfile)->type != CPP_EOF)
1387 ;
Zack Weinbergc6e83802004-06-05 20:58:06 +00001388
1389 pfile->state.discarding_output--;
1390 pfile->state.prevent_expansion--;
Neil Booth93c803682000-10-28 17:59:06 +00001391}
1392
Ben Elliston5950c3c2008-07-14 05:09:48 +00001393/* Step back one or more tokens obtained from the lexer. */
1394void
1395_cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
1396{
1397 pfile->lookaheads += count;
1398 while (count--)
1399 {
1400 pfile->cur_token--;
1401 if (pfile->cur_token == pfile->cur_run->base
1402 /* Possible with -fpreprocessed and no leading #line. */
1403 && pfile->cur_run->prev != NULL)
1404 {
1405 pfile->cur_run = pfile->cur_run->prev;
1406 pfile->cur_token = pfile->cur_run->limit;
1407 }
1408 }
1409}
1410
Jakub Jelinek1c90c6f2006-06-09 23:13:25 +02001411/* Step back one (or more) tokens. Can only step back more than 1 if
Neil Boothbdcbe492001-09-13 20:05:17 +00001412 they are from the lexer, and not from macro expansion. */
Neil Boothb528a072000-11-12 11:46:21 +00001413void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001414_cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
Neil Booth93c803682000-10-28 17:59:06 +00001415{
Neil Boothbdcbe492001-09-13 20:05:17 +00001416 if (pfile->context->prev == NULL)
Ben Elliston5950c3c2008-07-14 05:09:48 +00001417 _cpp_backup_tokens_direct (pfile, count);
Neil Booth93c803682000-10-28 17:59:06 +00001418 else
1419 {
Neil Boothbdcbe492001-09-13 20:05:17 +00001420 if (count != 1)
1421 abort ();
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001422 if (pfile->context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +00001423 FIRST (pfile->context).token--;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001424 else
Neil Booth82eda772002-06-04 13:07:06 +00001425 FIRST (pfile->context).ptoken--;
Neil Booth93c803682000-10-28 17:59:06 +00001426 }
Neil Booth93c803682000-10-28 17:59:06 +00001427}
1428
1429/* #define directive parsing and handling. */
1430
Kazu Hiratada7d8302002-09-22 02:03:17 +00001431/* Returns nonzero if a macro redefinition warning is required. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001432static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001433warn_of_redefinition (cpp_reader *pfile, const cpp_hashnode *node,
1434 const cpp_macro *macro2)
Neil Booth93c803682000-10-28 17:59:06 +00001435{
1436 const cpp_macro *macro1;
1437 unsigned int i;
1438
Neil Booth618cdda2001-02-25 09:43:03 +00001439 /* Some redefinitions need to be warned about regardless. */
1440 if (node->flags & NODE_WARN)
Neil Boothcbc69f82002-06-05 20:27:12 +00001441 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001442
Simon Baldwinc047ce92008-09-18 15:39:08 +00001443 /* Suppress warnings for builtins that lack the NODE_WARN flag. */
1444 if (node->flags & NODE_BUILTIN)
1445 return false;
1446
Ben Elliston5950c3c2008-07-14 05:09:48 +00001447 /* Redefinitions of conditional (context-sensitive) macros, on
1448 the other hand, must be allowed silently. */
1449 if (node->flags & NODE_CONDITIONAL)
1450 return false;
1451
Neil Booth618cdda2001-02-25 09:43:03 +00001452 /* Redefinition of a macro is allowed if and only if the old and new
Kazu Hirataec5c56d2001-08-01 17:57:27 +00001453 definitions are the same. (6.10.3 paragraph 2). */
Neil Booth93c803682000-10-28 17:59:06 +00001454 macro1 = node->value.macro;
1455
Neil Booth6618c5d2002-06-10 06:03:13 +00001456 /* Don't check count here as it can be different in valid
1457 traditional redefinitions with just whitespace differences. */
1458 if (macro1->paramc != macro2->paramc
Neil Booth93c803682000-10-28 17:59:06 +00001459 || macro1->fun_like != macro2->fun_like
Neil Booth28e0f042000-12-09 12:06:37 +00001460 || macro1->variadic != macro2->variadic)
Neil Boothcbc69f82002-06-05 20:27:12 +00001461 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001462
1463 /* Check parameter spellings. */
1464 for (i = 0; i < macro1->paramc; i++)
1465 if (macro1->params[i] != macro2->params[i])
Neil Boothcbc69f82002-06-05 20:27:12 +00001466 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001467
Neil Boothcbc69f82002-06-05 20:27:12 +00001468 /* Check the replacement text or tokens. */
1469 if (CPP_OPTION (pfile, traditional))
Neil Booth6618c5d2002-06-10 06:03:13 +00001470 return _cpp_expansions_different_trad (macro1, macro2);
Neil Boothcbc69f82002-06-05 20:27:12 +00001471
DJ Deloriea7f36da2003-06-01 14:55:15 -04001472 if (macro1->count != macro2->count)
1473 return true;
1474
1475 for (i = 0; i < macro1->count; i++)
1476 if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
1477 return true;
Neil Boothcbc69f82002-06-05 20:27:12 +00001478
1479 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001480}
1481
Neil Booth93c803682000-10-28 17:59:06 +00001482/* Free the definition of hashnode H. */
Neil Booth93c803682000-10-28 17:59:06 +00001483void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001484_cpp_free_definition (cpp_hashnode *h)
Zack Weinberg711b8822000-07-18 00:59:49 +00001485{
Neil Booth93c803682000-10-28 17:59:06 +00001486 /* Macros and assertions no longer have anything to free. */
1487 h->type = NT_VOID;
1488 /* Clear builtin flag in case of redefinition. */
Joseph Myers93d45d92008-04-02 20:42:53 +01001489 h->flags &= ~(NODE_BUILTIN | NODE_DISABLED | NODE_USED);
Neil Booth93c803682000-10-28 17:59:06 +00001490}
Zack Weinberg711b8822000-07-18 00:59:49 +00001491
Neil Booth14baae02001-09-17 18:26:12 +00001492/* Save parameter NODE to the parameter list of macro MACRO. Returns
Kazu Hiratada7d8302002-09-22 02:03:17 +00001493 zero on success, nonzero if the parameter is a duplicate. */
Neil Boothc70f6ed2002-06-07 06:26:32 +00001494bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001495_cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +00001496{
Zack Weinberg4977bab2002-12-16 18:23:00 +00001497 unsigned int len;
Neil Booth93c803682000-10-28 17:59:06 +00001498 /* Constraint 6.10.3.6 - duplicate parameter names. */
Zack Weinberg4977bab2002-12-16 18:23:00 +00001499 if (node->flags & NODE_MACRO_ARG)
Zack Weinberg711b8822000-07-18 00:59:49 +00001500 {
John David Anglin0527bc42003-11-01 22:56:54 +00001501 cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
Neil Boothebef4e82002-04-14 18:42:47 +00001502 NODE_NAME (node));
Neil Booth23ff0222002-07-17 17:27:14 +00001503 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001504 }
1505
Neil Booth8c3b2692001-09-30 10:03:11 +00001506 if (BUFF_ROOM (pfile->a_buff)
1507 < (macro->paramc + 1) * sizeof (cpp_hashnode *))
1508 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
Neil Booth93c803682000-10-28 17:59:06 +00001509
Neil Booth8c3b2692001-09-30 10:03:11 +00001510 ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node;
Zack Weinberg4977bab2002-12-16 18:23:00 +00001511 node->flags |= NODE_MACRO_ARG;
1512 len = macro->paramc * sizeof (union _cpp_hashnode_value);
1513 if (len > pfile->macro_buffer_len)
1514 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001515 pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer,
1516 len);
Zack Weinberg4977bab2002-12-16 18:23:00 +00001517 pfile->macro_buffer_len = len;
1518 }
1519 ((union _cpp_hashnode_value *) pfile->macro_buffer)[macro->paramc - 1]
1520 = node->value;
1521
1522 node->value.arg_index = macro->paramc;
Neil Booth23ff0222002-07-17 17:27:14 +00001523 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001524}
1525
Neil Booth23ff0222002-07-17 17:27:14 +00001526/* Check the syntax of the parameters in a MACRO definition. Returns
1527 false if an error occurs. */
1528static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001529parse_params (cpp_reader *pfile, cpp_macro *macro)
Neil Booth93c803682000-10-28 17:59:06 +00001530{
Neil Booth93c803682000-10-28 17:59:06 +00001531 unsigned int prev_ident = 0;
1532
Neil Booth93c803682000-10-28 17:59:06 +00001533 for (;;)
1534 {
Neil Booth345894b2001-09-16 13:44:29 +00001535 const cpp_token *token = _cpp_lex_token (pfile);
Neil Booth93c803682000-10-28 17:59:06 +00001536
Neil Booth345894b2001-09-16 13:44:29 +00001537 switch (token->type)
Zack Weinberg711b8822000-07-18 00:59:49 +00001538 {
1539 default:
Jason Thorpe477cdac2002-04-07 03:12:23 +00001540 /* Allow/ignore comments in parameter lists if we are
1541 preserving comments in macro expansions. */
1542 if (token->type == CPP_COMMENT
1543 && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
1544 continue;
1545
John David Anglin0527bc42003-11-01 22:56:54 +00001546 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001547 "\"%s\" may not appear in macro parameter list",
Neil Booth345894b2001-09-16 13:44:29 +00001548 cpp_token_as_text (pfile, token));
Neil Booth23ff0222002-07-17 17:27:14 +00001549 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001550
Zack Weinberg711b8822000-07-18 00:59:49 +00001551 case CPP_NAME:
1552 if (prev_ident)
1553 {
John David Anglin0527bc42003-11-01 22:56:54 +00001554 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001555 "macro parameters must be comma-separated");
Neil Booth23ff0222002-07-17 17:27:14 +00001556 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001557 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001558 prev_ident = 1;
Neil Booth93c803682000-10-28 17:59:06 +00001559
Joseph Myers9a0c6182009-05-10 15:27:32 +01001560 if (_cpp_save_parameter (pfile, macro, token->val.node.node))
Neil Booth23ff0222002-07-17 17:27:14 +00001561 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001562 continue;
1563
1564 case CPP_CLOSE_PAREN:
Neil Booth93c803682000-10-28 17:59:06 +00001565 if (prev_ident || macro->paramc == 0)
Neil Booth23ff0222002-07-17 17:27:14 +00001566 return true;
Zack Weinberg711b8822000-07-18 00:59:49 +00001567
1568 /* Fall through to pick up the error. */
1569 case CPP_COMMA:
1570 if (!prev_ident)
1571 {
John David Anglin0527bc42003-11-01 22:56:54 +00001572 cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
Neil Booth23ff0222002-07-17 17:27:14 +00001573 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001574 }
1575 prev_ident = 0;
1576 continue;
1577
1578 case CPP_ELLIPSIS:
Neil Booth28e0f042000-12-09 12:06:37 +00001579 macro->variadic = 1;
Zack Weinberg711b8822000-07-18 00:59:49 +00001580 if (!prev_ident)
1581 {
Neil Boothc70f6ed2002-06-07 06:26:32 +00001582 _cpp_save_parameter (pfile, macro,
1583 pfile->spec_nodes.n__VA_ARGS__);
Neil Booth93c803682000-10-28 17:59:06 +00001584 pfile->state.va_args_ok = 1;
Richard Hendersone5b79212004-02-19 14:18:50 -08001585 if (! CPP_OPTION (pfile, c99)
1586 && CPP_OPTION (pfile, pedantic)
1587 && CPP_OPTION (pfile, warn_variadic_macros))
John David Anglin0527bc42003-11-01 22:56:54 +00001588 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Boothebef4e82002-04-14 18:42:47 +00001589 "anonymous variadic macros were introduced in C99");
Zack Weinberg711b8822000-07-18 00:59:49 +00001590 }
Richard Hendersone5b79212004-02-19 14:18:50 -08001591 else if (CPP_OPTION (pfile, pedantic)
1592 && CPP_OPTION (pfile, warn_variadic_macros))
John David Anglin0527bc42003-11-01 22:56:54 +00001593 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Boothebef4e82002-04-14 18:42:47 +00001594 "ISO C does not permit named variadic macros");
Zack Weinberg711b8822000-07-18 00:59:49 +00001595
Neil Booth93c803682000-10-28 17:59:06 +00001596 /* We're at the end, and just expect a closing parenthesis. */
Neil Booth345894b2001-09-16 13:44:29 +00001597 token = _cpp_lex_token (pfile);
1598 if (token->type == CPP_CLOSE_PAREN)
Neil Booth23ff0222002-07-17 17:27:14 +00001599 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001600 /* Fall through. */
1601
1602 case CPP_EOF:
John David Anglin0527bc42003-11-01 22:56:54 +00001603 cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
Neil Booth23ff0222002-07-17 17:27:14 +00001604 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001605 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001606 }
1607}
1608
Neil Booth14baae02001-09-17 18:26:12 +00001609/* Allocate room for a token from a macro's replacement list. */
Neil Booth93c803682000-10-28 17:59:06 +00001610static cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001611alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
Zack Weinberg711b8822000-07-18 00:59:49 +00001612{
Neil Booth8c3b2692001-09-30 10:03:11 +00001613 if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
1614 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
Zack Weinberg711b8822000-07-18 00:59:49 +00001615
Neil Booth8c3b2692001-09-30 10:03:11 +00001616 return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
Neil Booth14baae02001-09-17 18:26:12 +00001617}
1618
Neil Boothd15a58c2002-01-03 18:32:55 +00001619/* Lex a token from the expansion of MACRO, but mark parameters as we
1620 find them and warn of traditional stringification. */
Neil Booth14baae02001-09-17 18:26:12 +00001621static cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001622lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
Neil Booth14baae02001-09-17 18:26:12 +00001623{
Tom Tromeyee380362007-01-30 15:46:01 +00001624 cpp_token *token, *saved_cur_token;
Neil Booth14baae02001-09-17 18:26:12 +00001625
Tom Tromeyee380362007-01-30 15:46:01 +00001626 saved_cur_token = pfile->cur_token;
Neil Booth14baae02001-09-17 18:26:12 +00001627 pfile->cur_token = alloc_expansion_token (pfile, macro);
1628 token = _cpp_lex_direct (pfile);
Tom Tromeyee380362007-01-30 15:46:01 +00001629 pfile->cur_token = saved_cur_token;
Neil Booth93c803682000-10-28 17:59:06 +00001630
Neil Boothd15a58c2002-01-03 18:32:55 +00001631 /* Is this a parameter? */
Zack Weinberg4977bab2002-12-16 18:23:00 +00001632 if (token->type == CPP_NAME
Joseph Myers9a0c6182009-05-10 15:27:32 +01001633 && (token->val.node.node->flags & NODE_MACRO_ARG) != 0)
Zack Weinberg711b8822000-07-18 00:59:49 +00001634 {
Neil Booth93c803682000-10-28 17:59:06 +00001635 token->type = CPP_MACRO_ARG;
Joseph Myers9a0c6182009-05-10 15:27:32 +01001636 token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
Zack Weinberg711b8822000-07-18 00:59:49 +00001637 }
Neil Booth93c803682000-10-28 17:59:06 +00001638 else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
1639 && (token->type == CPP_STRING || token->type == CPP_CHAR))
1640 check_trad_stringification (pfile, macro, &token->val.str);
Zack Weinberg711b8822000-07-18 00:59:49 +00001641
Neil Booth93c803682000-10-28 17:59:06 +00001642 return token;
Zack Weinberg711b8822000-07-18 00:59:49 +00001643}
1644
Neil Boothcbc69f82002-06-05 20:27:12 +00001645static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001646create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
Zack Weinberg711b8822000-07-18 00:59:49 +00001647{
Neil Boothcbc69f82002-06-05 20:27:12 +00001648 cpp_token *token;
Neil Booth14baae02001-09-17 18:26:12 +00001649 const cpp_token *ctoken;
Simon Martin126e0732007-05-23 20:58:34 +00001650 bool following_paste_op = false;
1651 const char *paste_op_error_msg =
1652 N_("'##' cannot appear at either end of a macro expansion");
Joseph Myersaa508502009-04-19 18:10:56 +01001653 unsigned int num_extra_tokens = 0;
Zack Weinberg711b8822000-07-18 00:59:49 +00001654
Neil Booth93c803682000-10-28 17:59:06 +00001655 /* Get the first token of the expansion (or the '(' of a
1656 function-like macro). */
Neil Booth14baae02001-09-17 18:26:12 +00001657 ctoken = _cpp_lex_token (pfile);
1658
1659 if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
Zack Weinberg711b8822000-07-18 00:59:49 +00001660 {
Neil Boothcbc69f82002-06-05 20:27:12 +00001661 bool ok = parse_params (pfile, macro);
Neil Booth8c3b2692001-09-30 10:03:11 +00001662 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
1663 if (!ok)
Neil Boothcbc69f82002-06-05 20:27:12 +00001664 return false;
Neil Booth8c3b2692001-09-30 10:03:11 +00001665
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001666 /* Success. Commit or allocate the parameter array. */
1667 if (pfile->hash_table->alloc_subobject)
1668 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001669 cpp_hashnode **params =
1670 (cpp_hashnode **) pfile->hash_table->alloc_subobject
1671 (sizeof (cpp_hashnode *) * macro->paramc);
Paolo Bonzinibe0f1e52005-02-14 08:52:24 +00001672 memcpy (params, macro->params,
1673 sizeof (cpp_hashnode *) * macro->paramc);
1674 macro->params = params;
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001675 }
1676 else
1677 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
Neil Booth93c803682000-10-28 17:59:06 +00001678 macro->fun_like = 1;
Neil Booth93c803682000-10-28 17:59:06 +00001679 }
Neil Booth14baae02001-09-17 18:26:12 +00001680 else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
Jakub Jelinekcae064e2005-04-05 22:07:06 +02001681 {
1682 /* While ISO C99 requires whitespace before replacement text
1683 in a macro definition, ISO C90 with TC1 allows there characters
1684 from the basic source character set. */
1685 if (CPP_OPTION (pfile, c99))
1686 cpp_error (pfile, CPP_DL_PEDWARN,
1687 "ISO C99 requires whitespace after the macro name");
1688 else
1689 {
1690 int warntype = CPP_DL_WARNING;
1691 switch (ctoken->type)
1692 {
1693 case CPP_ATSIGN:
1694 case CPP_AT_NAME:
1695 case CPP_OBJC_STRING:
1696 /* '@' is not in basic character set. */
1697 warntype = CPP_DL_PEDWARN;
1698 break;
1699 case CPP_OTHER:
1700 /* Basic character set sans letters, digits and _. */
1701 if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
1702 ctoken->val.str.text[0]) == NULL)
1703 warntype = CPP_DL_PEDWARN;
1704 break;
1705 default:
1706 /* All other tokens start with a character from basic
1707 character set. */
1708 break;
1709 }
1710 cpp_error (pfile, warntype,
1711 "missing whitespace after the macro name");
1712 }
1713 }
Neil Booth93c803682000-10-28 17:59:06 +00001714
Neil Booth14baae02001-09-17 18:26:12 +00001715 if (macro->fun_like)
1716 token = lex_expansion_token (pfile, macro);
1717 else
1718 {
1719 token = alloc_expansion_token (pfile, macro);
1720 *token = *ctoken;
1721 }
Neil Booth93c803682000-10-28 17:59:06 +00001722
1723 for (;;)
1724 {
1725 /* Check the stringifying # constraint 6.10.3.2.1 of
1726 function-like macros when lexing the subsequent token. */
1727 if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
Zack Weinberg711b8822000-07-18 00:59:49 +00001728 {
Neil Booth93c803682000-10-28 17:59:06 +00001729 if (token->type == CPP_MACRO_ARG)
1730 {
Joseph Myersaa508502009-04-19 18:10:56 +01001731 if (token->flags & PREV_WHITE)
1732 token->flags |= SP_PREV_WHITE;
1733 if (token[-1].flags & DIGRAPH)
1734 token->flags |= SP_DIGRAPH;
Neil Booth93c803682000-10-28 17:59:06 +00001735 token->flags &= ~PREV_WHITE;
1736 token->flags |= STRINGIFY_ARG;
1737 token->flags |= token[-1].flags & PREV_WHITE;
1738 token[-1] = token[0];
1739 macro->count--;
1740 }
1741 /* Let assembler get away with murder. */
Neil Boothbdb05a72000-11-26 17:31:13 +00001742 else if (CPP_OPTION (pfile, lang) != CLK_ASM)
Neil Booth93c803682000-10-28 17:59:06 +00001743 {
John David Anglin0527bc42003-11-01 22:56:54 +00001744 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001745 "'#' is not followed by a macro parameter");
Neil Boothcbc69f82002-06-05 20:27:12 +00001746 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001747 }
1748 }
1749
1750 if (token->type == CPP_EOF)
Simon Martin126e0732007-05-23 20:58:34 +00001751 {
1752 /* Paste operator constraint 6.10.3.3.1:
1753 Token-paste ##, can appear in both object-like and
1754 function-like macros, but not at the end. */
1755 if (following_paste_op)
1756 {
1757 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
1758 return false;
1759 }
1760 break;
1761 }
Neil Booth93c803682000-10-28 17:59:06 +00001762
1763 /* Paste operator constraint 6.10.3.3.1. */
1764 if (token->type == CPP_PASTE)
1765 {
1766 /* Token-paste ##, can appear in both object-like and
Simon Martin126e0732007-05-23 20:58:34 +00001767 function-like macros, but not at the beginning. */
1768 if (macro->count == 1)
Neil Booth93c803682000-10-28 17:59:06 +00001769 {
Simon Martin126e0732007-05-23 20:58:34 +00001770 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
Neil Boothcbc69f82002-06-05 20:27:12 +00001771 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001772 }
1773
Joseph Myersaa508502009-04-19 18:10:56 +01001774 if (token[-1].flags & PASTE_LEFT)
1775 {
1776 macro->extra_tokens = 1;
1777 num_extra_tokens++;
Joseph Myers9a0c6182009-05-10 15:27:32 +01001778 token->val.token_no = macro->count - 1;
Joseph Myersaa508502009-04-19 18:10:56 +01001779 }
1780 else
1781 {
1782 --macro->count;
1783 token[-1].flags |= PASTE_LEFT;
1784 if (token->flags & DIGRAPH)
1785 token[-1].flags |= SP_DIGRAPH;
1786 if (token->flags & PREV_WHITE)
1787 token[-1].flags |= SP_PREV_WHITE;
1788 }
Neil Booth93c803682000-10-28 17:59:06 +00001789 }
1790
Simon Martin126e0732007-05-23 20:58:34 +00001791 following_paste_op = (token->type == CPP_PASTE);
Neil Booth93c803682000-10-28 17:59:06 +00001792 token = lex_expansion_token (pfile, macro);
1793 }
1794
Neil Booth601328b2002-05-16 05:53:24 +00001795 macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001796 macro->traditional = 0;
Neil Booth8c3b2692001-09-30 10:03:11 +00001797
Neil Booth4c2b6472000-11-11 13:19:01 +00001798 /* Don't count the CPP_EOF. */
1799 macro->count--;
Neil Booth93c803682000-10-28 17:59:06 +00001800
Neil Boothd15a58c2002-01-03 18:32:55 +00001801 /* Clear whitespace on first token for warn_of_redefinition(). */
Neil Booth8c3b2692001-09-30 10:03:11 +00001802 if (macro->count)
Neil Booth601328b2002-05-16 05:53:24 +00001803 macro->exp.tokens[0].flags &= ~PREV_WHITE;
Neil Booth8c3b2692001-09-30 10:03:11 +00001804
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001805 /* Commit or allocate the memory. */
1806 if (pfile->hash_table->alloc_subobject)
1807 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001808 cpp_token *tokns =
1809 (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
1810 * macro->count);
Joseph Myersaa508502009-04-19 18:10:56 +01001811 if (num_extra_tokens)
1812 {
1813 /* Place second and subsequent ## or %:%: tokens in
1814 sequences of consecutive such tokens at the end of the
1815 list to preserve information about where they appear, how
1816 they are spelt and whether they are preceded by
1817 whitespace without otherwise interfering with macro
1818 expansion. */
1819 cpp_token *normal_dest = tokns;
1820 cpp_token *extra_dest = tokns + macro->count - num_extra_tokens;
1821 unsigned int i;
1822 for (i = 0; i < macro->count; i++)
1823 {
1824 if (macro->exp.tokens[i].type == CPP_PASTE)
1825 *extra_dest++ = macro->exp.tokens[i];
1826 else
1827 *normal_dest++ = macro->exp.tokens[i];
1828 }
1829 }
1830 else
1831 memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001832 macro->exp.tokens = tokns;
1833 }
1834 else
1835 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
Neil Booth8c3b2692001-09-30 10:03:11 +00001836
Neil Boothcbc69f82002-06-05 20:27:12 +00001837 return true;
1838}
Neil Booth44ed91a2000-10-29 11:37:18 +00001839
Kazu Hiratada7d8302002-09-22 02:03:17 +00001840/* Parse a macro and save its expansion. Returns nonzero on success. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001841bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001842_cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
Neil Boothcbc69f82002-06-05 20:27:12 +00001843{
1844 cpp_macro *macro;
1845 unsigned int i;
1846 bool ok;
1847
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001848 if (pfile->hash_table->alloc_subobject)
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001849 macro = (cpp_macro *) pfile->hash_table->alloc_subobject
1850 (sizeof (cpp_macro));
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001851 else
1852 macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
Neil Boothcbc69f82002-06-05 20:27:12 +00001853 macro->line = pfile->directive_line;
1854 macro->params = 0;
1855 macro->paramc = 0;
1856 macro->variadic = 0;
Neil Booth23345bb2003-03-14 21:47:50 +00001857 macro->used = !CPP_OPTION (pfile, warn_unused_macros);
Neil Boothcbc69f82002-06-05 20:27:12 +00001858 macro->count = 0;
1859 macro->fun_like = 0;
Joseph Myersaa508502009-04-19 18:10:56 +01001860 macro->extra_tokens = 0;
Neil Booth7065e132001-02-14 07:38:20 +00001861 /* To suppress some diagnostics. */
Per Bothner12f9df42004-02-11 07:29:30 -08001862 macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
Neil Booth7065e132001-02-14 07:38:20 +00001863
Neil Boothcbc69f82002-06-05 20:27:12 +00001864 if (CPP_OPTION (pfile, traditional))
1865 ok = _cpp_create_trad_definition (pfile, macro);
1866 else
1867 {
Neil Boothcbc69f82002-06-05 20:27:12 +00001868 ok = create_iso_definition (pfile, macro);
1869
Tom Tromeyee380362007-01-30 15:46:01 +00001870 /* We set the type for SEEN_EOL() in directives.c.
Neil Boothcbc69f82002-06-05 20:27:12 +00001871
1872 Longer term we should lex the whole line before coming here,
1873 and just copy the expansion. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001874
1875 /* Stop the lexer accepting __VA_ARGS__. */
1876 pfile->state.va_args_ok = 0;
1877 }
1878
1879 /* Clear the fast argument lookup indices. */
1880 for (i = macro->paramc; i-- > 0; )
Zack Weinberg4977bab2002-12-16 18:23:00 +00001881 {
1882 struct cpp_hashnode *node = macro->params[i];
1883 node->flags &= ~ NODE_MACRO_ARG;
1884 node->value = ((union _cpp_hashnode_value *) pfile->macro_buffer)[i];
1885 }
Neil Boothcbc69f82002-06-05 20:27:12 +00001886
1887 if (!ok)
1888 return ok;
1889
Neil Boothc2734e02002-07-26 16:29:31 +00001890 if (node->type == NT_MACRO)
Neil Booth93c803682000-10-28 17:59:06 +00001891 {
Neil Bootha69cbaa2002-07-23 22:57:49 +00001892 if (CPP_OPTION (pfile, warn_unused_macros))
1893 _cpp_warn_if_unused_macro (pfile, node, NULL);
1894
Neil Boothcbc69f82002-06-05 20:27:12 +00001895 if (warn_of_redefinition (pfile, node, macro))
Neil Booth93c803682000-10-28 17:59:06 +00001896 {
Joseph Myers148e4212009-03-29 23:56:07 +01001897 bool warned;
1898 warned = cpp_error_with_line (pfile, CPP_DL_PEDWARN,
1899 pfile->directive_line, 0,
1900 "\"%s\" redefined", NODE_NAME (node));
Neil Booth93c803682000-10-28 17:59:06 +00001901
Joseph Myers148e4212009-03-29 23:56:07 +01001902 if (warned && node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
1903 cpp_error_with_line (pfile, CPP_DL_NOTE,
Neil Boothcbc69f82002-06-05 20:27:12 +00001904 node->value.macro->line, 0,
1905 "this is the location of the previous definition");
Zack Weinberg711b8822000-07-18 00:59:49 +00001906 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001907 }
1908
Neil Boothc2734e02002-07-26 16:29:31 +00001909 if (node->type != NT_VOID)
1910 _cpp_free_definition (node);
1911
Zack Weinberg711b8822000-07-18 00:59:49 +00001912 /* Enter definition in hash table. */
Neil Booth93c803682000-10-28 17:59:06 +00001913 node->type = NT_MACRO;
1914 node->value.macro = macro;
Tom Tromey607f74e2007-11-30 18:24:01 +00001915 if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
Tom Tromeyec460532008-01-22 21:43:49 +00001916 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
1917 /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
1918 in the C standard, as something that one must use in C++.
1919 However DR#593 indicates that these aren't actually mentioned
1920 in the C++ standard. We special-case them anyway. */
1921 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
1922 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
Neil Booth618cdda2001-02-25 09:43:03 +00001923 node->flags |= NODE_WARN;
Zack Weinberg711b8822000-07-18 00:59:49 +00001924
Ben Elliston5950c3c2008-07-14 05:09:48 +00001925 /* If user defines one of the conditional macros, remove the
1926 conditional flag */
1927 node->flags &= ~NODE_CONDITIONAL;
1928
Neil Booth93c803682000-10-28 17:59:06 +00001929 return ok;
Zack Weinberg711b8822000-07-18 00:59:49 +00001930}
1931
Neil Boothd15a58c2002-01-03 18:32:55 +00001932/* Warn if a token in STRING matches one of a function-like MACRO's
1933 parameters. */
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001934static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001935check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
1936 const cpp_string *string)
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001937{
Neil Booth93c803682000-10-28 17:59:06 +00001938 unsigned int i, len;
Neil Booth6338b352003-04-23 22:44:06 +00001939 const uchar *p, *q, *limit;
Kazu Hiratadf383482002-05-22 22:02:16 +00001940
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001941 /* Loop over the string. */
Neil Booth6338b352003-04-23 22:44:06 +00001942 limit = string->text + string->len - 1;
1943 for (p = string->text + 1; p < limit; p = q)
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001944 {
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001945 /* Find the start of an identifier. */
Greg McGary61c16b12000-09-15 21:25:02 +00001946 while (p < limit && !is_idstart (*p))
1947 p++;
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001948
1949 /* Find the end of the identifier. */
1950 q = p;
Greg McGary61c16b12000-09-15 21:25:02 +00001951 while (q < limit && is_idchar (*q))
1952 q++;
Neil Booth93c803682000-10-28 17:59:06 +00001953
1954 len = q - p;
1955
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001956 /* Loop over the function macro arguments to see if the
1957 identifier inside the string matches one of them. */
Neil Booth93c803682000-10-28 17:59:06 +00001958 for (i = 0; i < macro->paramc; i++)
1959 {
1960 const cpp_hashnode *node = macro->params[i];
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001961
Neil Booth2a967f32001-05-20 06:26:45 +00001962 if (NODE_LEN (node) == len
1963 && !memcmp (p, NODE_NAME (node), len))
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001964 {
John David Anglin0527bc42003-11-01 22:56:54 +00001965 cpp_error (pfile, CPP_DL_WARNING,
Zack Weinbergf458d1d2002-02-27 18:48:07 +00001966 "macro argument \"%s\" would be stringified in traditional C",
Neil Boothebef4e82002-04-14 18:42:47 +00001967 NODE_NAME (node));
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001968 break;
1969 }
1970 }
1971 }
1972}
Neil Booth93c803682000-10-28 17:59:06 +00001973
Neil Booth70961712001-06-23 11:34:41 +00001974/* Returns the name, arguments and expansion of a macro, in a format
1975 suitable to be read back in again, and therefore also for DWARF 2
1976 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
1977 Caller is expected to generate the "#define" bit if needed. The
Neil Booth93c803682000-10-28 17:59:06 +00001978 returned text is temporary, and automatically freed later. */
Neil Booth93c803682000-10-28 17:59:06 +00001979const unsigned char *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001980cpp_macro_definition (cpp_reader *pfile, const cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +00001981{
1982 unsigned int i, len;
1983 const cpp_macro *macro = node->value.macro;
1984 unsigned char *buffer;
1985
1986 if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
1987 {
John David Anglin0527bc42003-11-01 22:56:54 +00001988 cpp_error (pfile, CPP_DL_ICE,
Neil Boothebef4e82002-04-14 18:42:47 +00001989 "invalid hash type %d in cpp_macro_definition", node->type);
Neil Booth93c803682000-10-28 17:59:06 +00001990 return 0;
1991 }
1992
1993 /* Calculate length. */
Neil Booth8dc901d2002-05-29 19:30:07 +00001994 len = NODE_LEN (node) + 2; /* ' ' and NUL. */
Neil Booth93c803682000-10-28 17:59:06 +00001995 if (macro->fun_like)
1996 {
Jim Blandy64d08262002-04-05 00:12:40 +00001997 len += 4; /* "()" plus possible final ".." of named
1998 varargs (we have + 1 below). */
Neil Booth93c803682000-10-28 17:59:06 +00001999 for (i = 0; i < macro->paramc; i++)
Jim Blandy64d08262002-04-05 00:12:40 +00002000 len += NODE_LEN (macro->params[i]) + 1; /* "," */
Neil Booth93c803682000-10-28 17:59:06 +00002001 }
2002
Eric Christopher6da55c02005-02-15 23:18:04 +00002003 /* This should match below where we fill in the buffer. */
Neil Booth278c4662002-06-19 05:40:08 +00002004 if (CPP_OPTION (pfile, traditional))
2005 len += _cpp_replacement_text_len (macro);
2006 else
Neil Booth93c803682000-10-28 17:59:06 +00002007 {
Joseph Myersaa508502009-04-19 18:10:56 +01002008 unsigned int count = macro_real_token_count (macro);
2009 for (i = 0; i < count; i++)
Neil Booth278c4662002-06-19 05:40:08 +00002010 {
2011 cpp_token *token = &macro->exp.tokens[i];
Neil Booth93c803682000-10-28 17:59:06 +00002012
Neil Booth278c4662002-06-19 05:40:08 +00002013 if (token->type == CPP_MACRO_ARG)
Joseph Myers9a0c6182009-05-10 15:27:32 +01002014 len += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
Neil Booth278c4662002-06-19 05:40:08 +00002015 else
Eric Christopher6da55c02005-02-15 23:18:04 +00002016 len += cpp_token_len (token);
2017
Neil Booth278c4662002-06-19 05:40:08 +00002018 if (token->flags & STRINGIFY_ARG)
2019 len++; /* "#" */
2020 if (token->flags & PASTE_LEFT)
2021 len += 3; /* " ##" */
Eric Christopher6da55c02005-02-15 23:18:04 +00002022 if (token->flags & PREV_WHITE)
2023 len++; /* " " */
Neil Booth278c4662002-06-19 05:40:08 +00002024 }
Neil Booth93c803682000-10-28 17:59:06 +00002025 }
2026
2027 if (len > pfile->macro_buffer_len)
Alexandre Oliva4b49c362001-01-09 09:30:43 +00002028 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00002029 pfile->macro_buffer = XRESIZEVEC (unsigned char,
2030 pfile->macro_buffer, len);
Alexandre Oliva4b49c362001-01-09 09:30:43 +00002031 pfile->macro_buffer_len = len;
2032 }
Neil Booth70961712001-06-23 11:34:41 +00002033
2034 /* Fill in the buffer. Start with the macro name. */
Neil Booth93c803682000-10-28 17:59:06 +00002035 buffer = pfile->macro_buffer;
Neil Booth70961712001-06-23 11:34:41 +00002036 memcpy (buffer, NODE_NAME (node), NODE_LEN (node));
2037 buffer += NODE_LEN (node);
Neil Booth93c803682000-10-28 17:59:06 +00002038
2039 /* Parameter names. */
2040 if (macro->fun_like)
2041 {
2042 *buffer++ = '(';
2043 for (i = 0; i < macro->paramc; i++)
2044 {
2045 cpp_hashnode *param = macro->params[i];
2046
2047 if (param != pfile->spec_nodes.n__VA_ARGS__)
2048 {
Neil Bootha28c50352001-05-16 22:02:09 +00002049 memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
2050 buffer += NODE_LEN (param);
Neil Booth93c803682000-10-28 17:59:06 +00002051 }
2052
2053 if (i + 1 < macro->paramc)
Kazu Hiratadf383482002-05-22 22:02:16 +00002054 /* Don't emit a space after the comma here; we're trying
2055 to emit a Dwarf-friendly definition, and the Dwarf spec
2056 forbids spaces in the argument list. */
Jim Blandy64d08262002-04-05 00:12:40 +00002057 *buffer++ = ',';
Neil Booth28e0f042000-12-09 12:06:37 +00002058 else if (macro->variadic)
Neil Booth93c803682000-10-28 17:59:06 +00002059 *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
2060 }
2061 *buffer++ = ')';
2062 }
2063
Jim Blandye37b38d2002-03-19 21:43:39 +00002064 /* The Dwarf spec requires a space after the macro name, even if the
2065 definition is the empty string. */
2066 *buffer++ = ' ';
2067
Neil Booth278c4662002-06-19 05:40:08 +00002068 if (CPP_OPTION (pfile, traditional))
2069 buffer = _cpp_copy_replacement_text (macro, buffer);
2070 else if (macro->count)
Neil Booth93c803682000-10-28 17:59:06 +00002071 /* Expansion tokens. */
Neil Booth93c803682000-10-28 17:59:06 +00002072 {
Joseph Myersaa508502009-04-19 18:10:56 +01002073 unsigned int count = macro_real_token_count (macro);
2074 for (i = 0; i < count; i++)
Neil Booth93c803682000-10-28 17:59:06 +00002075 {
Neil Booth601328b2002-05-16 05:53:24 +00002076 cpp_token *token = &macro->exp.tokens[i];
Neil Booth93c803682000-10-28 17:59:06 +00002077
2078 if (token->flags & PREV_WHITE)
2079 *buffer++ = ' ';
2080 if (token->flags & STRINGIFY_ARG)
2081 *buffer++ = '#';
2082
2083 if (token->type == CPP_MACRO_ARG)
2084 {
Neil Bootha28c50352001-05-16 22:02:09 +00002085 memcpy (buffer,
Joseph Myers9a0c6182009-05-10 15:27:32 +01002086 NODE_NAME (macro->params[token->val.macro_arg.arg_no - 1]),
2087 NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]));
2088 buffer += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
Neil Booth93c803682000-10-28 17:59:06 +00002089 }
2090 else
Geoffrey Keating47e20492005-03-12 10:44:06 +00002091 buffer = cpp_spell_token (pfile, token, buffer, false);
Neil Booth93c803682000-10-28 17:59:06 +00002092
2093 if (token->flags & PASTE_LEFT)
2094 {
2095 *buffer++ = ' ';
2096 *buffer++ = '#';
2097 *buffer++ = '#';
2098 /* Next has PREV_WHITE; see _cpp_create_definition. */
2099 }
2100 }
2101 }
2102
2103 *buffer = '\0';
2104 return pfile->macro_buffer;
2105}