summaryrefslogtreecommitdiff
path: root/src/glsl/ir.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-11-06glsl: add 'f' suffix to floats to silence MSVC warningsBrian Paul1-1/+1
2012-09-15glsl: make tex_opcode_strs staticDave Airlie1-1/+1
2012-08-07glsl: Add a "ubo_load" expression type for fetches from UBOs.Eric Anholt1-0/+1
2012-07-20glsl: Translate the AST for uniform blocks into some IR structures.Eric Anholt1-0/+1
2012-06-15glsl: Add unary operation ir_unop_f2u.Paul Berry1-0/+2
2012-06-12glsl: Add is_basis functionMatt Turner1-0/+48
2012-06-07glsl: Bitwise conversion operator support in ir_expression.Olivier Galibert1-0/+4
2012-06-07glsl: New unary opcodes for ARB_shader_bit_encoding support.Olivier Galibert1-0/+4
2012-05-08glsl: Add an origin pointer in the function signature object.Olivier Galibert1-0/+1
2012-05-08glsl: Add methods to copy parts of one ir_constant into another.Olivier Galibert1-0/+89
2012-05-08glsl: Extend ir_constant::zero to handle more types.Olivier Galibert1-1/+16
2012-04-02glsl: Remove ir_call::get_callee() and set_callee().Kenneth Graunke1-5/+0
2012-04-02glsl: Convert ir_call to be a statement rather than a value.Kenneth Graunke1-2/+0
2012-04-02glsl: Use ir_rvalue to represent generic error_type values.Kenneth Graunke1-5/+5
2012-03-26glsl: Make ir_dereference_variable ctor assert the variable exists.Kenneth Graunke1-1/+3
2012-03-26glsl: Make ir_dereference_record constructor assert the variable exists.Kenneth Graunke1-4/+4
2012-03-26glsl: Make ir_dereference_array constructor assert the variable exists.Kenneth Graunke1-10/+9
2011-11-03linker: Check that initializers for global variables matchIan Romanick1-0/+5
2011-10-27glsl: add ir_variable::determine_interpolation_mode() function.Paul Berry1-0/+15
2011-10-27glsl: Distinguish between no interpolation qualifier and 'smooth'Paul Berry1-1/+2
2011-10-27mesa: Expose GLSL interpolation qualifiers in gl_fragment_program.Paul Berry1-4/+4
2011-10-07glsl: Remove unused method ir_variable::component_slotsIan Romanick1-8/+0
2011-09-14glsl: Remove field array_lvalue from ir_variable.Paul Berry1-4/+1
2011-08-23glsl: Add a new ir_txs (textureSize) opcode to ir_texture.Kenneth Graunke1-6/+10
2011-08-15glsl: Make is_lvalue() and variable_referenced() const.Paul Berry1-2/+2
2011-07-18glsl: Move type_contains_sampler() into glsl_type for later reuse.Paul Berry1-16/+1
2011-06-29glsl: Add ir_unop_i2u and ir_unop_u2i operations.Bryan Cain1-0/+8
2011-03-15glsl: add cast to silence signed/unsigned comparison warningBrian Paul1-1/+1
2011-03-14glsl: Explicitly specify a type when reading/printing ir_texture.Kenneth Graunke1-12/+8
2011-01-31glsl: Introduce a new "const_in" variable mode.Kenneth Graunke1-1/+16
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-9/+9
2011-01-26glsl: Propagate depth layout qualifier from AST to IRChad Versace1-0/+1
2011-01-26glsl: Define enum ir_depth_layoutChad Versace1-0/+16
2011-01-12glsl: Track variable usage, use that to enforce semanticsIan Romanick1-0/+1
2011-01-11glsl: Add type inference support for remaining expression opcodes.Kenneth Graunke1-0/+48
2010-12-02glsl: Fix flipped return of has_value() for array constants.Eric Anholt1-1/+1
2010-11-30glsl: Add a helper constructor for expressions that works out result type.Eric Anholt1-0/+102
2010-11-19glsl: Add a helper function for determining if an rvalue could be a saturate.Eric Anholt1-0/+56
2010-11-19glsl: Add ir_quadop_vector expressionIan Romanick1-2/+23
2010-11-19glsl: Add unary ir_expression constructorIan Romanick1-0/+13
2010-11-19glsl: Add ir_rvalue::is_negative_one predicateIan Romanick1-0/+41
2010-11-19glsl: Add ir_unop_sin_reduced and ir_unop_cos_reducedIan Romanick1-0/+2
2010-11-18glsl: Make is_zero and is_one virtual methods of ir_rvalueIan Romanick1-0/+10
2010-11-17glsl: Fix 'control reaches end of non-void function' warning.Vinson Lee1-0/+3
2010-11-17glsl: Refactor get_num_operands.Kenneth Graunke1-70/+5
2010-11-17glsl: Remove the ir_binop_cross opcode.Kenneth Graunke1-2/+0
2010-11-16glsl: Refactor is_vec_{zero,one} to be methods of ir_constantIan Romanick1-0/+73
2010-10-14glsl: Add a new ir_unop_round_even opcode for GLSL 1.30's roundEven.Kenneth Graunke1-0/+2
2010-10-08glsl: Track explicit location in AST to IR translationIan Romanick1-0/+1
2010-09-22glsl: Rework assignments with write_masks to have LHS chan count match RHS.Eric Anholt1-1/+28