summaryrefslogtreecommitdiff
path: root/src/glsl
AgeCommit message (Expand)AuthorFilesLines
2010-12-09glsl: Unroll loops with conditional breaks anywhere (not just the end)7.10-branchpointLuca Barbieri1-46/+68
2010-12-09glsl: Consider the "else" branch when looking for loop breaks.Kenneth Graunke1-1/+1
2010-12-09glsl: Clean up code by adding a new is_break() function.Kenneth Graunke1-6/+11
2010-12-09glsl: Correct the marking of InputsRead/OutputsWritten on in/out matrices.Eric Anholt1-20/+15
2010-12-09glsl: fix lowering conditional returns in subroutinesFabian Bieler1-1/+5
2010-12-08glsl: In ast_to_hir, check sampler array indexingChad Versace1-0/+14
2010-12-07linker: Fix regressions caused by previous commitIan Romanick1-12/+16
2010-12-07linker: Ensure that unsized arrays have a size after linkingIan Romanick1-1/+27
2010-12-07glsl: Inherrit type of declared variable from initializerIan Romanick1-0/+18
2010-12-07glsl: Ensure that equality comparisons don't return a NULL IR treeIan Romanick1-16/+19
2010-12-07Refresh autogenerated glcpp parser.Kenneth Graunke1-47/+46
2010-12-07glcpp: Don't emit SPACE tokens in conditional_tokens production.Kenneth Graunke1-1/+0
2010-12-06glsl: Properly add functions during lazy built-in prototype importing.Kenneth Graunke3-7/+25
2010-12-06glsl: Factor out code which emits a new function into the IR stream.Kenneth Graunke2-18/+26
2010-12-03ir_print_visitor: Print out constant structure values.Kenneth Graunke1-0/+9
2010-12-02glsl: Fix flipped return of has_value() for array constants.Eric Anholt1-1/+1
2010-12-01glsl: Fix linker bug in cross_validate_globals()Chad Versace1-0/+7
2010-12-01glsl: Mark the array access for whole-array comparisons.Eric Anholt1-0/+14
2010-12-01glsl: Lower ir_binop_pow to a sequence of EXP2 and LOG2Ian Romanick2-2/+29
2010-12-01glsl: Use M_LOG2E constant instead of calling log2Ian Romanick1-3/+3
2010-12-01glsl: Add comments to lower_jumps (from the commit message).Kenneth Graunke1-0/+31
2010-12-01glsl: Remove "discard" support from lower_jumps.Kenneth Graunke1-11/+2
2010-12-01glsl: Add a lowering pass to move discards out of if-statements.Kenneth Graunke4-0/+201
2010-12-01glsl: Add an optimization pass to simplify discards.Kenneth Graunke5-0/+184
2010-11-30glsl/linker: Free any IR discarded by optimization passes.Kenneth Graunke1-4/+19
2010-11-30glsl: Remove anti-built-in hacks from the print visitor.Kenneth Graunke1-7/+0
2010-11-30glsl: Lazily import built-in function prototypes.Kenneth Graunke3-31/+40
2010-11-30glsl: Refactor out cloning of function prototypes.Kenneth Graunke3-27/+24
2010-11-30glsl: fix matrix type check in ir_algebraicAras Pranckevicius1-2/+2
2010-11-30glsl: Quiet unreachable no-return-from-function warning.Eric Anholt1-0/+2
2010-11-30glsl: Fix structure and array comparisions.Eric Anholt1-2/+70
2010-11-30glsl: Add a helper constructor for expressions that works out result type.Eric Anholt2-0/+104
2010-11-29glsl: Make the symbol table's add_variable just use the variable's name.Eric Anholt7-15/+15
2010-11-29glsl: Make the symbol table's add_function just use the function's name.Eric Anholt6-9/+9
2010-11-25glsl: Add a virtual as_discard() method.Kenneth Graunke1-0/+6
2010-11-25glsl: Use do_common_optimization in the standalone compiler.Kenneth Graunke1-20/+1
2010-11-25glsl: Don't inline function prototypes.Kenneth Graunke1-0/+2
2010-11-19glsl: Add a helper function for determining if an rvalue could be a saturate.Eric Anholt2-0/+58
2010-11-19glsl: Fix type of label 'default' in switch statement.Vinson Lee1-1/+1
2010-11-19glsl: Add lower_vector.cpp to SConscript.Vinson Lee1-0/+1
2010-11-19glsl: Fix matrix constructors with vector parametersIan Romanick1-9/+9
2010-11-19glsl: Combine many instruction lowering passes into one.Kenneth Graunke9-376/+273
2010-11-19glsl: Simplify a type check by using type->is_integer().Kenneth Graunke1-2/+1
2010-11-19glsl: Add ir_quadop_vector expressionIan Romanick9-6/+327
2010-11-19glsl: Add unary ir_expression constructorIan Romanick2-0/+21
2010-11-19glsl: Add ir_rvalue::is_negative_one predicateIan Romanick2-3/+58
2010-11-19glsl: Eliminate assumptions about size of ir_expression::operandsIan Romanick5-6/+9
2010-11-19glsl: Add ir_unop_sin_reduced and ir_unop_cos_reducedIan Romanick4-0/+8
2010-11-18glsl: Make is_zero and is_one virtual methods of ir_rvalueIan Romanick2-21/+36
2010-11-17glsl: Fix 'control reaches end of non-void function' warning.Vinson Lee1-0/+3