summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2010-05-26Refactor ir_dereference data fields to subclassesIan Romanick
2010-05-26Replace open coded deref navigation with hierarchical visitorsIan Romanick
2010-05-26Refactor ir_dereference support for ir_visitorIan Romanick
2010-05-26Refactor ir_dereference support for ir_hierarchical_visitorIan Romanick
2010-05-26Begin refactoring ir_dereferenceIan Romanick
2010-05-26Implement (and test) support for macro expansion within conditional expressions.Carl Worth
2010-05-26Fix lexing of "defined" as an operator, not an identifier.Carl Worth
2010-05-26Implement #if and friends.Carl Worth
2010-05-26stashCarl Worth
2010-05-26Implement token pasting.Carl Worth
2010-05-26Rename identifier from 'i' to 'node'.Carl Worth
2010-05-26Remove some stale token types.Carl Worth
2010-05-26Prevent unexpanded macros from being expanded again in the future.Carl Worth
2010-05-26README: Document some known limitations.Carl Worth
2010-05-26Fix a typo in a comment.Carl Worth
2010-05-26Expand macro arguments before performing argument substitution.Carl Worth
2010-05-26Change macro expansion to append onto token lists rather than printing directly.Carl Worth
2010-05-26Check active expansions before expanding a function-like macro invocation.Carl Worth
2010-05-26Defer test 26 until much later (to test 55).Carl Worth
2010-05-25Avoid getting extra trailing whitespace from macros.Carl Worth
2010-05-25Remove a bunch of old code and give the static treatment to what's left.Carl Worth
2010-05-25Avoid swallowing initial left parenthesis from nested macro invocation.Carl Worth
2010-05-25Ignore separating whitespace at the beginning of a macro argument.Carl Worth
2010-05-25Implement substitution of function parameters in macro calls.Carl Worth
2010-05-25Collapse multiple spaces in input down to a single space.Carl Worth
2010-05-25Add a test #0 to ensure that we don't do any inadvertent token pasting.Carl Worth
2010-05-25Pass through literal space values from replacement lists.Carl Worth
2010-05-25Implement simplified substitution for function-like macro invocation.Carl Worth
2010-05-25Implement #undef.Carl Worth
2010-05-25Implement expansion of object-like macros.Carl Worth
2010-05-25Make the lexer pass whitespace through (as OTHER tokens) for text lines.Carl Worth
2010-05-25Store parsed tokens as token list and print all text lines.Carl Worth
2010-05-25Delete some trailing whitespace.Carl Worth
2010-05-25Add xtalloc_reference.Carl Worth
2010-05-25Starting over with the C99 grammar for the preprocessor.Carl Worth
2010-05-24Add test for '/', '<<', and '>>' in #if expressions.Carl Worth
2010-05-24Add test of bitwise operators and octal/hexadecimal literals.Carl Worth
2010-05-24Add support for octal and hexadecimal integer literals.Carl Worth
2010-05-24Switch to intmax_t (rather than int) for #if expressionsCarl Worth
2010-05-24Add the '~' operator to the lexer.Carl Worth
2010-05-24Implement all operators specified for GLSL #if expressions (with tests).Carl Worth
2010-05-20Implement #if, #else, #elif, and #endif with tests.Carl Worth
2010-05-20Implement (and add test) for token pasting.Carl Worth
2010-05-20Pre-expand macro arguments at time of invocation.Carl Worth
2010-05-20Add xtalloc_asprintfCarl Worth
2010-05-20Finish cleaning up whitespace differences.Carl Worth
2010-05-20Avoid printing a space at the beginning of lines in the output.Carl Worth
2010-05-20Fix bug of consuming excess whitespace.Carl Worth
2010-05-20Remove unused function _print_string_listCarl Worth
2010-05-20Remove "unnecessary" whitespace from some tests.Carl Worth