summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
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
2010-05-14Add test for function-like macro invocations with multiple-token arguments.Carl Worth
2010-05-14Make macro-expansion productions create string-list values rather than printingCarl Worth
2010-05-14Move most printing to the action in the content production.Carl Worth
2010-05-14Remove _list suffix from several identifiers.Carl Worth
2010-05-14Rename list_t and node_t to string_list_t and string_node_t.Carl Worth
2010-05-14Fix case of a macro formal parameter matching a defined macro.Carl Worth
2010-05-14Add test where a macro formal parameter is the same as an existing macro.Carl Worth
2010-05-14Implement substitution of macro arguments.Carl Worth
2010-05-14Add tests exercising substitution of arguments in function-like macros.Carl Worth
2010-05-14Make the lexer return SPACE tokens unconditionally.Carl Worth
2010-05-14Makefile: Make "make test" depend on the main program.Carl Worth
2010-05-14Add some whitespace variations to test 15.Carl Worth
2010-05-14Fix parsing of object-like macro with a definition that begins with '('.Carl Worth
2010-05-14Add test for an object-like macro with a definition beginning with '('Carl Worth
2010-05-14Eliminate a reduce/reduce conflict in the function-like macro production.Carl Worth
2010-05-13Add support for the structure of function-like macros.Carl Worth
2010-05-13Add tests for the structure of function-like macros.Carl Worth
2010-05-13Make the lexer distinguish between identifiers and defined macros.Carl Worth
2010-05-12Remove some redundancy in the top-level production.Carl Worth