summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2010-05-19Remove unneeded YYLEX_PARAM define.Carl Worth
2010-05-19Rename yylex to glcpp_parser_lex and give it a glcpp_parser_t* argument.Carl Worth
2010-05-19Add a wrapper function around the lexer.Carl Worth
2010-05-19Like previous fix, but for object-like macros (and add a test).Carl Worth
2010-05-19Fix bug as in previous fix, but with multi-token argument.Carl Worth
2010-05-19Fix bug (and test) for an invocation using macro name as a non-macro argumentCarl Worth
2010-05-19Fix bug (and add tests) for a function-like macro defined as itself.Carl Worth
2010-05-18Rewrite macro handling to support function-like macro invocation in macro valuesCarl Worth
2010-05-18Add several tests where the defined value of a macro is (or looks like) a macroCarl Worth
2010-05-18Use ir_rvalue::variable_referenced instead of open coding itIan Romanick
2010-05-17Fix (and add test for) function-like macro invocation with newlines.Carl Worth
2010-05-17Expect 1 shift/reduce conflict.Carl Worth
2010-05-17ir_visit_tree is no longer used, remove ir_visit_tree.{cpp,h}Ian Romanick
2010-05-17Reimplement kill_for_derefs using ir_hierarchical_vistorIan Romanick
2010-05-17Reimplement has_call_callback using ir_hierarchical_vistorIan Romanick
2010-05-17Reimplement ir_if_simplicifation_visitor using ir_hierarchical_vistorIan Romanick
2010-05-17Make visit_list_elements safe against node removalsIan Romanick
2010-05-17Reimplement ir_function_can_inline_visitor using ir_hierarchical_vistorIan Romanick
2010-05-17Reimplement ir_dead_code_visitor using ir_hierarchical_vistorIan Romanick
2010-05-17Add ir_hierarchical_visitor base class and associated infrastructureIan Romanick
2010-05-17Replace find_dead_code with visit_exec_listIan Romanick
2010-05-17Fix bug (and add test) for a function-like-macro appearing as a non-macro.Carl Worth
2010-05-17Add test and fix bug leading to infinite recursion.Carl Worth
2010-05-14Use ir_rvalue::variable_referenced instead of open-coding itIan Romanick
2010-05-14Add ir_rvalue::variable_referencedIan Romanick
2010-05-14Fix two whitespace bugs in the lexer.Carl Worth
2010-05-14Don't return SPACE tokens unless strictly needed.Carl Worth
2010-05-14Add test with extra whitespace in macro defintions and invocations.Carl Worth
2010-05-14Provide implementation for macro arguments containing parentheses.Carl Worth
2010-05-14Add test invoking a macro with an argument containing (non-macro) parentheses.Carl Worth
2010-05-14Refresh autogenerated builtin_function.cpp.Kenneth Graunke
2010-05-14Implement "tan" builtin.Kenneth Graunke
2010-05-14Implement "sin" and "cos" builtins via new expression operators.Kenneth Graunke
2010-05-14Implement "cross" builtin.Kenneth Graunke
2010-05-14Implement "fract" builtin.Kenneth Graunke
2010-05-14Implement "sign" builtin via a new expression operator.Kenneth Graunke
2010-05-14Implement "smoothstep" builtin.Kenneth Graunke
2010-05-14Implement "step" builtin.Kenneth Graunke
2010-05-14Integrate generate_builtins.pl into the build process.Kenneth Graunke
2010-05-14Replace old builtin_function.cpp with new autogenerated one.Kenneth Graunke
2010-05-14Add a perl script to generate builtin_function.cpp.Kenneth Graunke
2010-05-14Fix bogus expression typing in various builtins.Kenneth Graunke
2010-05-14Initial commit of IR for builtins.Kenneth Graunke
2010-05-14ir_reader: Set function signatures as defined.Kenneth Graunke
2010-05-14FS gl_FragCoord and and gl_FrontFacing are FS ins, not outs.Eric Anholt
2010-05-14Fix function call parameter printer to omit extraneous leading commaIan Romanick
2010-05-14Fix expansion of composited macros.Carl Worth
2010-05-14Add test for composed invocation of function-like macros.Carl Worth
2010-05-14Eliminate a shift/reduce conflict.Carl Worth
2010-05-14Support macro invocations with multiple tokens for a single argument.Carl Worth