summaryrefslogtreecommitdiff
path: root/ast_to_hir.cpp
AgeCommit message (Expand)Author
2010-06-24Merge remote branch 'cworth/master'Eric Anholt
2010-06-24Don't forget to add the declaration of our temporary variable for assigns.Eric Anholt
2010-06-23glsl_type: Add a talloc-based newCarl Worth
2010-06-23Close memory leaks in glsl_type (constructor and get_array_instance)Carl Worth
2010-06-23exec_node: Add new talloc-based new()Carl Worth
2010-06-23Fix double usage of the post-inc/dec's temporary pre-inc/dec copy.Eric Anholt
2010-06-23Avoid using the RHS of an assignment twice.Eric Anholt
2010-06-23get_lvalue_copy doesn't need all the checking of do_assignment().Eric Anholt
2010-06-23ast_to_hir: Clone LHS derefs of assignment expressions.Eric Anholt
2010-06-23Add a virtual clone() method to ir_instruction.Eric Anholt
2010-06-22Include stdio.h and stdlib.h everywhere, and don't cook our own #define NULL.Eric Anholt
2010-06-18Ensure that shader_in and shader_out are correctly set in declarationsIan Romanick
2010-06-17Allow initializers for uniformsIan Romanick
2010-06-11Use statically typed ir_constant constructors wherever possibleIan Romanick
2010-06-11Treat ?: with all constant subexpressions as a constant expressionIan Romanick
2010-06-11Rearrange code in HIR conversion of ?: operatorIan Romanick
2010-06-01Allow arrays of floats as varyings.Eric Anholt
2010-06-01Handle GLSL 1.20 implicit type conversions.Eric Anholt
2010-05-26Fix setting the maximum accessed array elementIan Romanick
2010-05-26Refactor ir_dereference data fields to subclassesIan Romanick
2010-05-26Begin refactoring ir_dereferenceIan Romanick
2010-05-10Replace many uses of foreach_list with foreach_list_typedIan Romanick
2010-05-10Convert ast_node use of simple_node to exec_list and exec_nodeIan Romanick
2010-05-10Loop bodies, then-statements, and else-statements are not listsIan Romanick
2010-04-28Track and print user defined structure typesIan Romanick
2010-04-28Begin handling some varieties of invalid declarationsIan Romanick
2010-04-28Reject conflicting struct declarations, generate struct constructorIan Romanick
2010-04-28Always return a value from ast_type_specifier::hirIan Romanick
2010-04-28Ensure that structure fields have non-NULL typesIan Romanick
2010-04-28Ensure that anonymous structures have non-NULL namesIan Romanick
2010-04-28Begin converting structure definitions to IRIan Romanick
2010-04-28Factor out parameter list replacement for later reuse.Kenneth Graunke
2010-04-28Factor out parameter list matching from ast_function::hir for later reuse.Kenneth Graunke
2010-04-28Factor out qualifier checking code for later reuse.Kenneth Graunke
2010-04-21Refactor IR function representation.Kenneth Graunke
2010-04-21Use ir_function_signature::function_name() rather than direct access.Kenneth Graunke
2010-04-21Ensure that both parameter lists are the same length in function overloading.Kenneth Graunke
2010-04-19Mark some variables as having usage beyond the shader's scope.Eric Anholt
2010-04-16While-loops also start a new scope.Ian Romanick
2010-04-16Avoid generating ir_if for &&, || short-circuiting with constant LHS.Eric Anholt
2010-04-16Make && and || only evaluate the RHS when the LHS requires it.Eric Anholt
2010-04-14Check that the return type of function definition matches its prototype.Eric Anholt
2010-04-14Check that function definition parameter qualifiers match proto qualifiers.Eric Anholt
2010-04-14Return the rvalue of a variable decl to fix while (bool b = condition) {}Eric Anholt
2010-04-07Make function bodies rely on the parameter variable declarations.Eric Anholt
2010-04-07Put function bodies under function signatures, instead of flat in the parent.Eric Anholt
2010-04-07Use _mesa_glsl_shader_target_nameIan Romanick
2010-04-07Generate correct IR for do-while loopsIan Romanick
2010-04-07Process ast_jump_statement into ir_loop_jumpIan Romanick
2010-04-07Begin tracking the nesting of loops and switch-statementsIan Romanick