2 * Copyright © 2010 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
25 * \file lower_vec_index_to_cond_assign.cpp
27 * Turns indexing into vector types to a series of conditional moves
28 * of each channel's swizzle into a temporary.
30 * Most GPUs don't have a native way to do this operation, and this
31 * works around that. For drivers using both this pass and
32 * ir_vec_index_to_swizzle, there's a risk that this pass will happen
33 * before sufficient constant folding to find that the array index is
34 * constant. However, we hope that other optimization passes,
35 * particularly constant folding of assignment conditions and copy
36 * propagation, will result in the same code in the end.
40 #include "ir_visitor.h"
41 #include "ir_optimization.h"
42 #include "glsl_types.h"
45 * Visitor class for replacing expressions with ir_constant values.
48 class ir_vec_index_to_cond_assign_visitor
: public ir_hierarchical_visitor
{
50 ir_vec_index_to_cond_assign_visitor()
55 ir_rvalue
*convert_vec_index_to_cond_assign(ir_rvalue
*val
);
57 virtual ir_visitor_status
visit_enter(ir_expression
*);
58 virtual ir_visitor_status
visit_enter(ir_swizzle
*);
59 virtual ir_visitor_status
visit_leave(ir_assignment
*);
60 virtual ir_visitor_status
visit_enter(ir_return
*);
61 virtual ir_visitor_status
visit_enter(ir_call
*);
62 virtual ir_visitor_status
visit_enter(ir_if
*);
68 ir_vec_index_to_cond_assign_visitor::convert_vec_index_to_cond_assign(ir_rvalue
*ir
)
70 ir_dereference_array
*orig_deref
= ir
->as_dereference_array();
71 ir_assignment
*assign
;
72 ir_variable
*index
, *var
;
73 ir_dereference
*deref
;
79 if (orig_deref
->array
->type
->is_matrix() ||
80 orig_deref
->array
->type
->is_array())
83 void *mem_ctx
= ralloc_parent(ir
);
85 assert(orig_deref
->array_index
->type
->base_type
== GLSL_TYPE_INT
);
89 /* Store the index to a temporary to avoid reusing its tree. */
90 index
= new(base_ir
) ir_variable(glsl_type::int_type
,
93 list
.push_tail(index
);
94 deref
= new(base_ir
) ir_dereference_variable(index
);
95 assign
= new(base_ir
) ir_assignment(deref
, orig_deref
->array_index
, NULL
);
96 list
.push_tail(assign
);
98 /* Temporary where we store whichever value we swizzle out. */
99 var
= new(base_ir
) ir_variable(ir
->type
, "vec_index_tmp_v",
103 /* Generate a single comparison condition "mask" for all of the components
106 ir_rvalue
*const cond_deref
=
107 compare_index_block(&list
, index
, 0,
108 orig_deref
->array
->type
->vector_elements
,
111 /* Generate a conditional move of each vector element to the temp. */
112 for (i
= 0; i
< orig_deref
->array
->type
->vector_elements
; i
++) {
113 ir_rvalue
*condition_swizzle
=
114 new(base_ir
) ir_swizzle(cond_deref
->clone(ir
, NULL
), i
, 0, 0, 0, 1);
116 /* Just clone the rest of the deref chain when trying to get at the
117 * underlying variable.
120 new(base_ir
) ir_swizzle(orig_deref
->array
->clone(mem_ctx
, NULL
),
123 deref
= new(base_ir
) ir_dereference_variable(var
);
124 assign
= new(base_ir
) ir_assignment(deref
, swizzle
, condition_swizzle
);
125 list
.push_tail(assign
);
128 /* Put all of the new instructions in the IR stream before the old
131 base_ir
->insert_before(&list
);
133 this->progress
= true;
134 return new(base_ir
) ir_dereference_variable(var
);
138 ir_vec_index_to_cond_assign_visitor::visit_enter(ir_expression
*ir
)
142 for (i
= 0; i
< ir
->get_num_operands(); i
++) {
143 ir
->operands
[i
] = convert_vec_index_to_cond_assign(ir
->operands
[i
]);
146 return visit_continue
;
150 ir_vec_index_to_cond_assign_visitor::visit_enter(ir_swizzle
*ir
)
152 /* Can't be hit from normal GLSL, since you can't swizzle a scalar (which
153 * the result of indexing a vector is. But maybe at some point we'll end up
154 * using swizzling of scalars for vector construction.
156 ir
->val
= convert_vec_index_to_cond_assign(ir
->val
);
158 return visit_continue
;
162 ir_vec_index_to_cond_assign_visitor::visit_leave(ir_assignment
*ir
)
164 ir_variable
*index
, *var
;
165 ir_dereference_variable
*deref
;
166 ir_assignment
*assign
;
169 ir
->rhs
= convert_vec_index_to_cond_assign(ir
->rhs
);
171 ir
->condition
= convert_vec_index_to_cond_assign(ir
->condition
);
173 /* Last, handle the LHS */
174 ir_dereference_array
*orig_deref
= ir
->lhs
->as_dereference_array();
177 orig_deref
->array
->type
->is_matrix() ||
178 orig_deref
->array
->type
->is_array())
179 return visit_continue
;
181 void *mem_ctx
= ralloc_parent(ir
);
183 assert(orig_deref
->array_index
->type
->base_type
== GLSL_TYPE_INT
);
187 /* Store the index to a temporary to avoid reusing its tree. */
188 index
= new(ir
) ir_variable(glsl_type::int_type
, "vec_index_tmp_i",
190 list
.push_tail(index
);
191 deref
= new(ir
) ir_dereference_variable(index
);
192 assign
= new(ir
) ir_assignment(deref
, orig_deref
->array_index
, NULL
);
193 list
.push_tail(assign
);
195 /* Store the RHS to a temporary to avoid reusing its tree. */
196 var
= new(ir
) ir_variable(ir
->rhs
->type
, "vec_index_tmp_v",
199 deref
= new(ir
) ir_dereference_variable(var
);
200 assign
= new(ir
) ir_assignment(deref
, ir
->rhs
, NULL
);
201 list
.push_tail(assign
);
203 /* Generate a single comparison condition "mask" for all of the components
206 ir_rvalue
*const cond_deref
=
207 compare_index_block(&list
, index
, 0,
208 orig_deref
->array
->type
->vector_elements
,
211 /* Generate a conditional move of each vector element to the temp. */
212 for (i
= 0; i
< orig_deref
->array
->type
->vector_elements
; i
++) {
213 ir_rvalue
*condition_swizzle
=
214 new(ir
) ir_swizzle(cond_deref
->clone(ir
, NULL
), i
, 0, 0, 0, 1);
217 /* Just clone the rest of the deref chain when trying to get at the
218 * underlying variable.
221 new(ir
) ir_swizzle(orig_deref
->array
->clone(mem_ctx
, NULL
),
224 deref
= new(ir
) ir_dereference_variable(var
);
225 assign
= new(ir
) ir_assignment(swizzle
, deref
, condition_swizzle
);
226 list
.push_tail(assign
);
229 /* If the original assignment has a condition, respect that original
230 * condition! This is acomplished by wrapping the new conditional
231 * assignments in an if-statement that uses the original condition.
233 if (ir
->condition
!= NULL
) {
234 /* No need to clone the condition because the IR that it hangs on is
235 * going to be removed from the instruction sequence.
237 ir_if
*if_stmt
= new(mem_ctx
) ir_if(ir
->condition
);
239 list
.move_nodes_to(&if_stmt
->then_instructions
);
240 ir
->insert_before(if_stmt
);
242 ir
->insert_before(&list
);
247 this->progress
= true;
249 return visit_continue
;
253 ir_vec_index_to_cond_assign_visitor::visit_enter(ir_call
*ir
)
255 foreach_iter(exec_list_iterator
, iter
, *ir
) {
256 ir_rvalue
*param
= (ir_rvalue
*)iter
.get();
257 ir_rvalue
*new_param
= convert_vec_index_to_cond_assign(param
);
259 if (new_param
!= param
) {
260 param
->replace_with(new_param
);
264 return visit_continue
;
268 ir_vec_index_to_cond_assign_visitor::visit_enter(ir_return
*ir
)
271 ir
->value
= convert_vec_index_to_cond_assign(ir
->value
);
274 return visit_continue
;
278 ir_vec_index_to_cond_assign_visitor::visit_enter(ir_if
*ir
)
280 ir
->condition
= convert_vec_index_to_cond_assign(ir
->condition
);
282 return visit_continue
;
286 do_vec_index_to_cond_assign(exec_list
*instructions
)
288 ir_vec_index_to_cond_assign_visitor v
;
290 visit_list_elements(&v
, instructions
);