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
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. */
21 #include "coretypes.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. */
37 unsigned int text_len
;
38 unsigned short arg_index
;
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
49 /* Memory buffer holding the trad_arg array. */
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. */
58 /* The hashnode of the macro. */
61 /* The offset of the macro name in the output buffer. */
64 /* The line the macro name appeared on. */
67 /* Zero-based index of argument being currently lexed. */
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
*,
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. */
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. */
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;
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
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
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
;
139 unterminated
= _cpp_skip_block_comment (pfile
);
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
)
151 if (CPP_OPTION (pfile
, discard_comments_in_macro_exp
))
157 pfile
->out
.cur
[-1] = ' ';
159 else if (CPP_OPTION (pfile
, discard_comments
))
166 size_t len
= (size_t) (buffer
->cur
- cur
);
167 memcpy (pfile
->out
.cur
, cur
, len
);
168 pfile
->out
.cur
+= len
;
171 *pfile
->out
.cur
++ = '*';
172 *pfile
->out
.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
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
192 skip_whitespace (cpp_reader
*pfile
, const uchar
*cur
, int skip_comments
)
194 uchar
*out
= pfile
->out
.cur
;
198 unsigned int c
= *cur
++;
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
;
216 pfile
->out
.cur
= out
;
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
)
227 uchar
*out
= pfile
->out
.cur
;
228 cpp_hashnode
*result
;
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
,
238 pfile
->out
.cur
= out
;
242 /* Overlays the true file buffer temporarily with text of length LEN
243 starting at START. The true buffer is restored upon calling
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;
258 buffer
->rlimit
= start
+ len
;
261 /* Restores a buffer overlaid by _cpp_overlay_buffer(). */
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. */
278 _cpp_read_logical_line_trad (cpp_reader
*pfile
)
282 if (pfile
->buffer
->need_line
&& !_cpp_get_fresh_line (pfile
))
285 while (!scan_out_logical_line (pfile
, NULL
) || pfile
->state
.skipping
);
290 /* Set up state for finding the opening '(' of a function-like
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;
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
);
302 macro
->offset
= start
- pfile
->out
.base
;
306 /* Save the OFFSET of the start of the next argument to MACRO. */
308 save_argument (struct fun_macro
*macro
, size_t offset
)
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
323 scan_out_logical_line (cpp_reader
*pfile
, cpp_macro
*macro
)
326 cpp_context
*context
;
329 struct fun_macro fmacro
;
330 unsigned int c
, paren_depth
= 0, quote
;
331 enum ls lex_state
= ls_none
;
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
;
343 context
= pfile
->context
;
345 check_output_buffer (pfile
, RLIMIT (context
) - cur
);
346 out
= pfile
->out
.cur
;
351 && cur
>= pfile
->buffer
->notes
[pfile
->buffer
->cur_note
].pos
)
353 pfile
->buffer
->cur
= cur
;
354 _cpp_process_line_notes (pfile
, false);
359 /* Whitespace should "continue" out of the switch,
360 non-whitespace should "break" out of it. */
371 /* If this is a macro's expansion, pop it. */
374 pfile
->out
.cur
= out
- 1;
375 _cpp_pop_context (pfile
);
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;
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
)
393 cur
= pfile
->buffer
->cur
;
416 /* Skip escaped quotes here, it's easier than above. */
417 if (*cur
== '\\' || *cur
== '"' || *cur
== '\'')
422 /* Traditional CPP does not recognize comments within
424 if (!quote
&& *cur
== '*')
426 pfile
->out
.cur
= out
;
427 cur
= copy_comment (pfile
, cur
, macro
!= 0);
428 out
= pfile
->out
.cur
;
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':
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':
444 if (!pfile
->state
.skipping
&& (quote
== 0 || macro
))
447 uchar
*out_start
= out
- 1;
449 pfile
->out
.cur
= out_start
;
450 node
= lex_identifier (pfile
, cur
- 1);
451 out
= pfile
->out
.cur
;
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
;
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
);
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
;
492 else if (pfile
->state
.in_expression
493 && node
== pfile
->spec_nodes
.n_defined
)
495 lex_state
= ls_defined
;
505 if (lex_state
== ls_fun_open
)
507 if (recursive_macro (pfile
, fmacro
.node
))
511 lex_state
= ls_fun_close
;
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
;
525 if (quote
== 0 && lex_state
== ls_fun_close
&& paren_depth
== 1)
526 save_argument (&fmacro
, out
- pfile
->out
.base
);
533 if (lex_state
== ls_fun_close
&& paren_depth
== 0)
535 cpp_macro
*m
= fmacro
.node
->value
.macro
;
539 save_argument (&fmacro
, out
- pfile
->out
.base
);
541 /* A single zero-length argument is no argument. */
544 && out
== pfile
->out
.base
+ fmacro
.offset
+ 1)
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
554 replace_args_and_push (pfile
, &fmacro
);
558 else if (lex_state
== ls_answer
|| lex_state
== ls_defined_close
)
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
;
581 /* Null directive. Ignore it and don't invalidate
582 the MI optimization. */
583 pfile
->buffer
->need_line
= true;
592 if (is_numstart (*cur
)
593 && CPP_OPTION (pfile
, lang
) != CLK_ASM
)
595 else if (is_idstart (*cur
))
596 /* Check whether we know this directive, but don't
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 */);
612 if (pfile
->state
.in_expression
)
623 /* Non-whitespace disables MI optimization and stops treating
624 '<' as a quote in #include. */
626 if (!pfile
->state
.in_directive
)
627 pfile
->mi_valid
= false;
629 if (lex_state
== ls_none
)
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
)
637 else if (lex_state
== ls_hash
638 || lex_state
== ls_predicate
639 || lex_state
== ls_defined
)
642 /* ls_answer and ls_defined_close keep going until ')'. */
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
));
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. */
660 push_replacement_text (cpp_reader
*pfile
, cpp_hashnode
*node
)
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
);
677 cpp_macro
*macro
= node
->value
.macro
;
679 text
= macro
->exp
.text
;
683 _cpp_push_text_context (pfile
, node
, text
, len
);
686 /* Returns TRUE if traditional macro recursion is detected. */
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
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
702 if (recursing
&& node
->value
.macro
->fun_like
)
705 cpp_context
*context
= pfile
->context
;
710 if (context
->macro
== node
&& depth
> 20)
712 context
= context
->prev
;
715 recursing
= context
!= NULL
;
719 cpp_error (pfile
, DL_ERROR
,
720 "detected recursion whilst expanding macro \"%s\"",
726 /* Return the length of the replacement text of a function-like or
727 object-like non-builtin macro. */
729 _cpp_replacement_text_len (const cpp_macro
*macro
)
733 if (macro
->fun_like
&& (macro
->paramc
!= 0))
738 for (exp
= macro
->exp
.text
;;)
740 struct block
*b
= (struct block
*) exp
;
743 if (b
->arg_index
== 0)
745 len
+= NODE_LEN (macro
->params
[b
->arg_index
- 1]);
746 exp
+= BLOCK_LEN (b
->text_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
759 _cpp_copy_replacement_text (const cpp_macro
*macro
, uchar
*dest
)
761 if (macro
->fun_like
&& (macro
->paramc
!= 0))
765 for (exp
= macro
->exp
.text
;;)
767 struct block
*b
= (struct block
*) exp
;
770 memcpy (dest
, b
->text
, b
->text_len
);
772 if (b
->arg_index
== 0)
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
);
782 memcpy (dest
, macro
->exp
.text
, macro
->count
);
783 dest
+= macro
->count
;
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. */
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
);
806 /* Calculate the length of the argument-replaced text. */
807 for (exp
= macro
->exp
.text
;;)
809 struct block
*b
= (struct block
*) exp
;
812 if (b
->arg_index
== 0)
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
;
829 memcpy (p
, b
->text
, b
->text_len
);
831 if (b
->arg_index
== 0)
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],
838 exp
+= BLOCK_LEN (b
->text_len
);
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. */
857 scan_parameters (cpp_reader
*pfile
, cpp_macro
*macro
)
859 const uchar
*cur
= CUR (pfile
->context
) + 1;
864 cur
= skip_whitespace (pfile
, cur
, true /* skip_comments */);
866 if (is_idstart (*cur
))
869 if (_cpp_save_parameter (pfile
, macro
, lex_identifier (pfile
, cur
)))
871 cur
= skip_whitespace (pfile
, CUR (pfile
->context
),
872 true /* skip_comments */);
882 ok
= (*cur
== ')' && macro
->paramc
== 0);
886 CUR (pfile
->context
) = cur
+ (*cur
== ')');
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
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
;
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
);
909 macro
->exp
.text
= exp
;
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
);
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. */
938 BUFF_FRONT (pfile
->a_buff
) += macro
->count
;
942 /* Analyze and save the replacement text of a macro. Returns true on
945 _cpp_create_trad_definition (cpp_reader
*pfile
, cpp_macro
*macro
)
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
))
967 /* Success. Commit the parameter array. */
968 macro
->params
= (cpp_hashnode
**) BUFF_FRONT (pfile
->a_buff
);
969 BUFF_FRONT (pfile
->a_buff
) = (uchar
*) ¯o
->params
[macro
->paramc
];
974 /* Skip leading whitespace in the replacement text. */
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
--;
986 /* Skip trailing white space. */
987 cur
= pfile
->out
.base
;
988 limit
= pfile
->out
.cur
;
989 while (limit
> cur
&& is_space (limit
[-1]))
991 pfile
->out
.cur
= limit
;
992 save_replacement_text (pfile
, macro
, 0);
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. */
1002 canonicalize_text (uchar
*dest
, const uchar
*src
, size_t len
, uchar
*pquote
)
1004 uchar
*orig_dest
= dest
;
1005 uchar quote
= *pquote
;
1009 if (is_space (*src
) && !quote
)
1013 while (len
&& is_space (*src
));
1018 if (*src
== '\'' || *src
== '"')
1022 else if (quote
== *src
)
1025 *dest
++ = *src
++, len
--;
1030 return dest
- orig_dest
;
1033 /* Returns true if MACRO1 and MACRO2 have expansions different other
1034 than in the form of their whitespace. */
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;
1045 if (macro1
->paramc
> 0)
1047 const uchar
*exp1
= macro1
->exp
.text
, *exp2
= macro2
->exp
.text
;
1052 struct block
*b1
= (struct block
*) exp1
;
1053 struct block
*b2
= (struct block
*) exp2
;
1055 if (b1
->arg_index
!= b2
->arg_index
)
1058 len1
= canonicalize_text (p1
, b1
->text
, b1
->text_len
, "e1
);
1059 len2
= canonicalize_text (p2
, b2
->text
, b2
->text_len
, "e2
);
1060 if (len1
!= len2
|| memcmp (p1
, p2
, len1
))
1062 if (b1
->arg_index
== 0)
1067 exp1
+= BLOCK_LEN (b1
->text_len
);
1068 exp2
+= BLOCK_LEN (b2
->text_len
);
1073 len1
= canonicalize_text (p1
, macro1
->exp
.text
, macro1
->count
, "e1
);
1074 len2
= canonicalize_text (p2
, macro2
->exp
.text
, macro2
->count
, "e2
);
1075 mismatch
= (len1
!= len2
|| memcmp (p1
, p2
, len1
));