2003-06-19 Aldy Hernandez <aldyh@redhat.com>
[official-gcc.git] / gcc / cpptrad.c
blob0e4b2314bb4077001e46aa9a223d7aa846877ae5
1 /* CPP Library - traditional lexical analysis and macro expansion.
2 Copyright (C) 2002 Free Software Foundation, Inc.
3 Contributed by Neil Booth, May 2002
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
8 later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 #include "config.h"
20 #include "system.h"
21 #include "coretypes.h"
22 #include "tm.h"
23 #include "cpplib.h"
24 #include "cpphash.h"
26 /* The replacement text of a function-like macro is stored as a
27 contiguous sequence of aligned blocks, each representing the text
28 between subsequent parameters.
30 Each block comprises the text between its surrounding parameters,
31 the length of that text, and the one-based index of the following
32 parameter. The final block in the replacement text is easily
33 recognizable as it has an argument index of zero. */
35 struct block
37 unsigned int text_len;
38 unsigned short arg_index;
39 uchar text[1];
42 #define BLOCK_HEADER_LEN offsetof (struct block, text)
43 #define BLOCK_LEN(TEXT_LEN) CPP_ALIGN (BLOCK_HEADER_LEN + (TEXT_LEN))
45 /* Structure holding information about a function-like macro
46 invocation. */
47 struct fun_macro
49 /* Memory buffer holding the trad_arg array. */
50 _cpp_buff *buff;
52 /* An array of size the number of macro parameters + 1, containing
53 the offsets of the start of each macro argument in the output
54 buffer. The argument continues until the character before the
55 start of the next one. */
56 size_t *args;
58 /* The hashnode of the macro. */
59 cpp_hashnode *node;
61 /* The offset of the macro name in the output buffer. */
62 size_t offset;
64 /* The line the macro name appeared on. */
65 unsigned int line;
67 /* Zero-based index of argument being currently lexed. */
68 unsigned int argc;
71 /* Lexing state. It is mostly used to prevent macro expansion. */
72 enum ls {ls_none = 0, /* Normal state. */
73 ls_fun_open, /* When looking for '('. */
74 ls_fun_close, /* When looking for ')'. */
75 ls_defined, /* After defined. */
76 ls_defined_close, /* Looking for ')' of defined(). */
77 ls_hash, /* After # in preprocessor conditional. */
78 ls_predicate, /* After the predicate, maybe paren? */
79 ls_answer}; /* In answer to predicate. */
81 /* Lexing TODO: Maybe handle space in escaped newlines. Stop cpplex.c
82 from recognizing comments and directives during its lexing pass. */
84 static const uchar *skip_whitespace (cpp_reader *, const uchar *, int);
85 static cpp_hashnode *lex_identifier (cpp_reader *, const uchar *);
86 static const uchar *copy_comment (cpp_reader *, const uchar *, int);
87 static void check_output_buffer (cpp_reader *, size_t);
88 static void push_replacement_text (cpp_reader *, cpp_hashnode *);
89 static bool scan_parameters (cpp_reader *, cpp_macro *);
90 static bool recursive_macro (cpp_reader *, cpp_hashnode *);
91 static void save_replacement_text (cpp_reader *, cpp_macro *, unsigned int);
92 static void maybe_start_funlike (cpp_reader *, cpp_hashnode *, const uchar *,
93 struct fun_macro *);
94 static void save_argument (struct fun_macro *, size_t);
95 static void replace_args_and_push (cpp_reader *, struct fun_macro *);
96 static size_t canonicalize_text (uchar *, const uchar *, size_t, uchar *);
98 /* Ensures we have N bytes' space in the output buffer, and
99 reallocates it if not. */
100 static void
101 check_output_buffer (cpp_reader *pfile, size_t n)
103 /* We might need two bytes to terminate an unterminated comment, and
104 one more to terminate the line with a NUL. */
105 n += 2 + 1;
107 if (n > (size_t) (pfile->out.limit - pfile->out.cur))
109 size_t size = pfile->out.cur - pfile->out.base;
110 size_t new_size = (size + n) * 3 / 2;
112 pfile->out.base
113 = (uchar *) xrealloc (pfile->out.base, new_size);
114 pfile->out.limit = pfile->out.base + new_size;
115 pfile->out.cur = pfile->out.base + size;
119 /* CUR points to the asterisk introducing a comment in the current
120 context. IN_DEFINE is true if we are in the replacement text of a
121 macro.
123 The asterisk and following comment is copied to the buffer pointed
124 to by pfile->out.cur, which must be of sufficient size.
125 Unterminated comments are diagnosed, and correctly terminated in
126 the output. pfile->out.cur is updated depending upon IN_DEFINE,
127 -C, -CC and pfile->state.in_directive.
129 Returns a pointer to the first character after the comment in the
130 input buffer. */
131 static const uchar *
132 copy_comment (cpp_reader *pfile, const uchar *cur, int in_define)
134 bool unterminated, copy = false;
135 unsigned int from_line = pfile->line;
136 cpp_buffer *buffer = pfile->buffer;
138 buffer->cur = cur;
139 unterminated = _cpp_skip_block_comment (pfile);
140 if (unterminated)
141 cpp_error_with_line (pfile, DL_ERROR, from_line, 0,
142 "unterminated comment");
144 /* Comments in directives become spaces so that tokens are properly
145 separated when the ISO preprocessor re-lexes the line. The
146 exception is #define. */
147 if (pfile->state.in_directive)
149 if (in_define)
151 if (CPP_OPTION (pfile, discard_comments_in_macro_exp))
152 pfile->out.cur--;
153 else
154 copy = true;
156 else
157 pfile->out.cur[-1] = ' ';
159 else if (CPP_OPTION (pfile, discard_comments))
160 pfile->out.cur--;
161 else
162 copy = true;
164 if (copy)
166 size_t len = (size_t) (buffer->cur - cur);
167 memcpy (pfile->out.cur, cur, len);
168 pfile->out.cur += len;
169 if (unterminated)
171 *pfile->out.cur++ = '*';
172 *pfile->out.cur++ = '/';
176 return buffer->cur;
179 /* CUR points to any character in the input buffer. Skips over all
180 contiguous horizontal white space and NULs, including comments if
181 SKIP_COMMENTS, until reaching the first non-horizontal-whitespace
182 character or the end of the current context. Escaped newlines are
183 removed.
185 The whitespace is copied verbatim to the output buffer, except that
186 comments are handled as described in copy_comment().
187 pfile->out.cur is updated.
189 Returns a pointer to the first character after the whitespace in
190 the input buffer. */
191 static const uchar *
192 skip_whitespace (cpp_reader *pfile, const uchar *cur, int skip_comments)
194 uchar *out = pfile->out.cur;
196 for (;;)
198 unsigned int c = *cur++;
199 *out++ = c;
201 if (is_nvspace (c))
202 continue;
204 if (c == '/' && *cur == '*' && skip_comments)
206 pfile->out.cur = out;
207 cur = copy_comment (pfile, cur, false /* in_define */);
208 out = pfile->out.cur;
209 continue;
212 out--;
213 break;
216 pfile->out.cur = out;
217 return cur - 1;
220 /* Lexes and outputs an identifier starting at CUR, which is assumed
221 to point to a valid first character of an identifier. Returns
222 the hashnode, and updates out.cur. */
223 static cpp_hashnode *
224 lex_identifier (cpp_reader *pfile, const uchar *cur)
226 size_t len;
227 uchar *out = pfile->out.cur;
228 cpp_hashnode *result;
231 *out++ = *cur++;
232 while (is_numchar (*cur));
234 CUR (pfile->context) = cur;
235 len = out - pfile->out.cur;
236 result = (cpp_hashnode *) ht_lookup (pfile->hash_table, pfile->out.cur,
237 len, HT_ALLOC);
238 pfile->out.cur = out;
239 return result;
242 /* Overlays the true file buffer temporarily with text of length LEN
243 starting at START. The true buffer is restored upon calling
244 restore_buff(). */
245 void
246 _cpp_overlay_buffer (cpp_reader *pfile, const uchar *start, size_t len)
248 cpp_buffer *buffer = pfile->buffer;
250 pfile->overlaid_buffer = buffer;
251 buffer->saved_cur = buffer->cur;
252 buffer->saved_rlimit = buffer->rlimit;
253 /* Prevent the ISO lexer from scanning a fresh line. */
254 pfile->saved_line = pfile->line--;
255 buffer->need_line = false;
257 buffer->cur = start;
258 buffer->rlimit = start + len;
261 /* Restores a buffer overlaid by _cpp_overlay_buffer(). */
262 void
263 _cpp_remove_overlay (cpp_reader *pfile)
265 cpp_buffer *buffer = pfile->overlaid_buffer;
267 buffer->cur = buffer->saved_cur;
268 buffer->rlimit = buffer->saved_rlimit;
269 buffer->need_line = true;
271 pfile->overlaid_buffer = NULL;
272 pfile->line = pfile->saved_line;
275 /* Reads a logical line into the output buffer. Returns TRUE if there
276 is more text left in the buffer. */
277 bool
278 _cpp_read_logical_line_trad (cpp_reader *pfile)
282 if (pfile->buffer->need_line && !_cpp_get_fresh_line (pfile))
283 return false;
285 while (!scan_out_logical_line (pfile, NULL) || pfile->state.skipping);
287 return true;
290 /* Set up state for finding the opening '(' of a function-like
291 macro. */
292 static void
293 maybe_start_funlike (cpp_reader *pfile, cpp_hashnode *node, const uchar *start, struct fun_macro *macro)
295 unsigned int n = node->value.macro->paramc + 1;
297 if (macro->buff)
298 _cpp_release_buff (pfile, macro->buff);
299 macro->buff = _cpp_get_buff (pfile, n * sizeof (size_t));
300 macro->args = (size_t *) BUFF_FRONT (macro->buff);
301 macro->node = node;
302 macro->offset = start - pfile->out.base;
303 macro->argc = 0;
306 /* Save the OFFSET of the start of the next argument to MACRO. */
307 static void
308 save_argument (struct fun_macro *macro, size_t offset)
310 macro->argc++;
311 if (macro->argc <= macro->node->value.macro->paramc)
312 macro->args[macro->argc] = offset;
315 /* Copies the next logical line in the current buffer (starting at
316 buffer->cur) to the output buffer. The output is guaranteed to
317 terminate with a NUL character. buffer->cur is updated.
319 If MACRO is non-NULL, then we are scanning the replacement list of
320 MACRO, and we call save_replacement_text() every time we meet an
321 argument. */
322 bool
323 scan_out_logical_line (cpp_reader *pfile, cpp_macro *macro)
325 bool result = true;
326 cpp_context *context;
327 const uchar *cur;
328 uchar *out;
329 struct fun_macro fmacro;
330 unsigned int c, paren_depth = 0, quote;
331 enum ls lex_state = ls_none;
332 bool header_ok;
334 fmacro.buff = NULL;
336 quote = 0;
337 header_ok = pfile->state.angled_headers;
338 CUR (pfile->context) = pfile->buffer->cur;
339 RLIMIT (pfile->context) = pfile->buffer->rlimit;
340 pfile->out.cur = pfile->out.base;
341 pfile->out.first_line = pfile->line;
342 new_context:
343 context = pfile->context;
344 cur = CUR (context);
345 check_output_buffer (pfile, RLIMIT (context) - cur);
346 out = pfile->out.cur;
348 for (;;)
350 if (!context->prev
351 && cur >= pfile->buffer->notes[pfile->buffer->cur_note].pos)
353 pfile->buffer->cur = cur;
354 _cpp_process_line_notes (pfile, false);
356 c = *cur++;
357 *out++ = c;
359 /* Whitespace should "continue" out of the switch,
360 non-whitespace should "break" out of it. */
361 switch (c)
363 case ' ':
364 case '\t':
365 case '\f':
366 case '\v':
367 case '\0':
368 continue;
370 case '\n':
371 /* If this is a macro's expansion, pop it. */
372 if (context->prev)
374 pfile->out.cur = out - 1;
375 _cpp_pop_context (pfile);
376 goto new_context;
379 /* Omit the newline from the output buffer. */
380 pfile->out.cur = out - 1;
381 pfile->buffer->cur = cur;
382 pfile->buffer->need_line = true;
383 pfile->line++;
385 if ((lex_state == ls_fun_open || lex_state == ls_fun_close)
386 && !pfile->state.in_directive
387 && _cpp_get_fresh_line (pfile))
389 /* Newlines in arguments become a space, but we don't
390 clear any in-progress quote. */
391 if (lex_state == ls_fun_close)
392 out[-1] = ' ';
393 cur = pfile->buffer->cur;
394 continue;
396 goto done;
398 case '<':
399 if (header_ok)
400 quote = '>';
401 break;
402 case '>':
403 if (c == quote)
404 quote = 0;
405 break;
407 case '"':
408 case '\'':
409 if (c == quote)
410 quote = 0;
411 else if (!quote)
412 quote = c;
413 break;
415 case '\\':
416 /* Skip escaped quotes here, it's easier than above. */
417 if (*cur == '\\' || *cur == '"' || *cur == '\'')
418 *out++ = *cur++;
419 break;
421 case '/':
422 /* Traditional CPP does not recognize comments within
423 literals. */
424 if (!quote && *cur == '*')
426 pfile->out.cur = out;
427 cur = copy_comment (pfile, cur, macro != 0);
428 out = pfile->out.cur;
429 continue;
431 break;
433 case '_':
434 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
435 case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
436 case 'm': case 'n': case 'o': case 'p': case 'q': case 'r':
437 case 's': case 't': case 'u': case 'v': case 'w': case 'x':
438 case 'y': case 'z':
439 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
440 case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
441 case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R':
442 case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
443 case 'Y': case 'Z':
444 if (!pfile->state.skipping && (quote == 0 || macro))
446 cpp_hashnode *node;
447 uchar *out_start = out - 1;
449 pfile->out.cur = out_start;
450 node = lex_identifier (pfile, cur - 1);
451 out = pfile->out.cur;
452 cur = CUR (context);
454 if (node->type == NT_MACRO
455 /* Should we expand for ls_answer? */
456 && (lex_state == ls_none || lex_state == ls_fun_open)
457 && !pfile->state.prevent_expansion)
459 /* Macros invalidate MI optimization. */
460 pfile->mi_valid = false;
461 if (! (node->flags & NODE_BUILTIN)
462 && node->value.macro->fun_like)
464 maybe_start_funlike (pfile, node, out_start, &fmacro);
465 lex_state = ls_fun_open;
466 fmacro.line = pfile->line;
467 continue;
469 else if (!recursive_macro (pfile, node))
471 /* Remove the object-like macro's name from the
472 output, and push its replacement text. */
473 pfile->out.cur = out_start;
474 push_replacement_text (pfile, node);
475 lex_state = ls_none;
476 goto new_context;
479 else if (macro && (node->flags & NODE_MACRO_ARG) != 0)
481 /* Found a parameter in the replacement text of a
482 #define. Remove its name from the output. */
483 pfile->out.cur = out_start;
484 save_replacement_text (pfile, macro, node->value.arg_index);
485 out = pfile->out.base;
487 else if (lex_state == ls_hash)
489 lex_state = ls_predicate;
490 continue;
492 else if (pfile->state.in_expression
493 && node == pfile->spec_nodes.n_defined)
495 lex_state = ls_defined;
496 continue;
499 break;
501 case '(':
502 if (quote == 0)
504 paren_depth++;
505 if (lex_state == ls_fun_open)
507 if (recursive_macro (pfile, fmacro.node))
508 lex_state = ls_none;
509 else
511 lex_state = ls_fun_close;
512 paren_depth = 1;
513 out = pfile->out.base + fmacro.offset;
514 fmacro.args[0] = fmacro.offset;
517 else if (lex_state == ls_predicate)
518 lex_state = ls_answer;
519 else if (lex_state == ls_defined)
520 lex_state = ls_defined_close;
522 break;
524 case ',':
525 if (quote == 0 && lex_state == ls_fun_close && paren_depth == 1)
526 save_argument (&fmacro, out - pfile->out.base);
527 break;
529 case ')':
530 if (quote == 0)
532 paren_depth--;
533 if (lex_state == ls_fun_close && paren_depth == 0)
535 cpp_macro *m = fmacro.node->value.macro;
537 m->used = 1;
538 lex_state = ls_none;
539 save_argument (&fmacro, out - pfile->out.base);
541 /* A single zero-length argument is no argument. */
542 if (fmacro.argc == 1
543 && m->paramc == 0
544 && out == pfile->out.base + fmacro.offset + 1)
545 fmacro.argc = 0;
547 if (_cpp_arguments_ok (pfile, m, fmacro.node, fmacro.argc))
549 /* Remove the macro's invocation from the
550 output, and push its replacement text. */
551 pfile->out.cur = (pfile->out.base
552 + fmacro.offset);
553 CUR (context) = cur;
554 replace_args_and_push (pfile, &fmacro);
555 goto new_context;
558 else if (lex_state == ls_answer || lex_state == ls_defined_close)
559 lex_state = ls_none;
561 break;
563 case '#':
564 if (out - 1 == pfile->out.base
565 /* A '#' from a macro doesn't start a directive. */
566 && !pfile->context->prev
567 && !pfile->state.in_directive)
569 /* A directive. With the way _cpp_handle_directive
570 currently works, we only want to call it if either we
571 know the directive is OK, or we want it to fail and
572 be removed from the output. If we want it to be
573 passed through (the assembler case) then we must not
574 call _cpp_handle_directive. */
575 pfile->out.cur = out;
576 cur = skip_whitespace (pfile, cur, true /* skip_comments */);
577 out = pfile->out.cur;
579 if (*cur == '\n')
581 /* Null directive. Ignore it and don't invalidate
582 the MI optimization. */
583 pfile->buffer->need_line = true;
584 pfile->line++;
585 result = false;
586 goto done;
588 else
590 bool do_it = false;
592 if (is_numstart (*cur)
593 && CPP_OPTION (pfile, lang) != CLK_ASM)
594 do_it = true;
595 else if (is_idstart (*cur))
596 /* Check whether we know this directive, but don't
597 advance. */
598 do_it = lex_identifier (pfile, cur)->is_directive;
600 if (do_it || CPP_OPTION (pfile, lang) != CLK_ASM)
602 /* This is a kludge. We want to have the ISO
603 preprocessor lex the next token. */
604 pfile->buffer->cur = cur;
605 _cpp_handle_directive (pfile, false /* indented */);
606 result = false;
607 goto done;
612 if (pfile->state.in_expression)
614 lex_state = ls_hash;
615 continue;
617 break;
619 default:
620 break;
623 /* Non-whitespace disables MI optimization and stops treating
624 '<' as a quote in #include. */
625 header_ok = false;
626 if (!pfile->state.in_directive)
627 pfile->mi_valid = false;
629 if (lex_state == ls_none)
630 continue;
632 /* Some of these transitions of state are syntax errors. The
633 ISO preprocessor will issue errors later. */
634 if (lex_state == ls_fun_open)
635 /* Missing '('. */
636 lex_state = ls_none;
637 else if (lex_state == ls_hash
638 || lex_state == ls_predicate
639 || lex_state == ls_defined)
640 lex_state = ls_none;
642 /* ls_answer and ls_defined_close keep going until ')'. */
645 done:
646 if (fmacro.buff)
647 _cpp_release_buff (pfile, fmacro.buff);
649 if (lex_state == ls_fun_close)
650 cpp_error_with_line (pfile, DL_ERROR, fmacro.line, 0,
651 "unterminated argument list invoking macro \"%s\"",
652 NODE_NAME (fmacro.node));
653 return result;
656 /* Push a context holding the replacement text of the macro NODE on
657 the context stack. NODE is either object-like, or a function-like
658 macro with no arguments. */
659 static void
660 push_replacement_text (cpp_reader *pfile, cpp_hashnode *node)
662 size_t len;
663 const uchar *text;
664 uchar *buf;
666 if (node->flags & NODE_BUILTIN)
668 text = _cpp_builtin_macro_text (pfile, node);
669 len = ustrlen (text);
670 buf = _cpp_unaligned_alloc (pfile, len + 1);
671 memcpy (buf, text, len);
672 buf[len]='\n';
673 text = buf;
675 else
677 cpp_macro *macro = node->value.macro;
678 macro->used = 1;
679 text = macro->exp.text;
680 len = macro->count;
683 _cpp_push_text_context (pfile, node, text, len);
686 /* Returns TRUE if traditional macro recursion is detected. */
687 static bool
688 recursive_macro (cpp_reader *pfile, cpp_hashnode *node)
690 bool recursing = !!(node->flags & NODE_DISABLED);
692 /* Object-like macros that are already expanding are necessarily
693 recursive.
695 However, it is possible to have traditional function-like macros
696 that are not infinitely recursive but recurse to any given depth.
697 Further, it is easy to construct examples that get ever longer
698 until the point they stop recursing. So there is no easy way to
699 detect true recursion; instead we assume any expansion more than
700 20 deep since the first invocation of this macro must be
701 recursing. */
702 if (recursing && node->value.macro->fun_like)
704 size_t depth = 0;
705 cpp_context *context = pfile->context;
709 depth++;
710 if (context->macro == node && depth > 20)
711 break;
712 context = context->prev;
714 while (context);
715 recursing = context != NULL;
718 if (recursing)
719 cpp_error (pfile, DL_ERROR,
720 "detected recursion whilst expanding macro \"%s\"",
721 NODE_NAME (node));
723 return recursing;
726 /* Return the length of the replacement text of a function-like or
727 object-like non-builtin macro. */
728 size_t
729 _cpp_replacement_text_len (const cpp_macro *macro)
731 size_t len;
733 if (macro->fun_like && (macro->paramc != 0))
735 const uchar *exp;
737 len = 0;
738 for (exp = macro->exp.text;;)
740 struct block *b = (struct block *) exp;
742 len += b->text_len;
743 if (b->arg_index == 0)
744 break;
745 len += NODE_LEN (macro->params[b->arg_index - 1]);
746 exp += BLOCK_LEN (b->text_len);
749 else
750 len = macro->count;
752 return len;
755 /* Copy the replacement text of MACRO to DEST, which must be of
756 sufficient size. It is not NUL-terminated. The next character is
757 returned. */
758 uchar *
759 _cpp_copy_replacement_text (const cpp_macro *macro, uchar *dest)
761 if (macro->fun_like && (macro->paramc != 0))
763 const uchar *exp;
765 for (exp = macro->exp.text;;)
767 struct block *b = (struct block *) exp;
768 cpp_hashnode *param;
770 memcpy (dest, b->text, b->text_len);
771 dest += b->text_len;
772 if (b->arg_index == 0)
773 break;
774 param = macro->params[b->arg_index - 1];
775 memcpy (dest, NODE_NAME (param), NODE_LEN (param));
776 dest += NODE_LEN (param);
777 exp += BLOCK_LEN (b->text_len);
780 else
782 memcpy (dest, macro->exp.text, macro->count);
783 dest += macro->count;
786 return dest;
789 /* Push a context holding the replacement text of the macro NODE on
790 the context stack. NODE is either object-like, or a function-like
791 macro with no arguments. */
792 static void
793 replace_args_and_push (cpp_reader *pfile, struct fun_macro *fmacro)
795 cpp_macro *macro = fmacro->node->value.macro;
797 if (macro->paramc == 0)
798 push_replacement_text (pfile, fmacro->node);
799 else
801 const uchar *exp;
802 uchar *p;
803 _cpp_buff *buff;
804 size_t len = 0;
806 /* Calculate the length of the argument-replaced text. */
807 for (exp = macro->exp.text;;)
809 struct block *b = (struct block *) exp;
811 len += b->text_len;
812 if (b->arg_index == 0)
813 break;
814 len += (fmacro->args[b->arg_index]
815 - fmacro->args[b->arg_index - 1] - 1);
816 exp += BLOCK_LEN (b->text_len);
819 /* Allocate room for the expansion plus \n. */
820 buff = _cpp_get_buff (pfile, len + 1);
822 /* Copy the expansion and replace arguments. */
823 p = BUFF_FRONT (buff);
824 for (exp = macro->exp.text;;)
826 struct block *b = (struct block *) exp;
827 size_t arglen;
829 memcpy (p, b->text, b->text_len);
830 p += b->text_len;
831 if (b->arg_index == 0)
832 break;
833 arglen = (fmacro->args[b->arg_index]
834 - fmacro->args[b->arg_index - 1] - 1);
835 memcpy (p, pfile->out.base + fmacro->args[b->arg_index - 1],
836 arglen);
837 p += arglen;
838 exp += BLOCK_LEN (b->text_len);
841 /* \n-terminate. */
842 *p = '\n';
843 _cpp_push_text_context (pfile, fmacro->node, BUFF_FRONT (buff), len);
845 /* So we free buffer allocation when macro is left. */
846 pfile->context->buff = buff;
850 /* Read and record the parameters, if any, of a function-like macro
851 definition. Destroys pfile->out.cur.
853 Returns true on success, false on failure (syntax error or a
854 duplicate parameter). On success, CUR (pfile->context) is just
855 past the closing parenthesis. */
856 static bool
857 scan_parameters (cpp_reader *pfile, cpp_macro *macro)
859 const uchar *cur = CUR (pfile->context) + 1;
860 bool ok;
862 for (;;)
864 cur = skip_whitespace (pfile, cur, true /* skip_comments */);
866 if (is_idstart (*cur))
868 ok = false;
869 if (_cpp_save_parameter (pfile, macro, lex_identifier (pfile, cur)))
870 break;
871 cur = skip_whitespace (pfile, CUR (pfile->context),
872 true /* skip_comments */);
873 if (*cur == ',')
875 cur++;
876 continue;
878 ok = (*cur == ')');
879 break;
882 ok = (*cur == ')' && macro->paramc == 0);
883 break;
886 CUR (pfile->context) = cur + (*cur == ')');
888 return ok;
891 /* Save the text from pfile->out.base to pfile->out.cur as
892 the replacement text for the current macro, followed by argument
893 ARG_INDEX, with zero indicating the end of the replacement
894 text. */
895 static void
896 save_replacement_text (cpp_reader *pfile, cpp_macro *macro,
897 unsigned int arg_index)
899 size_t len = pfile->out.cur - pfile->out.base;
900 uchar *exp;
902 if (macro->paramc == 0)
904 /* Object-like and function-like macros without parameters
905 simply store their \n-terminated replacement text. */
906 exp = _cpp_unaligned_alloc (pfile, len + 1);
907 memcpy (exp, pfile->out.base, len);
908 exp[len] = '\n';
909 macro->exp.text = exp;
910 macro->count = len;
912 else
914 /* Store the text's length (unsigned int), the argument index
915 (unsigned short, base 1) and then the text. */
916 size_t blen = BLOCK_LEN (len);
917 struct block *block;
919 if (macro->count + blen > BUFF_ROOM (pfile->a_buff))
920 _cpp_extend_buff (pfile, &pfile->a_buff, macro->count + blen);
922 exp = BUFF_FRONT (pfile->a_buff);
923 block = (struct block *) (exp + macro->count);
924 macro->exp.text = exp;
926 /* Write out the block information. */
927 block->text_len = len;
928 block->arg_index = arg_index;
929 memcpy (block->text, pfile->out.base, len);
931 /* Lex the rest into the start of the output buffer. */
932 pfile->out.cur = pfile->out.base;
934 macro->count += blen;
936 /* If we've finished, commit the memory. */
937 if (arg_index == 0)
938 BUFF_FRONT (pfile->a_buff) += macro->count;
942 /* Analyze and save the replacement text of a macro. Returns true on
943 success. */
944 bool
945 _cpp_create_trad_definition (cpp_reader *pfile, cpp_macro *macro)
947 const uchar *cur;
948 uchar *limit;
949 cpp_context *context = pfile->context;
951 /* The context has not been set up for command line defines, and CUR
952 has not been updated for the macro name for in-file defines. */
953 pfile->out.cur = pfile->out.base;
954 CUR (context) = pfile->buffer->cur;
955 RLIMIT (context) = pfile->buffer->rlimit;
956 check_output_buffer (pfile, RLIMIT (context) - CUR (context));
958 /* Is this a function-like macro? */
959 if (* CUR (context) == '(')
961 /* Setting macro to NULL indicates an error occurred, and
962 prevents unnecessary work in scan_out_logical_line. */
963 if (!scan_parameters (pfile, macro))
964 macro = NULL;
965 else
967 /* Success. Commit the parameter array. */
968 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
969 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
970 macro->fun_like = 1;
974 /* Skip leading whitespace in the replacement text. */
975 pfile->buffer->cur
976 = skip_whitespace (pfile, CUR (context),
977 CPP_OPTION (pfile, discard_comments_in_macro_exp));
979 pfile->state.prevent_expansion++;
980 scan_out_logical_line (pfile, macro);
981 pfile->state.prevent_expansion--;
983 if (!macro)
984 return false;
986 /* Skip trailing white space. */
987 cur = pfile->out.base;
988 limit = pfile->out.cur;
989 while (limit > cur && is_space (limit[-1]))
990 limit--;
991 pfile->out.cur = limit;
992 save_replacement_text (pfile, macro, 0);
994 return true;
997 /* Copy SRC of length LEN to DEST, but convert all contiguous
998 whitespace to a single space, provided it is not in quotes. The
999 quote currently in effect is pointed to by PQUOTE, and is updated
1000 by the function. Returns the number of bytes copied. */
1001 static size_t
1002 canonicalize_text (uchar *dest, const uchar *src, size_t len, uchar *pquote)
1004 uchar *orig_dest = dest;
1005 uchar quote = *pquote;
1007 while (len)
1009 if (is_space (*src) && !quote)
1012 src++, len--;
1013 while (len && is_space (*src));
1014 *dest++ = ' ';
1016 else
1018 if (*src == '\'' || *src == '"')
1020 if (!quote)
1021 quote = *src;
1022 else if (quote == *src)
1023 quote = 0;
1025 *dest++ = *src++, len--;
1029 *pquote = quote;
1030 return dest - orig_dest;
1033 /* Returns true if MACRO1 and MACRO2 have expansions different other
1034 than in the form of their whitespace. */
1035 bool
1036 _cpp_expansions_different_trad (const cpp_macro *macro1,
1037 const cpp_macro *macro2)
1039 uchar *p1 = xmalloc (macro1->count + macro2->count);
1040 uchar *p2 = p1 + macro1->count;
1041 uchar quote1 = 0, quote2 = 0;
1042 bool mismatch;
1043 size_t len1, len2;
1045 if (macro1->paramc > 0)
1047 const uchar *exp1 = macro1->exp.text, *exp2 = macro2->exp.text;
1049 mismatch = true;
1050 for (;;)
1052 struct block *b1 = (struct block *) exp1;
1053 struct block *b2 = (struct block *) exp2;
1055 if (b1->arg_index != b2->arg_index)
1056 break;
1058 len1 = canonicalize_text (p1, b1->text, b1->text_len, &quote1);
1059 len2 = canonicalize_text (p2, b2->text, b2->text_len, &quote2);
1060 if (len1 != len2 || memcmp (p1, p2, len1))
1061 break;
1062 if (b1->arg_index == 0)
1064 mismatch = false;
1065 break;
1067 exp1 += BLOCK_LEN (b1->text_len);
1068 exp2 += BLOCK_LEN (b2->text_len);
1071 else
1073 len1 = canonicalize_text (p1, macro1->exp.text, macro1->count, &quote1);
1074 len2 = canonicalize_text (p2, macro2->exp.text, macro2->count, &quote2);
1075 mismatch = (len1 != len2 || memcmp (p1, p2, len1));
1078 free (p1);
1079 return mismatch;