Home | History | Annotate | Download | only in info

Lines Matching full:preprocessor

9    This file documents the internals of the GNU C Preprocessor.
29 The GNU C Preprocessor Internals
32 1 Cpplib--the GNU C Preprocessor
35 The GNU C preprocessor is implemented as a library, "cpplib", so it can
36 be easily shared between a stand-alone preprocessor, and a preprocessor
45 preprocessor in previous versions of GCC would operate on text strings
171 `parsing_args' is nonzero when the preprocessor is collecting the
190 correct in the preprocessor; there are plenty of tests in the testsuite
281 When the preprocessor was changed to return pointers to tokens, one
284 preprocessor, the future direction of the C family front ends, and even
287 Occasionally the preprocessor wants to be able to peek ahead in the
294 preprocessor wants to be able to test the current token with the
303 preprocessor lex all tokens on a line consecutively into a token buffer,
345 Line-buffering is quite natural for the preprocessor, and as a result
432 the preprocessor's expansion algorithm wrong in quite subtle ways.
443 The preprocessor stores macro expansions in tokenized form. This saves
449 If the macro is a function-like macro the preprocessor also stores
464 The preprocessor maintains a "context stack", implemented as a linked
603 preprocessor: there needs to be a guarantee that re-reading its
619 still try to abuse the preprocessor for things like Fortran source and
630 Look at how the preprocessor gets whitespace output correct
634 than a new line. The stand-alone preprocessor can use this flag to
655 above, the preprocessor
657 subsequent token is special. The preprocessor inserts padding tokens
715 preprocessor is fixing up spacing because of padding tokens, and it
772 The stand-alone preprocessor faces a similar problem when determining
794 The preprocessor maintains a monotonic increasing line count, which
828 preprocessor notices such header files, so that if the header file
867 and sets `mi_valid' to `true'. This indicates that the preprocessor