blob: ee9f22c03733bdee356315940e49f75370ec9aa4 [file] [log] [blame]
Eric Anholt6255a1f2010-05-05 10:37:25 -07001/*
2 * Copyright © 2010 Intel Corporation
3 *
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:
10 *
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
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 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.
22 */
23
24/**
Chad Versacedf883eb2010-11-17 10:43:10 -080025 * \file opt_dead_code_local.cpp
Eric Anholt6255a1f2010-05-05 10:37:25 -070026 *
27 * Eliminates local dead assignments from the code.
28 *
29 * This operates on basic blocks, tracking assignments and finding if
30 * they're used before the variable is completely reassigned.
31 *
32 * Compare this to ir_dead_code.cpp, which operates globally looking
33 * for assignments to variables that are never read.
34 */
35
Eric Anholt6255a1f2010-05-05 10:37:25 -070036#include "ir.h"
Eric Anholt6255a1f2010-05-05 10:37:25 -070037#include "ir_basic_block.h"
Eric Anholt6255a1f2010-05-05 10:37:25 -070038#include "ir_optimization.h"
39#include "glsl_types.h"
40
41static bool debug = false;
42
Eric Anholt337d9c92012-05-29 16:18:37 -070043namespace {
44
Eric Anholt6255a1f2010-05-05 10:37:25 -070045class assignment_entry : public exec_node
46{
47public:
Eric Anholt05c200b2012-02-23 11:51:04 -080048 assignment_entry(ir_variable *lhs, ir_assignment *ir)
Eric Anholt6255a1f2010-05-05 10:37:25 -070049 {
50 assert(lhs);
51 assert(ir);
52 this->lhs = lhs;
53 this->ir = ir;
Eric Anholt2dbebbd2014-03-05 23:03:42 -080054 this->unused = ir->write_mask;
Eric Anholt6255a1f2010-05-05 10:37:25 -070055 }
56
57 ir_variable *lhs;
Eric Anholt05c200b2012-02-23 11:51:04 -080058 ir_assignment *ir;
59
60 /* bitmask of xyzw channels written that haven't been used so far. */
Eric Anholt2dbebbd2014-03-05 23:03:42 -080061 int unused;
Eric Anholt6255a1f2010-05-05 10:37:25 -070062};
63
Ian Romanick551c9c02010-05-14 14:31:25 -070064class kill_for_derefs_visitor : public ir_hierarchical_visitor {
65public:
66 kill_for_derefs_visitor(exec_list *assignments)
67 {
68 this->assignments = assignments;
Eric Anholt6255a1f2010-05-05 10:37:25 -070069 }
Eric Anholt6255a1f2010-05-05 10:37:25 -070070
Eric Anholt2dbebbd2014-03-05 23:03:42 -080071 void use_channels(ir_variable *const var, int used)
Ian Romanick551c9c02010-05-14 14:31:25 -070072 {
Matt Turnerc6a16f62014-06-24 21:58:35 -070073 foreach_in_list_safe(assignment_entry, entry, this->assignments) {
Ian Romanick551c9c02010-05-14 14:31:25 -070074 if (entry->lhs == var) {
Eric Anholt05c200b2012-02-23 11:51:04 -080075 if (var->type->is_scalar() || var->type->is_vector()) {
76 if (debug)
Eric Anholt2dbebbd2014-03-05 23:03:42 -080077 printf("used %s (0x%01x - 0x%01x)\n", entry->lhs->name,
78 entry->unused, used & 0xf);
79 entry->unused &= ~used;
80 if (!entry->unused)
Eric Anholt05c200b2012-02-23 11:51:04 -080081 entry->remove();
82 } else {
83 if (debug)
Eric Anholt2dbebbd2014-03-05 23:03:42 -080084 printf("used %s\n", entry->lhs->name);
Eric Anholt05c200b2012-02-23 11:51:04 -080085 entry->remove();
86 }
Ian Romanick551c9c02010-05-14 14:31:25 -070087 }
88 }
Eric Anholt05c200b2012-02-23 11:51:04 -080089 }
90
91 virtual ir_visitor_status visit(ir_dereference_variable *ir)
92 {
Eric Anholt2dbebbd2014-03-05 23:03:42 -080093 use_channels(ir->var, ~0);
Ian Romanick551c9c02010-05-14 14:31:25 -070094
95 return visit_continue;
96 }
97
Eric Anholt05c200b2012-02-23 11:51:04 -080098 virtual ir_visitor_status visit(ir_swizzle *ir)
99 {
100 ir_dereference_variable *deref = ir->val->as_dereference_variable();
101 if (!deref)
102 return visit_continue;
103
104 int used = 0;
105 used |= 1 << ir->mask.x;
106 used |= 1 << ir->mask.y;
107 used |= 1 << ir->mask.z;
108 used |= 1 << ir->mask.w;
109
Eric Anholt2dbebbd2014-03-05 23:03:42 -0800110 use_channels(deref->var, used);
Eric Anholt05c200b2012-02-23 11:51:04 -0800111
112 return visit_continue_with_parent;
113 }
114
Iago Toral Quiroga8639eff2014-06-20 10:26:29 +0200115 virtual ir_visitor_status visit_leave(ir_emit_vertex *)
Bryan Cainae6eba32013-02-15 09:26:35 -0600116 {
117 /* For the purpose of dead code elimination, emitting a vertex counts as
118 * "reading" all of the currently assigned output variables.
119 */
Matt Turnerc6a16f62014-06-24 21:58:35 -0700120 foreach_in_list_safe(assignment_entry, entry, this->assignments) {
Tapani Pälli33ee2c62013-12-12 13:51:01 +0200121 if (entry->lhs->data.mode == ir_var_shader_out) {
Bryan Cainae6eba32013-02-15 09:26:35 -0600122 if (debug)
123 printf("kill %s\n", entry->lhs->name);
124 entry->remove();
125 }
126 }
127
128 return visit_continue;
129 }
130
Ian Romanick551c9c02010-05-14 14:31:25 -0700131private:
132 exec_list *assignments;
133};
Eric Anholt6255a1f2010-05-05 10:37:25 -0700134
Ian Romanick7fe3de62010-05-19 13:47:39 +0200135class array_index_visit : public ir_hierarchical_visitor {
136public:
137 array_index_visit(ir_hierarchical_visitor *v)
138 {
139 this->visitor = v;
140 }
141
142 virtual ir_visitor_status visit_enter(class ir_dereference_array *ir)
143 {
Ian Romanick36ea2862010-05-19 13:52:29 +0200144 ir->array_index->accept(visitor);
Ian Romanick7fe3de62010-05-19 13:47:39 +0200145 return visit_continue;
146 }
147
148 static void run(ir_instruction *ir, ir_hierarchical_visitor *v)
149 {
150 array_index_visit top_visit(v);
151 ir->accept(& top_visit);
152 }
153
154 ir_hierarchical_visitor *visitor;
155};
156
Eric Anholt337d9c92012-05-29 16:18:37 -0700157} /* unnamed namespace */
Ian Romanick7fe3de62010-05-19 13:47:39 +0200158
Eric Anholt6255a1f2010-05-05 10:37:25 -0700159/**
160 * Adds an entry to the available copy list if it's a plain assignment
161 * of a variable to a variable.
162 */
163static bool
Kenneth Graunkea815f7f2010-06-25 13:36:14 -0700164process_assignment(void *ctx, ir_assignment *ir, exec_list *assignments)
Eric Anholt6255a1f2010-05-05 10:37:25 -0700165{
166 ir_variable *var = NULL;
167 bool progress = false;
Ian Romanick551c9c02010-05-14 14:31:25 -0700168 kill_for_derefs_visitor v(assignments);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700169
170 /* Kill assignment entries for things used to produce this assignment. */
Ian Romanick551c9c02010-05-14 14:31:25 -0700171 ir->rhs->accept(&v);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700172 if (ir->condition) {
Ian Romanick551c9c02010-05-14 14:31:25 -0700173 ir->condition->accept(&v);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700174 }
175
Ian Romanick7fe3de62010-05-19 13:47:39 +0200176 /* Kill assignment enties used as array indices.
Eric Anholt6255a1f2010-05-05 10:37:25 -0700177 */
Ian Romanick7fe3de62010-05-19 13:47:39 +0200178 array_index_visit::run(ir->lhs, &v);
179 var = ir->lhs->variable_referenced();
Eric Anholt6255a1f2010-05-05 10:37:25 -0700180 assert(var);
181
Eric Anholt6255a1f2010-05-05 10:37:25 -0700182 /* Now, check if we did a whole-variable assignment. */
Eric Anholt05c200b2012-02-23 11:51:04 -0800183 if (!ir->condition) {
184 ir_dereference_variable *deref_var = ir->lhs->as_dereference_variable();
Eric Anholt6255a1f2010-05-05 10:37:25 -0700185
Eric Anholt05c200b2012-02-23 11:51:04 -0800186 /* If it's a vector type, we can do per-channel elimination of
187 * use of the RHS.
188 */
189 if (deref_var && (deref_var->var->type->is_scalar() ||
190 deref_var->var->type->is_vector())) {
191
192 if (debug)
193 printf("looking for %s.0x%01x to remove\n", var->name,
194 ir->write_mask);
195
Matt Turnerc6a16f62014-06-24 21:58:35 -0700196 foreach_in_list_safe(assignment_entry, entry, assignments) {
Eric Anholt05c200b2012-02-23 11:51:04 -0800197 if (entry->lhs != var)
198 continue;
199
Kristian Høgsberg Kristensen96b22fb2015-11-04 14:58:54 -0800200 /* Skip if the assignment we're trying to eliminate isn't a plain
201 * variable deref. */
202 if (entry->ir->lhs->ir_type != ir_type_dereference_variable)
203 continue;
204
Eric Anholt2dbebbd2014-03-05 23:03:42 -0800205 int remove = entry->unused & ir->write_mask;
Eric Anholt05c200b2012-02-23 11:51:04 -0800206 if (debug) {
207 printf("%s 0x%01x - 0x%01x = 0x%01x\n",
208 var->name,
209 entry->ir->write_mask,
210 remove, entry->ir->write_mask & ~remove);
211 }
212 if (remove) {
213 progress = true;
214
215 if (debug) {
216 printf("rewriting:\n ");
217 entry->ir->print();
218 printf("\n");
219 }
220
221 entry->ir->write_mask &= ~remove;
Eric Anholt2dbebbd2014-03-05 23:03:42 -0800222 entry->unused &= ~remove;
Eric Anholt05c200b2012-02-23 11:51:04 -0800223 if (entry->ir->write_mask == 0) {
224 /* Delete the dead assignment. */
225 entry->ir->remove();
226 entry->remove();
227 } else {
228 void *mem_ctx = ralloc_parent(entry->ir);
229 /* Reswizzle the RHS arguments according to the new
230 * write_mask.
231 */
232 unsigned components[4];
233 unsigned channels = 0;
234 unsigned next = 0;
235
236 for (int i = 0; i < 4; i++) {
237 if ((entry->ir->write_mask | remove) & (1 << i)) {
238 if (!(remove & (1 << i)))
239 components[channels++] = next;
240 next++;
241 }
242 }
243
244 entry->ir->rhs = new(mem_ctx) ir_swizzle(entry->ir->rhs,
245 components,
246 channels);
247 if (debug) {
248 printf("to:\n ");
249 entry->ir->print();
250 printf("\n");
251 }
252 }
253 }
254 }
255 } else if (ir->whole_variable_written() != NULL) {
256 /* We did a whole-variable assignment. So, any instruction in
257 * the assignment list with the same LHS is dead.
258 */
259 if (debug)
260 printf("looking for %s to remove\n", var->name);
Matt Turnerc6a16f62014-06-24 21:58:35 -0700261 foreach_in_list_safe(assignment_entry, entry, assignments) {
Eric Anholt05c200b2012-02-23 11:51:04 -0800262 if (entry->lhs == var) {
263 if (debug)
264 printf("removing %s\n", var->name);
265 entry->ir->remove();
266 entry->remove();
267 progress = true;
268 }
Eric Anholt6255a1f2010-05-05 10:37:25 -0700269 }
270 }
271 }
272
Kenneth Graunked884f602012-03-20 15:56:37 -0700273 /* Add this instruction to the assignment list available to be removed. */
Carl Worth1660a292010-06-23 18:11:51 -0700274 assignment_entry *entry = new(ctx) assignment_entry(var, ir);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700275 assignments->push_tail(entry);
276
277 if (debug) {
278 printf("add %s\n", var->name);
279
280 printf("current entries\n");
Matt Turner4d784462014-06-24 21:34:05 -0700281 foreach_in_list(assignment_entry, entry, assignments) {
Eric Anholt2dbebbd2014-03-05 23:03:42 -0800282 printf(" %s (0x%01x)\n", entry->lhs->name, entry->unused);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700283 }
284 }
285
286 return progress;
287}
288
289static void
290dead_code_local_basic_block(ir_instruction *first,
291 ir_instruction *last,
292 void *data)
293{
294 ir_instruction *ir, *ir_next;
295 /* List of avaialble_copy */
296 exec_list assignments;
297 bool *out_progress = (bool *)data;
298 bool progress = false;
299
Kenneth Graunked3073f52011-01-21 14:32:31 -0800300 void *ctx = ralloc_context(NULL);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700301 /* Safe looping, since process_assignment */
302 for (ir = first, ir_next = (ir_instruction *)first->next;;
303 ir = ir_next, ir_next = (ir_instruction *)ir->next) {
304 ir_assignment *ir_assign = ir->as_assignment();
305
306 if (debug) {
Eric Anholte46a4542010-06-22 12:09:21 -0700307 ir->print();
Eric Anholt6255a1f2010-05-05 10:37:25 -0700308 printf("\n");
309 }
310
311 if (ir_assign) {
Kenneth Graunkea815f7f2010-06-25 13:36:14 -0700312 progress = process_assignment(ctx, ir_assign, &assignments) || progress;
Eric Anholt6255a1f2010-05-05 10:37:25 -0700313 } else {
Ian Romanick551c9c02010-05-14 14:31:25 -0700314 kill_for_derefs_visitor kill(&assignments);
315 ir->accept(&kill);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700316 }
317
318 if (ir == last)
319 break;
320 }
321 *out_progress = progress;
Kenneth Graunked3073f52011-01-21 14:32:31 -0800322 ralloc_free(ctx);
Eric Anholt6255a1f2010-05-05 10:37:25 -0700323}
324
325/**
326 * Does a copy propagation pass on the code present in the instruction stream.
327 */
328bool
329do_dead_code_local(exec_list *instructions)
330{
331 bool progress = false;
332
333 call_for_basic_blocks(instructions, dead_code_local_basic_block, &progress);
334
335 return progress;
336}