Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glsl2: Make cross() be an expression operation. | Eric Anholt | 2010-07-18 | 5 | -22/+16 |
| | | | | | | ARB_fp, ARB_vp, Mesa IR, and the 965 vertex shader all have instructions for cross. Shaves 12 Mesa instructions off of a 66-instruction shader I have. | ||||
* | glsl2: Fix warning from always-false assert not being known to not return. | Eric Anholt | 2010-07-18 | 1 | -0/+1 |
| | |||||
* | ast_function: Actually do type conversion on function arguments. | Kenneth Graunke | 2010-07-14 | 1 | -3/+8 |
| | |||||
* | exec_list: Add a new replace_with method. | Kenneth Graunke | 2010-07-14 | 1 | -0/+11 |
| | |||||
* | Refresh autogenerated file builtin_function.cpp. | Kenneth Graunke | 2010-07-14 | 1 | -189/+27 |
| | |||||
* | glsl2/builtins: Rework clamp to use scalar/vector combinations. | Kenneth Graunke | 2010-07-14 | 2 | -45/+9 |
| | |||||
* | glsl2/builtins: Rework min/max to use scalar/vector combinations. | Kenneth Graunke | 2010-07-14 | 4 | -144/+18 |
| | |||||
* | ir_constant_expression: Add support for ir_binop_mod. | Kenneth Graunke | 2010-07-14 | 1 | -0/+27 |
| | |||||
* | ir_constant_expression: Add support for ir_binop_min and ir_binop_max. | Kenneth Graunke | 2010-07-14 | 1 | -0/+47 |
| | | | | | These now work on scalar/vector combos. Semantically, if a is a scalar, min(a, vec2(x,y)) == vec2(min(a,x), min(a,y)) | ||||
* | ir_constant_expression: Add support for ir_binop_pow. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | |||||
* | ir_constant_expression: Add support for ir_unop_cos. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | |||||
* | ir_constant_expression: Add support for ir_unop_sin. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | |||||
* | ir_constant_expression: Add support for ir_unop_floor. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | |||||
* | ir_constant_expression: Add support for ir_unop_ceil. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | |||||
* | ir_constant_expression: Add support for ir_unop_trunc. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | | | | This uses a C99 function. | ||||
* | ir_constant_expression: Add support for ir_unop_log2. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | | | | This uses a C99 function. | ||||
* | ir_constant_expression: Add support for ir_unop_exp2. | Kenneth Graunke | 2010-07-14 | 1 | -0/+7 |
| | | | | This uses a C99 function. | ||||
* | ir_constant_expression: Add support for ir_unop_sign. | Kenneth Graunke | 2010-07-14 | 1 | -0/+18 |
| | |||||
* | ir_constant_expression: Remove bogus assert in ir_unop_abs case. | Kenneth Graunke | 2010-07-14 | 1 | -1/+0 |
| | | | | abs is defined for integral types; it's even implemented. | ||||
* | glsl2: Remove ir_program bong hits. | Kenneth Graunke | 2010-07-14 | 1 | -4/+0 |
| | |||||
* | glsl2: When linking makes a variable not a varying output, make it ir_var_auto. | Eric Anholt | 2010-07-13 | 1 | -1/+4 |
| | | | | | This almost fixes glsl-unused-varying, except that the used varying gets assigned to the first varying slot (position). | ||||
* | glsl2: Remove unnecessary casts of clone return values | Ian Romanick | 2010-07-13 | 2 | -27/+23 |
| | |||||
* | glsl2: Add matrix multiplication to ir_mat_op_to_vec. | Eric Anholt | 2010-07-12 | 1 | -9/+188 |
| | |||||
* | glsl2: Flatten expression that appear as the parameters of ir_call as well. | Eric Anholt | 2010-07-12 | 1 | -5/+12 |
| | |||||
* | glsl2: Flatten expressions that appear as the children of ir_return as well. | Eric Anholt | 2010-07-12 | 1 | -5/+3 |
| | |||||
* | linker: Merge global-scope instructions into main | Ian Romanick | 2010-07-12 | 1 | -0/+121 |
| | | | | | | | | Find instructions in all shaders that are not contained in a function (i.e., initializers for global variables). "Move" these instructions to the top of the main function in the linked shader. As a side-effect, many global variables will also be copied into the linked shader. | ||||
* | linker: Detect the shader that contains "main" during intrastage linking | Ian Romanick | 2010-07-12 | 1 | -5/+45 |
| | |||||
* | ir_function: Make matching_signature not return const | Ian Romanick | 2010-07-12 | 2 | -2/+2 |
| | | | | | | | The linker needs to use this function to get specific function signatures, but it also needs to modify the returned signature. Since this method isn't itself const (i.e., const this pointer), there is no value in making a const and non-const version. | ||||
* | linker: Implement first bits of intrastage linking | Ian Romanick | 2010-07-12 | 4 | -2/+63 |
| | | | | | | | This currently involves an ugly hack so that every link doesn't result in all the built-in functions showing up as multiply defined. As soon as the built-in functions are stored in a separate compilation unit, ir_function_signature::is_built_in can be removed. | ||||
* | linker: Refactor cross_validate_uniforms into cross_validate_globals | Ian Romanick | 2010-07-12 | 1 | -13/+54 |
| | | | | The later, more generic function will be used in the intra-stage linker. | ||||
* | glsl2: Use a better talloc context for ir_expression_flattening. | Eric Anholt | 2010-07-12 | 1 | -1/+1 |
| | | | | | | The instruction can be hung off of any other in the tree, even if the other one will be deleted, since it'll get stolen to the shader's context later if it's still live. | ||||
* | glsl2: Add support for variable vector indexing on the LHS of assignments. | Eric Anholt | 2010-07-12 | 1 | -3/+57 |
| | | | | Fixes glsl-vs-vec4-indexing-3. | ||||
* | glsl2: Fix copy propagation in the presence of derefs in array indexes. | Eric Anholt | 2010-07-12 | 1 | -3/+22 |
| | | | | | | We would clear the in_lhs flag early, avoiding copy propagation on the array index variable (oops) and then copy propagating on the array variable (ouch). Just avoid all copy propagation on the LHS instead. | ||||
* | ir_validate: Also perform usual checks on ir_dereference_variable nodes | Ian Romanick | 2010-07-12 | 1 | -0/+2 |
| | |||||
* | ir_validate: Validate that varibles are declared before used in IR | Ian Romanick | 2010-07-12 | 1 | -2/+26 |
| | |||||
* | linker: Stub-out intrastage linker | Ian Romanick | 2010-07-12 | 2 | -14/+89 |
| | |||||
* | ir_validate: Additional function related invariant checks | Ian Romanick | 2010-07-12 | 1 | -0/+60 |
| | | | | | | | | | Add two invariant checks related to functions and function signatures: 1. Ensure that function definitions (ir_function) are not nested. 2. Ensure that the ir_function pointed to by an ir_function_signature is the one that contains it in its signatures list. | ||||
* | ir_function_signature: Add method to get the function owning a signature | Ian Romanick | 2010-07-12 | 2 | -5/+22 |
| | | | | | | | | | There is no setter function, the getter returns a constant pointer, and ir_function_signature::_function is private for a reason. The only way to make a connection between a function and function signature is via ir_function::add_signature. This helps ensure that certain invariants (i.e., a function signature is in the list of signatures for its _function) are met. | ||||
* | glsl2: Add utility function clone_ir_list | Ian Romanick | 2010-07-12 | 2 | -0/+69 |
| | |||||
* | ir_call: Add method to set the function signature being called | Ian Romanick | 2010-07-12 | 2 | -0/+13 |
| | |||||
* | glsl2: Implement ir_function::clone and ir_function_signature::clone | Ian Romanick | 2010-07-12 | 1 | -6/+43 |
| | |||||
* | glsl2: Move temp declaration to correct side of if-statement in IR | Ian Romanick | 2010-07-12 | 1 | -7/+7 |
| | |||||
* | glsl2: Add missing fields in ir_variable::clone | Ian Romanick | 2010-07-12 | 1 | -0/+8 |
| | |||||
* | glsl2: Add declarations for temporaries to instruction stream | Ian Romanick | 2010-07-12 | 1 | -0/+3 |
| | | | | | | | | Temporary variables added for &&, ||, and ?: were not being added to the instruction stream. This resulted in either test failures or Valgrind being angry after the original IR tree was destroyed by talloc_free. The talloc_free caused the ir_variables to be destroyed even though they were still referenced. | ||||
* | glsl2: Store the gl_type of the array's element type in the array. | Eric Anholt | 2010-07-12 | 1 | -0/+5 |
| | | | | | Fixes glsl-fs-uniform-array-1, glsl-vs-uniform-array-1, and the -2 tests on software. | ||||
* | glsl2: Add a new pass at the IR level to break down matrix ops to vector ops. | Eric Anholt | 2010-07-12 | 4 | -0/+196 |
| | | | | | | | This will be used by the Mesa IR and likely most HW backends, as it allows other optimizations to occur that might not otherwise. Fixes glsl-vs-mat-sub-1, glsl-vs-mat-div-1. | ||||
* | glsl2: Flatten out expressions that are the child of an assignment rhs. | Eric Anholt | 2010-07-12 | 1 | -7/+19 |
| | | | | | | | This feels a little odd, but it will be useful for ir_mat_to_vec, where I want to see a plain assignment of the expression to a variable, not to a writemasked array dereference with a call as the array index. | ||||
* | glsl2: Check when inlining a bare function call that it actually is. | Eric Anholt | 2010-07-12 | 1 | -0/+6 |
| | | | | | | | It would be easy to miss an entry either of the two visitors involved that would result in trying to ir->remove() the call to remove it from the instruction stream when really it's part of an expression tree that wasn't flattened. | ||||
* | ast_function: Fix non-float constructors with matrix arguments. | Kenneth Graunke | 2010-07-09 | 1 | -22/+55 |
| | | | | | | | | | | Previously, code like ivec4(mat2(...)) would fail because the compiler would naively try to convert a mat2 to an imat2...which doesn't exist. Now, a separate pass breaks such matrices down to their columns, which can be converted from vec2 to ivec2. Fixes piglit tests constructor-11.vert, constructor-14.vert, constructor-15.vert, and CorrectConstFolding2.frag. | ||||
* | ast_function: Move error return earlier and don't indent the world. | Kenneth Graunke | 2010-07-09 | 1 | -142/+139 |
| | | | | This has no functional changes. |