1 /*
2  * Copyright © 2010 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * constant 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, constant, 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:
10  *
11  * The above constantright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
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 CONSTANTRIGHT 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.
22  */
23 
24 /**
25  * \file opt_constant_propagation.cpp
26  *
27  * Tracks assignments of constants to channels of variables, and
28  * usage of those constant channels with direct usage of the constants.
29  *
30  * This can lead to constant folding and algebraic optimizations in
31  * those later expressions, while causing no increase in instruction
32  * count (due to constants being generally free to load from a
33  * constant push buffer or as instruction immediate values) and
34  * possibly reducing register pressure.
35  */
36 
37 #include "ir.h"
38 #include "ir_visitor.h"
39 #include "ir_rvalue_visitor.h"
40 #include "ir_basic_block.h"
41 #include "ir_optimization.h"
42 #include "compiler/glsl_types.h"
43 #include "util/hash_table.h"
44 
45 namespace {
46 
47 class acp_entry : public exec_node
48 {
49 public:
50    /* override operator new from exec_node */
51    DECLARE_LINEAR_ZALLOC_CXX_OPERATORS(acp_entry)
52 
acp_entry(ir_variable * var,unsigned write_mask,ir_constant * constant)53    acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant)
54    {
55       assert(var);
56       assert(constant);
57       this->var = var;
58       this->write_mask = write_mask;
59       this->constant = constant;
60       this->initial_values = write_mask;
61    }
62 
acp_entry(const acp_entry * src)63    acp_entry(const acp_entry *src)
64    {
65       this->var = src->var;
66       this->write_mask = src->write_mask;
67       this->constant = src->constant;
68       this->initial_values = src->initial_values;
69    }
70 
71    ir_variable *var;
72    ir_constant *constant;
73    unsigned write_mask;
74 
75    /** Mask of values initially available in the constant. */
76    unsigned initial_values;
77 };
78 
79 
80 class ir_constant_propagation_visitor : public ir_rvalue_visitor {
81 public:
ir_constant_propagation_visitor()82    ir_constant_propagation_visitor()
83    {
84       progress = false;
85       killed_all = false;
86       mem_ctx = ralloc_context(0);
87       this->lin_ctx = linear_alloc_parent(this->mem_ctx, 0);
88       this->acp = new(mem_ctx) exec_list;
89       this->kills = _mesa_pointer_hash_table_create(mem_ctx);
90    }
~ir_constant_propagation_visitor()91    ~ir_constant_propagation_visitor()
92    {
93       ralloc_free(mem_ctx);
94    }
95 
96    virtual ir_visitor_status visit_enter(class ir_loop *);
97    virtual ir_visitor_status visit_enter(class ir_function_signature *);
98    virtual ir_visitor_status visit_enter(class ir_function *);
99    virtual ir_visitor_status visit_leave(class ir_assignment *);
100    virtual ir_visitor_status visit_enter(class ir_call *);
101    virtual ir_visitor_status visit_enter(class ir_if *);
102 
103    void add_constant(ir_assignment *ir);
104    void constant_folding(ir_rvalue **rvalue);
105    void constant_propagation(ir_rvalue **rvalue);
106    void kill(ir_variable *ir, unsigned write_mask);
107    void handle_if_block(exec_list *instructions, hash_table *kills, bool *killed_all);
108    void handle_loop(class ir_loop *, bool keep_acp);
109    void handle_rvalue(ir_rvalue **rvalue);
110 
111    /** List of acp_entry: The available constants to propagate */
112    exec_list *acp;
113 
114    /**
115     * Hash table of killed entries: maps variables to the mask of killed channels.
116     */
117    hash_table *kills;
118 
119    bool progress;
120 
121    bool killed_all;
122 
123    void *mem_ctx;
124    void *lin_ctx;
125 };
126 
127 
128 void
constant_folding(ir_rvalue ** rvalue)129 ir_constant_propagation_visitor::constant_folding(ir_rvalue **rvalue)
130 {
131    if (this->in_assignee || *rvalue == NULL)
132       return;
133 
134    if (ir_constant_fold(rvalue))
135       this->progress = true;
136 
137    ir_dereference_variable *var_ref = (*rvalue)->as_dereference_variable();
138    if (var_ref && !var_ref->type->is_array()) {
139       ir_constant *constant =
140          var_ref->constant_expression_value(ralloc_parent(var_ref));
141       if (constant) {
142          *rvalue = constant;
143          this->progress = true;
144       }
145    }
146 }
147 
148 void
constant_propagation(ir_rvalue ** rvalue)149 ir_constant_propagation_visitor::constant_propagation(ir_rvalue **rvalue) {
150 
151    if (this->in_assignee || !*rvalue)
152       return;
153 
154    const glsl_type *type = (*rvalue)->type;
155    if (!type->is_scalar() && !type->is_vector())
156       return;
157 
158    ir_swizzle *swiz = NULL;
159    ir_dereference_variable *deref = (*rvalue)->as_dereference_variable();
160    if (!deref) {
161       swiz = (*rvalue)->as_swizzle();
162       if (!swiz)
163 	 return;
164 
165       deref = swiz->val->as_dereference_variable();
166       if (!deref)
167 	 return;
168    }
169 
170    ir_constant_data data;
171    memset(&data, 0, sizeof(data));
172 
173    for (unsigned int i = 0; i < type->components(); i++) {
174       int channel;
175       acp_entry *found = NULL;
176 
177       if (swiz) {
178 	 switch (i) {
179 	 case 0: channel = swiz->mask.x; break;
180 	 case 1: channel = swiz->mask.y; break;
181 	 case 2: channel = swiz->mask.z; break;
182 	 case 3: channel = swiz->mask.w; break;
183 	 default: assert(!"shouldn't be reached"); channel = 0; break;
184 	 }
185       } else {
186 	 channel = i;
187       }
188 
189       foreach_in_list(acp_entry, entry, this->acp) {
190 	 if (entry->var == deref->var && entry->write_mask & (1 << channel)) {
191 	    found = entry;
192 	    break;
193 	 }
194       }
195 
196       if (!found)
197 	 return;
198 
199       int rhs_channel = 0;
200       for (int j = 0; j < 4; j++) {
201 	 if (j == channel)
202 	    break;
203 	 if (found->initial_values & (1 << j))
204 	    rhs_channel++;
205       }
206 
207       switch (type->base_type) {
208       case GLSL_TYPE_FLOAT:
209 	 data.f[i] = found->constant->value.f[rhs_channel];
210 	 break;
211       case GLSL_TYPE_FLOAT16:
212 	 data.f16[i] = found->constant->value.f16[rhs_channel];
213 	 break;
214       case GLSL_TYPE_DOUBLE:
215 	 data.d[i] = found->constant->value.d[rhs_channel];
216 	 break;
217       case GLSL_TYPE_INT:
218 	 data.i[i] = found->constant->value.i[rhs_channel];
219 	 break;
220       case GLSL_TYPE_UINT:
221 	 data.u[i] = found->constant->value.u[rhs_channel];
222 	 break;
223       case GLSL_TYPE_BOOL:
224 	 data.b[i] = found->constant->value.b[rhs_channel];
225 	 break;
226       case GLSL_TYPE_UINT64:
227 	 data.u64[i] = found->constant->value.u64[rhs_channel];
228 	 break;
229       case GLSL_TYPE_INT64:
230 	 data.i64[i] = found->constant->value.i64[rhs_channel];
231 	 break;
232       default:
233 	 assert(!"not reached");
234 	 break;
235       }
236    }
237 
238    *rvalue = new(ralloc_parent(deref)) ir_constant(type, &data);
239    this->progress = true;
240 }
241 
242 void
handle_rvalue(ir_rvalue ** rvalue)243 ir_constant_propagation_visitor::handle_rvalue(ir_rvalue **rvalue)
244 {
245    constant_propagation(rvalue);
246    constant_folding(rvalue);
247 }
248 
249 ir_visitor_status
visit_enter(ir_function_signature * ir)250 ir_constant_propagation_visitor::visit_enter(ir_function_signature *ir)
251 {
252    /* Treat entry into a function signature as a completely separate
253     * block.  Any instructions at global scope will be shuffled into
254     * main() at link time, so they're irrelevant to us.
255     */
256    exec_list *orig_acp = this->acp;
257    hash_table *orig_kills = this->kills;
258    bool orig_killed_all = this->killed_all;
259 
260    this->acp = new(mem_ctx) exec_list;
261    this->kills = _mesa_pointer_hash_table_create(mem_ctx);
262    this->killed_all = false;
263 
264    visit_list_elements(this, &ir->body);
265 
266    this->kills = orig_kills;
267    this->acp = orig_acp;
268    this->killed_all = orig_killed_all;
269 
270    return visit_continue_with_parent;
271 }
272 
273 ir_visitor_status
visit_leave(ir_assignment * ir)274 ir_constant_propagation_visitor::visit_leave(ir_assignment *ir)
275 {
276   constant_folding(&ir->rhs);
277 
278    if (this->in_assignee)
279       return visit_continue;
280 
281    unsigned kill_mask = ir->write_mask;
282    if (ir->lhs->as_dereference_array()) {
283       /* The LHS of the assignment uses an array indexing operator (e.g. v[i]
284        * = ...;).  Since we only try to constant propagate vectors and
285        * scalars, this means that either (a) array indexing is being used to
286        * select a vector component, or (b) the variable in question is neither
287        * a scalar or a vector, so we don't care about it.  In the former case,
288        * we want to kill the whole vector, since in general we can't predict
289        * which vector component will be selected by array indexing.  In the
290        * latter case, it doesn't matter what we do, so go ahead and kill the
291        * whole variable anyway.
292        *
293        * Note that if the array index is constant (e.g. v[2] = ...;), we could
294        * in principle be smarter, but we don't need to, because a future
295        * optimization pass will convert it to a simple assignment with the
296        * correct mask.
297        */
298       kill_mask = ~0;
299    }
300    kill(ir->lhs->variable_referenced(), kill_mask);
301 
302    add_constant(ir);
303 
304    return visit_continue;
305 }
306 
307 ir_visitor_status
visit_enter(ir_function * ir)308 ir_constant_propagation_visitor::visit_enter(ir_function *ir)
309 {
310    (void) ir;
311    return visit_continue;
312 }
313 
314 ir_visitor_status
visit_enter(ir_call * ir)315 ir_constant_propagation_visitor::visit_enter(ir_call *ir)
316 {
317    /* Do constant propagation on call parameters, but skip any out params */
318    foreach_two_lists(formal_node, &ir->callee->parameters,
319                      actual_node, &ir->actual_parameters) {
320       ir_variable *sig_param = (ir_variable *) formal_node;
321       ir_rvalue *param = (ir_rvalue *) actual_node;
322       if (sig_param->data.mode != ir_var_function_out
323           && sig_param->data.mode != ir_var_function_inout) {
324 	 ir_rvalue *new_param = param;
325 	 handle_rvalue(&new_param);
326          if (new_param != param)
327 	    param->replace_with(new_param);
328 	 else
329 	    param->accept(this);
330       }
331    }
332 
333    /* Since we're unlinked, we don't (necssarily) know the side effects of
334     * this call.  So kill all copies.
335     */
336    acp->make_empty();
337    this->killed_all = true;
338 
339    return visit_continue_with_parent;
340 }
341 
342 void
handle_if_block(exec_list * instructions,hash_table * kills,bool * killed_all)343 ir_constant_propagation_visitor::handle_if_block(exec_list *instructions, hash_table *kills, bool *killed_all)
344 {
345    exec_list *orig_acp = this->acp;
346    hash_table *orig_kills = this->kills;
347    bool orig_killed_all = this->killed_all;
348 
349    this->acp = new(mem_ctx) exec_list;
350    this->kills = kills;
351    this->killed_all = false;
352 
353    /* Populate the initial acp with a constant of the original */
354    foreach_in_list(acp_entry, a, orig_acp) {
355       this->acp->push_tail(new(this->lin_ctx) acp_entry(a));
356    }
357 
358    visit_list_elements(this, instructions);
359 
360    *killed_all = this->killed_all;
361    this->kills = orig_kills;
362    this->acp = orig_acp;
363    this->killed_all = orig_killed_all;
364 }
365 
366 ir_visitor_status
visit_enter(ir_if * ir)367 ir_constant_propagation_visitor::visit_enter(ir_if *ir)
368 {
369    ir->condition->accept(this);
370    handle_rvalue(&ir->condition);
371 
372    hash_table *new_kills = _mesa_pointer_hash_table_create(mem_ctx);
373    bool then_killed_all = false;
374    bool else_killed_all = false;
375 
376    handle_if_block(&ir->then_instructions, new_kills, &then_killed_all);
377    handle_if_block(&ir->else_instructions, new_kills, &else_killed_all);
378 
379    if (then_killed_all || else_killed_all) {
380       acp->make_empty();
381       killed_all = true;
382    } else {
383       hash_table_foreach(new_kills, htk)
384          kill((ir_variable *) htk->key, (uintptr_t) htk->data);
385    }
386 
387    _mesa_hash_table_destroy(new_kills, NULL);
388 
389    /* handle_if_block() already descended into the children. */
390    return visit_continue_with_parent;
391 }
392 
393 void
handle_loop(ir_loop * ir,bool keep_acp)394 ir_constant_propagation_visitor::handle_loop(ir_loop *ir, bool keep_acp)
395 {
396    exec_list *orig_acp = this->acp;
397    hash_table *orig_kills = this->kills;
398    bool orig_killed_all = this->killed_all;
399 
400    this->acp = new(mem_ctx) exec_list;
401    this->kills = _mesa_pointer_hash_table_create(mem_ctx);
402    this->killed_all = false;
403 
404    if (keep_acp) {
405       foreach_in_list(acp_entry, a, orig_acp) {
406          this->acp->push_tail(new(this->lin_ctx) acp_entry(a));
407       }
408    }
409 
410    visit_list_elements(this, &ir->body_instructions);
411 
412    if (this->killed_all) {
413       orig_acp->make_empty();
414    }
415 
416    hash_table *new_kills = this->kills;
417    this->kills = orig_kills;
418    this->acp = orig_acp;
419    this->killed_all = this->killed_all || orig_killed_all;
420 
421    hash_table_foreach(new_kills, htk) {
422       kill((ir_variable *) htk->key, (uintptr_t) htk->data);
423    }
424 }
425 
426 ir_visitor_status
visit_enter(ir_loop * ir)427 ir_constant_propagation_visitor::visit_enter(ir_loop *ir)
428 {
429    /* Make a conservative first pass over the loop with an empty ACP set.
430     * This also removes any killed entries from the original ACP set.
431     */
432    handle_loop(ir, false);
433 
434    /* Then, run it again with the real ACP set, minus any killed entries.
435     * This takes care of propagating values from before the loop into it.
436     */
437    handle_loop(ir, true);
438 
439    /* already descended into the children. */
440    return visit_continue_with_parent;
441 }
442 
443 void
kill(ir_variable * var,unsigned write_mask)444 ir_constant_propagation_visitor::kill(ir_variable *var, unsigned write_mask)
445 {
446    assert(var != NULL);
447 
448    /* We don't track non-vectors. */
449    if (!var->type->is_vector() && !var->type->is_scalar())
450       return;
451 
452    /* Remove any entries currently in the ACP for this kill. */
453    foreach_in_list_safe(acp_entry, entry, this->acp) {
454       if (entry->var == var) {
455 	 entry->write_mask &= ~write_mask;
456 	 if (entry->write_mask == 0)
457 	    entry->remove();
458       }
459    }
460 
461    /* Add this writemask of the variable to the hash table of killed
462     * variables in this block.
463     */
464    hash_entry *kill_hash_entry = _mesa_hash_table_search(this->kills, var);
465    if (kill_hash_entry) {
466       uintptr_t new_write_mask = ((uintptr_t) kill_hash_entry->data) | write_mask;
467       kill_hash_entry->data = (void *) new_write_mask;
468       return;
469    }
470    /* Not already in the hash table.  Make new entry. */
471    _mesa_hash_table_insert(this->kills, var, (void *) uintptr_t(write_mask));
472 }
473 
474 /**
475  * Adds an entry to the available constant list if it's a plain assignment
476  * of a variable to a variable.
477  */
478 void
add_constant(ir_assignment * ir)479 ir_constant_propagation_visitor::add_constant(ir_assignment *ir)
480 {
481    acp_entry *entry;
482 
483    if (ir->condition)
484       return;
485 
486    if (!ir->write_mask)
487       return;
488 
489    ir_dereference_variable *deref = ir->lhs->as_dereference_variable();
490    ir_constant *constant = ir->rhs->as_constant();
491 
492    if (!deref || !constant)
493       return;
494 
495    /* Only do constant propagation on vectors.  Constant matrices,
496     * arrays, or structures would require more work elsewhere.
497     */
498    if (!deref->var->type->is_vector() && !deref->var->type->is_scalar())
499       return;
500 
501    /* We can't do copy propagation on buffer variables, since the underlying
502     * memory storage is shared across multiple threads we can't be sure that
503     * the variable value isn't modified between this assignment and the next
504     * instruction where its value is read.
505     */
506    if (deref->var->data.mode == ir_var_shader_storage ||
507        deref->var->data.mode == ir_var_shader_shared)
508       return;
509 
510    entry = new(this->lin_ctx) acp_entry(deref->var, ir->write_mask, constant);
511    this->acp->push_tail(entry);
512 }
513 
514 } /* unnamed namespace */
515 
516 /**
517  * Does a constant propagation pass on the code present in the instruction stream.
518  */
519 bool
do_constant_propagation(exec_list * instructions)520 do_constant_propagation(exec_list *instructions)
521 {
522    ir_constant_propagation_visitor v;
523 
524    visit_list_elements(&v, instructions);
525 
526    return v.progress;
527 }
528