1 /* Part of CPP library. (Macro and #define handling.)
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
4 Written by Per Bothner, 1994.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 In other words, you are welcome to use, share and improve this program.
23 You are forbidden to forbid anyone else to use, share and improve
24 what you give them. Help stamp out software-hoarding! */
28 #include "intl.h" /* for _("<command line>") below. */
34 cpp_hashnode
**params
; /* Parameters, if any. */
35 cpp_token
*expansion
; /* First token of replacement list. */
36 unsigned int line
; /* Starting line number. */
37 unsigned int count
; /* Number of tokens in expansion. */
38 unsigned short paramc
; /* Number of parameters. */
39 unsigned int fun_like
: 1; /* If a function-like macro. */
40 unsigned int variadic
: 1; /* If a variadic macro. */
41 unsigned int syshdr
: 1; /* If macro defined in system header. */
44 typedef struct macro_arg macro_arg
;
47 const cpp_token
**first
; /* First token in unexpanded argument. */
48 const cpp_token
**expanded
; /* Macro-expanded argument. */
49 const cpp_token
*stringified
; /* Stringified argument. */
50 unsigned int count
; /* # of tokens in argument. */
51 unsigned int expanded_count
; /* # of tokens in expanded argument. */
54 /* Macro expansion. */
56 static int enter_macro_context
PARAMS ((cpp_reader
*, cpp_hashnode
*));
57 static int builtin_macro
PARAMS ((cpp_reader
*, cpp_hashnode
*));
58 static void push_token_context
59 PARAMS ((cpp_reader
*, cpp_hashnode
*, const cpp_token
*, unsigned int));
60 static void push_ptoken_context
61 PARAMS ((cpp_reader
*, cpp_hashnode
*, _cpp_buff
*,
62 const cpp_token
**, unsigned int));
63 static _cpp_buff
*collect_args
PARAMS ((cpp_reader
*, const cpp_hashnode
*));
64 static cpp_context
*next_context
PARAMS ((cpp_reader
*));
65 static const cpp_token
*padding_token
66 PARAMS ((cpp_reader
*, const cpp_token
*));
67 static void expand_arg
PARAMS ((cpp_reader
*, macro_arg
*));
68 static unsigned char *quote_string
PARAMS ((unsigned char *,
69 const unsigned char *,
71 static const cpp_token
*new_string_token
PARAMS ((cpp_reader
*, U_CHAR
*,
73 static const cpp_token
*new_number_token
PARAMS ((cpp_reader
*, int));
74 static const cpp_token
*stringify_arg
PARAMS ((cpp_reader
*, macro_arg
*));
75 static void paste_all_tokens
PARAMS ((cpp_reader
*, const cpp_token
*));
76 static bool paste_tokens
PARAMS ((cpp_reader
*, const cpp_token
**,
78 static void replace_args
PARAMS ((cpp_reader
*, cpp_hashnode
*, macro_arg
*));
79 static _cpp_buff
*funlike_invocation_p
PARAMS ((cpp_reader
*, cpp_hashnode
*));
81 /* #define directive parsing and handling. */
83 static cpp_token
*alloc_expansion_token
PARAMS ((cpp_reader
*, cpp_macro
*));
84 static cpp_token
*lex_expansion_token
PARAMS ((cpp_reader
*, cpp_macro
*));
85 static int warn_of_redefinition
PARAMS ((const cpp_hashnode
*,
87 static int save_parameter
PARAMS ((cpp_reader
*, cpp_macro
*, cpp_hashnode
*));
88 static int parse_params
PARAMS ((cpp_reader
*, cpp_macro
*));
89 static void check_trad_stringification
PARAMS ((cpp_reader
*,
93 /* Allocates and returns a CPP_STRING token, containing TEXT of length
94 LEN, after null-terminating it. TEXT must be in permanent storage. */
95 static const cpp_token
*
96 new_string_token (pfile
, text
, len
)
101 cpp_token
*token
= _cpp_temp_token (pfile
);
104 token
->type
= CPP_STRING
;
105 token
->val
.str
.len
= len
;
106 token
->val
.str
.text
= text
;
111 /* Allocates and returns a CPP_NUMBER token evaluating to NUMBER. */
112 static const cpp_token
*
113 new_number_token (pfile
, number
)
117 cpp_token
*token
= _cpp_temp_token (pfile
);
118 unsigned char *buf
= _cpp_unaligned_alloc (pfile
, 20);
120 sprintf ((char *) buf
, "%d", number
);
121 token
->type
= CPP_NUMBER
;
122 token
->val
.str
.text
= buf
;
123 token
->val
.str
.len
= ustrlen (buf
);
128 static const char * const monthnames
[] =
130 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
131 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
134 /* Handle builtin macros like __FILE__, and push the resulting token
135 on the context stack. Also handles _Pragma, for which no new token
136 is created. Returns 1 on success, 0 to return the token to the
139 builtin_macro (pfile
, node
)
143 const cpp_token
*result
;
145 switch (node
->value
.builtin
)
148 cpp_ice (pfile
, "invalid builtin macro \"%s\"", NODE_NAME (node
));
157 const struct line_map
*map
= pfile
->map
;
159 if (node
->value
.builtin
== BT_BASE_FILE
)
160 while (! MAIN_FILE_P (map
))
161 map
= INCLUDED_FROM (&pfile
->line_maps
, map
);
165 buf
= _cpp_unaligned_alloc (pfile
, len
* 4 + 1);
166 len
= quote_string (buf
, (const unsigned char *) name
, len
) - buf
;
168 result
= new_string_token (pfile
, buf
, len
);
172 case BT_INCLUDE_LEVEL
:
173 /* The line map depth counts the primary source as level 1, but
174 historically __INCLUDE_DEPTH__ has called the primary source
176 result
= new_number_token (pfile
, pfile
->line_maps
.depth
- 1);
180 /* If __LINE__ is embedded in a macro, it must expand to the
181 line of the macro's invocation, not its definition.
182 Otherwise things like assert() will not work properly. */
183 result
= new_number_token (pfile
,
184 SOURCE_LINE (pfile
->map
,
185 pfile
->cur_token
[-1].line
));
190 int stdc
= (!CPP_IN_SYSTEM_HEADER (pfile
)
191 || pfile
->spec_nodes
.n__STRICT_ANSI__
->type
!= NT_VOID
);
192 result
= new_number_token (pfile
, stdc
);
198 if (pfile
->date
.type
== CPP_EOF
)
200 /* Allocate __DATE__ and __TIME__ strings from permanent
201 storage. We only do this once, and don't generate them
202 at init time, because time() and localtime() are very
203 slow on some systems. */
204 time_t tt
= time (NULL
);
205 struct tm
*tb
= localtime (&tt
);
207 pfile
->date
.val
.str
.text
=
208 _cpp_unaligned_alloc (pfile
, sizeof ("Oct 11 1347"));
209 pfile
->date
.val
.str
.len
= sizeof ("Oct 11 1347") - 1;
210 pfile
->date
.type
= CPP_STRING
;
211 pfile
->date
.flags
= 0;
212 sprintf ((char *) pfile
->date
.val
.str
.text
, "%s %2d %4d",
213 monthnames
[tb
->tm_mon
], tb
->tm_mday
, tb
->tm_year
+ 1900);
215 pfile
->time
.val
.str
.text
=
216 _cpp_unaligned_alloc (pfile
, sizeof ("12:34:56"));
217 pfile
->time
.val
.str
.len
= sizeof ("12:34:56") - 1;
218 pfile
->time
.type
= CPP_STRING
;
219 pfile
->time
.flags
= 0;
220 sprintf ((char *) pfile
->time
.val
.str
.text
, "%02d:%02d:%02d",
221 tb
->tm_hour
, tb
->tm_min
, tb
->tm_sec
);
224 if (node
->value
.builtin
== BT_DATE
)
225 result
= &pfile
->date
;
227 result
= &pfile
->time
;
231 /* Don't interpret _Pragma within directives. The standard is
232 not clear on this, but to me this makes most sense. */
233 if (pfile
->state
.in_directive
)
236 _cpp_do__Pragma (pfile
);
240 push_token_context (pfile
, NULL
, result
, 1);
244 /* Adds backslashes before all backslashes and double quotes appearing
245 in strings. Non-printable characters are converted to octal. */
247 quote_string (dest
, src
, len
)
256 if (c
== '\\' || c
== '"')
267 sprintf ((char *) dest
, "\\%03o", c
);
276 /* Convert a token sequence to a single string token according to the
277 rules of the ISO C #-operator. */
278 static const cpp_token
*
279 stringify_arg (pfile
, arg
)
283 unsigned char *dest
= BUFF_FRONT (pfile
->u_buff
);
284 unsigned int i
, escape_it
, backslash_count
= 0;
285 const cpp_token
*source
= NULL
;
288 /* Loop, reading in the argument's tokens. */
289 for (i
= 0; i
< arg
->count
; i
++)
291 const cpp_token
*token
= arg
->first
[i
];
293 if (token
->type
== CPP_PADDING
)
296 source
= token
->val
.source
;
300 escape_it
= (token
->type
== CPP_STRING
|| token
->type
== CPP_WSTRING
301 || token
->type
== CPP_CHAR
|| token
->type
== CPP_WCHAR
);
303 /* Room for each char being written in octal, initial space and
305 len
= cpp_token_len (token
);
310 if ((size_t) (BUFF_LIMIT (pfile
->u_buff
) - dest
) < len
)
312 size_t len_so_far
= dest
- BUFF_FRONT (pfile
->u_buff
);
313 _cpp_extend_buff (pfile
, &pfile
->u_buff
, len
);
314 dest
= BUFF_FRONT (pfile
->u_buff
) + len_so_far
;
317 /* Leading white space? */
318 if (dest
!= BUFF_FRONT (pfile
->u_buff
))
322 if (source
->flags
& PREV_WHITE
)
329 _cpp_buff
*buff
= _cpp_get_buff (pfile
, len
);
330 unsigned char *buf
= BUFF_FRONT (buff
);
331 len
= cpp_spell_token (pfile
, token
, buf
) - buf
;
332 dest
= quote_string (dest
, buf
, len
);
333 _cpp_release_buff (pfile
, buff
);
336 dest
= cpp_spell_token (pfile
, token
, dest
);
338 if (token
->type
== CPP_OTHER
&& token
->val
.c
== '\\')
344 /* Ignore the final \ of invalid string literals. */
345 if (backslash_count
& 1)
347 cpp_warning (pfile
, "invalid string literal, ignoring final '\\'");
351 /* Commit the memory, including NUL, and return the token. */
352 len
= dest
- BUFF_FRONT (pfile
->u_buff
);
353 BUFF_FRONT (pfile
->u_buff
) = dest
+ 1;
354 return new_string_token (pfile
, dest
- len
, len
);
357 /* Try to paste two tokens. On success, return non-zero. In any
358 case, PLHS is updated to point to the pasted token, which is
359 guaranteed to not have the PASTE_LEFT flag set. */
361 paste_tokens (pfile
, plhs
, rhs
)
363 const cpp_token
**plhs
, *rhs
;
365 unsigned char *buf
, *end
;
366 const cpp_token
*lhs
;
371 len
= cpp_token_len (lhs
) + cpp_token_len (rhs
) + 1;
372 buf
= (unsigned char *) alloca (len
);
373 end
= cpp_spell_token (pfile
, lhs
, buf
);
375 /* Avoid comment headers, since they are still processed in stage 3.
376 It is simpler to insert a space here, rather than modifying the
377 lexer to ignore comments in some circumstances. Simply returning
378 false doesn't work, since we want to clear the PASTE_LEFT flag. */
379 if (lhs
->type
== CPP_DIV
380 && (rhs
->type
== CPP_MULT
|| rhs
->type
== CPP_DIV
))
382 end
= cpp_spell_token (pfile
, rhs
, end
);
385 cpp_push_buffer (pfile
, buf
, end
- buf
, /* from_stage3 */ true, 1);
387 /* Tweak the column number the lexer will report. */
388 pfile
->buffer
->col_adjust
= pfile
->cur_token
[-1].col
- 1;
390 /* We don't want a leading # to be interpreted as a directive. */
391 pfile
->buffer
->saved_flags
= 0;
393 /* Set pfile->cur_token as required by _cpp_lex_direct. */
394 pfile
->cur_token
= _cpp_temp_token (pfile
);
395 *plhs
= _cpp_lex_direct (pfile
);
396 valid
= pfile
->buffer
->cur
== pfile
->buffer
->rlimit
;
397 _cpp_pop_buffer (pfile
);
402 /* Handles an arbitrarily long sequence of ## operators. This
403 implementation is left-associative, non-recursive, and finishes a
404 paste before handling succeeding ones. If the paste fails, we back
405 up a token to just after the ## operator, with the effect that it
406 appears in the output stream normally. */
408 paste_all_tokens (pfile
, lhs
)
410 const cpp_token
*lhs
;
412 const cpp_token
*rhs
;
413 cpp_context
*context
= pfile
->context
;
417 /* Take the token directly from the current context. We can do
418 this, because we are in the replacement list of either an
419 object-like macro, or a function-like macro with arguments
420 inserted. In either case, the constraints to #define
421 guarantee we have at least one more token. */
422 if (context
->direct_p
)
423 rhs
= context
->first
.token
++;
425 rhs
= *context
->first
.ptoken
++;
427 if (rhs
->type
== CPP_PADDING
)
430 if (!paste_tokens (pfile
, &lhs
, rhs
))
432 _cpp_backup_tokens (pfile
, 1);
434 /* Mandatory warning for all apart from assembler. */
435 if (CPP_OPTION (pfile
, lang
) != CLK_ASM
)
437 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
438 cpp_token_as_text (pfile
, lhs
),
439 cpp_token_as_text (pfile
, rhs
));
443 while (rhs
->flags
& PASTE_LEFT
);
445 /* Put the resulting token in its own context. */
446 push_token_context (pfile
, NULL
, lhs
, 1);
449 /* Reads and returns the arguments to a function-like macro invocation.
450 Assumes the opening parenthesis has been processed. If there is an
451 error, emits an appropriate diagnostic and returns NULL. */
453 collect_args (pfile
, node
)
455 const cpp_hashnode
*node
;
457 _cpp_buff
*buff
, *base_buff
;
459 macro_arg
*args
, *arg
;
460 const cpp_token
*token
;
464 macro
= node
->value
.macro
;
466 argc
= macro
->paramc
;
469 buff
= _cpp_get_buff (pfile
, argc
* (50 * sizeof (cpp_token
*)
470 + sizeof (macro_arg
)));
472 args
= (macro_arg
*) buff
->base
;
473 memset (args
, 0, argc
* sizeof (macro_arg
));
474 buff
->cur
= (unsigned char *) &args
[argc
];
475 arg
= args
, argc
= 0;
477 /* Collect the tokens making up each argument. We don't yet know
478 how many arguments have been supplied, whether too many or too
479 few. Hence the slightly bizarre usage of "argc" and "arg". */
482 unsigned int paren_depth
= 0;
483 unsigned int ntokens
= 0;
486 arg
->first
= (const cpp_token
**) buff
->cur
;
490 /* Require space for 2 new tokens (including a CPP_EOF). */
491 if ((unsigned char *) &arg
->first
[ntokens
+ 2] > buff
->limit
)
493 buff
= _cpp_append_extend_buff (pfile
, buff
,
494 1000 * sizeof (cpp_token
*));
495 arg
->first
= (const cpp_token
**) buff
->cur
;
498 token
= cpp_get_token (pfile
);
500 if (token
->type
== CPP_PADDING
)
502 /* Drop leading padding. */
506 else if (token
->type
== CPP_OPEN_PAREN
)
508 else if (token
->type
== CPP_CLOSE_PAREN
)
510 if (paren_depth
-- == 0)
513 else if (token
->type
== CPP_COMMA
)
515 /* A comma does not terminate an argument within
516 parentheses or as part of a variable argument. */
518 && ! (macro
->variadic
&& argc
== macro
->paramc
))
521 else if (token
->type
== CPP_EOF
522 || (token
->type
== CPP_HASH
&& token
->flags
& BOL
))
525 arg
->first
[ntokens
++] = token
;
528 /* Drop trailing padding. */
529 while (ntokens
> 0 && arg
->first
[ntokens
- 1]->type
== CPP_PADDING
)
532 arg
->count
= ntokens
;
533 arg
->first
[ntokens
] = &pfile
->eof
;
535 /* Terminate the argument. Excess arguments loop back and
536 overwrite the final legitimate argument, before failing. */
537 if (argc
<= macro
->paramc
)
539 buff
->cur
= (unsigned char *) &arg
->first
[ntokens
+ 1];
540 if (argc
!= macro
->paramc
)
544 while (token
->type
!= CPP_CLOSE_PAREN
545 && token
->type
!= CPP_EOF
546 && token
->type
!= CPP_HASH
);
548 if (token
->type
== CPP_EOF
|| token
->type
== CPP_HASH
)
550 bool step_back
= false;
552 /* 6.10.3 paragraph 11: If there are sequences of preprocessing
553 tokens within the list of arguments that would otherwise act
554 as preprocessing directives, the behavior is undefined.
556 This implementation will report a hard error, terminate the
557 macro invocation, and proceed to process the directive. */
558 if (token
->type
== CPP_HASH
)
561 "directives may not be used inside a macro argument");
565 step_back
= (pfile
->context
->prev
|| pfile
->state
.in_directive
);
567 /* We still need the CPP_EOF to end directives, and to end
568 pre-expansion of a macro argument. Step back is not
569 unconditional, since we don't want to return a CPP_EOF to our
570 callers at the end of an -include-d file. */
572 _cpp_backup_tokens (pfile
, 1);
573 cpp_error (pfile
, "unterminated argument list invoking macro \"%s\"",
577 else if (argc
< macro
->paramc
)
579 /* As an extension, a rest argument is allowed to not appear in
580 the invocation at all.
581 e.g. #define debug(format, args...) something
584 This is exactly the same as if there had been an empty rest
585 argument - debug("string", ). */
587 if (argc
+ 1 == macro
->paramc
&& macro
->variadic
)
589 if (CPP_PEDANTIC (pfile
) && ! macro
->syshdr
)
590 cpp_pedwarn (pfile
, "ISO C99 requires rest arguments to be used");
595 "macro \"%s\" requires %u arguments, but only %u given",
596 NODE_NAME (node
), macro
->paramc
, argc
);
600 else if (argc
> macro
->paramc
)
602 /* Empty argument to a macro taking no arguments is OK. */
603 if (argc
!= 1 || arg
->count
)
606 "macro \"%s\" passed %u arguments, but takes just %u",
607 NODE_NAME (node
), argc
, macro
->paramc
);
615 _cpp_release_buff (pfile
, base_buff
);
619 /* Search for an opening parenthesis to the macro of NODE, in such a
620 way that, if none is found, we don't lose the information in any
621 intervening padding tokens. If we find the parenthesis, collect
622 the arguments and return the buffer containing them. */
624 funlike_invocation_p (pfile
, node
)
628 const cpp_token
*token
, *padding
= NULL
;
632 token
= cpp_get_token (pfile
);
633 if (token
->type
!= CPP_PADDING
)
636 || (!(padding
->flags
& PREV_WHITE
) && token
->val
.source
== NULL
))
640 if (token
->type
== CPP_OPEN_PAREN
)
642 pfile
->state
.parsing_args
= 2;
643 return collect_args (pfile
, node
);
646 /* Back up. We may have skipped padding, in which case backing up
647 more than one token when expanding macros is in general too
648 difficult. We re-insert it in its own context. */
649 _cpp_backup_tokens (pfile
, 1);
651 push_token_context (pfile
, NULL
, padding
, 1);
656 /* Push the context of a macro onto the context stack. TOKEN is the
657 macro name. If we can successfully start expanding the macro,
658 TOKEN is replaced with the first token of the expansion, and we
661 enter_macro_context (pfile
, node
)
665 /* Macros invalidate controlling macros. */
666 pfile
->mi_valid
= false;
668 /* Handle macros and the _Pragma operator. */
669 if (! (node
->flags
& NODE_BUILTIN
))
671 cpp_macro
*macro
= node
->value
.macro
;
677 pfile
->state
.prevent_expansion
++;
678 pfile
->keep_tokens
++;
679 pfile
->state
.parsing_args
= 1;
680 buff
= funlike_invocation_p (pfile
, node
);
681 pfile
->state
.parsing_args
= 0;
682 pfile
->keep_tokens
--;
683 pfile
->state
.prevent_expansion
--;
687 if (CPP_WTRADITIONAL (pfile
) && ! node
->value
.macro
->syshdr
)
689 "function-like macro \"%s\" must be used with arguments in traditional C",
695 if (node
->value
.macro
->paramc
> 0)
696 replace_args (pfile
, node
, (macro_arg
*) buff
->base
);
697 _cpp_release_buff (pfile
, buff
);
700 /* Disable the macro within its expansion. */
701 node
->flags
|= NODE_DISABLED
;
703 if (macro
->paramc
== 0)
704 push_token_context (pfile
, node
, macro
->expansion
, macro
->count
);
709 return builtin_macro (pfile
, node
);
712 /* Take the expansion of a function-like MACRO, replacing parameters
713 with the actual arguments. Each argument is macro-expanded before
714 replacement, unless operated upon by the # or ## operators. */
716 replace_args (pfile
, node
, args
)
721 unsigned int i
, total
;
722 const cpp_token
*src
, *limit
;
723 const cpp_token
**dest
, **first
;
728 /* First, fully macro-expand arguments, calculating the number of
729 tokens in the final expansion as we go. The ordering of the if
730 statements below is subtle; we must handle stringification before
732 macro
= node
->value
.macro
;
733 total
= macro
->count
;
734 limit
= macro
->expansion
+ macro
->count
;
736 for (src
= macro
->expansion
; src
< limit
; src
++)
737 if (src
->type
== CPP_MACRO_ARG
)
739 /* Leading and trailing padding tokens. */
742 /* We have an argument. If it is not being stringified or
743 pasted it is macro-replaced before insertion. */
744 arg
= &args
[src
->val
.arg_no
- 1];
746 if (src
->flags
& STRINGIFY_ARG
)
748 if (!arg
->stringified
)
749 arg
->stringified
= stringify_arg (pfile
, arg
);
751 else if ((src
->flags
& PASTE_LEFT
)
752 || (src
> macro
->expansion
&& (src
[-1].flags
& PASTE_LEFT
)))
753 total
+= arg
->count
- 1;
757 expand_arg (pfile
, arg
);
758 total
+= arg
->expanded_count
- 1;
762 /* Now allocate space for the expansion, copy the tokens and replace
764 buff
= _cpp_get_buff (pfile
, total
* sizeof (cpp_token
*));
765 first
= (const cpp_token
**) buff
->base
;
768 for (src
= macro
->expansion
; src
< limit
; src
++)
771 const cpp_token
**from
, **paste_flag
;
773 if (src
->type
!= CPP_MACRO_ARG
)
780 arg
= &args
[src
->val
.arg_no
- 1];
781 if (src
->flags
& STRINGIFY_ARG
)
782 count
= 1, from
= &arg
->stringified
;
783 else if (src
->flags
& PASTE_LEFT
)
784 count
= arg
->count
, from
= arg
->first
;
785 else if (src
!= macro
->expansion
&& (src
[-1].flags
& PASTE_LEFT
))
787 count
= arg
->count
, from
= arg
->first
;
790 /* GCC has special semantics for , ## b where b is a
791 varargs parameter: the comma disappears if b was
792 given no actual arguments (not merely if b is an
793 empty argument); otherwise the paste flag is removed. */
794 if (dest
[-1]->type
== CPP_COMMA
796 && src
->val
.arg_no
== macro
->paramc
)
801 paste_flag
= dest
- 1;
803 /* Remove the paste flag if the RHS is a placemarker. */
805 paste_flag
= dest
- 1;
809 count
= arg
->expanded_count
, from
= arg
->expanded
;
811 /* Padding on the left of an argument (unless RHS of ##). */
812 if (!pfile
->state
.in_directive
813 && src
!= macro
->expansion
&& !(src
[-1].flags
& PASTE_LEFT
))
814 *dest
++ = padding_token (pfile
, src
);
818 memcpy (dest
, from
, count
* sizeof (cpp_token
*));
821 /* With a non-empty argument on the LHS of ##, the last
822 token should be flagged PASTE_LEFT. */
823 if (src
->flags
& PASTE_LEFT
)
824 paste_flag
= dest
- 1;
827 /* Avoid paste on RHS (even case count == 0). */
828 if (!pfile
->state
.in_directive
&& !(src
->flags
& PASTE_LEFT
))
829 *dest
++ = &pfile
->avoid_paste
;
831 /* Add a new paste flag, or remove an unwanted one. */
834 cpp_token
*token
= _cpp_temp_token (pfile
);
835 token
->type
= (*paste_flag
)->type
;
836 token
->val
.str
= (*paste_flag
)->val
.str
;
837 if (src
->flags
& PASTE_LEFT
)
838 token
->flags
= (*paste_flag
)->flags
| PASTE_LEFT
;
840 token
->flags
= (*paste_flag
)->flags
& ~PASTE_LEFT
;
845 /* Free the expanded arguments. */
846 for (i
= 0; i
< macro
->paramc
; i
++)
847 if (args
[i
].expanded
)
848 free (args
[i
].expanded
);
850 push_ptoken_context (pfile
, node
, buff
, first
, dest
- first
);
853 /* Return a special padding token, with padding inherited from SOURCE. */
854 static const cpp_token
*
855 padding_token (pfile
, source
)
857 const cpp_token
*source
;
859 cpp_token
*result
= _cpp_temp_token (pfile
);
861 result
->type
= CPP_PADDING
;
862 result
->val
.source
= source
;
867 /* Move to the next context. Create one if there is none. */
872 cpp_context
*result
= pfile
->context
->next
;
876 result
= xnew (cpp_context
);
877 result
->prev
= pfile
->context
;
879 pfile
->context
->next
= result
;
882 pfile
->context
= result
;
886 /* Push a list of pointers to tokens. */
888 push_ptoken_context (pfile
, macro
, buff
, first
, count
)
892 const cpp_token
**first
;
895 cpp_context
*context
= next_context (pfile
);
897 context
->direct_p
= false;
898 context
->macro
= macro
;
899 context
->buff
= buff
;
900 context
->first
.ptoken
= first
;
901 context
->last
.ptoken
= first
+ count
;
904 /* Push a list of tokens. */
906 push_token_context (pfile
, macro
, first
, count
)
909 const cpp_token
*first
;
912 cpp_context
*context
= next_context (pfile
);
914 context
->direct_p
= true;
915 context
->macro
= macro
;
916 context
->buff
= NULL
;
917 context
->first
.token
= first
;
918 context
->last
.token
= first
+ count
;
922 expand_arg (pfile
, arg
)
926 unsigned int capacity
;
931 /* Loop, reading in the arguments. */
933 arg
->expanded
= (const cpp_token
**)
934 xmalloc (capacity
* sizeof (cpp_token
*));
936 push_ptoken_context (pfile
, NULL
, NULL
, arg
->first
, arg
->count
+ 1);
939 const cpp_token
*token
;
941 if (arg
->expanded_count
+ 1 >= capacity
)
944 arg
->expanded
= (const cpp_token
**)
945 xrealloc (arg
->expanded
, capacity
* sizeof (cpp_token
*));
948 token
= cpp_get_token (pfile
);
950 if (token
->type
== CPP_EOF
)
953 arg
->expanded
[arg
->expanded_count
++] = token
;
956 _cpp_pop_context (pfile
);
960 _cpp_pop_context (pfile
)
963 cpp_context
*context
= pfile
->context
;
965 /* Re-enable a macro when leaving its expansion. */
967 context
->macro
->flags
&= ~NODE_DISABLED
;
970 _cpp_release_buff (pfile
, context
->buff
);
972 pfile
->context
= context
->prev
;
975 /* Eternal routine to get a token. Also used nearly everywhere
976 internally, except for places where we know we can safely call
977 the lexer directly, such as lexing a directive name.
979 Macro expansions and directives are transparently handled,
980 including entering included files. Thus tokens are post-macro
981 expansion, and after any intervening directives. External callers
982 see CPP_EOF only at EOF. Internal callers also see it when meeting
983 a directive inside a macro call, when at the end of a directive and
984 state.in_directive is still 1, and at the end of argument
987 cpp_get_token (pfile
)
990 const cpp_token
*result
;
995 cpp_context
*context
= pfile
->context
;
997 /* Context->prev == 0 <=> base context. */
999 result
= _cpp_lex_token (pfile
);
1000 else if (context
->first
.token
!= context
->last
.token
)
1002 if (context
->direct_p
)
1003 result
= context
->first
.token
++;
1005 result
= *context
->first
.ptoken
++;
1007 if (result
->flags
& PASTE_LEFT
)
1009 paste_all_tokens (pfile
, result
);
1010 if (pfile
->state
.in_directive
)
1012 return padding_token (pfile
, result
);
1017 _cpp_pop_context (pfile
);
1018 if (pfile
->state
.in_directive
)
1020 return &pfile
->avoid_paste
;
1023 if (result
->type
!= CPP_NAME
)
1026 node
= result
->val
.node
;
1028 if (node
->type
!= NT_MACRO
|| (result
->flags
& NO_EXPAND
))
1031 if (!(node
->flags
& NODE_DISABLED
))
1033 if (!pfile
->state
.prevent_expansion
1034 && enter_macro_context (pfile
, node
))
1036 if (pfile
->state
.in_directive
)
1038 return padding_token (pfile
, result
);
1043 /* Flag this token as always unexpandable. */
1044 cpp_token
*t
= _cpp_temp_token (pfile
);
1045 t
->type
= result
->type
;
1046 t
->flags
= result
->flags
| NO_EXPAND
;
1047 t
->val
.str
= result
->val
.str
;
1057 /* Returns true if we're expanding an object-like macro that was
1058 defined in a system header. Just checks the macro at the top of
1059 the stack. Used for diagnostic suppression. */
1061 cpp_sys_macro_p (pfile
)
1064 cpp_hashnode
*node
= pfile
->context
->macro
;
1066 return node
&& node
->value
.macro
&& node
->value
.macro
->syshdr
;
1069 /* Read each token in, until EOF. Directives are transparently
1072 cpp_scan_nooutput (pfile
)
1075 while (cpp_get_token (pfile
)->type
!= CPP_EOF
)
1079 /* Step back one (or more) tokens. Can only step mack more than 1 if
1080 they are from the lexer, and not from macro expansion. */
1082 _cpp_backup_tokens (pfile
, count
)
1086 if (pfile
->context
->prev
== NULL
)
1088 pfile
->lookaheads
+= count
;
1092 if (pfile
->cur_token
== pfile
->cur_run
->base
1093 /* Possible with -fpreprocessed and no leading #line. */
1094 && pfile
->cur_run
->prev
!= NULL
)
1096 pfile
->cur_run
= pfile
->cur_run
->prev
;
1097 pfile
->cur_token
= pfile
->cur_run
->limit
;
1105 if (pfile
->context
->direct_p
)
1106 pfile
->context
->first
.token
--;
1108 pfile
->context
->first
.ptoken
--;
1112 /* #define directive parsing and handling. */
1114 /* Returns non-zero if a macro redefinition warning is required. */
1116 warn_of_redefinition (node
, macro2
)
1117 const cpp_hashnode
*node
;
1118 const cpp_macro
*macro2
;
1120 const cpp_macro
*macro1
;
1123 /* Some redefinitions need to be warned about regardless. */
1124 if (node
->flags
& NODE_WARN
)
1127 /* Redefinition of a macro is allowed if and only if the old and new
1128 definitions are the same. (6.10.3 paragraph 2). */
1129 macro1
= node
->value
.macro
;
1131 /* The quick failures. */
1132 if (macro1
->count
!= macro2
->count
1133 || macro1
->paramc
!= macro2
->paramc
1134 || macro1
->fun_like
!= macro2
->fun_like
1135 || macro1
->variadic
!= macro2
->variadic
)
1138 /* Check each token. */
1139 for (i
= 0; i
< macro1
->count
; i
++)
1140 if (! _cpp_equiv_tokens (¯o1
->expansion
[i
], ¯o2
->expansion
[i
]))
1143 /* Check parameter spellings. */
1144 for (i
= 0; i
< macro1
->paramc
; i
++)
1145 if (macro1
->params
[i
] != macro2
->params
[i
])
1151 /* Free the definition of hashnode H. */
1154 _cpp_free_definition (h
)
1157 /* Macros and assertions no longer have anything to free. */
1159 /* Clear builtin flag in case of redefinition. */
1160 h
->flags
&= ~(NODE_BUILTIN
| NODE_DISABLED
);
1163 /* Save parameter NODE to the parameter list of macro MACRO. Returns
1164 zero on success, non-zero if the parameter is a duplicate. */
1166 save_parameter (pfile
, macro
, node
)
1171 /* Constraint 6.10.3.6 - duplicate parameter names. */
1172 if (node
->arg_index
)
1174 cpp_error (pfile
, "duplicate macro parameter \"%s\"", NODE_NAME (node
));
1178 if (BUFF_ROOM (pfile
->a_buff
)
1179 < (macro
->paramc
+ 1) * sizeof (cpp_hashnode
*))
1180 _cpp_extend_buff (pfile
, &pfile
->a_buff
, sizeof (cpp_hashnode
*));
1182 ((cpp_hashnode
**) BUFF_FRONT (pfile
->a_buff
))[macro
->paramc
++] = node
;
1183 node
->arg_index
= macro
->paramc
;
1187 /* Check the syntax of the parameters in a MACRO definition. */
1189 parse_params (pfile
, macro
)
1193 unsigned int prev_ident
= 0;
1197 const cpp_token
*token
= _cpp_lex_token (pfile
);
1199 switch (token
->type
)
1202 cpp_error (pfile
, "\"%s\" may not appear in macro parameter list",
1203 cpp_token_as_text (pfile
, token
));
1209 cpp_error (pfile
, "macro parameters must be comma-separated");
1214 if (save_parameter (pfile
, macro
, token
->val
.node
))
1218 case CPP_CLOSE_PAREN
:
1219 if (prev_ident
|| macro
->paramc
== 0)
1222 /* Fall through to pick up the error. */
1226 cpp_error (pfile
, "parameter name missing");
1233 macro
->variadic
= 1;
1236 save_parameter (pfile
, macro
, pfile
->spec_nodes
.n__VA_ARGS__
);
1237 pfile
->state
.va_args_ok
= 1;
1238 if (! CPP_OPTION (pfile
, c99
) && CPP_OPTION (pfile
, pedantic
))
1240 "anonymous variadic macros were introduced in C99");
1242 else if (CPP_OPTION (pfile
, pedantic
))
1243 cpp_pedwarn (pfile
, "ISO C does not permit named variadic macros");
1245 /* We're at the end, and just expect a closing parenthesis. */
1246 token
= _cpp_lex_token (pfile
);
1247 if (token
->type
== CPP_CLOSE_PAREN
)
1252 cpp_error (pfile
, "missing ')' in macro parameter list");
1258 /* Allocate room for a token from a macro's replacement list. */
1260 alloc_expansion_token (pfile
, macro
)
1264 if (BUFF_ROOM (pfile
->a_buff
) < (macro
->count
+ 1) * sizeof (cpp_token
))
1265 _cpp_extend_buff (pfile
, &pfile
->a_buff
, sizeof (cpp_token
));
1267 return &((cpp_token
*) BUFF_FRONT (pfile
->a_buff
))[macro
->count
++];
1271 lex_expansion_token (pfile
, macro
)
1277 pfile
->cur_token
= alloc_expansion_token (pfile
, macro
);
1278 token
= _cpp_lex_direct (pfile
);
1280 /* Is this an argument? */
1281 if (token
->type
== CPP_NAME
&& token
->val
.node
->arg_index
)
1283 token
->type
= CPP_MACRO_ARG
;
1284 token
->val
.arg_no
= token
->val
.node
->arg_index
;
1286 else if (CPP_WTRADITIONAL (pfile
) && macro
->paramc
> 0
1287 && (token
->type
== CPP_STRING
|| token
->type
== CPP_CHAR
))
1288 check_trad_stringification (pfile
, macro
, &token
->val
.str
);
1293 /* Parse a macro and save its expansion. Returns non-zero on success. */
1295 _cpp_create_definition (pfile
, node
)
1300 cpp_token
*token
, *saved_cur_token
;
1301 const cpp_token
*ctoken
;
1302 unsigned int i
, ok
= 1;
1304 macro
= (cpp_macro
*) _cpp_aligned_alloc (pfile
, sizeof (cpp_macro
));
1305 macro
->line
= pfile
->directive_line
;
1308 macro
->variadic
= 0;
1310 macro
->fun_like
= 0;
1312 /* Get the first token of the expansion (or the '(' of a
1313 function-like macro). */
1314 ctoken
= _cpp_lex_token (pfile
);
1316 if (ctoken
->type
== CPP_OPEN_PAREN
&& !(ctoken
->flags
& PREV_WHITE
))
1318 ok
= parse_params (pfile
, macro
);
1319 macro
->params
= (cpp_hashnode
**) BUFF_FRONT (pfile
->a_buff
);
1323 /* Success. Commit the parameter array. */
1324 BUFF_FRONT (pfile
->a_buff
) = (U_CHAR
*) ¯o
->params
[macro
->paramc
];
1325 macro
->fun_like
= 1;
1327 else if (ctoken
->type
!= CPP_EOF
&& !(ctoken
->flags
& PREV_WHITE
))
1328 cpp_pedwarn (pfile
, "ISO C requires whitespace after the macro name");
1330 saved_cur_token
= pfile
->cur_token
;
1332 if (macro
->fun_like
)
1333 token
= lex_expansion_token (pfile
, macro
);
1336 token
= alloc_expansion_token (pfile
, macro
);
1342 /* Check the stringifying # constraint 6.10.3.2.1 of
1343 function-like macros when lexing the subsequent token. */
1344 if (macro
->count
> 1 && token
[-1].type
== CPP_HASH
&& macro
->fun_like
)
1346 if (token
->type
== CPP_MACRO_ARG
)
1348 token
->flags
&= ~PREV_WHITE
;
1349 token
->flags
|= STRINGIFY_ARG
;
1350 token
->flags
|= token
[-1].flags
& PREV_WHITE
;
1351 token
[-1] = token
[0];
1354 /* Let assembler get away with murder. */
1355 else if (CPP_OPTION (pfile
, lang
) != CLK_ASM
)
1358 cpp_error (pfile
, "'#' is not followed by a macro parameter");
1363 if (token
->type
== CPP_EOF
)
1366 /* Paste operator constraint 6.10.3.3.1. */
1367 if (token
->type
== CPP_PASTE
)
1369 /* Token-paste ##, can appear in both object-like and
1370 function-like macros, but not at the ends. */
1371 if (--macro
->count
> 0)
1372 token
= lex_expansion_token (pfile
, macro
);
1374 if (macro
->count
== 0 || token
->type
== CPP_EOF
)
1378 "'##' cannot appear at either end of a macro expansion");
1382 token
[-1].flags
|= PASTE_LEFT
;
1385 token
= lex_expansion_token (pfile
, macro
);
1388 macro
->expansion
= (cpp_token
*) BUFF_FRONT (pfile
->a_buff
);
1390 /* Don't count the CPP_EOF. */
1393 /* Clear whitespace on first token for macro equivalence purposes. */
1395 macro
->expansion
[0].flags
&= ~PREV_WHITE
;
1397 /* Commit the memory. */
1398 BUFF_FRONT (pfile
->a_buff
) = (U_CHAR
*) ¯o
->expansion
[macro
->count
];
1400 /* Implement the macro-defined-to-itself optimisation. */
1401 if (macro
->count
== 1 && !macro
->fun_like
1402 && macro
->expansion
[0].type
== CPP_NAME
1403 && macro
->expansion
[0].val
.node
== node
)
1404 node
->flags
|= NODE_DISABLED
;
1406 /* To suppress some diagnostics. */
1407 macro
->syshdr
= pfile
->map
->sysp
!= 0;
1409 if (node
->type
!= NT_VOID
)
1411 if (warn_of_redefinition (node
, macro
))
1413 cpp_pedwarn_with_line (pfile
, pfile
->directive_line
, 0,
1414 "\"%s\" redefined", NODE_NAME (node
));
1416 if (node
->type
== NT_MACRO
&& !(node
->flags
& NODE_BUILTIN
))
1417 cpp_pedwarn_with_line (pfile
, node
->value
.macro
->line
, 0,
1418 "this is the location of the previous definition");
1420 _cpp_free_definition (node
);
1423 /* Enter definition in hash table. */
1424 node
->type
= NT_MACRO
;
1425 node
->value
.macro
= macro
;
1426 if (! ustrncmp (NODE_NAME (node
), DSC ("__STDC_")))
1427 node
->flags
|= NODE_WARN
;
1431 /* Set type for SEEN_EOL() in cpplib.c, restore the lexer position. */
1432 saved_cur_token
[-1].type
= pfile
->cur_token
[-1].type
;
1433 pfile
->cur_token
= saved_cur_token
;
1437 /* Stop the lexer accepting __VA_ARGS__. */
1438 pfile
->state
.va_args_ok
= 0;
1440 /* Clear the fast argument lookup indices. */
1441 for (i
= macro
->paramc
; i
-- > 0; )
1442 macro
->params
[i
]->arg_index
= 0;
1447 /* Warn if a token in `string' matches one of the function macro
1448 arguments in `info'. This function assumes that the macro is a
1449 function macro and not an object macro. */
1451 check_trad_stringification (pfile
, macro
, string
)
1453 const cpp_macro
*macro
;
1454 const cpp_string
*string
;
1456 unsigned int i
, len
;
1457 const U_CHAR
*p
, *q
, *limit
= string
->text
+ string
->len
;
1459 /* Loop over the string. */
1460 for (p
= string
->text
; p
< limit
; p
= q
)
1462 /* Find the start of an identifier. */
1463 while (p
< limit
&& !is_idstart (*p
))
1466 /* Find the end of the identifier. */
1468 while (q
< limit
&& is_idchar (*q
))
1473 /* Loop over the function macro arguments to see if the
1474 identifier inside the string matches one of them. */
1475 for (i
= 0; i
< macro
->paramc
; i
++)
1477 const cpp_hashnode
*node
= macro
->params
[i
];
1479 if (NODE_LEN (node
) == len
1480 && !memcmp (p
, NODE_NAME (node
), len
))
1483 "macro argument \"%s\" would be stringified with -traditional",
1491 /* Returns the name, arguments and expansion of a macro, in a format
1492 suitable to be read back in again, and therefore also for DWARF 2
1493 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
1494 Caller is expected to generate the "#define" bit if needed. The
1495 returned text is temporary, and automatically freed later. */
1497 const unsigned char *
1498 cpp_macro_definition (pfile
, node
)
1500 const cpp_hashnode
*node
;
1502 unsigned int i
, len
;
1503 const cpp_macro
*macro
= node
->value
.macro
;
1504 unsigned char *buffer
;
1506 if (node
->type
!= NT_MACRO
|| (node
->flags
& NODE_BUILTIN
))
1508 cpp_ice (pfile
, "invalid hash type %d in cpp_macro_definition", node
->type
);
1512 /* Calculate length. */
1513 len
= NODE_LEN (node
) + 1; /* ' ' */
1514 if (macro
->fun_like
)
1516 len
+= 3; /* "()" plus possible final "." of named
1517 varargs (we have + 2 below). */
1518 for (i
= 0; i
< macro
->paramc
; i
++)
1519 len
+= NODE_LEN (macro
->params
[i
]) + 2; /* ", " */
1522 for (i
= 0; i
< macro
->count
; i
++)
1524 cpp_token
*token
= ¯o
->expansion
[i
];
1526 if (token
->type
== CPP_MACRO_ARG
)
1527 len
+= NODE_LEN (macro
->params
[token
->val
.arg_no
- 1]);
1529 len
+= cpp_token_len (token
); /* Includes room for ' '. */
1530 if (token
->flags
& STRINGIFY_ARG
)
1532 if (token
->flags
& PASTE_LEFT
)
1533 len
+= 3; /* " ##" */
1536 if (len
> pfile
->macro_buffer_len
)
1538 pfile
->macro_buffer
= (U_CHAR
*) xrealloc (pfile
->macro_buffer
, len
);
1539 pfile
->macro_buffer_len
= len
;
1542 /* Fill in the buffer. Start with the macro name. */
1543 buffer
= pfile
->macro_buffer
;
1544 memcpy (buffer
, NODE_NAME (node
), NODE_LEN (node
));
1545 buffer
+= NODE_LEN (node
);
1547 /* Parameter names. */
1548 if (macro
->fun_like
)
1551 for (i
= 0; i
< macro
->paramc
; i
++)
1553 cpp_hashnode
*param
= macro
->params
[i
];
1555 if (param
!= pfile
->spec_nodes
.n__VA_ARGS__
)
1557 memcpy (buffer
, NODE_NAME (param
), NODE_LEN (param
));
1558 buffer
+= NODE_LEN (param
);
1561 if (i
+ 1 < macro
->paramc
)
1562 *buffer
++ = ',', *buffer
++ = ' ';
1563 else if (macro
->variadic
)
1564 *buffer
++ = '.', *buffer
++ = '.', *buffer
++ = '.';
1569 /* Expansion tokens. */
1573 for (i
= 0; i
< macro
->count
; i
++)
1575 cpp_token
*token
= ¯o
->expansion
[i
];
1577 if (token
->flags
& PREV_WHITE
)
1579 if (token
->flags
& STRINGIFY_ARG
)
1582 if (token
->type
== CPP_MACRO_ARG
)
1584 len
= NODE_LEN (macro
->params
[token
->val
.arg_no
- 1]);
1586 NODE_NAME (macro
->params
[token
->val
.arg_no
- 1]), len
);
1590 buffer
= cpp_spell_token (pfile
, token
, buffer
);
1592 if (token
->flags
& PASTE_LEFT
)
1597 /* Next has PREV_WHITE; see _cpp_create_definition. */
1603 return pfile
->macro_buffer
;