3 * Copyright © 2010 Intel Corporation
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
26 #ifndef LOOP_ANALYSIS_H
27 #define LOOP_ANALYSIS_H
30 #include "program/hash_table.h"
33 * Analyze and classify all variables used in all loops in the instruction list
35 extern class loop_state
*
36 analyze_loop_variables(exec_list
*instructions
);
40 * Fill in loop control fields
42 * Based on analysis of loop variables, this function tries to remove
43 * redundant sequences in the loop of the form
45 * (if (expression bool ...) (break))
47 * For example, if it is provable that one loop exit condition will
48 * always be satisfied before another, the unnecessary exit condition will be
52 set_loop_controls(exec_list
*instructions
, loop_state
*ls
);
56 unroll_loops(exec_list
*instructions
, loop_state
*ls
, unsigned max_iterations
);
59 find_initial_value(ir_loop
*loop
, ir_variable
*var
);
62 calculate_iterations(ir_rvalue
*from
, ir_rvalue
*to
, ir_rvalue
*increment
,
63 enum ir_expression_operation op
);
67 * Tracking for all variables used in a loop
69 class loop_variable_state
: public exec_node
{
71 class loop_variable
*get(const ir_variable
*);
72 class loop_variable
*insert(ir_variable
*);
73 class loop_variable
*get_or_insert(ir_variable
*, bool in_assignee
);
74 class loop_terminator
*insert(ir_if
*);
78 * Variables that have not yet been classified
83 * Variables whose values are constant within the body of the loop
85 * This list contains \c loop_variable objects.
90 * Induction variables for this loop
92 * This list contains \c loop_variable objects.
94 exec_list induction_variables
;
97 * Simple if-statements that lead to the termination of the loop
99 * This list contains \c loop_terminator objects.
101 * \sa is_loop_terminator
103 exec_list terminators
;
106 * If any of the terminators in \c terminators leads to termination of the
107 * loop after a constant number of iterations, this is the terminator that
108 * leads to termination after the smallest number of iterations. Otherwise
111 loop_terminator
*limiting_terminator
;
114 * Hash table containing all variables accessed in this loop
116 hash_table
*var_hash
;
119 * Number of ir_loop_jump instructions that operate on this loop
121 unsigned num_loop_jumps
;
124 * Whether this loop contains any function calls.
128 loop_variable_state()
130 this->num_loop_jumps
= 0;
131 this->contains_calls
= false;
132 this->var_hash
= hash_table_ctor(0, hash_table_pointer_hash
,
133 hash_table_pointer_compare
);
134 this->limiting_terminator
= NULL
;
137 ~loop_variable_state()
139 hash_table_dtor(this->var_hash
);
142 static void* operator new(size_t size
, void *ctx
)
144 void *lvs
= ralloc_size(ctx
, size
);
147 ralloc_set_destructor(lvs
, (void (*)(void*)) destructor
);
154 destructor(loop_variable_state
*lvs
)
156 lvs
->~loop_variable_state();
161 class loop_variable
: public exec_node
{
163 /** The variable in question. */
166 /** Is the variable read in the loop before it is written? */
167 bool read_before_write
;
169 /** Are all variables in the RHS of the assignment loop constants? */
173 * Is there an assignment to the variable that is conditional, or inside a
176 bool conditional_or_nested_assignment
;
178 /** Reference to the first assignment to the variable in the loop body. */
179 ir_assignment
*first_assignment
;
181 /** Number of assignments to the variable in the loop body. */
182 unsigned num_assignments
;
185 * Increment value for a loop induction variable
187 * If this is a loop induction variable, the amount by which the variable
188 * is incremented on each iteration through the loop.
190 * If this is not a loop induction variable, NULL.
192 ir_rvalue
*increment
;
195 inline bool is_induction_var() const
197 /* Induction variables always have a non-null increment, and vice
200 return this->increment
!= NULL
;
204 inline bool is_loop_constant() const
206 const bool is_const
= (this->num_assignments
== 0)
207 || ((this->num_assignments
== 1)
208 && !this->conditional_or_nested_assignment
209 && !this->read_before_write
212 /* If the RHS of *the* assignment is clean, then there must be exactly
213 * one assignment of the variable.
215 assert((this->rhs_clean
&& (this->num_assignments
== 1))
216 || !this->rhs_clean
);
218 /* Variables that are marked read-only *MUST* be loop constant.
220 assert(!this->var
->data
.read_only
221 || (this->var
->data
.read_only
&& is_const
));
226 void record_reference(bool in_assignee
,
227 bool in_conditional_code_or_nested_loop
,
228 ir_assignment
*current_assignment
);
232 class loop_terminator
: public exec_node
{
235 : ir(NULL
), iterations(-1)
240 * Statement which terminates the loop.
245 * The number of iterations after which the terminator is known to
246 * terminate the loop (if that is a fixed value). Otherwise -1.
257 * Get the loop variable state data for a particular loop
259 loop_variable_state
*get(const ir_loop
*);
261 loop_variable_state
*insert(ir_loop
*ir
);
269 * Hash table containing all loops that have been analyzed.
275 friend loop_state
*analyze_loop_variables(exec_list
*instructions
);
278 #endif /* LOOP_ANALYSIS_H */