summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
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-14Use ir_rvalue::variable_referenced instead of open-coding itIan Romanick
2010-05-14Add ir_rvalue::variable_referencedIan Romanick
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-10Replace many uses of foreach_list with foreach_list_typedIan Romanick
2010-05-10exec_list: Add foreach_list_typed and foreach_list_typed_constIan Romanick
2010-05-10Convert ast_node use of simple_node to exec_list and exec_nodeIan Romanick
2010-05-10exec_list: Add simpler exec_list for-each macrosIan Romanick
2010-05-10exec_list: Add macros to get ptr to structure containing a nodeIan Romanick
2010-05-10Loop bodies, then-statements, and else-statements are not listsIan Romanick
2010-05-10Remove unnecessary include of simple_list.hIan Romanick
2010-05-10Store AST function call parameters in expressionsIan Romanick
2010-05-05Move optimization pass prototypes to a single header.Eric Anholt
2010-05-05ir_dead_code_local: Remove redundant assignments within basic blocks.Eric Anholt
2010-05-05ir_visit_tree: Make sure we visit dereference targets, too.Eric Anholt
2010-05-05ir_copy_propagation: Fix up the doxygen about the file.Eric Anholt
2010-05-05ir_copy_propagation: Return true if we optimized out any assignments.Eric Anholt
2010-05-05ir_copy_propagation: Handle swizzles and array derefs on LHS of assign.Eric Anholt
2010-05-04ir_copy_propagation: New pass to rewrite dereferences to avoid copies.Eric Anholt
2010-05-03ir_to_mesa.cpp: Fix missing types on some ir_swizzles.Eric Anholt
2010-05-03Remove the pedantic C junk.Eric Anholt
2010-05-03Store warnings and errors in a parser state infolog.Eric Anholt
2010-05-03Quiet warnings about ir_shader not being handled in places it's not needed.Eric Anholt
2010-05-03Use the AM_SILENT_RULES when available.Eric Anholt
2010-05-03glsl_lexer: Quiet warning about unused unput().Eric Anholt
2010-05-03Merge branch 'fixes'Ian Romanick
2010-05-01Use %p rather than %08x when printing pointers to fix compile.Kenneth Graunke
2010-05-01Fix ir_return cloning to actually use the cloned subexpression.Kenneth Graunke
2010-04-30Fix incorrect comments in function inliner.Kenneth Graunke