Much has been written over the years on implementing parsers, but the C preprocessor is not quite the same as any of the stages of a typical parser, and implementation thereof doubtless has its share of particular pitfalls to watch out for. Does anyone know of anything written on the topic of implementing a C preprocessor?

link|improve this question

feedback

4 Answers

Hartmut Kaiser, the author of Boost Wave, wrote a nice article on CodeProject http://www.codeproject.com/KB/recipes/wave_preprocessor.aspx about the Boost Wave project. You can use Boost Wave to make your own C preprocessor with custom extensions.

link|improve this answer
feedback
up vote 1 down vote accepted

I found a useful discussion in the document mcpp-summary at http://mcpp.sourceforge.net/

link|improve this answer
feedback

I've based mine on the gnu internals

link|improve this answer
feedback

Why do you want to implement your own C preprocessor?

If you want to extend the preprocessing done by a C compiler (e.g. adding your custom preprocessor directives), you could also extend an existing preprocessor.

And in practice, for several C compilers I know about (in particular, for GCC), the preprocessing is not done outside the compiler (i.e. these compilers don't eat anymore preprocessed sources produced by a separate preprocessor), so it makes more sense to extend or adapt their own preprocessor. Extending the GCC preprocessor is reasonably easy (and adding a new directive is really easy, the code is modular enough for that).

Besides, they are tricky corner cases in preprocessing, and implement what the standard requires may be more hard than what you think.

Did you consider extending an existing C compiler for your needs? What needs to you have to justify preprocessor extensions? Perhaps they can be better done within an existing compiler?

I would rather recommend to extend GCC to suite your needs, if you really want to. And GCC can be extended (thru plugins or GCC MELT extensions) without touching the preprocessor (but by providing extra pragmas, builtins, attributes...).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.