mesa.git
2010-05-20 Carl WorthAvoid printing a space at the beginning of lines in...
2010-05-20 Carl WorthFix bug of consuming excess whitespace.
2010-05-20 Carl WorthRemove unused function _print_string_list
2010-05-20 Carl WorthRemove "unnecessary" whitespace from some tests.
2010-05-20 Carl WorthStop ignoring whitespace while testing.
2010-05-20 Carl WorthAdd test (and fix) for a function argument of a macro...
2010-05-20 Carl WorthAdd support for commas within parenthesized groups...
2010-05-20 Carl WorthAvoid re-expanding a macro name that has once been...
2010-05-19 Carl WorthUse new token_list_t rather than string_list_t for...
2010-05-19 Carl WorthPerform "re lexing" on string list values rathern than...
2010-05-19 Carl WorthRemove unused NEWLINE token.
2010-05-19 Carl WorthRemove unneeded YYLEX_PARAM define.
2010-05-19 Carl WorthRename yylex to glcpp_parser_lex and give it a glcpp_pa...
2010-05-19 Carl WorthAdd a wrapper function around the lexer.
2010-05-19 Carl WorthLike previous fix, but for object-like macros (and...
2010-05-19 Carl WorthFix bug as in previous fix, but with multi-token argument.
2010-05-19 Carl WorthFix bug (and test) for an invocation using macro name...
2010-05-19 Carl WorthFix bug (and add tests) for a function-like macro defin...
2010-05-19 Carl WorthRewrite macro handling to support function-like macro...
2010-05-19 Carl WorthAdd several tests where the defined value of a macro...
2010-05-17 Carl WorthFix (and add test for) function-like macro invocation...
2010-05-17 Carl WorthExpect 1 shift/reduce conflict.
2010-05-17 Carl WorthFix bug (and add test) for a function-like-macro appear...
2010-05-17 Carl WorthAdd test and fix bug leading to infinite recursion.
2010-05-15 Carl WorthFix two whitespace bugs in the lexer.
2010-05-15 Carl WorthDon't return SPACE tokens unless strictly needed.
2010-05-15 Carl WorthAdd test with extra whitespace in macro defintions...
2010-05-14 Carl WorthProvide implementation for macro arguments containing...
2010-05-14 Carl WorthAdd test invoking a macro with an argument containing...
2010-05-14 Carl WorthFix expansion of composited macros.
2010-05-14 Carl WorthAdd test for composed invocation of function-like macros.
2010-05-14 Carl WorthEliminate a shift/reduce conflict.
2010-05-14 Carl WorthSupport macro invocations with multiple tokens for...
2010-05-14 Carl WorthAdd test for function-like macro invocations with multi...
2010-05-14 Carl WorthMake macro-expansion productions create string-list...
2010-05-14 Carl WorthMove most printing to the action in the content production.
2010-05-14 Carl WorthRemove _list suffix from several identifiers.
2010-05-14 Carl WorthRename list_t and node_t to string_list_t and string_no...
2010-05-14 Carl WorthFix case of a macro formal parameter matching a defined...
2010-05-14 Carl WorthAdd test where a macro formal parameter is the same...
2010-05-14 Carl WorthImplement substitution of macro arguments.
2010-05-14 Carl WorthAdd tests exercising substitution of arguments in funct...
2010-05-14 Carl WorthMake the lexer return SPACE tokens unconditionally.
2010-05-14 Carl WorthMakefile: Make "make test" depend on the main program.
2010-05-14 Carl WorthAdd some whitespace variations to test 15.
2010-05-14 Carl WorthFix parsing of object-like macro with a definition...
2010-05-14 Carl WorthAdd test for an object-like macro with a definition...
2010-05-14 Carl WorthEliminate a reduce/reduce conflict in the function...
2010-05-13 Carl WorthAdd support for the structure of function-like macros.
2010-05-13 Carl WorthAdd tests for the structure of function-like macros.
2010-05-13 Carl WorthMake the lexer distinguish between identifiers and...
2010-05-12 Carl WorthRemove some redundancy in the top-level production.
2010-05-12 Carl WorthSimplify lexer significantly (remove all stateful lexing).
2010-05-12 Carl WorthAdd test case to define, undef, and then again define...
2010-05-12 Carl WorthAdd support for the #undef macro.
2010-05-12 Carl WorthAdd test for #undef.
2010-05-12 Carl WorthAdd test for an empty definition.
2010-05-12 Carl WorthConvert lexer to talloc and add xtalloc wrappers.
2010-05-12 Carl WorthFix defines involving both literals and other defined...
2010-05-11 Carl WorthAdd tests defining a macro to be a literal and another...
2010-05-11 Carl WorthAdd a couple more tests for chained #define directives.
2010-05-11 Carl WorthFix to handle chained #define directives.
2010-05-11 Carl WorthAdd test for chained #define directives.
2010-05-11 Carl WorthAdd README file describing glcpp.
2010-05-10 Carl WorthAdd a very simple test for the pre-processor.
2010-05-10 Carl WorthImplment #define
2010-05-10 Carl WorthMakefile: Enable debugging of parser.
2010-05-10 Carl WorthAdd hash table implementation from glsl2 project.
2010-05-10 Carl WorthAdd .gitignore file.
2010-05-10 Carl WorthAdd some compiler warnings and corresponding fixes.
2010-05-10 Carl WorthMake the lexer reentrant (to avoid "still reachable...
2010-05-10 Carl WorthAdd the tiniest shell of a flex/bison-based parser.