blob: f3a4420ae406ac7bc4f47708f0526cb4ec1090b2 [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,
Tom Tromey5ffeb9132007-09-06 16:24:05 +00004 2006, 2007 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
11Free Software Foundation; either version 2, or (at your option) any
12later 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
20along with this program; if not, write to the Free Software
Kelley Cook200031d2005-06-29 02:34:39 +000021Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000044static int enter_macro_context (cpp_reader *, cpp_hashnode *);
45static int builtin_macro (cpp_reader *, cpp_hashnode *);
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000046static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
47 const cpp_token **, unsigned int);
48static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *);
49static cpp_context *next_context (cpp_reader *);
50static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
51static void expand_arg (cpp_reader *, macro_arg *);
52static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
53static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
54static void paste_all_tokens (cpp_reader *, const cpp_token *);
55static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *);
56static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
57 macro_arg *);
58static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *);
59static bool create_iso_definition (cpp_reader *, cpp_macro *);
Neil Booth93c803682000-10-28 17:59:06 +000060
Neil Booth93c803682000-10-28 17:59:06 +000061/* #define directive parsing and handling. */
62
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000063static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
64static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
65static bool warn_of_redefinition (cpp_reader *, const cpp_hashnode *,
66 const cpp_macro *);
67static bool parse_params (cpp_reader *, cpp_macro *);
68static void check_trad_stringification (cpp_reader *, const cpp_macro *,
69 const cpp_string *);
Zack Weinberg711b8822000-07-18 00:59:49 +000070
Neil Bootha69cbaa2002-07-23 22:57:49 +000071/* Emits a warning if NODE is a macro defined in the main file that
72 has not been used. */
73int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000074_cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
75 void *v ATTRIBUTE_UNUSED)
Neil Bootha69cbaa2002-07-23 22:57:49 +000076{
77 if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
78 {
79 cpp_macro *macro = node->value.macro;
80
81 if (!macro->used
Per Bothner50f59cd2004-01-19 21:30:18 -080082 && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line)))
John David Anglin0527bc42003-11-01 22:56:54 +000083 cpp_error_with_line (pfile, CPP_DL_WARNING, macro->line, 0,
Neil Bootha69cbaa2002-07-23 22:57:49 +000084 "macro \"%s\" is not used", NODE_NAME (node));
85 }
86
87 return 1;
88}
89
Neil Booth4ed5bcf2001-09-24 22:53:12 +000090/* Allocates and returns a CPP_STRING token, containing TEXT of length
91 LEN, after null-terminating it. TEXT must be in permanent storage. */
92static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +000093new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
Zack Weinberg711b8822000-07-18 00:59:49 +000094{
Neil Booth4ed5bcf2001-09-24 22:53:12 +000095 cpp_token *token = _cpp_temp_token (pfile);
Zack Weinberg711b8822000-07-18 00:59:49 +000096
Neil Booth4ed5bcf2001-09-24 22:53:12 +000097 text[len] = '\0';
Neil Booth93c803682000-10-28 17:59:06 +000098 token->type = CPP_STRING;
Neil Booth4ed5bcf2001-09-24 22:53:12 +000099 token->val.str.len = len;
100 token->val.str.text = text;
Neil Booth93c803682000-10-28 17:59:06 +0000101 token->flags = 0;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000102 return token;
Neil Booth93c803682000-10-28 17:59:06 +0000103}
104
Neil Booth93c803682000-10-28 17:59:06 +0000105static const char * const monthnames[] =
106{
107 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
108 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
109};
110
Zack Weinberg21b11492004-09-09 19:16:56 +0000111/* Helper function for builtin_macro. Returns the text generated by
112 a builtin macro. */
Neil Booth278c4662002-06-19 05:40:08 +0000113const uchar *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000114_cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +0000115{
Per Bothner12f9df42004-02-11 07:29:30 -0800116 const struct line_map *map;
Neil Booth278c4662002-06-19 05:40:08 +0000117 const uchar *result = NULL;
118 unsigned int number = 1;
Neil Booth644edda2001-10-02 12:57:24 +0000119
Neil Booth93c803682000-10-28 17:59:06 +0000120 switch (node->value.builtin)
121 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000122 default:
John David Anglin0527bc42003-11-01 22:56:54 +0000123 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
Neil Boothebef4e82002-04-14 18:42:47 +0000124 NODE_NAME (node));
Neil Booth278c4662002-06-19 05:40:08 +0000125 break;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000126
Grigory Zagorodnevbe8ac3e2006-02-18 09:25:31 +0000127 case BT_TIMESTAMP:
128 {
129 cpp_buffer *pbuffer = cpp_get_buffer (pfile);
130 if (pbuffer->timestamp == NULL)
131 {
132 /* Initialize timestamp value of the assotiated file. */
133 struct _cpp_file *file = cpp_get_file (pbuffer);
134 if (file)
135 {
136 /* Generate __TIMESTAMP__ string, that represents
137 the date and time of the last modification
138 of the current source file. The string constant
139 looks like "Sun Sep 16 01:03:52 1973". */
140 struct tm *tb = NULL;
141 struct stat *st = _cpp_get_file_stat (file);
142 if (st)
143 tb = localtime (&st->st_mtime);
144 if (tb)
145 {
146 char *str = asctime (tb);
147 size_t len = strlen (str);
148 unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
149 buf[0] = '"';
150 strcpy ((char *) buf + 1, str);
151 buf[len] = '"';
152 pbuffer->timestamp = buf;
153 }
154 else
155 {
156 cpp_errno (pfile, CPP_DL_WARNING,
157 "could not determine file timestamp");
158 pbuffer->timestamp = U"\"??? ??? ?? ??:??:?? ????\"";
159 }
160 }
161 }
162 result = pbuffer->timestamp;
163 }
164 break;
Neil Booth93c803682000-10-28 17:59:06 +0000165 case BT_FILE:
166 case BT_BASE_FILE:
Zack Weinberg711b8822000-07-18 00:59:49 +0000167 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000168 unsigned int len;
Neil Booth0bda4762000-12-11 07:45:16 +0000169 const char *name;
Neil Booth562a5c22002-04-21 18:46:42 +0000170 uchar *buf;
Per Bothner500bee02004-04-22 19:22:27 -0700171 map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line);
Neil Booth93c803682000-10-28 17:59:06 +0000172
Neil Booth0bda4762000-12-11 07:45:16 +0000173 if (node->value.builtin == BT_BASE_FILE)
Neil Boothbb74c962001-08-17 22:23:49 +0000174 while (! MAIN_FILE_P (map))
Per Bothner50f59cd2004-01-19 21:30:18 -0800175 map = INCLUDED_FROM (pfile->line_table, map);
Neil Booth93c803682000-10-28 17:59:06 +0000176
Neil Boothbb74c962001-08-17 22:23:49 +0000177 name = map->to_file;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000178 len = strlen (name);
Andrew Pinski651ed942005-11-04 00:23:01 +0000179 buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
Neil Booth278c4662002-06-19 05:40:08 +0000180 result = buf;
181 *buf = '"';
182 buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
183 *buf++ = '"';
184 *buf = '\0';
Zack Weinberg711b8822000-07-18 00:59:49 +0000185 }
Neil Booth644edda2001-10-02 12:57:24 +0000186 break;
187
Neil Booth93c803682000-10-28 17:59:06 +0000188 case BT_INCLUDE_LEVEL:
Neil Boothd8693c62001-08-21 23:05:12 +0000189 /* The line map depth counts the primary source as level 1, but
190 historically __INCLUDE_DEPTH__ has called the primary source
191 level 0. */
Per Bothner50f59cd2004-01-19 21:30:18 -0800192 number = pfile->line_table->depth - 1;
Neil Booth644edda2001-10-02 12:57:24 +0000193 break;
Neil Booth93c803682000-10-28 17:59:06 +0000194
195 case BT_SPECLINE:
Per Bothner500bee02004-04-22 19:22:27 -0700196 map = &pfile->line_table->maps[pfile->line_table->used-1];
Neil Booth93c803682000-10-28 17:59:06 +0000197 /* If __LINE__ is embedded in a macro, it must expand to the
198 line of the macro's invocation, not its definition.
199 Otherwise things like assert() will not work properly. */
Neil Booth278c4662002-06-19 05:40:08 +0000200 if (CPP_OPTION (pfile, traditional))
Per Bothner500bee02004-04-22 19:22:27 -0700201 number = pfile->line_table->highest_line;
Neil Booth278c4662002-06-19 05:40:08 +0000202 else
Per Bothner12f9df42004-02-11 07:29:30 -0800203 number = pfile->cur_token[-1].src_loc;
204 number = SOURCE_LINE (map, number);
Neil Booth644edda2001-10-02 12:57:24 +0000205 break;
Neil Booth93c803682000-10-28 17:59:06 +0000206
Zack Weinberg5279d732002-05-16 19:03:02 +0000207 /* __STDC__ has the value 1 under normal circumstances.
208 However, if (a) we are in a system header, (b) the option
Zack Weinberg2a1dc0d2002-05-21 21:55:37 +0000209 stdc_0_in_system_headers is true (set by target config), and
210 (c) we are not in strictly conforming mode, then it has the
Jakub Jelinek83900992006-01-23 22:50:15 +0100211 value 0. (b) and (c) are already checked in cpp_init_builtins. */
Neil Booth93c803682000-10-28 17:59:06 +0000212 case BT_STDC:
Jakub Jelinek83900992006-01-23 22:50:15 +0100213 if (cpp_in_system_header (pfile))
214 number = 0;
215 else
216 number = 1;
Neil Booth644edda2001-10-02 12:57:24 +0000217 break;
Neil Booth93c803682000-10-28 17:59:06 +0000218
219 case BT_DATE:
220 case BT_TIME:
Neil Booth278c4662002-06-19 05:40:08 +0000221 if (pfile->date == NULL)
Neil Booth93c803682000-10-28 17:59:06 +0000222 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000223 /* Allocate __DATE__ and __TIME__ strings from permanent
224 storage. We only do this once, and don't generate them
225 at init time, because time() and localtime() are very
226 slow on some systems. */
Zack Weinberg56da7202002-08-02 04:18:16 +0000227 time_t tt;
228 struct tm *tb = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000229
Zack Weinberg56da7202002-08-02 04:18:16 +0000230 /* (time_t) -1 is a legitimate value for "number of seconds
231 since the Epoch", so we have to do a little dance to
232 distinguish that from a genuine error. */
233 errno = 0;
234 tt = time(NULL);
235 if (tt != (time_t)-1 || errno == 0)
236 tb = localtime (&tt);
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000237
Zack Weinberg56da7202002-08-02 04:18:16 +0000238 if (tb)
239 {
240 pfile->date = _cpp_unaligned_alloc (pfile,
241 sizeof ("\"Oct 11 1347\""));
242 sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000243 monthnames[tb->tm_mon], tb->tm_mday,
244 tb->tm_year + 1900);
Zack Weinberg56da7202002-08-02 04:18:16 +0000245
246 pfile->time = _cpp_unaligned_alloc (pfile,
247 sizeof ("\"12:34:56\""));
248 sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
249 tb->tm_hour, tb->tm_min, tb->tm_sec);
250 }
251 else
252 {
John David Anglin0527bc42003-11-01 22:56:54 +0000253 cpp_errno (pfile, CPP_DL_WARNING,
Zack Weinberg56da7202002-08-02 04:18:16 +0000254 "could not determine date and time");
255
256 pfile->date = U"\"??? ?? ????\"";
257 pfile->time = U"\"??:??:??\"";
258 }
Neil Booth93c803682000-10-28 17:59:06 +0000259 }
Neil Booth93c803682000-10-28 17:59:06 +0000260
Neil Booth644edda2001-10-02 12:57:24 +0000261 if (node->value.builtin == BT_DATE)
Neil Booth278c4662002-06-19 05:40:08 +0000262 result = pfile->date;
Neil Booth644edda2001-10-02 12:57:24 +0000263 else
Neil Booth278c4662002-06-19 05:40:08 +0000264 result = pfile->time;
Neil Booth644edda2001-10-02 12:57:24 +0000265 break;
Ollie Wilda7020452007-05-24 20:55:36 +0000266
267 case BT_COUNTER:
Ollie Wildccfc4c92007-07-30 18:29:20 +0000268 if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
269 cpp_error (pfile, CPP_DL_ERROR,
270 "__COUNTER__ expanded inside directive with -fdirectives-only");
Ollie Wilda7020452007-05-24 20:55:36 +0000271 number = pfile->counter++;
272 break;
Neil Booth278c4662002-06-19 05:40:08 +0000273 }
Neil Booth644edda2001-10-02 12:57:24 +0000274
Neil Booth278c4662002-06-19 05:40:08 +0000275 if (result == NULL)
276 {
277 /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */
278 result = _cpp_unaligned_alloc (pfile, 21);
279 sprintf ((char *) result, "%u", number);
280 }
281
282 return result;
283}
284
285/* Convert builtin macros like __FILE__ to a token and push it on the
Zack Weinberg21b11492004-09-09 19:16:56 +0000286 context stack. Also handles _Pragma, for which a new token may not
287 be created. Returns 1 if it generates a new token context, 0 to
Neil Booth278c4662002-06-19 05:40:08 +0000288 return the token to the caller. */
289static int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000290builtin_macro (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth278c4662002-06-19 05:40:08 +0000291{
292 const uchar *buf;
Neil Booth26aea072003-04-19 00:22:51 +0000293 size_t len;
294 char *nbuf;
Neil Booth278c4662002-06-19 05:40:08 +0000295
296 if (node->value.builtin == BT_PRAGMA)
297 {
Neil Booth644edda2001-10-02 12:57:24 +0000298 /* Don't interpret _Pragma within directives. The standard is
299 not clear on this, but to me this makes most sense. */
300 if (pfile->state.in_directive)
301 return 0;
302
Tom Tromey5b9a40d2007-10-31 14:50:13 +0000303 return _cpp_do__Pragma (pfile);
Neil Booth93c803682000-10-28 17:59:06 +0000304 }
Neil Booth644edda2001-10-02 12:57:24 +0000305
Neil Booth278c4662002-06-19 05:40:08 +0000306 buf = _cpp_builtin_macro_text (pfile, node);
Neil Booth26aea072003-04-19 00:22:51 +0000307 len = ustrlen (buf);
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +0000308 nbuf = (char *) alloca (len + 1);
Neil Booth26aea072003-04-19 00:22:51 +0000309 memcpy (nbuf, buf, len);
310 nbuf[len]='\n';
Neil Booth278c4662002-06-19 05:40:08 +0000311
Per Bothner40de9f72003-10-02 07:30:34 +0000312 cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
Neil Booth26aea072003-04-19 00:22:51 +0000313 _cpp_clean_line (pfile);
Neil Booth278c4662002-06-19 05:40:08 +0000314
315 /* Set pfile->cur_token as required by _cpp_lex_direct. */
316 pfile->cur_token = _cpp_temp_token (pfile);
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800317 _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1);
Neil Booth278c4662002-06-19 05:40:08 +0000318 if (pfile->buffer->cur != pfile->buffer->rlimit)
John David Anglin0527bc42003-11-01 22:56:54 +0000319 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
Neil Booth278c4662002-06-19 05:40:08 +0000320 NODE_NAME (node));
321 _cpp_pop_buffer (pfile);
322
Neil Booth644edda2001-10-02 12:57:24 +0000323 return 1;
Neil Booth93c803682000-10-28 17:59:06 +0000324}
325
Neil Boothd15a58c2002-01-03 18:32:55 +0000326/* Copies SRC, of length LEN, to DEST, adding backslashes before all
Andrew Pinski651ed942005-11-04 00:23:01 +0000327 backslashes and double quotes. DEST must be of sufficient size.
328 Returns a pointer to the end of the string. */
Neil Booth562a5c22002-04-21 18:46:42 +0000329uchar *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000330cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
Neil Booth93c803682000-10-28 17:59:06 +0000331{
332 while (len--)
333 {
Neil Booth562a5c22002-04-21 18:46:42 +0000334 uchar c = *src++;
Neil Booth93c803682000-10-28 17:59:06 +0000335
336 if (c == '\\' || c == '"')
337 {
338 *dest++ = '\\';
339 *dest++ = c;
340 }
341 else
Andrew Pinski651ed942005-11-04 00:23:01 +0000342 *dest++ = c;
Neil Booth93c803682000-10-28 17:59:06 +0000343 }
344
345 return dest;
346}
347
Neil Boothd15a58c2002-01-03 18:32:55 +0000348/* Convert a token sequence ARG to a single string token according to
349 the rules of the ISO C #-operator. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000350static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000351stringify_arg (cpp_reader *pfile, macro_arg *arg)
Neil Booth93c803682000-10-28 17:59:06 +0000352{
Neil Booth6338b352003-04-23 22:44:06 +0000353 unsigned char *dest;
Neil Boothece54d52001-09-28 09:40:22 +0000354 unsigned int i, escape_it, backslash_count = 0;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000355 const cpp_token *source = NULL;
Neil Boothece54d52001-09-28 09:40:22 +0000356 size_t len;
Neil Booth93c803682000-10-28 17:59:06 +0000357
Neil Booth6338b352003-04-23 22:44:06 +0000358 if (BUFF_ROOM (pfile->u_buff) < 3)
359 _cpp_extend_buff (pfile, &pfile->u_buff, 3);
360 dest = BUFF_FRONT (pfile->u_buff);
361 *dest++ = '"';
362
Neil Booth93c803682000-10-28 17:59:06 +0000363 /* Loop, reading in the argument's tokens. */
364 for (i = 0; i < arg->count; i++)
365 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000366 const cpp_token *token = arg->first[i];
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000367
368 if (token->type == CPP_PADDING)
369 {
370 if (source == NULL)
371 source = token->val.source;
372 continue;
373 }
Neil Booth93c803682000-10-28 17:59:06 +0000374
375 escape_it = (token->type == CPP_STRING || token->type == CPP_WSTRING
Zack Weinbergcc937582001-03-07 01:32:01 +0000376 || token->type == CPP_CHAR || token->type == CPP_WCHAR);
Neil Booth93c803682000-10-28 17:59:06 +0000377
Neil Boothece54d52001-09-28 09:40:22 +0000378 /* Room for each char being written in octal, initial space and
Neil Booth6338b352003-04-23 22:44:06 +0000379 final quote and NUL. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000380 len = cpp_token_len (token);
Neil Booth93c803682000-10-28 17:59:06 +0000381 if (escape_it)
Neil Booth93c803682000-10-28 17:59:06 +0000382 len *= 4;
Neil Booth6338b352003-04-23 22:44:06 +0000383 len += 3;
Neil Booth93c803682000-10-28 17:59:06 +0000384
Neil Boothece54d52001-09-28 09:40:22 +0000385 if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
Neil Booth93c803682000-10-28 17:59:06 +0000386 {
Neil Boothece54d52001-09-28 09:40:22 +0000387 size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
Neil Booth8c3b2692001-09-30 10:03:11 +0000388 _cpp_extend_buff (pfile, &pfile->u_buff, len);
Neil Boothece54d52001-09-28 09:40:22 +0000389 dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
Neil Booth93c803682000-10-28 17:59:06 +0000390 }
391
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000392 /* Leading white space? */
Neil Booth6338b352003-04-23 22:44:06 +0000393 if (dest - 1 != BUFF_FRONT (pfile->u_buff))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000394 {
395 if (source == NULL)
396 source = token;
397 if (source->flags & PREV_WHITE)
398 *dest++ = ' ';
399 }
400 source = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000401
402 if (escape_it)
403 {
Neil Boothece54d52001-09-28 09:40:22 +0000404 _cpp_buff *buff = _cpp_get_buff (pfile, len);
405 unsigned char *buf = BUFF_FRONT (buff);
Geoffrey Keating47e20492005-03-12 10:44:06 +0000406 len = cpp_spell_token (pfile, token, buf, true) - buf;
Zack Weinbergdcc229e2002-03-14 18:17:18 +0000407 dest = cpp_quote_string (dest, buf, len);
Neil Boothece54d52001-09-28 09:40:22 +0000408 _cpp_release_buff (pfile, buff);
Neil Booth93c803682000-10-28 17:59:06 +0000409 }
410 else
Geoffrey Keating47e20492005-03-12 10:44:06 +0000411 dest = cpp_spell_token (pfile, token, dest, true);
Neil Booth93c803682000-10-28 17:59:06 +0000412
Neil Booth10676942003-04-22 19:28:00 +0000413 if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
Neil Booth93c803682000-10-28 17:59:06 +0000414 backslash_count++;
415 else
416 backslash_count = 0;
417 }
418
419 /* Ignore the final \ of invalid string literals. */
420 if (backslash_count & 1)
421 {
John David Anglin0527bc42003-11-01 22:56:54 +0000422 cpp_error (pfile, CPP_DL_WARNING,
Neil Boothebef4e82002-04-14 18:42:47 +0000423 "invalid string literal, ignoring final '\\'");
Neil Boothece54d52001-09-28 09:40:22 +0000424 dest--;
Neil Booth93c803682000-10-28 17:59:06 +0000425 }
426
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000427 /* Commit the memory, including NUL, and return the token. */
Neil Booth6338b352003-04-23 22:44:06 +0000428 *dest++ = '"';
Neil Boothece54d52001-09-28 09:40:22 +0000429 len = dest - BUFF_FRONT (pfile->u_buff);
430 BUFF_FRONT (pfile->u_buff) = dest + 1;
431 return new_string_token (pfile, dest - len, len);
Neil Booth93c803682000-10-28 17:59:06 +0000432}
433
Kazu Hiratada7d8302002-09-22 02:03:17 +0000434/* Try to paste two tokens. On success, return nonzero. In any
Neil Boothc9e7a602001-09-27 12:59:38 +0000435 case, PLHS is updated to point to the pasted token, which is
436 guaranteed to not have the PASTE_LEFT flag set. */
437static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000438paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs)
Neil Boothd63eefb2000-11-20 23:59:26 +0000439{
Jakub Jelinekde000d22006-10-12 11:25:59 +0200440 unsigned char *buf, *end, *lhsend;
Tom Tromeyfca35e12007-05-02 19:33:44 +0000441 cpp_token *lhs;
Neil Boothc9e7a602001-09-27 12:59:38 +0000442 unsigned int len;
Neil Boothd63eefb2000-11-20 23:59:26 +0000443
Tom Tromeyfca35e12007-05-02 19:33:44 +0000444 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +0000445 buf = (unsigned char *) alloca (len);
Tom Tromeyfca35e12007-05-02 19:33:44 +0000446 end = lhsend = cpp_spell_token (pfile, *plhs, buf, false);
Neil Boothd63eefb2000-11-20 23:59:26 +0000447
Neil Boothc9e7a602001-09-27 12:59:38 +0000448 /* Avoid comment headers, since they are still processed in stage 3.
449 It is simpler to insert a space here, rather than modifying the
450 lexer to ignore comments in some circumstances. Simply returning
451 false doesn't work, since we want to clear the PASTE_LEFT flag. */
Tom Tromeyfca35e12007-05-02 19:33:44 +0000452 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
Neil Boothc9e7a602001-09-27 12:59:38 +0000453 *end++ = ' ';
Tom Tromeyf373b442007-11-01 18:20:48 +0000454 /* In one obscure case we might see padding here. */
455 if (rhs->type != CPP_PADDING)
456 end = cpp_spell_token (pfile, rhs, end, false);
Neil Booth26aea072003-04-19 00:22:51 +0000457 *end = '\n';
Neil Boothd63eefb2000-11-20 23:59:26 +0000458
Per Bothner40de9f72003-10-02 07:30:34 +0000459 cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
Neil Booth26aea072003-04-19 00:22:51 +0000460 _cpp_clean_line (pfile);
Neil Boothd63eefb2000-11-20 23:59:26 +0000461
Neil Boothc9e7a602001-09-27 12:59:38 +0000462 /* Set pfile->cur_token as required by _cpp_lex_direct. */
463 pfile->cur_token = _cpp_temp_token (pfile);
Tom Tromeyfca35e12007-05-02 19:33:44 +0000464 lhs = _cpp_lex_direct (pfile);
Jakub Jelinekde000d22006-10-12 11:25:59 +0200465 if (pfile->buffer->cur != pfile->buffer->rlimit)
466 {
Tom Tromeyfca35e12007-05-02 19:33:44 +0000467 source_location saved_loc = lhs->src_loc;
468
Jakub Jelinekde000d22006-10-12 11:25:59 +0200469 _cpp_pop_buffer (pfile);
470 _cpp_backup_tokens (pfile, 1);
471 *lhsend = '\0';
Neil Boothd63eefb2000-11-20 23:59:26 +0000472
Tom Tromeyfca35e12007-05-02 19:33:44 +0000473 /* We have to remove the PASTE_LEFT flag from the old lhs, but
474 we want to keep the new location. */
475 *lhs = **plhs;
476 *plhs = lhs;
477 lhs->src_loc = saved_loc;
478 lhs->flags &= ~PASTE_LEFT;
479
Jakub Jelinekde000d22006-10-12 11:25:59 +0200480 /* Mandatory error for all apart from assembler. */
481 if (CPP_OPTION (pfile, lang) != CLK_ASM)
482 cpp_error (pfile, CPP_DL_ERROR,
483 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
484 buf, cpp_token_as_text (pfile, rhs));
485 return false;
486 }
487
Tom Tromeyfca35e12007-05-02 19:33:44 +0000488 *plhs = lhs;
Jakub Jelinekde000d22006-10-12 11:25:59 +0200489 _cpp_pop_buffer (pfile);
490 return true;
Neil Boothd63eefb2000-11-20 23:59:26 +0000491}
492
Neil Boothd15a58c2002-01-03 18:32:55 +0000493/* Handles an arbitrarily long sequence of ## operators, with initial
494 operand LHS. This implementation is left-associative,
495 non-recursive, and finishes a paste before handling succeeding
496 ones. If a paste fails, we back up to the RHS of the failing ##
497 operator before pushing the context containing the result of prior
498 successful pastes, with the effect that the RHS appears in the
499 output stream after the pasted LHS normally. */
Neil Booth93c803682000-10-28 17:59:06 +0000500static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000501paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
Neil Booth93c803682000-10-28 17:59:06 +0000502{
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000503 const cpp_token *rhs;
504 cpp_context *context = pfile->context;
505
Neil Booth93c803682000-10-28 17:59:06 +0000506 do
507 {
508 /* Take the token directly from the current context. We can do
509 this, because we are in the replacement list of either an
510 object-like macro, or a function-like macro with arguments
511 inserted. In either case, the constraints to #define
Neil Boothd63eefb2000-11-20 23:59:26 +0000512 guarantee we have at least one more token. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000513 if (context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +0000514 rhs = FIRST (context).token++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000515 else
Neil Booth82eda772002-06-04 13:07:06 +0000516 rhs = *FIRST (context).ptoken++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000517
518 if (rhs->type == CPP_PADDING)
Tom Tromeyf373b442007-11-01 18:20:48 +0000519 {
520 if (rhs->flags & PASTE_LEFT)
521 abort ();
522 }
Neil Boothc9e7a602001-09-27 12:59:38 +0000523 if (!paste_tokens (pfile, &lhs, rhs))
Jakub Jelinekde000d22006-10-12 11:25:59 +0200524 break;
Neil Booth93c803682000-10-28 17:59:06 +0000525 }
526 while (rhs->flags & PASTE_LEFT);
527
Neil Boothc9e7a602001-09-27 12:59:38 +0000528 /* Put the resulting token in its own context. */
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800529 _cpp_push_token_context (pfile, NULL, lhs, 1);
Neil Booth93c803682000-10-28 17:59:06 +0000530}
531
Neil Booth1ce676a2002-06-09 20:04:17 +0000532/* Returns TRUE if the number of arguments ARGC supplied in an
533 invocation of the MACRO referenced by NODE is valid. An empty
534 invocation to a macro with no parameters should pass ARGC as zero.
535
536 Note that MACRO cannot necessarily be deduced from NODE, in case
537 NODE was redefined whilst collecting arguments. */
538bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000539_cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
Neil Booth1ce676a2002-06-09 20:04:17 +0000540{
541 if (argc == macro->paramc)
542 return true;
543
544 if (argc < macro->paramc)
545 {
546 /* As an extension, a rest argument is allowed to not appear in
547 the invocation at all.
548 e.g. #define debug(format, args...) something
549 debug("string");
550
551 This is exactly the same as if there had been an empty rest
552 argument - debug("string", ). */
553
554 if (argc + 1 == macro->paramc && macro->variadic)
555 {
556 if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
John David Anglin0527bc42003-11-01 22:56:54 +0000557 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Booth1ce676a2002-06-09 20:04:17 +0000558 "ISO C99 requires rest arguments to be used");
559 return true;
560 }
561
John David Anglin0527bc42003-11-01 22:56:54 +0000562 cpp_error (pfile, CPP_DL_ERROR,
Neil Booth1ce676a2002-06-09 20:04:17 +0000563 "macro \"%s\" requires %u arguments, but only %u given",
564 NODE_NAME (node), macro->paramc, argc);
565 }
566 else
John David Anglin0527bc42003-11-01 22:56:54 +0000567 cpp_error (pfile, CPP_DL_ERROR,
Neil Booth1ce676a2002-06-09 20:04:17 +0000568 "macro \"%s\" passed %u arguments, but takes just %u",
569 NODE_NAME (node), argc, macro->paramc);
570
571 return false;
572}
573
Neil Boothd15a58c2002-01-03 18:32:55 +0000574/* Reads and returns the arguments to a function-like macro
575 invocation. Assumes the opening parenthesis has been processed.
576 If there is an error, emits an appropriate diagnostic and returns
577 NULL. Each argument is terminated by a CPP_EOF token, for the
578 future benefit of expand_arg(). */
Neil Boothb8af0ca2001-09-26 17:52:50 +0000579static _cpp_buff *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000580collect_args (cpp_reader *pfile, const cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +0000581{
Neil Boothb8af0ca2001-09-26 17:52:50 +0000582 _cpp_buff *buff, *base_buff;
583 cpp_macro *macro;
584 macro_arg *args, *arg;
585 const cpp_token *token;
586 unsigned int argc;
Neil Booth93c803682000-10-28 17:59:06 +0000587
Neil Boothb8af0ca2001-09-26 17:52:50 +0000588 macro = node->value.macro;
589 if (macro->paramc)
590 argc = macro->paramc;
591 else
592 argc = 1;
593 buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *)
594 + sizeof (macro_arg)));
595 base_buff = buff;
596 args = (macro_arg *) buff->base;
597 memset (args, 0, argc * sizeof (macro_arg));
Neil Boothece54d52001-09-28 09:40:22 +0000598 buff->cur = (unsigned char *) &args[argc];
Neil Boothb8af0ca2001-09-26 17:52:50 +0000599 arg = args, argc = 0;
Neil Booth93c803682000-10-28 17:59:06 +0000600
Neil Boothb8af0ca2001-09-26 17:52:50 +0000601 /* Collect the tokens making up each argument. We don't yet know
602 how many arguments have been supplied, whether too many or too
603 few. Hence the slightly bizarre usage of "argc" and "arg". */
604 do
Neil Booth93c803682000-10-28 17:59:06 +0000605 {
Neil Boothb8af0ca2001-09-26 17:52:50 +0000606 unsigned int paren_depth = 0;
607 unsigned int ntokens = 0;
608
Neil Booth93c803682000-10-28 17:59:06 +0000609 argc++;
Neil Boothb8af0ca2001-09-26 17:52:50 +0000610 arg->first = (const cpp_token **) buff->cur;
Neil Booth93c803682000-10-28 17:59:06 +0000611
Neil Boothb8af0ca2001-09-26 17:52:50 +0000612 for (;;)
613 {
614 /* Require space for 2 new tokens (including a CPP_EOF). */
Neil Boothece54d52001-09-28 09:40:22 +0000615 if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
Neil Boothb8af0ca2001-09-26 17:52:50 +0000616 {
Neil Booth8c3b2692001-09-30 10:03:11 +0000617 buff = _cpp_append_extend_buff (pfile, buff,
618 1000 * sizeof (cpp_token *));
Neil Boothb8af0ca2001-09-26 17:52:50 +0000619 arg->first = (const cpp_token **) buff->cur;
620 }
Neil Booth93c803682000-10-28 17:59:06 +0000621
Neil Boothb8af0ca2001-09-26 17:52:50 +0000622 token = cpp_get_token (pfile);
623
624 if (token->type == CPP_PADDING)
625 {
626 /* Drop leading padding. */
627 if (ntokens == 0)
628 continue;
629 }
630 else if (token->type == CPP_OPEN_PAREN)
631 paren_depth++;
632 else if (token->type == CPP_CLOSE_PAREN)
633 {
634 if (paren_depth-- == 0)
635 break;
636 }
637 else if (token->type == CPP_COMMA)
638 {
639 /* A comma does not terminate an argument within
640 parentheses or as part of a variable argument. */
641 if (paren_depth == 0
642 && ! (macro->variadic && argc == macro->paramc))
643 break;
644 }
645 else if (token->type == CPP_EOF
646 || (token->type == CPP_HASH && token->flags & BOL))
647 break;
648
649 arg->first[ntokens++] = token;
650 }
651
652 /* Drop trailing padding. */
653 while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
654 ntokens--;
655
656 arg->count = ntokens;
657 arg->first[ntokens] = &pfile->eof;
658
659 /* Terminate the argument. Excess arguments loop back and
660 overwrite the final legitimate argument, before failing. */
661 if (argc <= macro->paramc)
662 {
Neil Boothece54d52001-09-28 09:40:22 +0000663 buff->cur = (unsigned char *) &arg->first[ntokens + 1];
Neil Boothb8af0ca2001-09-26 17:52:50 +0000664 if (argc != macro->paramc)
665 arg++;
666 }
Neil Booth93c803682000-10-28 17:59:06 +0000667 }
Neil Boothe808ec92002-02-27 07:24:53 +0000668 while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
Neil Booth93c803682000-10-28 17:59:06 +0000669
Neil Boothe808ec92002-02-27 07:24:53 +0000670 if (token->type == CPP_EOF)
Neil Booth93c803682000-10-28 17:59:06 +0000671 {
Neil Boothece54d52001-09-28 09:40:22 +0000672 /* We still need the CPP_EOF to end directives, and to end
673 pre-expansion of a macro argument. Step back is not
674 unconditional, since we don't want to return a CPP_EOF to our
675 callers at the end of an -include-d file. */
Neil Boothe808ec92002-02-27 07:24:53 +0000676 if (pfile->context->prev || pfile->state.in_directive)
Neil Boothb8af0ca2001-09-26 17:52:50 +0000677 _cpp_backup_tokens (pfile, 1);
John David Anglin0527bc42003-11-01 22:56:54 +0000678 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +0000679 "unterminated argument list invoking macro \"%s\"",
Neil Bootha28c50352001-05-16 22:02:09 +0000680 NODE_NAME (node));
Neil Booth93c803682000-10-28 17:59:06 +0000681 }
Neil Booth1ce676a2002-06-09 20:04:17 +0000682 else
Neil Booth93c803682000-10-28 17:59:06 +0000683 {
Neil Booth1ce676a2002-06-09 20:04:17 +0000684 /* A single empty argument is counted as no argument. */
685 if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
686 argc = 0;
687 if (_cpp_arguments_ok (pfile, macro, node, argc))
Neil Booth58551c22002-08-06 20:35:46 +0000688 {
689 /* GCC has special semantics for , ## b where b is a varargs
690 parameter: we remove the comma if b was omitted entirely.
691 If b was merely an empty argument, the comma is retained.
692 If the macro takes just one (varargs) parameter, then we
693 retain the comma only if we are standards conforming.
694
695 If FIRST is NULL replace_args () swallows the comma. */
696 if (macro->variadic && (argc < macro->paramc
697 || (argc == 1 && args[0].count == 0
698 && !CPP_OPTION (pfile, std))))
699 args[macro->paramc - 1].first = NULL;
700 return base_buff;
701 }
Neil Booth93c803682000-10-28 17:59:06 +0000702 }
703
Neil Booth1ce676a2002-06-09 20:04:17 +0000704 /* An error occurred. */
Neil Boothb8af0ca2001-09-26 17:52:50 +0000705 _cpp_release_buff (pfile, base_buff);
706 return NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000707}
708
Neil Boothd6da8362001-10-08 06:15:14 +0000709/* Search for an opening parenthesis to the macro of NODE, in such a
710 way that, if none is found, we don't lose the information in any
711 intervening padding tokens. If we find the parenthesis, collect
712 the arguments and return the buffer containing them. */
713static _cpp_buff *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000714funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +0000715{
Neil Boothd6da8362001-10-08 06:15:14 +0000716 const cpp_token *token, *padding = NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000717
Neil Boothd6da8362001-10-08 06:15:14 +0000718 for (;;)
Neil Boothbdcbe492001-09-13 20:05:17 +0000719 {
Neil Boothd6da8362001-10-08 06:15:14 +0000720 token = cpp_get_token (pfile);
721 if (token->type != CPP_PADDING)
722 break;
723 if (padding == NULL
724 || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
725 padding = token;
Neil Boothbdcbe492001-09-13 20:05:17 +0000726 }
Neil Booth93c803682000-10-28 17:59:06 +0000727
Neil Boothd6da8362001-10-08 06:15:14 +0000728 if (token->type == CPP_OPEN_PAREN)
Neil Booth93c803682000-10-28 17:59:06 +0000729 {
Neil Boothd6da8362001-10-08 06:15:14 +0000730 pfile->state.parsing_args = 2;
731 return collect_args (pfile, node);
Neil Booth93c803682000-10-28 17:59:06 +0000732 }
733
Neil Booth9ac3b1b2002-04-21 16:17:55 +0000734 /* CPP_EOF can be the end of macro arguments, or the end of the
735 file. We mustn't back up over the latter. Ugh. */
736 if (token->type != CPP_EOF || token == &pfile->eof)
737 {
738 /* Back up. We may have skipped padding, in which case backing
739 up more than one token when expanding macros is in general
740 too difficult. We re-insert it in its own context. */
741 _cpp_backup_tokens (pfile, 1);
742 if (padding)
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800743 _cpp_push_token_context (pfile, NULL, padding, 1);
Neil Booth9ac3b1b2002-04-21 16:17:55 +0000744 }
Neil Boothd6da8362001-10-08 06:15:14 +0000745
746 return NULL;
Neil Booth93c803682000-10-28 17:59:06 +0000747}
748
Neil Boothd15a58c2002-01-03 18:32:55 +0000749/* Push the context of a macro with hash entry NODE onto the context
750 stack. If we can successfully expand the macro, we push a context
751 containing its yet-to-be-rescanned replacement list and return one.
752 Otherwise, we don't push a context and return zero. */
Neil Booth93c803682000-10-28 17:59:06 +0000753static int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000754enter_macro_context (cpp_reader *pfile, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +0000755{
Neil Boothd15a58c2002-01-03 18:32:55 +0000756 /* The presence of a macro invalidates a file's controlling macro. */
Neil Booth644edda2001-10-02 12:57:24 +0000757 pfile->mi_valid = false;
758
Neil Booth36207112002-05-24 19:26:30 +0000759 pfile->state.angled_headers = false;
760
Neil Boothd15a58c2002-01-03 18:32:55 +0000761 /* Handle standard macros. */
Neil Booth644edda2001-10-02 12:57:24 +0000762 if (! (node->flags & NODE_BUILTIN))
Neil Booth93c803682000-10-28 17:59:06 +0000763 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000764 cpp_macro *macro = node->value.macro;
765
Neil Boothd6da8362001-10-08 06:15:14 +0000766 if (macro->fun_like)
767 {
768 _cpp_buff *buff;
769
770 pfile->state.prevent_expansion++;
771 pfile->keep_tokens++;
772 pfile->state.parsing_args = 1;
773 buff = funlike_invocation_p (pfile, node);
774 pfile->state.parsing_args = 0;
775 pfile->keep_tokens--;
776 pfile->state.prevent_expansion--;
777
778 if (buff == NULL)
779 {
780 if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
John David Anglin0527bc42003-11-01 22:56:54 +0000781 cpp_error (pfile, CPP_DL_WARNING,
Neil Boothd6da8362001-10-08 06:15:14 +0000782 "function-like macro \"%s\" must be used with arguments in traditional C",
Neil Boothebef4e82002-04-14 18:42:47 +0000783 NODE_NAME (node));
Neil Boothd6da8362001-10-08 06:15:14 +0000784
785 return 0;
786 }
787
Neil Boothe808ec92002-02-27 07:24:53 +0000788 if (macro->paramc > 0)
789 replace_args (pfile, node, macro, (macro_arg *) buff->base);
Neil Boothd6da8362001-10-08 06:15:14 +0000790 _cpp_release_buff (pfile, buff);
791 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000792
793 /* Disable the macro within its expansion. */
Neil Booth644edda2001-10-02 12:57:24 +0000794 node->flags |= NODE_DISABLED;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000795
Neil Bootha69cbaa2002-07-23 22:57:49 +0000796 macro->used = 1;
797
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000798 if (macro->paramc == 0)
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800799 _cpp_push_token_context (pfile, node, macro->exp.tokens, macro->count);
Neil Booth644edda2001-10-02 12:57:24 +0000800
801 return 1;
Neil Booth93c803682000-10-28 17:59:06 +0000802 }
Neil Booth644edda2001-10-02 12:57:24 +0000803
Neil Boothd15a58c2002-01-03 18:32:55 +0000804 /* Handle built-in macros and the _Pragma operator. */
Neil Booth644edda2001-10-02 12:57:24 +0000805 return builtin_macro (pfile, node);
Zack Weinberg711b8822000-07-18 00:59:49 +0000806}
807
Neil Boothd15a58c2002-01-03 18:32:55 +0000808/* Replace the parameters in a function-like macro of NODE with the
809 actual ARGS, and place the result in a newly pushed token context.
810 Expand each argument before replacing, unless it is operated upon
811 by the # or ## operators. */
Neil Booth93c803682000-10-28 17:59:06 +0000812static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000813replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args)
Neil Booth93c803682000-10-28 17:59:06 +0000814{
815 unsigned int i, total;
816 const cpp_token *src, *limit;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000817 const cpp_token **dest, **first;
Neil Booth93c803682000-10-28 17:59:06 +0000818 macro_arg *arg;
Neil Booth1e013d22001-09-26 21:44:35 +0000819 _cpp_buff *buff;
Neil Booth93c803682000-10-28 17:59:06 +0000820
Neil Booth93c803682000-10-28 17:59:06 +0000821 /* First, fully macro-expand arguments, calculating the number of
Neil Booth1e013d22001-09-26 21:44:35 +0000822 tokens in the final expansion as we go. The ordering of the if
823 statements below is subtle; we must handle stringification before
824 pasting. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000825 total = macro->count;
Neil Booth601328b2002-05-16 05:53:24 +0000826 limit = macro->exp.tokens + macro->count;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000827
Neil Booth601328b2002-05-16 05:53:24 +0000828 for (src = macro->exp.tokens; src < limit; src++)
Neil Booth93c803682000-10-28 17:59:06 +0000829 if (src->type == CPP_MACRO_ARG)
830 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000831 /* Leading and trailing padding tokens. */
832 total += 2;
833
Neil Booth93c803682000-10-28 17:59:06 +0000834 /* We have an argument. If it is not being stringified or
835 pasted it is macro-replaced before insertion. */
Neil Booth6c53ebf2000-11-06 18:43:32 +0000836 arg = &args[src->val.arg_no - 1];
Neil Booth4c2b6472000-11-11 13:19:01 +0000837
Neil Booth93c803682000-10-28 17:59:06 +0000838 if (src->flags & STRINGIFY_ARG)
839 {
840 if (!arg->stringified)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000841 arg->stringified = stringify_arg (pfile, arg);
Neil Booth93c803682000-10-28 17:59:06 +0000842 }
843 else if ((src->flags & PASTE_LEFT)
Neil Booth601328b2002-05-16 05:53:24 +0000844 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
Neil Booth93c803682000-10-28 17:59:06 +0000845 total += arg->count - 1;
846 else
847 {
848 if (!arg->expanded)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000849 expand_arg (pfile, arg);
Neil Booth93c803682000-10-28 17:59:06 +0000850 total += arg->expanded_count - 1;
851 }
852 }
853
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000854 /* Now allocate space for the expansion, copy the tokens and replace
855 the arguments. */
Neil Booth1e013d22001-09-26 21:44:35 +0000856 buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *));
857 first = (const cpp_token **) buff->base;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000858 dest = first;
Neil Booth93c803682000-10-28 17:59:06 +0000859
Neil Booth601328b2002-05-16 05:53:24 +0000860 for (src = macro->exp.tokens; src < limit; src++)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000861 {
862 unsigned int count;
863 const cpp_token **from, **paste_flag;
Neil Booth93c803682000-10-28 17:59:06 +0000864
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000865 if (src->type != CPP_MACRO_ARG)
866 {
867 *dest++ = src;
868 continue;
869 }
870
871 paste_flag = 0;
872 arg = &args[src->val.arg_no - 1];
873 if (src->flags & STRINGIFY_ARG)
874 count = 1, from = &arg->stringified;
875 else if (src->flags & PASTE_LEFT)
876 count = arg->count, from = arg->first;
Neil Booth601328b2002-05-16 05:53:24 +0000877 else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000878 {
Neil Booth93c803682000-10-28 17:59:06 +0000879 count = arg->count, from = arg->first;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000880 if (dest != first)
881 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000882 if (dest[-1]->type == CPP_COMMA
883 && macro->variadic
884 && src->val.arg_no == macro->paramc)
885 {
Neil Booth58551c22002-08-06 20:35:46 +0000886 /* Swallow a pasted comma if from == NULL, otherwise
887 drop the paste flag. */
888 if (from == NULL)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000889 dest--;
890 else
891 paste_flag = dest - 1;
892 }
893 /* Remove the paste flag if the RHS is a placemarker. */
894 else if (count == 0)
895 paste_flag = dest - 1;
896 }
897 }
898 else
899 count = arg->expanded_count, from = arg->expanded;
Neil Booth93c803682000-10-28 17:59:06 +0000900
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000901 /* Padding on the left of an argument (unless RHS of ##). */
Zack Weinberga8d0dda2003-02-21 18:06:30 +0000902 if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
Neil Booth601328b2002-05-16 05:53:24 +0000903 && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000904 *dest++ = padding_token (pfile, src);
Neil Booth93c803682000-10-28 17:59:06 +0000905
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000906 if (count)
907 {
908 memcpy (dest, from, count * sizeof (cpp_token *));
909 dest += count;
Neil Booth93c803682000-10-28 17:59:06 +0000910
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000911 /* With a non-empty argument on the LHS of ##, the last
912 token should be flagged PASTE_LEFT. */
913 if (src->flags & PASTE_LEFT)
914 paste_flag = dest - 1;
915 }
Neil Booth4c2b6472000-11-11 13:19:01 +0000916
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000917 /* Avoid paste on RHS (even case count == 0). */
918 if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
919 *dest++ = &pfile->avoid_paste;
Neil Booth26ec42e2001-01-28 11:22:23 +0000920
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000921 /* Add a new paste flag, or remove an unwanted one. */
922 if (paste_flag)
923 {
924 cpp_token *token = _cpp_temp_token (pfile);
925 token->type = (*paste_flag)->type;
Jakub Jelinek73096712005-03-04 16:33:23 +0100926 token->val = (*paste_flag)->val;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000927 if (src->flags & PASTE_LEFT)
928 token->flags = (*paste_flag)->flags | PASTE_LEFT;
929 else
930 token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
931 *paste_flag = token;
932 }
933 }
Neil Booth4c2b6472000-11-11 13:19:01 +0000934
Neil Booth93c803682000-10-28 17:59:06 +0000935 /* Free the expanded arguments. */
936 for (i = 0; i < macro->paramc; i++)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000937 if (args[i].expanded)
938 free (args[i].expanded);
939
Neil Booth644edda2001-10-02 12:57:24 +0000940 push_ptoken_context (pfile, node, buff, first, dest - first);
Neil Booth93c803682000-10-28 17:59:06 +0000941}
942
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000943/* Return a special padding token, with padding inherited from SOURCE. */
944static const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000945padding_token (cpp_reader *pfile, const cpp_token *source)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000946{
947 cpp_token *result = _cpp_temp_token (pfile);
948
949 result->type = CPP_PADDING;
Paolo Bonzinibe0f1e52005-02-14 08:52:24 +0000950
951 /* Data in GCed data structures cannot be made const so far, so we
952 need a cast here. */
953 result->val.source = (cpp_token *) source;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000954 result->flags = 0;
955 return result;
956}
957
Neil Boothd15a58c2002-01-03 18:32:55 +0000958/* Get a new uninitialized context. Create a new one if we cannot
959 re-use an old one. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000960static cpp_context *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000961next_context (cpp_reader *pfile)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000962{
963 cpp_context *result = pfile->context->next;
964
965 if (result == 0)
966 {
Bernardo Innocenti72bb2c32004-07-24 20:04:42 +0200967 result = XNEW (cpp_context);
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000968 result->prev = pfile->context;
969 result->next = 0;
970 pfile->context->next = result;
971 }
972
973 pfile->context = result;
974 return result;
975}
976
977/* Push a list of pointers to tokens. */
978static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +0000979push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
980 const cpp_token **first, unsigned int count)
Neil Booth93c803682000-10-28 17:59:06 +0000981{
982 cpp_context *context = next_context (pfile);
Neil Booth93c803682000-10-28 17:59:06 +0000983
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000984 context->direct_p = false;
985 context->macro = macro;
Neil Booth1e013d22001-09-26 21:44:35 +0000986 context->buff = buff;
Neil Booth82eda772002-06-04 13:07:06 +0000987 FIRST (context).ptoken = first;
988 LAST (context).ptoken = first + count;
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000989}
990
991/* Push a list of tokens. */
Richard Hendersonbc4071d2006-01-04 08:33:38 -0800992void
993_cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
994 const cpp_token *first, unsigned int count)
Neil Booth4ed5bcf2001-09-24 22:53:12 +0000995{
996 cpp_context *context = next_context (pfile);
997
998 context->direct_p = true;
999 context->macro = macro;
Neil Booth1e013d22001-09-26 21:44:35 +00001000 context->buff = NULL;
Neil Booth82eda772002-06-04 13:07:06 +00001001 FIRST (context).token = first;
1002 LAST (context).token = first + count;
Neil Booth93c803682000-10-28 17:59:06 +00001003}
1004
Neil Boothcbc69f82002-06-05 20:27:12 +00001005/* Push a traditional macro's replacement text. */
1006void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001007_cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
1008 const uchar *start, size_t len)
Neil Boothcbc69f82002-06-05 20:27:12 +00001009{
1010 cpp_context *context = next_context (pfile);
1011
1012 context->direct_p = true;
1013 context->macro = macro;
1014 context->buff = NULL;
1015 CUR (context) = start;
Neil Booth1ce676a2002-06-09 20:04:17 +00001016 RLIMIT (context) = start + len;
Neil Booth974c43f2002-06-13 06:25:28 +00001017 macro->flags |= NODE_DISABLED;
Neil Boothcbc69f82002-06-05 20:27:12 +00001018}
1019
Neil Boothd15a58c2002-01-03 18:32:55 +00001020/* Expand an argument ARG before replacing parameters in a
1021 function-like macro. This works by pushing a context with the
1022 argument's tokens, and then expanding that into a temporary buffer
1023 as if it were a normal part of the token stream. collect_args()
1024 has terminated the argument's tokens with a CPP_EOF so that we know
1025 when we have fully expanded the argument. */
Neil Booth93c803682000-10-28 17:59:06 +00001026static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001027expand_arg (cpp_reader *pfile, macro_arg *arg)
Neil Booth93c803682000-10-28 17:59:06 +00001028{
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001029 unsigned int capacity;
Neil Booth56941bf2002-09-20 19:44:09 +00001030 bool saved_warn_trad;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001031
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001032 if (arg->count == 0)
1033 return;
Neil Booth93c803682000-10-28 17:59:06 +00001034
Neil Booth56941bf2002-09-20 19:44:09 +00001035 /* Don't warn about funlike macros when pre-expanding. */
1036 saved_warn_trad = CPP_WTRADITIONAL (pfile);
1037 CPP_WTRADITIONAL (pfile) = 0;
1038
Neil Booth93c803682000-10-28 17:59:06 +00001039 /* Loop, reading in the arguments. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001040 capacity = 256;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001041 arg->expanded = XNEWVEC (const cpp_token *, capacity);
Neil Booth93c803682000-10-28 17:59:06 +00001042
Neil Booth1e013d22001-09-26 21:44:35 +00001043 push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1);
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001044 for (;;)
Neil Booth93c803682000-10-28 17:59:06 +00001045 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001046 const cpp_token *token;
1047
1048 if (arg->expanded_count + 1 >= capacity)
Neil Booth93c803682000-10-28 17:59:06 +00001049 {
1050 capacity *= 2;
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001051 arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded,
1052 capacity);
Neil Booth93c803682000-10-28 17:59:06 +00001053 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001054
1055 token = cpp_get_token (pfile);
1056
1057 if (token->type == CPP_EOF)
1058 break;
1059
1060 arg->expanded[arg->expanded_count++] = token;
Neil Booth93c803682000-10-28 17:59:06 +00001061 }
Neil Booth93c803682000-10-28 17:59:06 +00001062
Neil Booth1e013d22001-09-26 21:44:35 +00001063 _cpp_pop_context (pfile);
Neil Booth56941bf2002-09-20 19:44:09 +00001064
1065 CPP_WTRADITIONAL (pfile) = saved_warn_trad;
Neil Booth93c803682000-10-28 17:59:06 +00001066}
1067
Neil Boothd15a58c2002-01-03 18:32:55 +00001068/* Pop the current context off the stack, re-enabling the macro if the
1069 context represented a macro's replacement list. The context
1070 structure is not freed so that we can re-use it later. */
Neil Booth93c803682000-10-28 17:59:06 +00001071void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001072_cpp_pop_context (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001073{
Neil Booth1e013d22001-09-26 21:44:35 +00001074 cpp_context *context = pfile->context;
Neil Booth93c803682000-10-28 17:59:06 +00001075
Neil Booth1e013d22001-09-26 21:44:35 +00001076 if (context->macro)
Neil Booth644edda2001-10-02 12:57:24 +00001077 context->macro->flags &= ~NODE_DISABLED;
Neil Booth1e013d22001-09-26 21:44:35 +00001078
1079 if (context->buff)
1080 _cpp_release_buff (pfile, context->buff);
1081
1082 pfile->context = context->prev;
Neil Booth93c803682000-10-28 17:59:06 +00001083}
1084
Martin Schaffner48c47212003-06-25 23:01:10 +02001085/* External routine to get a token. Also used nearly everywhere
Neil Booth7f2f1a62000-11-14 18:32:06 +00001086 internally, except for places where we know we can safely call
Martin Schaffner48c47212003-06-25 23:01:10 +02001087 _cpp_lex_token directly, such as lexing a directive name.
Neil Booth7f2f1a62000-11-14 18:32:06 +00001088
1089 Macro expansions and directives are transparently handled,
1090 including entering included files. Thus tokens are post-macro
1091 expansion, and after any intervening directives. External callers
1092 see CPP_EOF only at EOF. Internal callers also see it when meeting
1093 a directive inside a macro call, when at the end of a directive and
1094 state.in_directive is still 1, and at the end of argument
1095 pre-expansion. */
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001096const cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001097cpp_get_token (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001098{
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001099 const cpp_token *result;
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001100 bool can_set = pfile->set_invocation_location;
1101 pfile->set_invocation_location = false;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001102
Neil Booth29b10742000-11-13 18:40:37 +00001103 for (;;)
Neil Booth93c803682000-10-28 17:59:06 +00001104 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001105 cpp_hashnode *node;
Neil Booth93c803682000-10-28 17:59:06 +00001106 cpp_context *context = pfile->context;
1107
Neil Booth93c803682000-10-28 17:59:06 +00001108 /* Context->prev == 0 <=> base context. */
Neil Boothbdcbe492001-09-13 20:05:17 +00001109 if (!context->prev)
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001110 result = _cpp_lex_token (pfile);
Neil Booth82eda772002-06-04 13:07:06 +00001111 else if (FIRST (context).token != LAST (context).token)
Neil Booth29b10742000-11-13 18:40:37 +00001112 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001113 if (context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +00001114 result = FIRST (context).token++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001115 else
Neil Booth82eda772002-06-04 13:07:06 +00001116 result = *FIRST (context).ptoken++;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001117
1118 if (result->flags & PASTE_LEFT)
Neil Boothec1a23e2001-01-31 07:48:54 +00001119 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001120 paste_all_tokens (pfile, result);
1121 if (pfile->state.in_directive)
1122 continue;
1123 return padding_token (pfile, result);
Neil Boothec1a23e2001-01-31 07:48:54 +00001124 }
Neil Booth29b10742000-11-13 18:40:37 +00001125 }
Neil Booth93c803682000-10-28 17:59:06 +00001126 else
1127 {
Neil Boothbdcbe492001-09-13 20:05:17 +00001128 _cpp_pop_context (pfile);
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001129 if (pfile->state.in_directive)
1130 continue;
1131 return &pfile->avoid_paste;
Neil Booth93c803682000-10-28 17:59:06 +00001132 }
Neil Booth93c803682000-10-28 17:59:06 +00001133
Jason Thorpe477cdac2002-04-07 03:12:23 +00001134 if (pfile->state.in_directive && result->type == CPP_COMMENT)
1135 continue;
1136
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001137 if (result->type != CPP_NAME)
Neil Booth93c803682000-10-28 17:59:06 +00001138 break;
1139
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001140 node = result->val.node;
Neil Booth4c2b6472000-11-11 13:19:01 +00001141
Neil Booth644edda2001-10-02 12:57:24 +00001142 if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
1143 break;
Kazu Hiratadf383482002-05-22 22:02:16 +00001144
Neil Booth644edda2001-10-02 12:57:24 +00001145 if (!(node->flags & NODE_DISABLED))
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001146 {
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001147 /* If not in a macro context, and we're going to start an
1148 expansion, record the location. */
1149 if (can_set && !context->macro)
1150 pfile->invocation_location = result->src_loc;
Neil Booth644edda2001-10-02 12:57:24 +00001151 if (!pfile->state.prevent_expansion
1152 && enter_macro_context (pfile, node))
Neil Boothbd969772001-02-01 19:13:53 +00001153 {
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001154 if (pfile->state.in_directive)
1155 continue;
1156 return padding_token (pfile, result);
Neil Boothbd969772001-02-01 19:13:53 +00001157 }
Neil Booth93c803682000-10-28 17:59:06 +00001158 }
Neil Booth644edda2001-10-02 12:57:24 +00001159 else
1160 {
Neil Boothd15a58c2002-01-03 18:32:55 +00001161 /* Flag this token as always unexpandable. FIXME: move this
1162 to collect_args()?. */
Neil Booth644edda2001-10-02 12:57:24 +00001163 cpp_token *t = _cpp_temp_token (pfile);
1164 t->type = result->type;
1165 t->flags = result->flags | NO_EXPAND;
Jakub Jelinek73096712005-03-04 16:33:23 +01001166 t->val = result->val;
Neil Booth644edda2001-10-02 12:57:24 +00001167 result = t;
1168 }
Neil Bootha5c3ccc2000-10-30 22:29:00 +00001169
Neil Booth644edda2001-10-02 12:57:24 +00001170 break;
Neil Booth93c803682000-10-28 17:59:06 +00001171 }
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001172
1173 return result;
Neil Booth93c803682000-10-28 17:59:06 +00001174}
1175
Tom Tromey5ffeb9132007-09-06 16:24:05 +00001176/* Like cpp_get_token, but also returns a location separate from the
1177 one provided by the returned token. LOC is an out parameter; *LOC
1178 is set to the location "as expected by the user". This matters
1179 when a token results from macro expansion -- the token's location
1180 will indicate where the macro is defined, but *LOC will be the
1181 location of the start of the expansion. */
1182const cpp_token *
1183cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
1184{
1185 const cpp_token *result;
1186
1187 pfile->set_invocation_location = true;
1188 result = cpp_get_token (pfile);
1189 if (pfile->context->macro)
1190 *loc = pfile->invocation_location;
1191 else
1192 *loc = result->src_loc;
1193
1194 return result;
1195}
1196
Neil Booth7065e132001-02-14 07:38:20 +00001197/* Returns true if we're expanding an object-like macro that was
1198 defined in a system header. Just checks the macro at the top of
1199 the stack. Used for diagnostic suppression. */
1200int
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001201cpp_sys_macro_p (cpp_reader *pfile)
Neil Booth7065e132001-02-14 07:38:20 +00001202{
Neil Booth644edda2001-10-02 12:57:24 +00001203 cpp_hashnode *node = pfile->context->macro;
Neil Booth7065e132001-02-14 07:38:20 +00001204
Neil Booth644edda2001-10-02 12:57:24 +00001205 return node && node->value.macro && node->value.macro->syshdr;
Neil Booth7065e132001-02-14 07:38:20 +00001206}
1207
Neil Boothaf0d16c2002-04-22 17:48:02 +00001208/* Read each token in, until end of the current file. Directives are
1209 transparently processed. */
Neil Booth93c803682000-10-28 17:59:06 +00001210void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001211cpp_scan_nooutput (cpp_reader *pfile)
Neil Booth93c803682000-10-28 17:59:06 +00001212{
Per Bothner22234f52004-02-18 14:02:39 -08001213 /* Request a CPP_EOF token at the end of this file, rather than
1214 transparently continuing with the including file. */
1215 pfile->buffer->return_at_eof = true;
1216
Zack Weinbergc6e83802004-06-05 20:58:06 +00001217 pfile->state.discarding_output++;
1218 pfile->state.prevent_expansion++;
1219
Neil Booth590e1982002-07-01 12:47:54 +00001220 if (CPP_OPTION (pfile, traditional))
1221 while (_cpp_read_logical_line_trad (pfile))
1222 ;
1223 else
1224 while (cpp_get_token (pfile)->type != CPP_EOF)
1225 ;
Zack Weinbergc6e83802004-06-05 20:58:06 +00001226
1227 pfile->state.discarding_output--;
1228 pfile->state.prevent_expansion--;
Neil Booth93c803682000-10-28 17:59:06 +00001229}
1230
Jakub Jelinek1c90c6f2006-06-09 23:13:25 +02001231/* Step back one (or more) tokens. Can only step back more than 1 if
Neil Boothbdcbe492001-09-13 20:05:17 +00001232 they are from the lexer, and not from macro expansion. */
Neil Boothb528a072000-11-12 11:46:21 +00001233void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001234_cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
Neil Booth93c803682000-10-28 17:59:06 +00001235{
Neil Boothbdcbe492001-09-13 20:05:17 +00001236 if (pfile->context->prev == NULL)
1237 {
1238 pfile->lookaheads += count;
1239 while (count--)
1240 {
Neil Booth3293c3e2001-11-19 21:04:49 +00001241 pfile->cur_token--;
1242 if (pfile->cur_token == pfile->cur_run->base
1243 /* Possible with -fpreprocessed and no leading #line. */
1244 && pfile->cur_run->prev != NULL)
Neil Boothbdcbe492001-09-13 20:05:17 +00001245 {
Neil Boothbdcbe492001-09-13 20:05:17 +00001246 pfile->cur_run = pfile->cur_run->prev;
1247 pfile->cur_token = pfile->cur_run->limit;
1248 }
1249 }
1250 }
Neil Booth93c803682000-10-28 17:59:06 +00001251 else
1252 {
Neil Boothbdcbe492001-09-13 20:05:17 +00001253 if (count != 1)
1254 abort ();
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001255 if (pfile->context->direct_p)
Neil Booth82eda772002-06-04 13:07:06 +00001256 FIRST (pfile->context).token--;
Neil Booth4ed5bcf2001-09-24 22:53:12 +00001257 else
Neil Booth82eda772002-06-04 13:07:06 +00001258 FIRST (pfile->context).ptoken--;
Neil Booth93c803682000-10-28 17:59:06 +00001259 }
Neil Booth93c803682000-10-28 17:59:06 +00001260}
1261
1262/* #define directive parsing and handling. */
1263
Kazu Hiratada7d8302002-09-22 02:03:17 +00001264/* Returns nonzero if a macro redefinition warning is required. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001265static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001266warn_of_redefinition (cpp_reader *pfile, const cpp_hashnode *node,
1267 const cpp_macro *macro2)
Neil Booth93c803682000-10-28 17:59:06 +00001268{
1269 const cpp_macro *macro1;
1270 unsigned int i;
1271
Neil Booth618cdda2001-02-25 09:43:03 +00001272 /* Some redefinitions need to be warned about regardless. */
1273 if (node->flags & NODE_WARN)
Neil Boothcbc69f82002-06-05 20:27:12 +00001274 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001275
Neil Booth618cdda2001-02-25 09:43:03 +00001276 /* Redefinition of a macro is allowed if and only if the old and new
Kazu Hirataec5c56d2001-08-01 17:57:27 +00001277 definitions are the same. (6.10.3 paragraph 2). */
Neil Booth93c803682000-10-28 17:59:06 +00001278 macro1 = node->value.macro;
1279
Neil Booth6618c5d2002-06-10 06:03:13 +00001280 /* Don't check count here as it can be different in valid
1281 traditional redefinitions with just whitespace differences. */
1282 if (macro1->paramc != macro2->paramc
Neil Booth93c803682000-10-28 17:59:06 +00001283 || macro1->fun_like != macro2->fun_like
Neil Booth28e0f042000-12-09 12:06:37 +00001284 || macro1->variadic != macro2->variadic)
Neil Boothcbc69f82002-06-05 20:27:12 +00001285 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001286
1287 /* Check parameter spellings. */
1288 for (i = 0; i < macro1->paramc; i++)
1289 if (macro1->params[i] != macro2->params[i])
Neil Boothcbc69f82002-06-05 20:27:12 +00001290 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001291
Neil Boothcbc69f82002-06-05 20:27:12 +00001292 /* Check the replacement text or tokens. */
1293 if (CPP_OPTION (pfile, traditional))
Neil Booth6618c5d2002-06-10 06:03:13 +00001294 return _cpp_expansions_different_trad (macro1, macro2);
Neil Boothcbc69f82002-06-05 20:27:12 +00001295
DJ Deloriea7f36da2003-06-01 14:55:15 -04001296 if (macro1->count != macro2->count)
1297 return true;
1298
1299 for (i = 0; i < macro1->count; i++)
1300 if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
1301 return true;
Neil Boothcbc69f82002-06-05 20:27:12 +00001302
1303 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001304}
1305
Neil Booth93c803682000-10-28 17:59:06 +00001306/* Free the definition of hashnode H. */
Neil Booth93c803682000-10-28 17:59:06 +00001307void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001308_cpp_free_definition (cpp_hashnode *h)
Zack Weinberg711b8822000-07-18 00:59:49 +00001309{
Neil Booth93c803682000-10-28 17:59:06 +00001310 /* Macros and assertions no longer have anything to free. */
1311 h->type = NT_VOID;
1312 /* Clear builtin flag in case of redefinition. */
Neil Booth644edda2001-10-02 12:57:24 +00001313 h->flags &= ~(NODE_BUILTIN | NODE_DISABLED);
Neil Booth93c803682000-10-28 17:59:06 +00001314}
Zack Weinberg711b8822000-07-18 00:59:49 +00001315
Neil Booth14baae02001-09-17 18:26:12 +00001316/* Save parameter NODE to the parameter list of macro MACRO. Returns
Kazu Hiratada7d8302002-09-22 02:03:17 +00001317 zero on success, nonzero if the parameter is a duplicate. */
Neil Boothc70f6ed2002-06-07 06:26:32 +00001318bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001319_cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +00001320{
Zack Weinberg4977bab2002-12-16 18:23:00 +00001321 unsigned int len;
Neil Booth93c803682000-10-28 17:59:06 +00001322 /* Constraint 6.10.3.6 - duplicate parameter names. */
Zack Weinberg4977bab2002-12-16 18:23:00 +00001323 if (node->flags & NODE_MACRO_ARG)
Zack Weinberg711b8822000-07-18 00:59:49 +00001324 {
John David Anglin0527bc42003-11-01 22:56:54 +00001325 cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
Neil Boothebef4e82002-04-14 18:42:47 +00001326 NODE_NAME (node));
Neil Booth23ff0222002-07-17 17:27:14 +00001327 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001328 }
1329
Neil Booth8c3b2692001-09-30 10:03:11 +00001330 if (BUFF_ROOM (pfile->a_buff)
1331 < (macro->paramc + 1) * sizeof (cpp_hashnode *))
1332 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
Neil Booth93c803682000-10-28 17:59:06 +00001333
Neil Booth8c3b2692001-09-30 10:03:11 +00001334 ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node;
Zack Weinberg4977bab2002-12-16 18:23:00 +00001335 node->flags |= NODE_MACRO_ARG;
1336 len = macro->paramc * sizeof (union _cpp_hashnode_value);
1337 if (len > pfile->macro_buffer_len)
1338 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001339 pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer,
1340 len);
Zack Weinberg4977bab2002-12-16 18:23:00 +00001341 pfile->macro_buffer_len = len;
1342 }
1343 ((union _cpp_hashnode_value *) pfile->macro_buffer)[macro->paramc - 1]
1344 = node->value;
1345
1346 node->value.arg_index = macro->paramc;
Neil Booth23ff0222002-07-17 17:27:14 +00001347 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001348}
1349
Neil Booth23ff0222002-07-17 17:27:14 +00001350/* Check the syntax of the parameters in a MACRO definition. Returns
1351 false if an error occurs. */
1352static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001353parse_params (cpp_reader *pfile, cpp_macro *macro)
Neil Booth93c803682000-10-28 17:59:06 +00001354{
Neil Booth93c803682000-10-28 17:59:06 +00001355 unsigned int prev_ident = 0;
1356
Neil Booth93c803682000-10-28 17:59:06 +00001357 for (;;)
1358 {
Neil Booth345894b2001-09-16 13:44:29 +00001359 const cpp_token *token = _cpp_lex_token (pfile);
Neil Booth93c803682000-10-28 17:59:06 +00001360
Neil Booth345894b2001-09-16 13:44:29 +00001361 switch (token->type)
Zack Weinberg711b8822000-07-18 00:59:49 +00001362 {
1363 default:
Jason Thorpe477cdac2002-04-07 03:12:23 +00001364 /* Allow/ignore comments in parameter lists if we are
1365 preserving comments in macro expansions. */
1366 if (token->type == CPP_COMMENT
1367 && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
1368 continue;
1369
John David Anglin0527bc42003-11-01 22:56:54 +00001370 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001371 "\"%s\" may not appear in macro parameter list",
Neil Booth345894b2001-09-16 13:44:29 +00001372 cpp_token_as_text (pfile, token));
Neil Booth23ff0222002-07-17 17:27:14 +00001373 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001374
Zack Weinberg711b8822000-07-18 00:59:49 +00001375 case CPP_NAME:
1376 if (prev_ident)
1377 {
John David Anglin0527bc42003-11-01 22:56:54 +00001378 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001379 "macro parameters must be comma-separated");
Neil Booth23ff0222002-07-17 17:27:14 +00001380 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001381 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001382 prev_ident = 1;
Neil Booth93c803682000-10-28 17:59:06 +00001383
Neil Boothc70f6ed2002-06-07 06:26:32 +00001384 if (_cpp_save_parameter (pfile, macro, token->val.node))
Neil Booth23ff0222002-07-17 17:27:14 +00001385 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001386 continue;
1387
1388 case CPP_CLOSE_PAREN:
Neil Booth93c803682000-10-28 17:59:06 +00001389 if (prev_ident || macro->paramc == 0)
Neil Booth23ff0222002-07-17 17:27:14 +00001390 return true;
Zack Weinberg711b8822000-07-18 00:59:49 +00001391
1392 /* Fall through to pick up the error. */
1393 case CPP_COMMA:
1394 if (!prev_ident)
1395 {
John David Anglin0527bc42003-11-01 22:56:54 +00001396 cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
Neil Booth23ff0222002-07-17 17:27:14 +00001397 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001398 }
1399 prev_ident = 0;
1400 continue;
1401
1402 case CPP_ELLIPSIS:
Neil Booth28e0f042000-12-09 12:06:37 +00001403 macro->variadic = 1;
Zack Weinberg711b8822000-07-18 00:59:49 +00001404 if (!prev_ident)
1405 {
Neil Boothc70f6ed2002-06-07 06:26:32 +00001406 _cpp_save_parameter (pfile, macro,
1407 pfile->spec_nodes.n__VA_ARGS__);
Neil Booth93c803682000-10-28 17:59:06 +00001408 pfile->state.va_args_ok = 1;
Richard Hendersone5b79212004-02-19 14:18:50 -08001409 if (! CPP_OPTION (pfile, c99)
1410 && CPP_OPTION (pfile, pedantic)
1411 && CPP_OPTION (pfile, warn_variadic_macros))
John David Anglin0527bc42003-11-01 22:56:54 +00001412 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Boothebef4e82002-04-14 18:42:47 +00001413 "anonymous variadic macros were introduced in C99");
Zack Weinberg711b8822000-07-18 00:59:49 +00001414 }
Richard Hendersone5b79212004-02-19 14:18:50 -08001415 else if (CPP_OPTION (pfile, pedantic)
1416 && CPP_OPTION (pfile, warn_variadic_macros))
John David Anglin0527bc42003-11-01 22:56:54 +00001417 cpp_error (pfile, CPP_DL_PEDWARN,
Neil Boothebef4e82002-04-14 18:42:47 +00001418 "ISO C does not permit named variadic macros");
Zack Weinberg711b8822000-07-18 00:59:49 +00001419
Neil Booth93c803682000-10-28 17:59:06 +00001420 /* We're at the end, and just expect a closing parenthesis. */
Neil Booth345894b2001-09-16 13:44:29 +00001421 token = _cpp_lex_token (pfile);
1422 if (token->type == CPP_CLOSE_PAREN)
Neil Booth23ff0222002-07-17 17:27:14 +00001423 return true;
Neil Booth93c803682000-10-28 17:59:06 +00001424 /* Fall through. */
1425
1426 case CPP_EOF:
John David Anglin0527bc42003-11-01 22:56:54 +00001427 cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
Neil Booth23ff0222002-07-17 17:27:14 +00001428 return false;
Zack Weinberg711b8822000-07-18 00:59:49 +00001429 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001430 }
1431}
1432
Neil Booth14baae02001-09-17 18:26:12 +00001433/* Allocate room for a token from a macro's replacement list. */
Neil Booth93c803682000-10-28 17:59:06 +00001434static cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001435alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
Zack Weinberg711b8822000-07-18 00:59:49 +00001436{
Neil Booth8c3b2692001-09-30 10:03:11 +00001437 if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
1438 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
Zack Weinberg711b8822000-07-18 00:59:49 +00001439
Neil Booth8c3b2692001-09-30 10:03:11 +00001440 return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
Neil Booth14baae02001-09-17 18:26:12 +00001441}
1442
Neil Boothd15a58c2002-01-03 18:32:55 +00001443/* Lex a token from the expansion of MACRO, but mark parameters as we
1444 find them and warn of traditional stringification. */
Neil Booth14baae02001-09-17 18:26:12 +00001445static cpp_token *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001446lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
Neil Booth14baae02001-09-17 18:26:12 +00001447{
Tom Tromeyee380362007-01-30 15:46:01 +00001448 cpp_token *token, *saved_cur_token;
Neil Booth14baae02001-09-17 18:26:12 +00001449
Tom Tromeyee380362007-01-30 15:46:01 +00001450 saved_cur_token = pfile->cur_token;
Neil Booth14baae02001-09-17 18:26:12 +00001451 pfile->cur_token = alloc_expansion_token (pfile, macro);
1452 token = _cpp_lex_direct (pfile);
Tom Tromeyee380362007-01-30 15:46:01 +00001453 pfile->cur_token = saved_cur_token;
Neil Booth93c803682000-10-28 17:59:06 +00001454
Neil Boothd15a58c2002-01-03 18:32:55 +00001455 /* Is this a parameter? */
Zack Weinberg4977bab2002-12-16 18:23:00 +00001456 if (token->type == CPP_NAME
1457 && (token->val.node->flags & NODE_MACRO_ARG) != 0)
Zack Weinberg711b8822000-07-18 00:59:49 +00001458 {
Neil Booth93c803682000-10-28 17:59:06 +00001459 token->type = CPP_MACRO_ARG;
Zack Weinberg4977bab2002-12-16 18:23:00 +00001460 token->val.arg_no = token->val.node->value.arg_index;
Zack Weinberg711b8822000-07-18 00:59:49 +00001461 }
Neil Booth93c803682000-10-28 17:59:06 +00001462 else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
1463 && (token->type == CPP_STRING || token->type == CPP_CHAR))
1464 check_trad_stringification (pfile, macro, &token->val.str);
Zack Weinberg711b8822000-07-18 00:59:49 +00001465
Neil Booth93c803682000-10-28 17:59:06 +00001466 return token;
Zack Weinberg711b8822000-07-18 00:59:49 +00001467}
1468
Neil Boothcbc69f82002-06-05 20:27:12 +00001469static bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001470create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
Zack Weinberg711b8822000-07-18 00:59:49 +00001471{
Neil Boothcbc69f82002-06-05 20:27:12 +00001472 cpp_token *token;
Neil Booth14baae02001-09-17 18:26:12 +00001473 const cpp_token *ctoken;
Simon Martin126e0732007-05-23 20:58:34 +00001474 bool following_paste_op = false;
1475 const char *paste_op_error_msg =
1476 N_("'##' cannot appear at either end of a macro expansion");
Zack Weinberg711b8822000-07-18 00:59:49 +00001477
Neil Booth93c803682000-10-28 17:59:06 +00001478 /* Get the first token of the expansion (or the '(' of a
1479 function-like macro). */
Neil Booth14baae02001-09-17 18:26:12 +00001480 ctoken = _cpp_lex_token (pfile);
1481
1482 if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
Zack Weinberg711b8822000-07-18 00:59:49 +00001483 {
Neil Boothcbc69f82002-06-05 20:27:12 +00001484 bool ok = parse_params (pfile, macro);
Neil Booth8c3b2692001-09-30 10:03:11 +00001485 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
1486 if (!ok)
Neil Boothcbc69f82002-06-05 20:27:12 +00001487 return false;
Neil Booth8c3b2692001-09-30 10:03:11 +00001488
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001489 /* Success. Commit or allocate the parameter array. */
1490 if (pfile->hash_table->alloc_subobject)
1491 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001492 cpp_hashnode **params =
1493 (cpp_hashnode **) pfile->hash_table->alloc_subobject
1494 (sizeof (cpp_hashnode *) * macro->paramc);
Paolo Bonzinibe0f1e52005-02-14 08:52:24 +00001495 memcpy (params, macro->params,
1496 sizeof (cpp_hashnode *) * macro->paramc);
1497 macro->params = params;
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001498 }
1499 else
1500 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
Neil Booth93c803682000-10-28 17:59:06 +00001501 macro->fun_like = 1;
Neil Booth93c803682000-10-28 17:59:06 +00001502 }
Neil Booth14baae02001-09-17 18:26:12 +00001503 else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
Jakub Jelinekcae064e2005-04-05 22:07:06 +02001504 {
1505 /* While ISO C99 requires whitespace before replacement text
1506 in a macro definition, ISO C90 with TC1 allows there characters
1507 from the basic source character set. */
1508 if (CPP_OPTION (pfile, c99))
1509 cpp_error (pfile, CPP_DL_PEDWARN,
1510 "ISO C99 requires whitespace after the macro name");
1511 else
1512 {
1513 int warntype = CPP_DL_WARNING;
1514 switch (ctoken->type)
1515 {
1516 case CPP_ATSIGN:
1517 case CPP_AT_NAME:
1518 case CPP_OBJC_STRING:
1519 /* '@' is not in basic character set. */
1520 warntype = CPP_DL_PEDWARN;
1521 break;
1522 case CPP_OTHER:
1523 /* Basic character set sans letters, digits and _. */
1524 if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
1525 ctoken->val.str.text[0]) == NULL)
1526 warntype = CPP_DL_PEDWARN;
1527 break;
1528 default:
1529 /* All other tokens start with a character from basic
1530 character set. */
1531 break;
1532 }
1533 cpp_error (pfile, warntype,
1534 "missing whitespace after the macro name");
1535 }
1536 }
Neil Booth93c803682000-10-28 17:59:06 +00001537
Neil Booth14baae02001-09-17 18:26:12 +00001538 if (macro->fun_like)
1539 token = lex_expansion_token (pfile, macro);
1540 else
1541 {
1542 token = alloc_expansion_token (pfile, macro);
1543 *token = *ctoken;
1544 }
Neil Booth93c803682000-10-28 17:59:06 +00001545
1546 for (;;)
1547 {
1548 /* Check the stringifying # constraint 6.10.3.2.1 of
1549 function-like macros when lexing the subsequent token. */
1550 if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
Zack Weinberg711b8822000-07-18 00:59:49 +00001551 {
Neil Booth93c803682000-10-28 17:59:06 +00001552 if (token->type == CPP_MACRO_ARG)
1553 {
1554 token->flags &= ~PREV_WHITE;
1555 token->flags |= STRINGIFY_ARG;
1556 token->flags |= token[-1].flags & PREV_WHITE;
1557 token[-1] = token[0];
1558 macro->count--;
1559 }
1560 /* Let assembler get away with murder. */
Neil Boothbdb05a72000-11-26 17:31:13 +00001561 else if (CPP_OPTION (pfile, lang) != CLK_ASM)
Neil Booth93c803682000-10-28 17:59:06 +00001562 {
John David Anglin0527bc42003-11-01 22:56:54 +00001563 cpp_error (pfile, CPP_DL_ERROR,
Neil Boothebef4e82002-04-14 18:42:47 +00001564 "'#' is not followed by a macro parameter");
Neil Boothcbc69f82002-06-05 20:27:12 +00001565 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001566 }
1567 }
1568
1569 if (token->type == CPP_EOF)
Simon Martin126e0732007-05-23 20:58:34 +00001570 {
1571 /* Paste operator constraint 6.10.3.3.1:
1572 Token-paste ##, can appear in both object-like and
1573 function-like macros, but not at the end. */
1574 if (following_paste_op)
1575 {
1576 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
1577 return false;
1578 }
1579 break;
1580 }
Neil Booth93c803682000-10-28 17:59:06 +00001581
1582 /* Paste operator constraint 6.10.3.3.1. */
1583 if (token->type == CPP_PASTE)
1584 {
1585 /* Token-paste ##, can appear in both object-like and
Simon Martin126e0732007-05-23 20:58:34 +00001586 function-like macros, but not at the beginning. */
1587 if (macro->count == 1)
Neil Booth93c803682000-10-28 17:59:06 +00001588 {
Simon Martin126e0732007-05-23 20:58:34 +00001589 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
Neil Boothcbc69f82002-06-05 20:27:12 +00001590 return false;
Neil Booth93c803682000-10-28 17:59:06 +00001591 }
1592
Simon Martin126e0732007-05-23 20:58:34 +00001593 --macro->count;
Neil Booth93c803682000-10-28 17:59:06 +00001594 token[-1].flags |= PASTE_LEFT;
Neil Booth93c803682000-10-28 17:59:06 +00001595 }
1596
Simon Martin126e0732007-05-23 20:58:34 +00001597 following_paste_op = (token->type == CPP_PASTE);
Neil Booth93c803682000-10-28 17:59:06 +00001598 token = lex_expansion_token (pfile, macro);
1599 }
1600
Neil Booth601328b2002-05-16 05:53:24 +00001601 macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001602 macro->traditional = 0;
Neil Booth8c3b2692001-09-30 10:03:11 +00001603
Neil Booth4c2b6472000-11-11 13:19:01 +00001604 /* Don't count the CPP_EOF. */
1605 macro->count--;
Neil Booth93c803682000-10-28 17:59:06 +00001606
Neil Boothd15a58c2002-01-03 18:32:55 +00001607 /* Clear whitespace on first token for warn_of_redefinition(). */
Neil Booth8c3b2692001-09-30 10:03:11 +00001608 if (macro->count)
Neil Booth601328b2002-05-16 05:53:24 +00001609 macro->exp.tokens[0].flags &= ~PREV_WHITE;
Neil Booth8c3b2692001-09-30 10:03:11 +00001610
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001611 /* Commit or allocate the memory. */
1612 if (pfile->hash_table->alloc_subobject)
1613 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001614 cpp_token *tokns =
1615 (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
1616 * macro->count);
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001617 memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
1618 macro->exp.tokens = tokns;
1619 }
1620 else
1621 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
Neil Booth8c3b2692001-09-30 10:03:11 +00001622
Neil Boothcbc69f82002-06-05 20:27:12 +00001623 return true;
1624}
Neil Booth44ed91a2000-10-29 11:37:18 +00001625
Kazu Hiratada7d8302002-09-22 02:03:17 +00001626/* Parse a macro and save its expansion. Returns nonzero on success. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001627bool
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001628_cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
Neil Boothcbc69f82002-06-05 20:27:12 +00001629{
1630 cpp_macro *macro;
1631 unsigned int i;
1632 bool ok;
1633
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001634 if (pfile->hash_table->alloc_subobject)
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001635 macro = (cpp_macro *) pfile->hash_table->alloc_subobject
1636 (sizeof (cpp_macro));
Geoffrey Keatingd8044162004-06-09 20:10:13 +00001637 else
1638 macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
Neil Boothcbc69f82002-06-05 20:27:12 +00001639 macro->line = pfile->directive_line;
1640 macro->params = 0;
1641 macro->paramc = 0;
1642 macro->variadic = 0;
Neil Booth23345bb2003-03-14 21:47:50 +00001643 macro->used = !CPP_OPTION (pfile, warn_unused_macros);
Neil Boothcbc69f82002-06-05 20:27:12 +00001644 macro->count = 0;
1645 macro->fun_like = 0;
Neil Booth7065e132001-02-14 07:38:20 +00001646 /* To suppress some diagnostics. */
Per Bothner12f9df42004-02-11 07:29:30 -08001647 macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
Neil Booth7065e132001-02-14 07:38:20 +00001648
Neil Boothcbc69f82002-06-05 20:27:12 +00001649 if (CPP_OPTION (pfile, traditional))
1650 ok = _cpp_create_trad_definition (pfile, macro);
1651 else
1652 {
Neil Boothcbc69f82002-06-05 20:27:12 +00001653 ok = create_iso_definition (pfile, macro);
1654
Tom Tromeyee380362007-01-30 15:46:01 +00001655 /* We set the type for SEEN_EOL() in directives.c.
Neil Boothcbc69f82002-06-05 20:27:12 +00001656
1657 Longer term we should lex the whole line before coming here,
1658 and just copy the expansion. */
Neil Boothcbc69f82002-06-05 20:27:12 +00001659
1660 /* Stop the lexer accepting __VA_ARGS__. */
1661 pfile->state.va_args_ok = 0;
1662 }
1663
1664 /* Clear the fast argument lookup indices. */
1665 for (i = macro->paramc; i-- > 0; )
Zack Weinberg4977bab2002-12-16 18:23:00 +00001666 {
1667 struct cpp_hashnode *node = macro->params[i];
1668 node->flags &= ~ NODE_MACRO_ARG;
1669 node->value = ((union _cpp_hashnode_value *) pfile->macro_buffer)[i];
1670 }
Neil Boothcbc69f82002-06-05 20:27:12 +00001671
1672 if (!ok)
1673 return ok;
1674
Neil Boothc2734e02002-07-26 16:29:31 +00001675 if (node->type == NT_MACRO)
Neil Booth93c803682000-10-28 17:59:06 +00001676 {
Neil Bootha69cbaa2002-07-23 22:57:49 +00001677 if (CPP_OPTION (pfile, warn_unused_macros))
1678 _cpp_warn_if_unused_macro (pfile, node, NULL);
1679
Neil Boothcbc69f82002-06-05 20:27:12 +00001680 if (warn_of_redefinition (pfile, node, macro))
Neil Booth93c803682000-10-28 17:59:06 +00001681 {
John David Anglin0527bc42003-11-01 22:56:54 +00001682 cpp_error_with_line (pfile, CPP_DL_PEDWARN, pfile->directive_line, 0,
Neil Boothebef4e82002-04-14 18:42:47 +00001683 "\"%s\" redefined", NODE_NAME (node));
Neil Booth93c803682000-10-28 17:59:06 +00001684
Neil Booth618cdda2001-02-25 09:43:03 +00001685 if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
John David Anglin0527bc42003-11-01 22:56:54 +00001686 cpp_error_with_line (pfile, CPP_DL_PEDWARN,
Neil Boothcbc69f82002-06-05 20:27:12 +00001687 node->value.macro->line, 0,
1688 "this is the location of the previous definition");
Zack Weinberg711b8822000-07-18 00:59:49 +00001689 }
Zack Weinberg711b8822000-07-18 00:59:49 +00001690 }
1691
Neil Boothc2734e02002-07-26 16:29:31 +00001692 if (node->type != NT_VOID)
1693 _cpp_free_definition (node);
1694
Zack Weinberg711b8822000-07-18 00:59:49 +00001695 /* Enter definition in hash table. */
Neil Booth93c803682000-10-28 17:59:06 +00001696 node->type = NT_MACRO;
1697 node->value.macro = macro;
Neil Bootha28c50352001-05-16 22:02:09 +00001698 if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_")))
Neil Booth618cdda2001-02-25 09:43:03 +00001699 node->flags |= NODE_WARN;
Zack Weinberg711b8822000-07-18 00:59:49 +00001700
Neil Booth93c803682000-10-28 17:59:06 +00001701 return ok;
Zack Weinberg711b8822000-07-18 00:59:49 +00001702}
1703
Neil Boothd15a58c2002-01-03 18:32:55 +00001704/* Warn if a token in STRING matches one of a function-like MACRO's
1705 parameters. */
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001706static void
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001707check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
1708 const cpp_string *string)
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001709{
Neil Booth93c803682000-10-28 17:59:06 +00001710 unsigned int i, len;
Neil Booth6338b352003-04-23 22:44:06 +00001711 const uchar *p, *q, *limit;
Kazu Hiratadf383482002-05-22 22:02:16 +00001712
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001713 /* Loop over the string. */
Neil Booth6338b352003-04-23 22:44:06 +00001714 limit = string->text + string->len - 1;
1715 for (p = string->text + 1; p < limit; p = q)
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001716 {
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001717 /* Find the start of an identifier. */
Greg McGary61c16b12000-09-15 21:25:02 +00001718 while (p < limit && !is_idstart (*p))
1719 p++;
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001720
1721 /* Find the end of the identifier. */
1722 q = p;
Greg McGary61c16b12000-09-15 21:25:02 +00001723 while (q < limit && is_idchar (*q))
1724 q++;
Neil Booth93c803682000-10-28 17:59:06 +00001725
1726 len = q - p;
1727
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001728 /* Loop over the function macro arguments to see if the
1729 identifier inside the string matches one of them. */
Neil Booth93c803682000-10-28 17:59:06 +00001730 for (i = 0; i < macro->paramc; i++)
1731 {
1732 const cpp_hashnode *node = macro->params[i];
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001733
Neil Booth2a967f32001-05-20 06:26:45 +00001734 if (NODE_LEN (node) == len
1735 && !memcmp (p, NODE_NAME (node), len))
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001736 {
John David Anglin0527bc42003-11-01 22:56:54 +00001737 cpp_error (pfile, CPP_DL_WARNING,
Zack Weinbergf458d1d2002-02-27 18:48:07 +00001738 "macro argument \"%s\" would be stringified in traditional C",
Neil Boothebef4e82002-04-14 18:42:47 +00001739 NODE_NAME (node));
Kaveh R. Ghazie1aa5142000-09-10 03:41:50 +00001740 break;
1741 }
1742 }
1743 }
1744}
Neil Booth93c803682000-10-28 17:59:06 +00001745
Neil Booth70961712001-06-23 11:34:41 +00001746/* Returns the name, arguments and expansion of a macro, in a format
1747 suitable to be read back in again, and therefore also for DWARF 2
1748 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
1749 Caller is expected to generate the "#define" bit if needed. The
Neil Booth93c803682000-10-28 17:59:06 +00001750 returned text is temporary, and automatically freed later. */
Neil Booth93c803682000-10-28 17:59:06 +00001751const unsigned char *
Zack Weinberg6cf87ca2003-06-17 06:17:44 +00001752cpp_macro_definition (cpp_reader *pfile, const cpp_hashnode *node)
Neil Booth93c803682000-10-28 17:59:06 +00001753{
1754 unsigned int i, len;
1755 const cpp_macro *macro = node->value.macro;
1756 unsigned char *buffer;
1757
1758 if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
1759 {
John David Anglin0527bc42003-11-01 22:56:54 +00001760 cpp_error (pfile, CPP_DL_ICE,
Neil Boothebef4e82002-04-14 18:42:47 +00001761 "invalid hash type %d in cpp_macro_definition", node->type);
Neil Booth93c803682000-10-28 17:59:06 +00001762 return 0;
1763 }
1764
1765 /* Calculate length. */
Neil Booth8dc901d2002-05-29 19:30:07 +00001766 len = NODE_LEN (node) + 2; /* ' ' and NUL. */
Neil Booth93c803682000-10-28 17:59:06 +00001767 if (macro->fun_like)
1768 {
Jim Blandy64d08262002-04-05 00:12:40 +00001769 len += 4; /* "()" plus possible final ".." of named
1770 varargs (we have + 1 below). */
Neil Booth93c803682000-10-28 17:59:06 +00001771 for (i = 0; i < macro->paramc; i++)
Jim Blandy64d08262002-04-05 00:12:40 +00001772 len += NODE_LEN (macro->params[i]) + 1; /* "," */
Neil Booth93c803682000-10-28 17:59:06 +00001773 }
1774
Eric Christopher6da55c02005-02-15 23:18:04 +00001775 /* This should match below where we fill in the buffer. */
Neil Booth278c4662002-06-19 05:40:08 +00001776 if (CPP_OPTION (pfile, traditional))
1777 len += _cpp_replacement_text_len (macro);
1778 else
Neil Booth93c803682000-10-28 17:59:06 +00001779 {
Neil Booth278c4662002-06-19 05:40:08 +00001780 for (i = 0; i < macro->count; i++)
1781 {
1782 cpp_token *token = &macro->exp.tokens[i];
Neil Booth93c803682000-10-28 17:59:06 +00001783
Neil Booth278c4662002-06-19 05:40:08 +00001784 if (token->type == CPP_MACRO_ARG)
1785 len += NODE_LEN (macro->params[token->val.arg_no - 1]);
1786 else
Eric Christopher6da55c02005-02-15 23:18:04 +00001787 len += cpp_token_len (token);
1788
Neil Booth278c4662002-06-19 05:40:08 +00001789 if (token->flags & STRINGIFY_ARG)
1790 len++; /* "#" */
1791 if (token->flags & PASTE_LEFT)
1792 len += 3; /* " ##" */
Eric Christopher6da55c02005-02-15 23:18:04 +00001793 if (token->flags & PREV_WHITE)
1794 len++; /* " " */
Neil Booth278c4662002-06-19 05:40:08 +00001795 }
Neil Booth93c803682000-10-28 17:59:06 +00001796 }
1797
1798 if (len > pfile->macro_buffer_len)
Alexandre Oliva4b49c362001-01-09 09:30:43 +00001799 {
Gabriel Dos Reisc3f829c2005-05-28 15:52:48 +00001800 pfile->macro_buffer = XRESIZEVEC (unsigned char,
1801 pfile->macro_buffer, len);
Alexandre Oliva4b49c362001-01-09 09:30:43 +00001802 pfile->macro_buffer_len = len;
1803 }
Neil Booth70961712001-06-23 11:34:41 +00001804
1805 /* Fill in the buffer. Start with the macro name. */
Neil Booth93c803682000-10-28 17:59:06 +00001806 buffer = pfile->macro_buffer;
Neil Booth70961712001-06-23 11:34:41 +00001807 memcpy (buffer, NODE_NAME (node), NODE_LEN (node));
1808 buffer += NODE_LEN (node);
Neil Booth93c803682000-10-28 17:59:06 +00001809
1810 /* Parameter names. */
1811 if (macro->fun_like)
1812 {
1813 *buffer++ = '(';
1814 for (i = 0; i < macro->paramc; i++)
1815 {
1816 cpp_hashnode *param = macro->params[i];
1817
1818 if (param != pfile->spec_nodes.n__VA_ARGS__)
1819 {
Neil Bootha28c50352001-05-16 22:02:09 +00001820 memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
1821 buffer += NODE_LEN (param);
Neil Booth93c803682000-10-28 17:59:06 +00001822 }
1823
1824 if (i + 1 < macro->paramc)
Kazu Hiratadf383482002-05-22 22:02:16 +00001825 /* Don't emit a space after the comma here; we're trying
1826 to emit a Dwarf-friendly definition, and the Dwarf spec
1827 forbids spaces in the argument list. */
Jim Blandy64d08262002-04-05 00:12:40 +00001828 *buffer++ = ',';
Neil Booth28e0f042000-12-09 12:06:37 +00001829 else if (macro->variadic)
Neil Booth93c803682000-10-28 17:59:06 +00001830 *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
1831 }
1832 *buffer++ = ')';
1833 }
1834
Jim Blandye37b38d2002-03-19 21:43:39 +00001835 /* The Dwarf spec requires a space after the macro name, even if the
1836 definition is the empty string. */
1837 *buffer++ = ' ';
1838
Neil Booth278c4662002-06-19 05:40:08 +00001839 if (CPP_OPTION (pfile, traditional))
1840 buffer = _cpp_copy_replacement_text (macro, buffer);
1841 else if (macro->count)
Neil Booth93c803682000-10-28 17:59:06 +00001842 /* Expansion tokens. */
Neil Booth93c803682000-10-28 17:59:06 +00001843 {
Neil Booth93c803682000-10-28 17:59:06 +00001844 for (i = 0; i < macro->count; i++)
1845 {
Neil Booth601328b2002-05-16 05:53:24 +00001846 cpp_token *token = &macro->exp.tokens[i];
Neil Booth93c803682000-10-28 17:59:06 +00001847
1848 if (token->flags & PREV_WHITE)
1849 *buffer++ = ' ';
1850 if (token->flags & STRINGIFY_ARG)
1851 *buffer++ = '#';
1852
1853 if (token->type == CPP_MACRO_ARG)
1854 {
Neil Bootha28c50352001-05-16 22:02:09 +00001855 memcpy (buffer,
Eric Christopher6da55c02005-02-15 23:18:04 +00001856 NODE_NAME (macro->params[token->val.arg_no - 1]),
1857 NODE_LEN (macro->params[token->val.arg_no - 1]));
1858 buffer += NODE_LEN (macro->params[token->val.arg_no - 1]);
Neil Booth93c803682000-10-28 17:59:06 +00001859 }
1860 else
Geoffrey Keating47e20492005-03-12 10:44:06 +00001861 buffer = cpp_spell_token (pfile, token, buffer, false);
Neil Booth93c803682000-10-28 17:59:06 +00001862
1863 if (token->flags & PASTE_LEFT)
1864 {
1865 *buffer++ = ' ';
1866 *buffer++ = '#';
1867 *buffer++ = '#';
1868 /* Next has PREV_WHITE; see _cpp_create_definition. */
1869 }
1870 }
1871 }
1872
1873 *buffer = '\0';
1874 return pfile->macro_buffer;
1875}