intel/fs: Rename block to scan_block in can_coalesce_vars
[mesa.git] / src / intel / compiler / brw_fs_register_coalesce.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 /** @file brw_fs_register_coalesce.cpp
25 *
26 * Implements register coalescing: Checks if the two registers involved in a
27 * raw move don't interfere, in which case they can both be stored in the same
28 * place and the MOV removed.
29 *
30 * To do this, all uses of the source of the MOV in the shader are replaced
31 * with the destination of the MOV. For example:
32 *
33 * add vgrf3:F, vgrf1:F, vgrf2:F
34 * mov vgrf4:F, vgrf3:F
35 * mul vgrf5:F, vgrf5:F, vgrf4:F
36 *
37 * becomes
38 *
39 * add vgrf4:F, vgrf1:F, vgrf2:F
40 * mul vgrf5:F, vgrf5:F, vgrf4:F
41 */
42
43 #include "brw_fs.h"
44 #include "brw_cfg.h"
45 #include "brw_fs_live_variables.h"
46
47 using namespace brw;
48
49 static bool
50 is_nop_mov(const fs_inst *inst)
51 {
52 if (inst->opcode == SHADER_OPCODE_LOAD_PAYLOAD) {
53 fs_reg dst = inst->dst;
54 for (int i = 0; i < inst->sources; i++) {
55 if (!dst.equals(inst->src[i])) {
56 return false;
57 }
58 dst.offset += (i < inst->header_size ? REG_SIZE :
59 inst->exec_size * dst.stride *
60 type_sz(inst->src[i].type));
61 }
62 return true;
63 } else if (inst->opcode == BRW_OPCODE_MOV) {
64 return inst->dst.equals(inst->src[0]);
65 }
66
67 return false;
68 }
69
70 static bool
71 is_coalesce_candidate(const fs_visitor *v, const fs_inst *inst)
72 {
73 if ((inst->opcode != BRW_OPCODE_MOV &&
74 inst->opcode != SHADER_OPCODE_LOAD_PAYLOAD) ||
75 inst->is_partial_write() ||
76 inst->saturate ||
77 inst->src[0].file != VGRF ||
78 inst->src[0].negate ||
79 inst->src[0].abs ||
80 !inst->src[0].is_contiguous() ||
81 inst->dst.file != VGRF ||
82 inst->dst.type != inst->src[0].type) {
83 return false;
84 }
85
86 if (v->alloc.sizes[inst->src[0].nr] >
87 v->alloc.sizes[inst->dst.nr])
88 return false;
89
90 if (inst->opcode == SHADER_OPCODE_LOAD_PAYLOAD) {
91 if (!is_coalescing_payload(v->alloc, inst)) {
92 return false;
93 }
94 }
95
96 return true;
97 }
98
99 static bool
100 can_coalesce_vars(const fs_live_variables &live,
101 const cfg_t *cfg, const fs_inst *inst,
102 int dst_var, int src_var)
103 {
104 if (!live.vars_interfere(src_var, dst_var))
105 return true;
106
107 int dst_start = live.start[dst_var];
108 int dst_end = live.end[dst_var];
109 int src_start = live.start[src_var];
110 int src_end = live.end[src_var];
111
112 /* Variables interfere and one line range isn't a subset of the other. */
113 if ((dst_end > src_end && src_start < dst_start) ||
114 (src_end > dst_end && dst_start < src_start))
115 return false;
116
117 /* Check for a write to either register in the intersection of their live
118 * ranges.
119 */
120 int start_ip = MAX2(dst_start, src_start);
121 int end_ip = MIN2(dst_end, src_end);
122
123 foreach_block(scan_block, cfg) {
124 if (scan_block->end_ip < start_ip)
125 continue;
126
127 int scan_ip = scan_block->start_ip - 1;
128
129 foreach_inst_in_block(fs_inst, scan_inst, scan_block) {
130 scan_ip++;
131
132 /* Ignore anything before the intersection of the live ranges */
133 if (scan_ip < start_ip)
134 continue;
135
136 /* Ignore the copying instruction itself */
137 if (scan_inst == inst)
138 continue;
139
140 if (scan_ip > end_ip)
141 return true; /* registers do not interfere */
142
143 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
144 inst->dst, inst->size_written) ||
145 regions_overlap(scan_inst->dst, scan_inst->size_written,
146 inst->src[0], inst->size_read(0)))
147 return false; /* registers interfere */
148 }
149 }
150
151 return true;
152 }
153
154 bool
155 fs_visitor::register_coalesce()
156 {
157 bool progress = false;
158 fs_live_variables &live = live_analysis.require();
159 int src_size = 0;
160 int channels_remaining = 0;
161 unsigned src_reg = ~0u, dst_reg = ~0u;
162 int dst_reg_offset[MAX_VGRF_SIZE];
163 fs_inst *mov[MAX_VGRF_SIZE];
164 int dst_var[MAX_VGRF_SIZE];
165 int src_var[MAX_VGRF_SIZE];
166
167 foreach_block_and_inst(block, fs_inst, inst, cfg) {
168 if (!is_coalesce_candidate(this, inst))
169 continue;
170
171 if (is_nop_mov(inst)) {
172 inst->opcode = BRW_OPCODE_NOP;
173 progress = true;
174 continue;
175 }
176
177 if (src_reg != inst->src[0].nr) {
178 src_reg = inst->src[0].nr;
179
180 src_size = alloc.sizes[inst->src[0].nr];
181 assert(src_size <= MAX_VGRF_SIZE);
182
183 channels_remaining = src_size;
184 memset(mov, 0, sizeof(mov));
185
186 dst_reg = inst->dst.nr;
187 }
188
189 if (dst_reg != inst->dst.nr)
190 continue;
191
192 if (inst->opcode == SHADER_OPCODE_LOAD_PAYLOAD) {
193 for (int i = 0; i < src_size; i++) {
194 dst_reg_offset[i] = i;
195 }
196 mov[0] = inst;
197 channels_remaining -= regs_written(inst);
198 } else {
199 const int offset = inst->src[0].offset / REG_SIZE;
200 if (mov[offset]) {
201 /* This is the second time that this offset in the register has
202 * been set. This means, in particular, that inst->dst was
203 * live before this instruction and that the live ranges of
204 * inst->dst and inst->src[0] overlap and we can't coalesce the
205 * two variables. Let's ensure that doesn't happen.
206 */
207 channels_remaining = -1;
208 continue;
209 }
210 for (unsigned i = 0; i < MAX2(inst->size_written / REG_SIZE, 1); i++)
211 dst_reg_offset[offset + i] = inst->dst.offset / REG_SIZE + i;
212 mov[offset] = inst;
213 channels_remaining -= regs_written(inst);
214 }
215
216 if (channels_remaining)
217 continue;
218
219 bool can_coalesce = true;
220 for (int i = 0; i < src_size; i++) {
221 if (dst_reg_offset[i] != dst_reg_offset[0] + i) {
222 /* Registers are out-of-order. */
223 can_coalesce = false;
224 src_reg = ~0u;
225 break;
226 }
227
228 dst_var[i] = live.var_from_vgrf[dst_reg] + dst_reg_offset[i];
229 src_var[i] = live.var_from_vgrf[src_reg] + i;
230
231 if (!can_coalesce_vars(live, cfg, inst, dst_var[i], src_var[i])) {
232 can_coalesce = false;
233 src_reg = ~0u;
234 break;
235 }
236 }
237
238 if (!can_coalesce)
239 continue;
240
241 progress = true;
242
243 for (int i = 0; i < src_size; i++) {
244 if (mov[i]) {
245 mov[i]->opcode = BRW_OPCODE_NOP;
246 mov[i]->conditional_mod = BRW_CONDITIONAL_NONE;
247 mov[i]->dst = reg_undef;
248 for (int j = 0; j < mov[i]->sources; j++) {
249 mov[i]->src[j] = reg_undef;
250 }
251 }
252 }
253
254 foreach_block_and_inst(block, fs_inst, scan_inst, cfg) {
255 if (scan_inst->dst.file == VGRF &&
256 scan_inst->dst.nr == src_reg) {
257 scan_inst->dst.nr = dst_reg;
258 scan_inst->dst.offset = scan_inst->dst.offset % REG_SIZE +
259 dst_reg_offset[scan_inst->dst.offset / REG_SIZE] * REG_SIZE;
260 }
261
262 for (int j = 0; j < scan_inst->sources; j++) {
263 if (scan_inst->src[j].file == VGRF &&
264 scan_inst->src[j].nr == src_reg) {
265 scan_inst->src[j].nr = dst_reg;
266 scan_inst->src[j].offset = scan_inst->src[j].offset % REG_SIZE +
267 dst_reg_offset[scan_inst->src[j].offset / REG_SIZE] * REG_SIZE;
268 }
269 }
270 }
271
272 for (int i = 0; i < src_size; i++) {
273 live.start[dst_var[i]] = MIN2(live.start[dst_var[i]],
274 live.start[src_var[i]]);
275 live.end[dst_var[i]] = MAX2(live.end[dst_var[i]],
276 live.end[src_var[i]]);
277 }
278 src_reg = ~0u;
279 }
280
281 if (progress) {
282 foreach_block_and_inst_safe (block, backend_instruction, inst, cfg) {
283 if (inst->opcode == BRW_OPCODE_NOP) {
284 inst->remove(block);
285 }
286 }
287
288 invalidate_analysis(DEPENDENCY_INSTRUCTIONS);
289 }
290
291 return progress;
292 }