vc4: Move SF removal to a separate peephole pass.
[mesa.git] / src / gallium / drivers / vc4 / vc4_qir.c
1 /*
2 * Copyright © 2014 Broadcom
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 "util/u_memory.h"
25 #include "util/ralloc.h"
26
27 #include "vc4_qir.h"
28 #include "vc4_qpu.h"
29
30 struct qir_op_info {
31 const char *name;
32 uint8_t ndst, nsrc;
33 bool has_side_effects;
34 };
35
36 static const struct qir_op_info qir_op_info[] = {
37 [QOP_MOV] = { "mov", 1, 1 },
38 [QOP_FMOV] = { "fmov", 1, 1 },
39 [QOP_MMOV] = { "mmov", 1, 1 },
40 [QOP_FADD] = { "fadd", 1, 2 },
41 [QOP_FSUB] = { "fsub", 1, 2 },
42 [QOP_FMUL] = { "fmul", 1, 2 },
43 [QOP_MUL24] = { "mul24", 1, 2 },
44 [QOP_V8MULD] = {"v8muld", 1, 2 },
45 [QOP_V8MIN] = {"v8min", 1, 2 },
46 [QOP_V8MAX] = {"v8max", 1, 2 },
47 [QOP_V8ADDS] = {"v8adds", 1, 2 },
48 [QOP_V8SUBS] = {"v8subs", 1, 2 },
49 [QOP_FMIN] = { "fmin", 1, 2 },
50 [QOP_FMAX] = { "fmax", 1, 2 },
51 [QOP_FMINABS] = { "fminabs", 1, 2 },
52 [QOP_FMAXABS] = { "fmaxabs", 1, 2 },
53 [QOP_FTOI] = { "ftoi", 1, 1 },
54 [QOP_ITOF] = { "itof", 1, 1 },
55 [QOP_ADD] = { "add", 1, 2 },
56 [QOP_SUB] = { "sub", 1, 2 },
57 [QOP_SHR] = { "shr", 1, 2 },
58 [QOP_ASR] = { "asr", 1, 2 },
59 [QOP_SHL] = { "shl", 1, 2 },
60 [QOP_MIN] = { "min", 1, 2 },
61 [QOP_MAX] = { "max", 1, 2 },
62 [QOP_AND] = { "and", 1, 2 },
63 [QOP_OR] = { "or", 1, 2 },
64 [QOP_XOR] = { "xor", 1, 2 },
65 [QOP_NOT] = { "not", 1, 1 },
66
67 [QOP_RCP] = { "rcp", 1, 1 },
68 [QOP_RSQ] = { "rsq", 1, 1 },
69 [QOP_EXP2] = { "exp2", 1, 1 },
70 [QOP_LOG2] = { "log2", 1, 1 },
71 [QOP_TLB_COLOR_READ] = { "tlb_color_read", 1, 0 },
72 [QOP_MS_MASK] = { "ms_mask", 0, 1, true },
73 [QOP_VARY_ADD_C] = { "vary_add_c", 1, 1 },
74
75 [QOP_FRAG_Z] = { "frag_z", 1, 0 },
76 [QOP_FRAG_W] = { "frag_w", 1, 0 },
77
78 [QOP_TEX_S] = { "tex_s", 0, 2, true },
79 [QOP_TEX_T] = { "tex_t", 0, 2, true },
80 [QOP_TEX_R] = { "tex_r", 0, 2, true },
81 [QOP_TEX_B] = { "tex_b", 0, 2, true },
82 [QOP_TEX_DIRECT] = { "tex_direct", 0, 2, true },
83 [QOP_TEX_RESULT] = { "tex_result", 1, 0, true },
84
85 [QOP_LOAD_IMM] = { "load_imm", 0, 1 },
86 };
87
88 static const char *
89 qir_get_op_name(enum qop qop)
90 {
91 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
92 return qir_op_info[qop].name;
93 else
94 return "???";
95 }
96
97 int
98 qir_get_op_nsrc(enum qop qop)
99 {
100 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
101 return qir_op_info[qop].nsrc;
102 else
103 abort();
104 }
105
106 /**
107 * Returns whether the instruction has any side effects that must be
108 * preserved.
109 */
110 bool
111 qir_has_side_effects(struct vc4_compile *c, struct qinst *inst)
112 {
113 switch (inst->dst.file) {
114 case QFILE_TLB_Z_WRITE:
115 case QFILE_TLB_COLOR_WRITE:
116 case QFILE_TLB_COLOR_WRITE_MS:
117 case QFILE_TLB_STENCIL_SETUP:
118 return true;
119 default:
120 break;
121 }
122
123 return qir_op_info[inst->op].has_side_effects;
124 }
125
126 bool
127 qir_has_side_effect_reads(struct vc4_compile *c, struct qinst *inst)
128 {
129 /* We can dead-code eliminate varyings, because we only tell the VS
130 * about the live ones at the end. But we have to preserve the
131 * point/line coordinates reads, because they're generated by
132 * fixed-function hardware.
133 */
134 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
135 if (inst->src[i].file == QFILE_VARY &&
136 c->input_slots[inst->src[i].index].slot == 0xff) {
137 return true;
138 }
139
140 if (inst->src[i].file == QFILE_VPM)
141 return true;
142 }
143
144 if (inst->dst.file == QFILE_VPM)
145 return true;
146
147 return false;
148 }
149
150 bool
151 qir_is_mul(struct qinst *inst)
152 {
153 switch (inst->op) {
154 case QOP_MMOV:
155 case QOP_FMUL:
156 case QOP_MUL24:
157 case QOP_V8MULD:
158 case QOP_V8MIN:
159 case QOP_V8MAX:
160 case QOP_V8ADDS:
161 case QOP_V8SUBS:
162 return true;
163 default:
164 return false;
165 }
166 }
167
168 bool
169 qir_is_float_input(struct qinst *inst)
170 {
171 switch (inst->op) {
172 case QOP_FMOV:
173 case QOP_FMUL:
174 case QOP_FADD:
175 case QOP_FSUB:
176 case QOP_FMIN:
177 case QOP_FMAX:
178 case QOP_FMINABS:
179 case QOP_FMAXABS:
180 case QOP_FTOI:
181 return true;
182 default:
183 return false;
184 }
185 }
186
187 bool
188 qir_is_raw_mov(struct qinst *inst)
189 {
190 return ((inst->op == QOP_MOV ||
191 inst->op == QOP_FMOV ||
192 inst->op == QOP_MMOV) &&
193 inst->cond == QPU_COND_ALWAYS &&
194 !inst->dst.pack &&
195 !inst->src[0].pack);
196 }
197
198 bool
199 qir_is_tex(struct qinst *inst)
200 {
201 return inst->op >= QOP_TEX_S && inst->op <= QOP_TEX_DIRECT;
202 }
203
204 bool
205 qir_depends_on_flags(struct qinst *inst)
206 {
207 return (inst->cond != QPU_COND_ALWAYS &&
208 inst->cond != QPU_COND_NEVER);
209 }
210
211 bool
212 qir_writes_r4(struct qinst *inst)
213 {
214 switch (inst->op) {
215 case QOP_TEX_RESULT:
216 case QOP_TLB_COLOR_READ:
217 case QOP_RCP:
218 case QOP_RSQ:
219 case QOP_EXP2:
220 case QOP_LOG2:
221 return true;
222 default:
223 return false;
224 }
225 }
226
227 static void
228 qir_print_reg(struct vc4_compile *c, struct qreg reg, bool write)
229 {
230 static const char *files[] = {
231 [QFILE_TEMP] = "t",
232 [QFILE_VARY] = "v",
233 [QFILE_UNIF] = "u",
234 [QFILE_TLB_COLOR_WRITE] = "tlb_c",
235 [QFILE_TLB_COLOR_WRITE_MS] = "tlb_c_ms",
236 [QFILE_TLB_Z_WRITE] = "tlb_z",
237 [QFILE_TLB_STENCIL_SETUP] = "tlb_stencil",
238 [QFILE_FRAG_X] = "frag_x",
239 [QFILE_FRAG_Y] = "frag_y",
240 [QFILE_FRAG_REV_FLAG] = "frag_rev_flag",
241 };
242
243 switch (reg.file) {
244
245 case QFILE_NULL:
246 fprintf(stderr, "null");
247 break;
248
249 case QFILE_LOAD_IMM:
250 fprintf(stderr, "0x%08x (%f)", reg.index, uif(reg.index));
251 break;
252
253 case QFILE_SMALL_IMM:
254 if ((int)reg.index >= -16 && (int)reg.index <= 15)
255 fprintf(stderr, "%d", reg.index);
256 else
257 fprintf(stderr, "%f", uif(reg.index));
258 break;
259
260 case QFILE_VPM:
261 if (write) {
262 fprintf(stderr, "vpm");
263 } else {
264 fprintf(stderr, "vpm%d.%d",
265 reg.index / 4, reg.index % 4);
266 }
267 break;
268
269 case QFILE_TLB_COLOR_WRITE:
270 case QFILE_TLB_COLOR_WRITE_MS:
271 case QFILE_TLB_Z_WRITE:
272 case QFILE_TLB_STENCIL_SETUP:
273 fprintf(stderr, "%s", files[reg.file]);
274 break;
275
276 default:
277 fprintf(stderr, "%s%d", files[reg.file], reg.index);
278 break;
279 }
280
281 if (reg.file == QFILE_UNIF &&
282 c->uniform_contents[reg.index] == QUNIFORM_CONSTANT) {
283 fprintf(stderr, " (0x%08x / %f)",
284 c->uniform_data[reg.index],
285 uif(c->uniform_data[reg.index]));
286 }
287 }
288
289 void
290 qir_dump_inst(struct vc4_compile *c, struct qinst *inst)
291 {
292 fprintf(stderr, "%s", qir_get_op_name(inst->op));
293 vc4_qpu_disasm_cond(stderr, inst->cond);
294 if (inst->sf)
295 fprintf(stderr, ".sf");
296 fprintf(stderr, " ");
297
298 qir_print_reg(c, inst->dst, true);
299 if (inst->dst.pack) {
300 if (inst->dst.pack) {
301 if (qir_is_mul(inst))
302 vc4_qpu_disasm_pack_mul(stderr, inst->dst.pack);
303 else
304 vc4_qpu_disasm_pack_a(stderr, inst->dst.pack);
305 }
306 }
307 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
308 fprintf(stderr, ", ");
309 qir_print_reg(c, inst->src[i], false);
310 vc4_qpu_disasm_unpack(stderr, inst->src[i].pack);
311 }
312 }
313
314 void
315 qir_dump(struct vc4_compile *c)
316 {
317 list_for_each_entry(struct qinst, inst, &c->instructions, link) {
318 qir_dump_inst(c, inst);
319 fprintf(stderr, "\n");
320 }
321 }
322
323 struct qreg
324 qir_get_temp(struct vc4_compile *c)
325 {
326 struct qreg reg;
327
328 reg.file = QFILE_TEMP;
329 reg.index = c->num_temps++;
330 reg.pack = 0;
331
332 if (c->num_temps > c->defs_array_size) {
333 uint32_t old_size = c->defs_array_size;
334 c->defs_array_size = MAX2(old_size * 2, 16);
335 c->defs = reralloc(c, c->defs, struct qinst *,
336 c->defs_array_size);
337 memset(&c->defs[old_size], 0,
338 sizeof(c->defs[0]) * (c->defs_array_size - old_size));
339 }
340
341 return reg;
342 }
343
344 struct qinst *
345 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1)
346 {
347 struct qinst *inst = CALLOC_STRUCT(qinst);
348
349 inst->op = op;
350 inst->dst = dst;
351 inst->src = calloc(2, sizeof(inst->src[0]));
352 inst->src[0] = src0;
353 inst->src[1] = src1;
354 inst->cond = QPU_COND_ALWAYS;
355
356 return inst;
357 }
358
359 struct qinst *
360 qir_inst4(enum qop op, struct qreg dst,
361 struct qreg a,
362 struct qreg b,
363 struct qreg c,
364 struct qreg d)
365 {
366 struct qinst *inst = CALLOC_STRUCT(qinst);
367
368 inst->op = op;
369 inst->dst = dst;
370 inst->src = calloc(4, sizeof(*inst->src));
371 inst->src[0] = a;
372 inst->src[1] = b;
373 inst->src[2] = c;
374 inst->src[3] = d;
375
376 return inst;
377 }
378
379 void
380 qir_emit(struct vc4_compile *c, struct qinst *inst)
381 {
382 if (inst->dst.file == QFILE_TEMP)
383 c->defs[inst->dst.index] = inst;
384
385 qir_emit_nodef(c, inst);
386 }
387
388 bool
389 qir_reg_equals(struct qreg a, struct qreg b)
390 {
391 return a.file == b.file && a.index == b.index;
392 }
393
394 struct vc4_compile *
395 qir_compile_init(void)
396 {
397 struct vc4_compile *c = rzalloc(NULL, struct vc4_compile);
398
399 list_inithead(&c->instructions);
400
401 c->output_position_index = -1;
402 c->output_color_index = -1;
403 c->output_point_size_index = -1;
404 c->output_sample_mask_index = -1;
405
406 c->def_ht = _mesa_hash_table_create(c, _mesa_hash_pointer,
407 _mesa_key_pointer_equal);
408
409 return c;
410 }
411
412 void
413 qir_remove_instruction(struct vc4_compile *c, struct qinst *qinst)
414 {
415 if (qinst->dst.file == QFILE_TEMP)
416 c->defs[qinst->dst.index] = NULL;
417
418 list_del(&qinst->link);
419 free(qinst->src);
420 free(qinst);
421 }
422
423 struct qreg
424 qir_follow_movs(struct vc4_compile *c, struct qreg reg)
425 {
426 int pack = reg.pack;
427
428 while (reg.file == QFILE_TEMP &&
429 c->defs[reg.index] &&
430 (c->defs[reg.index]->op == QOP_MOV ||
431 c->defs[reg.index]->op == QOP_FMOV ||
432 c->defs[reg.index]->op == QOP_MMOV)&&
433 !c->defs[reg.index]->dst.pack &&
434 !c->defs[reg.index]->src[0].pack) {
435 reg = c->defs[reg.index]->src[0];
436 }
437
438 reg.pack = pack;
439 return reg;
440 }
441
442 void
443 qir_compile_destroy(struct vc4_compile *c)
444 {
445 while (!list_empty(&c->instructions)) {
446 struct qinst *qinst =
447 (struct qinst *)c->instructions.next;
448 qir_remove_instruction(c, qinst);
449 }
450
451 ralloc_free(c);
452 }
453
454 const char *
455 qir_get_stage_name(enum qstage stage)
456 {
457 static const char *names[] = {
458 [QSTAGE_FRAG] = "FS",
459 [QSTAGE_VERT] = "VS",
460 [QSTAGE_COORD] = "CS",
461 };
462
463 return names[stage];
464 }
465
466 struct qreg
467 qir_uniform(struct vc4_compile *c,
468 enum quniform_contents contents,
469 uint32_t data)
470 {
471 for (int i = 0; i < c->num_uniforms; i++) {
472 if (c->uniform_contents[i] == contents &&
473 c->uniform_data[i] == data) {
474 return qir_reg(QFILE_UNIF, i);
475 }
476 }
477
478 uint32_t uniform = c->num_uniforms++;
479
480 if (uniform >= c->uniform_array_size) {
481 c->uniform_array_size = MAX2(MAX2(16, uniform + 1),
482 c->uniform_array_size * 2);
483
484 c->uniform_data = reralloc(c, c->uniform_data,
485 uint32_t,
486 c->uniform_array_size);
487 c->uniform_contents = reralloc(c, c->uniform_contents,
488 enum quniform_contents,
489 c->uniform_array_size);
490 }
491
492 c->uniform_contents[uniform] = contents;
493 c->uniform_data[uniform] = data;
494
495 return qir_reg(QFILE_UNIF, uniform);
496 }
497
498 void
499 qir_SF(struct vc4_compile *c, struct qreg src)
500 {
501 struct qinst *last_inst = NULL;
502 if (!list_empty(&c->instructions))
503 last_inst = (struct qinst *)c->instructions.prev;
504
505 /* We don't have any way to guess which kind of MOV is implied. */
506 assert(!src.pack);
507
508 if (src.file != QFILE_TEMP ||
509 !c->defs[src.index] ||
510 last_inst != c->defs[src.index]) {
511 last_inst = qir_MOV_dest(c, qir_reg(QFILE_NULL, 0), src);
512 last_inst = (struct qinst *)c->instructions.prev;
513 }
514 last_inst->sf = true;
515 }
516
517 #define OPTPASS(func) \
518 do { \
519 bool stage_progress = func(c); \
520 if (stage_progress) { \
521 progress = true; \
522 if (print_opt_debug) { \
523 fprintf(stderr, \
524 "QIR opt pass %2d: %s progress\n", \
525 pass, #func); \
526 } \
527 qir_validate(c); \
528 } \
529 } while (0)
530
531 void
532 qir_optimize(struct vc4_compile *c)
533 {
534 bool print_opt_debug = false;
535 int pass = 1;
536
537 while (true) {
538 bool progress = false;
539
540 OPTPASS(qir_opt_algebraic);
541 OPTPASS(qir_opt_constant_folding);
542 OPTPASS(qir_opt_copy_propagation);
543 OPTPASS(qir_opt_peephole_sf);
544 OPTPASS(qir_opt_dead_code);
545 OPTPASS(qir_opt_small_immediates);
546 OPTPASS(qir_opt_vpm);
547
548 if (!progress)
549 break;
550
551 pass++;
552 }
553 }