OSDN Git Service

i965/fs: Use the LRP instruction for ir_triop_lrp when possible.
[android-x86/external-mesa.git] / src / mesa / drivers / dri / i965 / brw_fs_cse.cpp
1 /*
2  * Copyright © 2012 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 "brw_fs.h"
25 #include "brw_cfg.h"
26
27 /** @file brw_fs_cse.cpp
28  *
29  * Support for local common subexpression elimination.
30  *
31  * See Muchnik's Advanced Compiler Design and Implementation, section
32  * 13.1 (p378).
33  */
34
35 namespace {
36 struct aeb_entry : public exec_node {
37    /** The instruction that generates the expression value. */
38    fs_inst *generator;
39
40    /** The temporary where the value is stored. */
41    fs_reg tmp;
42 };
43 }
44
45 static bool
46 is_expression(const fs_inst *const inst)
47 {
48    switch (inst->opcode) {
49    case BRW_OPCODE_SEL:
50    case BRW_OPCODE_NOT:
51    case BRW_OPCODE_AND:
52    case BRW_OPCODE_OR:
53    case BRW_OPCODE_XOR:
54    case BRW_OPCODE_SHR:
55    case BRW_OPCODE_SHL:
56    case BRW_OPCODE_RSR:
57    case BRW_OPCODE_RSL:
58    case BRW_OPCODE_ASR:
59    case BRW_OPCODE_ADD:
60    case BRW_OPCODE_MUL:
61    case BRW_OPCODE_FRC:
62    case BRW_OPCODE_RNDU:
63    case BRW_OPCODE_RNDD:
64    case BRW_OPCODE_RNDE:
65    case BRW_OPCODE_RNDZ:
66    case BRW_OPCODE_LINE:
67    case BRW_OPCODE_PLN:
68    case BRW_OPCODE_MAD:
69    case BRW_OPCODE_LRP:
70    case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
71    case FS_OPCODE_CINTERP:
72    case FS_OPCODE_LINTERP:
73       return true;
74    default:
75       return false;
76    }
77 }
78
79 static bool
80 operands_match(fs_reg *xs, fs_reg *ys)
81 {
82    return xs[0].equals(ys[0]) && xs[1].equals(ys[1]) && xs[2].equals(ys[2]);
83 }
84
85 bool
86 fs_visitor::opt_cse_local(bblock_t *block, exec_list *aeb)
87 {
88    bool progress = false;
89
90    void *mem_ctx = ralloc_context(this->mem_ctx);
91
92    for (fs_inst *inst = (fs_inst *)block->start;
93         inst != block->end->next;
94         inst = (fs_inst *) inst->next) {
95
96       /* Skip some cases. */
97       if (is_expression(inst) && !inst->predicate && inst->mlen == 0 &&
98           !inst->force_uncompressed && !inst->force_sechalf &&
99           !inst->conditional_mod)
100       {
101          bool found = false;
102
103          aeb_entry *entry;
104          foreach_list(entry_node, aeb) {
105             entry = (aeb_entry *) entry_node;
106
107             /* Match current instruction's expression against those in AEB. */
108             if (inst->opcode == entry->generator->opcode &&
109                 inst->saturate == entry->generator->saturate &&
110                 inst->dst.type == entry->generator->dst.type &&
111                 operands_match(entry->generator->src, inst->src)) {
112
113                found = true;
114                progress = true;
115                break;
116             }
117          }
118
119          if (!found) {
120             /* Our first sighting of this expression.  Create an entry. */
121             aeb_entry *entry = ralloc(mem_ctx, aeb_entry);
122             entry->tmp = reg_undef;
123             entry->generator = inst;
124             aeb->push_tail(entry);
125          } else {
126             /* This is at least our second sighting of this expression.
127              * If we don't have a temporary already, make one.
128              */
129             bool no_existing_temp = entry->tmp.file == BAD_FILE;
130             if (no_existing_temp) {
131                entry->tmp = fs_reg(this, glsl_type::float_type);
132                entry->tmp.type = inst->dst.type;
133
134                fs_inst *copy = new(ralloc_parent(inst))
135                   fs_inst(BRW_OPCODE_MOV, entry->generator->dst, entry->tmp);
136                entry->generator->insert_after(copy);
137                entry->generator->dst = entry->tmp;
138             }
139
140             /* dest <- temp */
141             assert(inst->dst.type == entry->tmp.type);
142             fs_inst *copy = new(ralloc_parent(inst))
143                fs_inst(BRW_OPCODE_MOV, inst->dst, entry->tmp);
144             copy->force_writemask_all = inst->force_writemask_all;
145             inst->replace_with(copy);
146
147             /* Appending an instruction may have changed our bblock end. */
148             if (inst == block->end) {
149                block->end = copy;
150             }
151
152             /* Continue iteration with copy->next */
153             inst = copy;
154          }
155       }
156
157       /* Kill all AEB entries that use the destination. */
158       foreach_list_safe(entry_node, aeb) {
159          aeb_entry *entry = (aeb_entry *)entry_node;
160
161          for (int i = 0; i < 3; i++) {
162             if (inst->overwrites_reg(entry->generator->src[i])) {
163                entry->remove();
164                ralloc_free(entry);
165                break;
166             }
167          }
168       }
169    }
170
171    ralloc_free(mem_ctx);
172
173    if (progress)
174       this->live_intervals_valid = false;
175
176    return progress;
177 }
178
179 bool
180 fs_visitor::opt_cse()
181 {
182    bool progress = false;
183
184    cfg_t cfg(this);
185
186    for (int b = 0; b < cfg.num_blocks; b++) {
187       bblock_t *block = cfg.blocks[b];
188       exec_list aeb;
189
190       progress = opt_cse_local(block, &aeb) || progress;
191    }
192
193    return progress;
194 }