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