blob: 2ede7ff0cf460d1e8b5d2614c588b8a788f87b99 [file] [log] [blame]
Eric Anholt7d211042010-04-16 16:43:47 -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/**
25 * \file ir_dead_code.cpp
26 *
27 * Eliminates dead assignments and variable declarations from the code.
28 */
29
30#define NULL 0
31#include "ir.h"
32#include "ir_visitor.h"
33#include "ir_expression_flattening.h"
34#include "glsl_types.h"
35
36class variable_entry : public exec_node
37{
38public:
39 variable_entry(ir_variable *var)
40 {
41 this->var = var;
42 assign = NULL;
Ian Romanickb5a7cf92010-05-14 12:41:22 -070043 referenced_count = 0;
44 assigned_count = 0;
Eric Anholt7d211042010-04-16 16:43:47 -070045 declaration = false;
46 }
47
48 ir_variable *var; /* The key: the variable's pointer. */
49 ir_assignment *assign; /* An assignment to the variable, if any */
Ian Romanickb5a7cf92010-05-14 12:41:22 -070050
51 /** Number of times the variable is referenced, including assignments. */
52 unsigned referenced_count;
53
54 /** Number of times the variable is assignmened. */
55 unsigned assigned_count;
56
Eric Anholt7d211042010-04-16 16:43:47 -070057 bool declaration; /* If the variable had a decl in the instruction stream */
58};
59
Ian Romanickb5a7cf92010-05-14 12:41:22 -070060class ir_dead_code_visitor : public ir_hierarchical_visitor {
Eric Anholt7d211042010-04-16 16:43:47 -070061public:
Ian Romanickb5a7cf92010-05-14 12:41:22 -070062 virtual ir_visitor_status visit(ir_variable *);
Ian Romanickf3a002b2010-05-19 12:02:19 +020063 virtual ir_visitor_status visit(ir_dereference_variable *);
Eric Anholt7d211042010-04-16 16:43:47 -070064
Ian Romanickb5a7cf92010-05-14 12:41:22 -070065 virtual ir_visitor_status visit_enter(ir_function *);
Ian Romanickb5a7cf92010-05-14 12:41:22 -070066 virtual ir_visitor_status visit_leave(ir_assignment *);
67
Eric Anholt7d211042010-04-16 16:43:47 -070068 variable_entry *get_variable_entry(ir_variable *var);
69
70 bool (*predicate)(ir_instruction *ir);
71 ir_instruction *base_ir;
72
73 /* List of variable_entry */
74 exec_list variable_list;
75};
76
Ian Romanickb5a7cf92010-05-14 12:41:22 -070077
Eric Anholt7d211042010-04-16 16:43:47 -070078variable_entry *
79ir_dead_code_visitor::get_variable_entry(ir_variable *var)
80{
81 assert(var);
82 foreach_iter(exec_list_iterator, iter, this->variable_list) {
83 variable_entry *entry = (variable_entry *)iter.get();
84 if (entry->var == var)
85 return entry;
86 }
87
88 variable_entry *entry = new variable_entry(var);
89 this->variable_list.push_tail(entry);
90 return entry;
91}
92
Eric Anholt7d211042010-04-16 16:43:47 -070093
Ian Romanickb5a7cf92010-05-14 12:41:22 -070094ir_visitor_status
Eric Anholt7d211042010-04-16 16:43:47 -070095ir_dead_code_visitor::visit(ir_variable *ir)
96{
97 variable_entry *entry = this->get_variable_entry(ir);
Ian Romanickf3a002b2010-05-19 12:02:19 +020098 if (entry)
99 entry->declaration = true;
100
101 return visit_continue;
102}
103
104
105ir_visitor_status
106ir_dead_code_visitor::visit(ir_dereference_variable *ir)
107{
108 ir_variable *const var = ir->variable_referenced();
109 variable_entry *entry = this->get_variable_entry(var);
110
111 if (entry)
112 entry->referenced_count++;
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700113
114 return visit_continue;
Eric Anholt7d211042010-04-16 16:43:47 -0700115}
116
117
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700118ir_visitor_status
119ir_dead_code_visitor::visit_enter(ir_function *ir)
Eric Anholt7d211042010-04-16 16:43:47 -0700120{
121 (void) ir;
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700122 return visit_continue_with_parent;
Eric Anholt7d211042010-04-16 16:43:47 -0700123}
124
125
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700126ir_visitor_status
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700127ir_dead_code_visitor::visit_leave(ir_assignment *ir)
Eric Anholt7d211042010-04-16 16:43:47 -0700128{
Eric Anholt7d211042010-04-16 16:43:47 -0700129 variable_entry *entry;
Ian Romanick461c2942010-05-18 13:53:20 +0200130 entry = this->get_variable_entry(ir->lhs->variable_referenced());
Eric Anholt7d211042010-04-16 16:43:47 -0700131 if (entry) {
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700132 entry->assigned_count++;
Eric Anholt7d211042010-04-16 16:43:47 -0700133 if (entry->assign == NULL)
134 entry->assign = ir;
135 }
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700136
137 return visit_continue;
Eric Anholt7d211042010-04-16 16:43:47 -0700138}
139
140
Eric Anholt7d211042010-04-16 16:43:47 -0700141/**
142 * Do a dead code pass over instructions and everything that instructions
143 * references.
144 *
145 * Note that this will remove assignments to globals, so it is not suitable
146 * for usage on an unlinked instruction stream.
147 */
148bool
149do_dead_code(exec_list *instructions)
150{
151 ir_dead_code_visitor v;
152 bool progress = false;
153
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700154 v.run(instructions);
Eric Anholt7d211042010-04-16 16:43:47 -0700155
156 foreach_iter(exec_list_iterator, iter, v.variable_list) {
157 variable_entry *entry = (variable_entry *)iter.get();
158
Ian Romanickb5a7cf92010-05-14 12:41:22 -0700159 /* Since each assignment is a reference, the refereneced count must be
160 * greater than or equal to the assignment count. If they are equal,
161 * then all of the references are assignments, and the variable is
162 * dead.
163 *
164 * Note that if the variable is neither assigned nor referenced, both
165 * counts will be zero and will be caught by the equality test.
166 */
167 assert(entry->referenced_count >= entry->assigned_count);
168
169 if ((entry->referenced_count > entry->assigned_count)
170 || !entry->declaration)
Eric Anholt7d211042010-04-16 16:43:47 -0700171 continue;
172
173 if (entry->assign) {
174 /* Remove a single dead assignment to the variable we found.
175 * Don't do so if it's a shader output, though.
176 */
177 if (!entry->var->shader_out) {
178 entry->assign->remove();
179 progress = true;
180 }
181 } else {
182 /* If there are no assignments or references to the variable left,
183 * then we can remove its declaration.
184 */
185 entry->var->remove();
186 progress = true;
187 }
188 }
189 return progress;
190}
191
192/**
193 * Does a dead code pass on the functions present in the instruction stream.
194 *
195 * This is suitable for use while the program is not linked, as it will
196 * ignore variable declarations (and the assignments to them) for variables
197 * with global scope.
198 */
199bool
200do_dead_code_unlinked(exec_list *instructions)
201{
202 bool progress = false;
203
204 foreach_iter(exec_list_iterator, iter, *instructions) {
205 ir_instruction *ir = (ir_instruction *)iter.get();
Kenneth Graunke6202cbf2010-04-21 16:02:15 -0700206 ir_function *f = ir->as_function();
207 if (f) {
208 foreach_iter(exec_list_iterator, sigiter, *f) {
209 ir_function_signature *sig =
210 (ir_function_signature *) sigiter.get();
211 if (do_dead_code(&sig->body))
212 progress = true;
213 }
Eric Anholt7d211042010-04-16 16:43:47 -0700214 }
215 }
216
217 return progress;
218}