glsl/builtins: Use ivec for texel offsets in textureProjGradOffset.
[mesa.git] / src / glsl / opt_dead_code_local.cpp
1 /*
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 /**
25 * \file opt_dead_code_local.cpp
26 *
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
36 #include "ir.h"
37 #include "ir_basic_block.h"
38 #include "ir_optimization.h"
39 #include "glsl_types.h"
40
41 static bool debug = false;
42
43 class assignment_entry : public exec_node
44 {
45 public:
46 assignment_entry(ir_variable *lhs, ir_instruction *ir)
47 {
48 assert(lhs);
49 assert(ir);
50 this->lhs = lhs;
51 this->ir = ir;
52 }
53
54 ir_variable *lhs;
55 ir_instruction *ir;
56 };
57
58 class kill_for_derefs_visitor : public ir_hierarchical_visitor {
59 public:
60 kill_for_derefs_visitor(exec_list *assignments)
61 {
62 this->assignments = assignments;
63 }
64
65 virtual ir_visitor_status visit(ir_dereference_variable *ir)
66 {
67 ir_variable *const var = ir->variable_referenced();
68
69 foreach_iter(exec_list_iterator, iter, *this->assignments) {
70 assignment_entry *entry = (assignment_entry *)iter.get();
71
72 if (entry->lhs == var) {
73 if (debug)
74 printf("kill %s\n", entry->lhs->name);
75 entry->remove();
76 }
77 }
78
79 return visit_continue;
80 }
81
82 private:
83 exec_list *assignments;
84 };
85
86 class array_index_visit : public ir_hierarchical_visitor {
87 public:
88 array_index_visit(ir_hierarchical_visitor *v)
89 {
90 this->visitor = v;
91 }
92
93 virtual ir_visitor_status visit_enter(class ir_dereference_array *ir)
94 {
95 ir->array_index->accept(visitor);
96 return visit_continue;
97 }
98
99 static void run(ir_instruction *ir, ir_hierarchical_visitor *v)
100 {
101 array_index_visit top_visit(v);
102 ir->accept(& top_visit);
103 }
104
105 ir_hierarchical_visitor *visitor;
106 };
107
108
109 /**
110 * Adds an entry to the available copy list if it's a plain assignment
111 * of a variable to a variable.
112 */
113 static bool
114 process_assignment(void *ctx, ir_assignment *ir, exec_list *assignments)
115 {
116 ir_variable *var = NULL;
117 bool progress = false;
118 kill_for_derefs_visitor v(assignments);
119
120 /* Kill assignment entries for things used to produce this assignment. */
121 ir->rhs->accept(&v);
122 if (ir->condition) {
123 ir->condition->accept(&v);
124 }
125
126 /* Kill assignment enties used as array indices.
127 */
128 array_index_visit::run(ir->lhs, &v);
129 var = ir->lhs->variable_referenced();
130 assert(var);
131
132 /* Now, check if we did a whole-variable assignment. */
133 if (!ir->condition && (ir->whole_variable_written() != NULL)) {
134 /* We did a whole-variable assignment. So, any instruction in
135 * the assignment list with the same LHS is dead.
136 */
137 if (debug)
138 printf("looking for %s to remove\n", var->name);
139 foreach_iter(exec_list_iterator, iter, *assignments) {
140 assignment_entry *entry = (assignment_entry *)iter.get();
141
142 if (entry->lhs == var) {
143 if (debug)
144 printf("removing %s\n", var->name);
145 entry->ir->remove();
146 entry->remove();
147 progress = true;
148 }
149 }
150 }
151
152 /* Add this instruction to the assignment list available to be removed. */
153 assignment_entry *entry = new(ctx) assignment_entry(var, ir);
154 assignments->push_tail(entry);
155
156 if (debug) {
157 printf("add %s\n", var->name);
158
159 printf("current entries\n");
160 foreach_iter(exec_list_iterator, iter, *assignments) {
161 assignment_entry *entry = (assignment_entry *)iter.get();
162
163 printf(" %s\n", entry->lhs->name);
164 }
165 }
166
167 return progress;
168 }
169
170 static void
171 dead_code_local_basic_block(ir_instruction *first,
172 ir_instruction *last,
173 void *data)
174 {
175 ir_instruction *ir, *ir_next;
176 /* List of avaialble_copy */
177 exec_list assignments;
178 bool *out_progress = (bool *)data;
179 bool progress = false;
180
181 void *ctx = ralloc_context(NULL);
182 /* Safe looping, since process_assignment */
183 for (ir = first, ir_next = (ir_instruction *)first->next;;
184 ir = ir_next, ir_next = (ir_instruction *)ir->next) {
185 ir_assignment *ir_assign = ir->as_assignment();
186
187 if (debug) {
188 ir->print();
189 printf("\n");
190 }
191
192 if (ir_assign) {
193 progress = process_assignment(ctx, ir_assign, &assignments) || progress;
194 } else {
195 kill_for_derefs_visitor kill(&assignments);
196 ir->accept(&kill);
197 }
198
199 if (ir == last)
200 break;
201 }
202 *out_progress = progress;
203 ralloc_free(ctx);
204 }
205
206 /**
207 * Does a copy propagation pass on the code present in the instruction stream.
208 */
209 bool
210 do_dead_code_local(exec_list *instructions)
211 {
212 bool progress = false;
213
214 call_for_basic_blocks(instructions, dead_code_local_basic_block, &progress);
215
216 return progress;
217 }