summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2010-05-14Fix function call parameter printer to omit extraneous leading commasimple_list_die_die_dieIan Romanick1-1/+2
2010-05-10Replace many uses of foreach_list with foreach_list_typedIan Romanick1-24/+11
2010-05-10exec_list: Add foreach_list_typed and foreach_list_typed_constIan Romanick1-0/+12
2010-05-10Convert ast_node use of simple_node to exec_list and exec_nodeIan Romanick6-158/+111
2010-05-10exec_list: Add simpler exec_list for-each macrosIan Romanick1-0/+10
2010-05-10exec_list: Add macros to get ptr to structure containing a nodeIan Romanick1-0/+27
2010-05-10Loop bodies, then-statements, and else-statements are not listsIan Romanick1-21/+6
2010-05-10Remove unnecessary include of simple_list.hIan Romanick1-1/+0
2010-05-10Store AST function call parameters in expressionsIan Romanick4-87/+79
2010-05-05Move optimization pass prototypes to a single header.Eric Anholt10-198/+92
2010-05-05ir_dead_code_local: Remove redundant assignments within basic blocks.Eric Anholt4-0/+258
2010-05-05ir_visit_tree: Make sure we visit dereference targets, too.Eric Anholt1-0/+1
2010-05-05ir_copy_propagation: Fix up the doxygen about the file.Eric Anholt1-2/+7
2010-05-05ir_copy_propagation: Return true if we optimized out any assignments.Eric Anholt3-16/+25
2010-05-05ir_copy_propagation: Handle swizzles and array derefs on LHS of assign.Eric Anholt1-14/+25
2010-05-04ir_copy_propagation: New pass to rewrite dereferences to avoid copies.Eric Anholt9-1/+748
2010-05-03ir_to_mesa.cpp: Fix missing types on some ir_swizzles.Eric Anholt2-5/+9
2010-05-03Remove the pedantic C junk.Eric Anholt1-4/+0
2010-05-03Store warnings and errors in a parser state infolog.Eric Anholt2-2/+12
2010-05-03Quiet warnings about ir_shader not being handled in places it's not needed.Eric Anholt2-0/+6
2010-05-03Use the AM_SILENT_RULES when available.Eric Anholt1-0/+2
2010-05-03glsl_lexer: Quiet warning about unused unput().Eric Anholt1-0/+1
2010-05-03Merge branch 'fixes'Ian Romanick2-9/+7
2010-05-01Use %p rather than %08x when printing pointers to fix compile.Kenneth Graunke1-4/+3
2010-05-01Fix ir_return cloning to actually use the cloned subexpression.Kenneth Graunke1-2/+1
2010-04-30Fix incorrect comments in function inliner.Kenneth Graunke1-3/+3
2010-04-29ir_dead_code: Fix segfault on handling a return statement with no value.Eric Anholt1-1/+4
2010-04-28Track and print user defined structure typesstructIan Romanick3-1/+35
2010-04-28IR print visitor: Move logic for printing the whole program to _mesa_print_irIan Romanick3-8/+20
2010-04-28IR print visitor: Just print the name of structuresIan Romanick1-4/+0
2010-04-28ir_function_inlining: Handle inlining of structure dereferences.Eric Anholt1-2/+1
2010-04-28Correctly handle remapping of array dereferences if ->var is a variable.Eric Anholt1-20/+11
2010-04-28Begin handling some varieties of invalid declarationsIan Romanick1-1/+17
2010-04-28Reject conflicting struct declarations, generate struct constructorIan Romanick1-1/+14
2010-04-28glsl_type::generate_constructor_prototype now generates the function tooIan Romanick3-6/+35
2010-04-28Always return a value from ast_type_specifier::hirIan Romanick1-0/+2
2010-04-28Support structures in glsl_type::generate_constructor_prototypeIan Romanick1-4/+3
2010-04-28Implement structures and arrays in ir_dereference::is_lvalueIan Romanick1-7/+6
2010-04-28Ensure that structure fields have non-NULL typesIan Romanick1-1/+2
2010-04-28Ensure that anonymous structures have non-NULL namesIan Romanick1-2/+15
2010-04-28Convert structure field dereferences to HIRIan Romanick1-1/+7
2010-04-28Add ir_dereference constructor for structure field dereferencesIan Romanick2-0/+10
2010-04-28Add glsl_type::field_typeIan Romanick2-0/+26
2010-04-28Begin converting structure definitions to IRIan Romanick2-1/+86
2010-04-28Use IDENTIFIER instead of TYPE_NAME for structure namesIan Romanick1-2/+2
2010-04-28ir_reader: Slightly better error message when failing to read swizzles.Kenneth Graunke1-2/+6
2010-04-28ir_reader: Don't print out the S-Expression.Kenneth Graunke1-3/+0
2010-04-28ir_reader: Read function calls.Kenneth Graunke1-1/+46
2010-04-28ir_reader: Replace function prototypes with the definition.Kenneth Graunke1-23/+41
2010-04-28ir_reader: Fix incorrect error message for expressions.Kenneth Graunke1-3/+3