Ian Romanick [Tue, 6 Apr 2010 00:01:53 +0000 (17:01 -0700)]
Begin tracking the nesting of loops and switch-statements
Ian Romanick [Mon, 5 Apr 2010 23:53:19 +0000 (16:53 -0700)]
Use switch based on mode in ast_jump_statement::hir
Ian Romanick [Mon, 5 Apr 2010 23:38:20 +0000 (16:38 -0700)]
Add some newlines when printing ir_loop instructions
Ian Romanick [Mon, 5 Apr 2010 23:37:49 +0000 (16:37 -0700)]
Process ast_iteration_statement into ir_loop
This causes the following tests to pass:
glslparsertest/shaders/dowhile.frag
glslparsertest/shaders/while.frag
glslparsertest/shaders/while1.frag
glslparsertest/shaders/while2.frag
Ian Romanick [Mon, 5 Apr 2010 23:28:15 +0000 (16:28 -0700)]
Add ir_loop_jump to represent 'break' and 'continue' in loops
Ian Romanick [Mon, 5 Apr 2010 23:16:07 +0000 (16:16 -0700)]
Add ir_loop to represent loops
This touches a lot of files because everything derived from ir_visitor
has to be updated. This is the primary disadvantage of the visitor pattern.
Eric Anholt [Tue, 6 Apr 2010 19:13:02 +0000 (12:13 -0700)]
Add some linebreaks in the ir_print_visitor of if statement bodies.
Eric Anholt [Tue, 6 Apr 2010 18:52:09 +0000 (11:52 -0700)]
Make constant folding descend into if statements.
Eric Anholt [Tue, 6 Apr 2010 18:42:01 +0000 (11:42 -0700)]
Descend down the tree in more locations in constant folding.
Eric Anholt [Tue, 6 Apr 2010 18:11:05 +0000 (11:11 -0700)]
Perform constant folding on array indices.
Replaces a constant var deref with a constant value in CorrectParse1.frag.
Eric Anholt [Tue, 6 Apr 2010 17:53:57 +0000 (10:53 -0700)]
Add float/int conversion to ir_constant_expression.cpp.
Gives CorrectParse2.frag one more constant folding.
Eric Anholt [Tue, 6 Apr 2010 17:30:54 +0000 (10:30 -0700)]
Handle constant expressions using derefs of const values.
Fixes CorrectParse1.frag and makes for a ton of folding in
CorrectParse2.frag.
Eric Anholt [Tue, 6 Apr 2010 17:07:20 +0000 (10:07 -0700)]
Fold constant expressions in if conditionals.
Fixes up 3 more expressions in CorrectParse2.frag.
Eric Anholt [Tue, 6 Apr 2010 17:02:27 +0000 (10:02 -0700)]
Add support for =, != to ir_constant_expresion.cpp
This results in constant folding of one more expression in CorrectParse2.frag.
Eric Anholt [Tue, 6 Apr 2010 16:55:45 +0000 (09:55 -0700)]
Add ir_constant_expression.cpp support for <, >, <=, >=.
This results in folding one more constant expression in CorrectParse2.frag.
Eric Anholt [Mon, 5 Apr 2010 22:24:28 +0000 (15:24 -0700)]
Add a constant folding optimization pass.
Eric Anholt [Sat, 3 Apr 2010 06:47:06 +0000 (23:47 -0700)]
Add definition of gl_ClipDistance[]
Ian Romanick [Mon, 5 Apr 2010 21:35:47 +0000 (14:35 -0700)]
Set lower bound on size implied by whole-array assignment
When an unsized array is accessed with a constant extension index this
sets a lower bound on the allowable sizes. When the unsized array
gets a size set due to a whole-array assignment, this size must be at
least as large as the implied lower bound.
This causes the following tests to pass:
glslparsertest/glsl2/array-16.vert
Ian Romanick [Mon, 5 Apr 2010 20:16:00 +0000 (13:16 -0700)]
Allow dereference of vectors and matrices with []
This causes the following tests to pass:
glslparsertest/glsl2/matrix-11.vert
glslparsertest/glsl2/matrix-12.vert
glslparsertest/shaders/CorrectParse2.vert
glslparsertest/shaders/CorrectSwizzle2.frag
Ian Romanick [Mon, 5 Apr 2010 17:30:15 +0000 (10:30 -0700)]
Set correct type for ir_dereference of a matrix or a vector
Ian Romanick [Sat, 3 Apr 2010 00:44:39 +0000 (17:44 -0700)]
Propagate sizes when assigning a whole array to an unsized array
Ian Romanick [Sat, 3 Apr 2010 00:17:47 +0000 (17:17 -0700)]
Track whether whole-arrays are assignable
In GLSL 1.10 this was not allowed, but in GLSL 1.20 and later it is.
This causes the following tests to pass:
glslparsertest/glsl2/array-09.vert
glslparsertest/glsl2/array-13.vert
Ian Romanick [Sat, 3 Apr 2010 00:05:59 +0000 (17:05 -0700)]
Whole structures are assignable
Whole arrays are assignable in GLSL 1.20 and later, but it's not clear
how to handle that within the IR because the IR is supposed to be
shading language version agnostic.
Ian Romanick [Fri, 2 Apr 2010 23:08:44 +0000 (16:08 -0700)]
Use glsl_type::element_type to get the type of array elements
Ian Romanick [Fri, 2 Apr 2010 22:51:02 +0000 (15:51 -0700)]
Ensure that 'in' and 'inout' formal parameters are valid lvalues
This causes the following tests to pass:
glslparsertest/shaders/function10.frag
Ian Romanick [Fri, 2 Apr 2010 22:30:45 +0000 (15:30 -0700)]
Additional void parameter checks
If there is a void parameter it must not have a name, and it must be
the only parameter.
Ian Romanick [Fri, 2 Apr 2010 22:09:33 +0000 (15:09 -0700)]
Require that function formal parameters have names
Ian Romanick [Fri, 2 Apr 2010 18:59:57 +0000 (11:59 -0700)]
Make built-in gl_TexCoord available in vertex and fragment shaders
Ian Romanick [Fri, 2 Apr 2010 18:45:06 +0000 (11:45 -0700)]
Fix matching of integer function parameters
This causes the following tests to pass:
glslparsertest/shaders/function10.frag
Eric Anholt [Fri, 2 Apr 2010 12:17:08 +0000 (02:17 -1000)]
Add bool/int conversion as IR operations.
Fixes constructor-09.glsl and CorrectParse2.frag.
Eric Anholt [Fri, 2 Apr 2010 12:13:43 +0000 (02:13 -1000)]
Add conversion of bool to float as an IR operation to match int to float.
Eric Anholt [Fri, 2 Apr 2010 11:59:50 +0000 (01:59 -1000)]
Add PASS / FAIL annotations to tests missing them.
This tricked my import of the tests into piglit.
Eric Anholt [Fri, 2 Apr 2010 11:53:57 +0000 (01:53 -1000)]
Test that invalid quailfiers aren't used on variables in GLSL 1.10.
Eric Anholt [Fri, 2 Apr 2010 06:27:35 +0000 (20:27 -1000)]
Allow array dereferences to be considered as lvalues.
Fixes glsl-vs-arrays.vert and glsl-vs-mov-after-deref.vert.
Regresses parser3.frag which was failing for the wrong reason.
Eric Anholt [Fri, 2 Apr 2010 05:00:29 +0000 (19:00 -1000)]
Test for the type being different in parameter_lists_match.
Fixes CorrectFuncOverload.frag.
Eric Anholt [Fri, 2 Apr 2010 04:35:42 +0000 (18:35 -1000)]
Add some more operations to ir_constant_expression.cpp.
Eric Anholt [Fri, 2 Apr 2010 04:25:11 +0000 (18:25 -1000)]
Make ir_constant_expression.cpp support multi-component types.
Eric Anholt [Fri, 2 Apr 2010 04:07:08 +0000 (18:07 -1000)]
Simplify ir_constant_expression.cpp by factoring operand computation out.
Eric Anholt [Thu, 1 Apr 2010 07:21:20 +0000 (21:21 -1000)]
Reject non-float varyings.
Fixes varying2.frag.
Eric Anholt [Thu, 1 Apr 2010 07:12:12 +0000 (21:12 -1000)]
Remove fake ir_binop_logic_not. I think you meant ir_unop_logic_not.
Eric Anholt [Thu, 1 Apr 2010 07:09:02 +0000 (21:09 -1000)]
Handle logic not in constant expression evaluation.
Eric Anholt [Thu, 1 Apr 2010 03:05:32 +0000 (17:05 -1000)]
Fix error handling of logic operators.
They were always throwing a type error because type wasn't being set.
Eric Anholt [Thu, 1 Apr 2010 02:53:47 +0000 (16:53 -1000)]
Emit errors for unfinished ast_to_hir expression operations.
Eric Anholt [Thu, 1 Apr 2010 02:50:55 +0000 (16:50 -1000)]
Fix ast_logic_not handling to be unary, not binary.
Eric Anholt [Thu, 1 Apr 2010 02:45:20 +0000 (16:45 -1000)]
Add errors for type results of other expressions.
Eric Anholt [Thu, 1 Apr 2010 02:38:11 +0000 (16:38 -1000)]
Emit errors from failure in arithmetic_result_type.
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Eric Anholt [Thu, 1 Apr 2010 02:25:12 +0000 (16:25 -1000)]
Start trying to fill in a few bits of ir_constant_expression.cpp
This makes a little progress on CorrectParse2.frag.
Eric Anholt [Thu, 1 Apr 2010 01:53:26 +0000 (15:53 -1000)]
Compute the constant value of a constant initializer.
Fixes constFunc.frag.
Eric Anholt [Thu, 1 Apr 2010 01:44:38 +0000 (15:44 -1000)]
Allow initializers of constant values to succeed.
This regresses constFunc.frag, but that's just unexpectedly passing
because of the FINISHME just above.
Eric Anholt [Wed, 31 Mar 2010 19:56:36 +0000 (09:56 -1000)]
Don't create a parameter declaration for a (void) parameter.
Fixes segfaults in a shader consisting of just:
void main(void) { }
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Ian Romanick [Fri, 2 Apr 2010 18:03:47 +0000 (11:03 -0700)]
Remove ast_node::type
It isn't a type (is was enum specifying the kind of node), it was
unused, and it was easily confused with actual type fields. Kill with fire.
Ian Romanick [Fri, 2 Apr 2010 01:31:11 +0000 (18:31 -0700)]
Track max accessed array element, reject additional out-of-bounds accesses
For unsized arrays, we can't flag out-of-bounds accesses until the
array is redeclared with a size. Track the maximum accessed element
and generate an error if the declaration specifies a size that would
cause that access to be out-of-bounds.
This causes the following tests to pass:
glslparsertest/shaders/array10.frag
Ian Romanick [Fri, 2 Apr 2010 01:03:59 +0000 (18:03 -0700)]
Begin processing ast_array_index nodes
This causes the following tests to pass:
glslparsertest/shaders/parser3.frag
glslparsertest/shaders/varying3.frag (also generates spurious error)
Ian Romanick [Fri, 2 Apr 2010 01:02:48 +0000 (18:02 -0700)]
Fix type handling in ir_dereference array dereference constructor
Ian Romanick [Fri, 2 Apr 2010 00:25:11 +0000 (17:25 -0700)]
Allow unsized arrays to be redeclared with a size
Test glslparsertest/shaders/array11.frag now passes for the right reason.
Ian Romanick [Fri, 2 Apr 2010 00:17:34 +0000 (17:17 -0700)]
Add glsl_type::element_type and glsl_type::array_size queries
The former gets the type of elements in an array, and the later gets
the declared size, if any, of the array.
Kenneth Graunke [Thu, 1 Apr 2010 00:12:34 +0000 (17:12 -0700)]
Set source locations on AST nodes so error messages print locations.
I haven't verified that these are all correct, but it's still a lot
better than not having anything.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Ian Romanick [Thu, 1 Apr 2010 01:23:21 +0000 (18:23 -0700)]
Add ast_function::hir
ast_function::hir consists of bits pulled out of
ast_function_definition::hir. In fact, the later uses the former to
do a lot of its processing. Several class private data fields were
added to ast_function to facilitate communicate between the two.
This causes the following tests to pass:
glslparsertest/shaders/CorrectModule.frag
This causes the following tests to fail. These shaders were
previously failing to compile, but they were all failing for the wrong
reasons.
glslparsertest/shaders/function9.frag
glslparsertest/shaders/function10.frag
Ian Romanick [Thu, 1 Apr 2010 01:15:50 +0000 (18:15 -0700)]
Fix exec_list::move_nodes_to when the source list is empty
Ian Romanick [Thu, 1 Apr 2010 00:54:26 +0000 (17:54 -0700)]
Use ir_variable::clone to copy parameters to the function body
Several other code movements were also done. This partitions this
function into two halves. The first half processes the prototype
part, and the second have processes the actual function definition.
The coming patch series will parition ast_function_definition::hir
into (at least) two separate functions.
Ian Romanick [Thu, 1 Apr 2010 00:52:44 +0000 (17:52 -0700)]
Add ir_variable::clone
Ian Romanick [Thu, 1 Apr 2010 00:39:10 +0000 (17:39 -0700)]
Minor cleanups in ast_function_definition::hir
Ian Romanick [Wed, 31 Mar 2010 23:48:48 +0000 (16:48 -0700)]
Generate array constructor calls
Ian Romanick [Wed, 31 Mar 2010 23:44:12 +0000 (16:44 -0700)]
Add ir_function_signature::function_name
Ian Romanick [Wed, 31 Mar 2010 23:40:58 +0000 (16:40 -0700)]
Make ir_function::signatures private
Ian Romanick [Wed, 31 Mar 2010 23:40:26 +0000 (16:40 -0700)]
Add ir_function::iterator to iterate over function signatures
Ian Romanick [Wed, 31 Mar 2010 23:37:10 +0000 (16:37 -0700)]
Use ir_function::add_signature to create link between function and signature
ir_function_signature now has a pointer back to the ir_function that owns it.
Ian Romanick [Wed, 31 Mar 2010 23:30:56 +0000 (16:30 -0700)]
Add glsl_type::generate_constructor_prototype
Generates a symbol table entry and the IR approximation of a prototype for a
type's constructor. Currently only arrays are supported.
Ian Romanick [Wed, 31 Mar 2010 23:28:51 +0000 (16:28 -0700)]
Refactor parts of match_function_by_name into process_parameters and process_call
These will be used in the functions that implement calls to array constructors.
Ian Romanick [Wed, 31 Mar 2010 23:25:21 +0000 (16:25 -0700)]
Reject array constructor calls in GLSL 1.10
Ian Romanick [Wed, 31 Mar 2010 23:22:56 +0000 (16:22 -0700)]
Use ast_type_specifier::glsl_type to get the type of a constructor
This is the first baby step towards getting array constructors working.
Ian Romanick [Wed, 31 Mar 2010 23:22:06 +0000 (16:22 -0700)]
Move type_specifier_to_glsl_type to ast_type_specifier::glsl_type
This make is easily accessible from other modules.
Ian Romanick [Wed, 31 Mar 2010 23:16:54 +0000 (16:16 -0700)]
More array declaration tests
Ian Romanick [Wed, 31 Mar 2010 23:13:38 +0000 (16:13 -0700)]
Fix big dumbness in glsl_type::get_array_instance
hash_table_insert needs to keep the key so that it compare keys on a
following hash_table_find call. Since key was allocated on the stack,
it disappeared out from under the hash table.
Ian Romanick [Wed, 31 Mar 2010 21:37:42 +0000 (14:37 -0700)]
glsl_type array constructor generate a real name for the type
Eric Anholt [Wed, 31 Mar 2010 19:29:33 +0000 (09:29 -1000)]
Test that const declarations include initializers.
Fixes dataType6.frag, and also array2.frag for an unexpected but valid
reason.
Ian Romanick [Wed, 31 Mar 2010 20:15:23 +0000 (13:15 -0700)]
Reject declarations with 'in' or 'out' qualifiers
'in' and 'out' can only be used in function parameter lists or at
global scope (1.30 and later). This change enforces this.
Ian Romanick [Wed, 31 Mar 2010 20:14:37 +0000 (13:14 -0700)]
Add 'in' to some parameters of the function
This goes along with the qualifier-?? tests.
Ian Romanick [Wed, 31 Mar 2010 20:13:12 +0000 (13:13 -0700)]
Add some variable declaration qualifier tests
Ian Romanick [Wed, 31 Mar 2010 20:03:56 +0000 (13:03 -0700)]
Fix comment bug and printf bug in previous commit
Ian Romanick [Wed, 31 Mar 2010 19:31:18 +0000 (12:31 -0700)]
Require that 'uniform' and 'varying' variables be declared at global scope
This causes the following tests to pass:
glslparsertest/shaders/uniform.frag
glslparsertest/shaders/varying.frag
Ian Romanick [Wed, 31 Mar 2010 19:26:03 +0000 (12:26 -0700)]
Slightly refector checks for declarations that must be at global scope
Eric Anholt [Wed, 31 Mar 2010 19:11:39 +0000 (09:11 -1000)]
Implement logical operators.
Fixes parser9.frag.
Eric Anholt [Wed, 31 Mar 2010 18:20:58 +0000 (08:20 -1000)]
Test that variable names don't use the reserved gl_ prefix.
Fixes identifier2.frag.
Eric Anholt [Wed, 31 Mar 2010 09:40:14 +0000 (23:40 -1000)]
Test that discard only appears in the fragment shader.
Fixes fragmentOnly4.vert.
Eric Anholt [Wed, 31 Mar 2010 09:37:51 +0000 (23:37 -1000)]
Test that main doesn't take any parameters.
Fixes main2.vert.
Eric Anholt [Wed, 31 Mar 2010 09:28:20 +0000 (23:28 -1000)]
Test that a non-void function returns a value.
Eric Anholt [Wed, 31 Mar 2010 09:23:16 +0000 (23:23 -1000)]
Test that a void function doesn't return a value.
Fixes function1.frag.
Eric Anholt [Wed, 31 Mar 2010 04:31:32 +0000 (18:31 -1000)]
Fix unused variable warning.
Ian Romanick [Wed, 31 Mar 2010 00:04:48 +0000 (17:04 -0700)]
Forbid array comparisons in GLSL 1.10
This causes the following tests to pass:
glslparsertest/shaders/array3.frag
Ian Romanick [Tue, 30 Mar 2010 23:59:27 +0000 (16:59 -0700)]
Begin handling array declarations
This causes the following tests to pass:
glslparsertest/shaders/array4.frag
glslparsertest/shaders/array5.frag
This causes the following tests to fail. These shaders were
previously failing to compile, but they were all failing for the wrong
reasons.
glslparsertest/shaders/array3.frag
Ian Romanick [Tue, 30 Mar 2010 23:58:19 +0000 (16:58 -0700)]
Implement array type handling
Since all glsl_type objects are flyweights, support is added to track all
known array types. This accounts for most of the changes.
Ian Romanick [Tue, 30 Mar 2010 23:57:29 +0000 (16:57 -0700)]
Add proper wrappers so that C++ code can use hash_table type
Ian Romanick [Tue, 30 Mar 2010 23:56:50 +0000 (16:56 -0700)]
Initial bits of constant expression evaluator
Currently only works for constants. The rest will be added later.
Ian Romanick [Tue, 30 Mar 2010 23:56:22 +0000 (16:56 -0700)]
Add some array declaration tests
Ian Romanick [Tue, 30 Mar 2010 00:40:11 +0000 (17:40 -0700)]
Arrays are not allowed as vertex shader inputs in GLSL 1.30 either
Ian Romanick [Tue, 30 Mar 2010 00:19:13 +0000 (17:19 -0700)]
Add several tests for vertex shader attributes
Ian Romanick [Tue, 30 Mar 2010 00:16:35 +0000 (17:16 -0700)]
Add some checking for vertex shader inputs / attributes
This causes the following tests to pass:
glslparsertest/shaders/attribute.vert
glslparsertest/shaders/attribute1.vert
glslparsertest/shaders/attribute2.vert
Ian Romanick [Mon, 29 Mar 2010 23:44:29 +0000 (16:44 -0700)]
Add parser support for texture rectangle types
Ian Romanick [Mon, 29 Mar 2010 23:32:55 +0000 (16:32 -0700)]
Use call-by-reference for apply_implicit_conversion
I'm not sure if this is a win or not. It makes the code in
apply_implicit_conversion more clear, but it obscures the fact that it
may change the pointers.