1 /*
2 * Copyright © 2014 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 DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "nir_instr_set.h"
25
26 /*
27 * Implements common subexpression elimination
28 */
29
30 static bool
dominates(const nir_instr * old_instr,const nir_instr * new_instr)31 dominates(const nir_instr *old_instr, const nir_instr *new_instr)
32 {
33 return nir_block_dominates(old_instr->block, new_instr->block);
34 }
35
36 static bool
nir_opt_cse_impl(nir_function_impl * impl)37 nir_opt_cse_impl(nir_function_impl *impl)
38 {
39 struct set *instr_set = nir_instr_set_create(NULL);
40
41 _mesa_set_resize(instr_set, impl->ssa_alloc);
42
43 nir_metadata_require(impl, nir_metadata_dominance);
44
45 bool progress = false;
46 nir_foreach_block(block, impl) {
47 nir_foreach_instr_safe(instr, block)
48 progress |= nir_instr_set_add_or_rewrite(instr_set, instr, dominates);
49 }
50
51 if (progress) {
52 nir_metadata_preserve(impl, nir_metadata_block_index |
53 nir_metadata_dominance);
54 } else {
55 nir_metadata_preserve(impl, nir_metadata_all);
56 }
57
58 nir_instr_set_destroy(instr_set);
59 return progress;
60 }
61
62 bool
nir_opt_cse(nir_shader * shader)63 nir_opt_cse(nir_shader *shader)
64 {
65 bool progress = false;
66
67 nir_foreach_function_impl(impl, shader) {
68 progress |= nir_opt_cse_impl(impl);
69 }
70
71 return progress;
72 }
73