summaryrefslogtreecommitdiff
path: root/src/glsl/ir_validate.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-06-15glsl: Add unary operation ir_unop_f2u.Paul Berry1-0/+4
2012-06-07glsl: Bitwise conversion operator support in ir_validate.Olivier Galibert1-0/+16
2012-04-02glsl: Demote 'type' from ir_instruction to ir_rvalue and ir_variable.Kenneth Graunke1-1/+3
2012-04-02glsl: Remove ir_call::get_callee() and set_callee().Kenneth Graunke1-1/+1
2012-04-02glsl: Convert ir_call to be a statement rather than a value.Kenneth Graunke1-0/+11
2012-03-25glsl: fix compiling warning from gcc 4.7Dave Airlie1-1/+1
2011-12-02glsl: return visit_stop in ir_validate::visit_enter() to silence warningBrian Paul1-0/+1
2011-11-03linker: Check that initializers for global variables matchIan Romanick1-0/+7
2011-10-04glsl: Remove unneeded headers.Stéphane Marchesin1-1/+0
2011-08-22glsl: Make ir_validate actually visit ir_if nodes.Kenneth Graunke1-2/+3
2011-08-15glsl: Add validations for ir_call.Paul Berry1-0/+36
2011-06-29glsl: Revert "fix conversions from uint to bool and from..."Kenneth Graunke1-3/+3
2011-06-29glsl: Add ir_unop_i2u and ir_unop_u2i operations.Bryan Cain1-0/+8
2011-04-18glsl: fix conversions from uint to bool and from float/bool to uintBryan Cain1-3/+3
2011-03-25glsl: Add array access bounds checking to ir_validateIan Romanick1-0/+15
2011-03-10glsl: silence warning in printf() with a castBrian Paul1-1/+1
2011-03-08glsl: Add several function / call related validationsIan Romanick1-0/+27
2011-03-08glsl: Function signatures cannot have NULL return typeIan Romanick1-0/+6
2011-02-21Use C-style system headers in C++ code to avoid issues with std:: namespaceIan Romanick1-3/+0
2011-02-03glsl: Add using statements for standard library functions.Vinson Lee1-0/+3
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-2/+2
2010-11-19glsl: Add ir_quadop_vector expressionIan Romanick1-0/+45
2010-11-19glsl: Add ir_unop_sin_reduced and ir_unop_cos_reducedIan Romanick1-0/+2
2010-11-17glsl: Remove the ir_binop_cross opcode.Kenneth Graunke1-6/+0
2010-10-15glsl: add ir_unop_round_even case to silence unhandled enum warningBrian Paul1-0/+1
2010-10-15glsl: Fix ir validation for bit logic opsChad Versace1-5/+9
2010-10-15glsl: Implement ast-to-hir for binary shifts in GLSL 1.30Chad Versace1-0/+13
2010-09-27glsl: Add validation that a swizzle only references valid channels.Eric Anholt1-0/+18
2010-09-22glsl: Rework assignments with write_masks to have LHS chan count match RHS.Eric Anholt1-7/+9
2010-09-20glsl2: silence compiler warnings in printf() callsBrian Paul1-2/+4
2010-09-14glsl2: add case for ir_unop_noiseBrian Paul1-0/+4
2010-09-13glsl: introduce ir_binop_all_equal and ir_binop_any_equal, allow vector cmpsLuca Barbieri1-10/+16
2010-09-08ir_validate: Ensure ir_binop_dot is only used on vector types.Kenneth Graunke1-0/+1
2010-09-03ir_validate: Validate loop control fields in ir_loopIan Romanick1-0/+35
2010-08-23mesa: Add new ir_unop_any() expression operation.Eric Anholt1-0/+5
2010-08-14Revert "glsl2: Use stdint.h instead of inttypes.h"José Fonseca1-1/+1
2010-08-13glsl2: Use stdint.h instead of inttypes.hIan Romanick1-1/+1
2010-08-11glsl2: added casts to silence warningsBrian Paul1-7/+7
2010-08-05glsl2: Add a pass to convert exp and log to exp2 and log2.Eric Anholt1-0/+4
2010-08-04glsl2: Additional validation of write masksIan Romanick1-0/+32
2010-08-03glsl2: Fix ir_validate validating null variable names.Eric Anholt1-1/+2
2010-08-02glsl2: Clean-up two 'unused variable' warningsIan Romanick1-0/+2
2010-08-02glsl2: Add validation that talloc ownership of ir_* names is right.Eric Anholt1-1/+3
2010-08-02glsl2: Fix validation for ir_unop_not.Eric Anholt1-2/+2
2010-08-02glsl2: Give the path within src/mesa/ for headers instead of relying on -I.Aras Pranckevicius1-1/+1
2010-07-27ir_validate: Check the types of expression operations.Eric Anholt1-0/+144
2010-07-27glsl2: Fix missing visit_continue return in ir_validate.Eric Anholt1-0/+2
2010-07-22glsl2: Validate that ir_if conditions are actually bool.Eric Anholt1-0/+13
2010-07-20glsl2: Check that nodes in a valid tree aren't error-type.Eric Anholt1-1/+2
2010-07-19glsl2: Give IR nodes a type field.Eric Anholt1-0/+15