summaryrefslogtreecommitdiff
path: root/src/glsl/loop_analysis.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-07-01glsl: Use typed foreach_in_list_safe instead of foreach_list_safe.Matt Turner1-9/+3
2014-07-01glsl: Use typed foreach_in_list instead of foreach_list.Matt Turner1-9/+5
2014-05-30glsl: Add null check in loop_analysis.cppJuha-Pekka Heikkila1-2/+4
2014-03-28glsl: Clean up "unused parameter" warningsIan Romanick1-1/+1
2013-12-09glsl/loops: Move some analysis from loop_controls to loop_analysis.Paul Berry1-0/+69
2013-12-09glsl/loops: Allocate loop_terminator using new(mem_ctx) syntax.Paul Berry1-1/+1
2013-12-09glsl/loops: Remove unused fields iv_scale and biv from loop_variable class.Paul Berry1-2/+0
2013-12-09glsl: In loop analysis, handle unconditional second assignment.Paul Berry1-3/+4
2013-12-09glsl: Fix handling of function calls inside nested loops.Paul Berry1-7/+7
2013-12-09glsl: Fix loop analysis of nested loops.Paul Berry1-13/+21
2013-12-09glsl: Extract functions from loop_analysis::visit(ir_dereference_variable *).Paul Berry1-25/+67
2013-09-23glsl: Hide many classes local to individual .cpp files in anon namespaces.Eric Anholt1-0/+2
2013-07-25glsl: Handle empty if statement encountered during loop analysis.Paul Berry1-1/+2
2013-02-07glsl: Change loop_analysis to not look like a resource leakIan Romanick1-7/+6
2012-04-02glsl: Don't trust loop analysis in the presence of function calls.Kenneth Graunke1-0/+28
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-7/+7
2011-01-18glsl: Skip the rest of loop unrolling if no loops were found.Eric Anholt1-0/+3
2010-11-11glsl: Free the loop state context when we free the loop state.Eric Anholt1-0/+1
2010-09-07glsl2: Early return with visit_continue in loop_analysis::visit(ir_dereferenc...Ian Romanick1-1/+1
2010-09-03glsl2: Use as_constant some places instead of constant_expression_valueIan Romanick1-1/+1
2010-09-03glsl2: Track the number of ir_loop_jump instructions that are in a loopIan Romanick1-0/+17
2010-09-03glsl2: Add module to analyze variables used in loopsIan Romanick1-0/+479