aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/ir.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: add cast to silence signed/unsigned comparison warningBrian Paul2011-03-151-1/+1
* glsl: Explicitly specify a type when reading/printing ir_texture.Kenneth Graunke2011-03-141-12/+8
* glsl: Introduce a new "const_in" variable mode.Kenneth Graunke2011-01-311-1/+16
* Convert everything from the talloc API to the ralloc API.Kenneth Graunke2011-01-311-9/+9
* glsl: Propagate depth layout qualifier from AST to IRChad Versace2011-01-261-0/+1
* glsl: Define enum ir_depth_layoutChad Versace2011-01-261-0/+16
* glsl: Track variable usage, use that to enforce semanticsIan Romanick2011-01-121-0/+1
* glsl: Add type inference support for remaining expression opcodes.Kenneth Graunke2011-01-111-0/+48
* glsl: Fix flipped return of has_value() for array constants.Eric Anholt2010-12-021-1/+1
* glsl: Add a helper constructor for expressions that works out result type.Eric Anholt2010-11-301-0/+102
* glsl: Add a helper function for determining if an rvalue could be a saturate.Eric Anholt2010-11-191-0/+56
* glsl: Add ir_quadop_vector expressionIan Romanick2010-11-191-2/+23
* glsl: Add unary ir_expression constructorIan Romanick2010-11-191-0/+13
* glsl: Add ir_rvalue::is_negative_one predicateIan Romanick2010-11-191-0/+41
* glsl: Add ir_unop_sin_reduced and ir_unop_cos_reducedIan Romanick2010-11-191-0/+2
* glsl: Make is_zero and is_one virtual methods of ir_rvalueIan Romanick2010-11-181-0/+10
* glsl: Fix 'control reaches end of non-void function' warning.Vinson Lee2010-11-171-0/+3
* glsl: Refactor get_num_operands.Kenneth Graunke2010-11-171-70/+5
* glsl: Remove the ir_binop_cross opcode.Kenneth Graunke2010-11-171-2/+0
* glsl: Refactor is_vec_{zero,one} to be methods of ir_constantIan Romanick2010-11-161-0/+73
* glsl: Add a new ir_unop_round_even opcode for GLSL 1.30's roundEven.Kenneth Graunke2010-10-141-0/+2
* glsl: Track explicit location in AST to IR translationIan Romanick2010-10-081-0/+1
* glsl: Rework assignments with write_masks to have LHS chan count match RHS.Eric Anholt2010-09-221-1/+28
* glsl: Change from has_builtin_signature to has_user_signature.Kenneth Graunke2010-09-161-2/+2
* glsl: introduce ir_binop_all_equal and ir_binop_any_equal, allow vector cmpsLuca Barbieri2010-09-131-0/+5
* glsl2: Add ir_unop_noiseIan Romanick2010-09-091-0/+3
* glsl: Move is_builtin flag back to ir_function_signature.Kenneth Graunke2010-09-071-1/+13
* ir_expression: Add static operator_string methodIan Romanick2010-09-031-3/+7
* glsl2: Add cmp field to ir_loopIan Romanick2010-09-031-0/+12
* glsl: Add proper handling for constant matrix-from-matrix constructors.Kenneth Graunke2010-09-011-0/+25
* glsl: Move generate_constructor_(matrix|vector) to ir_constant ctor.Kenneth Graunke2010-09-011-0/+35
* glsl2: Allow ir_constant::zero to create boolean constantsIan Romanick2010-09-011-1/+1
* glsl: Completely initialize value member in ir_constant constructor.Vinson Lee2010-08-291-0/+3
* glsl: Initialize the rest of values of ir_constant::value.Vinson Lee2010-08-281-0/+12
* glsl: Move is_built_in flag from ir_function_signature to ir_function.Kenneth Graunke2010-08-261-1/+1
* glsl: Don't consider things with a type containing a sampler as an lvalue.Eric Anholt2010-08-251-0/+23
* glsl: Include main/core.h.Chia-I Wu2010-08-241-2/+1
* mesa: Add new ir_unop_any() expression operation.Eric Anholt2010-08-231-0/+2
* ir_constant: Don't assert on out-of-bounds array accessesIan Romanick2010-08-171-1/+15
* glsl2: Remove the shader_in/shader_out tracking separate from var->mode.Eric Anholt2010-08-041-4/+0
* glsl2: Add ir_assignment::write_mask and associated methodsIan Romanick2010-08-041-2/+111
* glsl2: Initialize the ARB_fcc fields of ir_variable.Eric Anholt2010-08-021-0/+2
* glsl2: Initialize ir_function_signature::is_built_in.Kenneth Graunke2010-07-301-0/+1
* glsl2: Fix spelling of "sentinel."Eric Anholt2010-07-291-4/+4
* glsl2: Add new ir_constant::zero static method.Kenneth Graunke2010-07-281-0/+12
* glsl2: When stealing var->constant_value, steal its children as well.Eric Anholt2010-07-271-1/+1
* glsl2: Also steal the constant components of aggregate-typed ir_constants.Eric Anholt2010-07-261-0/+18
* glsl2: Steal ir_variable's constant_value field.Kenneth Graunke2010-07-261-0/+3
* glsl2: Initialize ir_instruction::type and ir_rvalue::type.Kenneth Graunke2010-07-221-0/+5
* ir_constant_expression: Add support for array == and !=.Kenneth Graunke2010-07-211-3/+8