ed20b5624a962393dfc153d7cd034a8a963b3e23
[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/simple_list.h"
26 #include "util/ralloc.h"
27
28 #include "vc4_qir.h"
29 #include "vc4_qpu.h"
30
31 struct qir_op_info {
32 const char *name;
33 uint8_t ndst, nsrc;
34 bool has_side_effects;
35 bool multi_instruction;
36 };
37
38 static const struct qir_op_info qir_op_info[] = {
39 [QOP_MOV] = { "mov", 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_FMIN] = { "fmin", 1, 2 },
45 [QOP_FMAX] = { "fmax", 1, 2 },
46 [QOP_FMINABS] = { "fminabs", 1, 2 },
47 [QOP_FMAXABS] = { "fmaxabs", 1, 2 },
48 [QOP_FTOI] = { "ftoi", 1, 1 },
49 [QOP_ITOF] = { "itof", 1, 1 },
50 [QOP_ADD] = { "add", 1, 2 },
51 [QOP_SUB] = { "sub", 1, 2 },
52 [QOP_SHR] = { "shr", 1, 2 },
53 [QOP_ASR] = { "asr", 1, 2 },
54 [QOP_SHL] = { "shl", 1, 2 },
55 [QOP_MIN] = { "min", 1, 2 },
56 [QOP_MAX] = { "max", 1, 2 },
57 [QOP_AND] = { "and", 1, 2 },
58 [QOP_OR] = { "or", 1, 2 },
59 [QOP_XOR] = { "xor", 1, 2 },
60 [QOP_NOT] = { "not", 1, 1 },
61
62 [QOP_SF] = { "sf", 0, 1 },
63 [QOP_SEL_X_0_NS] = { "fsel_x_0_ns", 1, 1, false, true },
64 [QOP_SEL_X_0_NC] = { "fsel_x_0_nc", 1, 1, false, true },
65 [QOP_SEL_X_0_ZS] = { "fsel_x_0_zs", 1, 1, false, true },
66 [QOP_SEL_X_0_ZC] = { "fsel_x_0_zc", 1, 1, false, true },
67 [QOP_SEL_X_Y_NS] = { "fsel_x_y_ns", 1, 2, false, true },
68 [QOP_SEL_X_Y_NC] = { "fsel_x_y_nc", 1, 2, false, true },
69 [QOP_SEL_X_Y_ZS] = { "fsel_x_y_zs", 1, 2, false, true },
70 [QOP_SEL_X_Y_ZC] = { "fsel_x_y_zc", 1, 2, false, true },
71
72 [QOP_RCP] = { "rcp", 1, 1, false, true },
73 [QOP_RSQ] = { "rsq", 1, 1, false, true },
74 [QOP_EXP2] = { "exp2", 1, 2, false, true },
75 [QOP_LOG2] = { "log2", 1, 2, false, true },
76 [QOP_PACK_8888_F] = { "pack_8888_f", 1, 1, false, true },
77 [QOP_PACK_8A_F] = { "pack_8a_f", 1, 2, false, true },
78 [QOP_PACK_8B_F] = { "pack_8b_f", 1, 2, false, true },
79 [QOP_PACK_8C_F] = { "pack_8c_f", 1, 2, false, true },
80 [QOP_PACK_8D_F] = { "pack_8d_f", 1, 2, false, true },
81 [QOP_PACK_SCALED] = { "pack_scaled", 1, 2, false, true },
82 [QOP_TLB_DISCARD_SETUP] = { "discard", 0, 1, true },
83 [QOP_TLB_STENCIL_SETUP] = { "tlb_stencil_setup", 0, 1, true },
84 [QOP_TLB_Z_WRITE] = { "tlb_z", 0, 1, true },
85 [QOP_TLB_COLOR_WRITE] = { "tlb_color", 0, 1, true },
86 [QOP_TLB_COLOR_READ] = { "tlb_color_read", 1, 0 },
87 [QOP_VARY_ADD_C] = { "vary_add_c", 1, 1 },
88
89 [QOP_FRAG_X] = { "frag_x", 1, 0 },
90 [QOP_FRAG_Y] = { "frag_y", 1, 0 },
91 [QOP_FRAG_Z] = { "frag_z", 1, 0 },
92 [QOP_FRAG_W] = { "frag_w", 1, 0 },
93 [QOP_FRAG_REV_FLAG] = { "frag_rev_flag", 1, 0 },
94
95 [QOP_TEX_S] = { "tex_s", 0, 2 },
96 [QOP_TEX_T] = { "tex_t", 0, 2 },
97 [QOP_TEX_R] = { "tex_r", 0, 2 },
98 [QOP_TEX_B] = { "tex_b", 0, 2 },
99 [QOP_TEX_DIRECT] = { "tex_direct", 0, 2 },
100 [QOP_TEX_RESULT] = { "tex_result", 1, 0, true },
101 [QOP_R4_UNPACK_A] = { "r4_unpack_a", 1, 1 },
102 [QOP_R4_UNPACK_B] = { "r4_unpack_b", 1, 1 },
103 [QOP_R4_UNPACK_C] = { "r4_unpack_c", 1, 1 },
104 [QOP_R4_UNPACK_D] = { "r4_unpack_d", 1, 1 },
105 [QOP_UNPACK_8A_F] = { "unpack_8a_f", 1, 1 },
106 [QOP_UNPACK_8B_F] = { "unpack_8b_f", 1, 1 },
107 [QOP_UNPACK_8C_F] = { "unpack_8c_f", 1, 1 },
108 [QOP_UNPACK_8D_F] = { "unpack_8d_f", 1, 1 },
109 [QOP_UNPACK_16A_F] = { "unpack_16a_f", 1, 1 },
110 [QOP_UNPACK_16B_F] = { "unpack_16b_f", 1, 1 },
111 [QOP_UNPACK_8A_I] = { "unpack_8a_i", 1, 1 },
112 [QOP_UNPACK_8B_I] = { "unpack_8b_i", 1, 1 },
113 [QOP_UNPACK_8C_I] = { "unpack_8c_i", 1, 1 },
114 [QOP_UNPACK_8D_I] = { "unpack_8d_i", 1, 1 },
115 [QOP_UNPACK_16A_I] = { "unpack_16a_i", 1, 1 },
116 [QOP_UNPACK_16B_I] = { "unpack_16b_i", 1, 1 },
117 };
118
119 static const char *
120 qir_get_op_name(enum qop qop)
121 {
122 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
123 return qir_op_info[qop].name;
124 else
125 return "???";
126 }
127
128 int
129 qir_get_op_nsrc(enum qop qop)
130 {
131 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
132 return qir_op_info[qop].nsrc;
133 else
134 abort();
135 }
136
137 /**
138 * Returns whether the instruction has any side effects that must be
139 * preserved.
140 */
141 bool
142 qir_has_side_effects(struct vc4_compile *c, struct qinst *inst)
143 {
144 return qir_op_info[inst->op].has_side_effects;
145 }
146
147 bool
148 qir_has_side_effect_reads(struct vc4_compile *c, struct qinst *inst)
149 {
150 /* We can dead-code eliminate varyings, because we only tell the VS
151 * about the live ones at the end. But we have to preserve the
152 * point/line coordinates reads, because they're generated by
153 * fixed-function hardware.
154 */
155 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
156 if (inst->src[i].file == QFILE_VARY &&
157 c->input_semantics[inst->src[i].index].semantic == 0xff) {
158 return true;
159 }
160
161 if (inst->src[i].file == QFILE_VPM)
162 return true;
163 }
164
165 if (inst->dst.file == QFILE_VPM)
166 return true;
167
168 return false;
169 }
170
171 bool
172 qir_is_multi_instruction(struct qinst *inst)
173 {
174 return qir_op_info[inst->op].multi_instruction;
175 }
176
177 bool
178 qir_depends_on_flags(struct qinst *inst)
179 {
180 switch (inst->op) {
181 case QOP_SEL_X_0_NS:
182 case QOP_SEL_X_0_NC:
183 case QOP_SEL_X_0_ZS:
184 case QOP_SEL_X_0_ZC:
185 case QOP_SEL_X_Y_NS:
186 case QOP_SEL_X_Y_NC:
187 case QOP_SEL_X_Y_ZS:
188 case QOP_SEL_X_Y_ZC:
189 return true;
190 default:
191 return false;
192 }
193 }
194
195 bool
196 qir_src_needs_a_file(struct qinst *inst)
197 {
198 switch (inst->op) {
199 case QOP_UNPACK_8A_F:
200 case QOP_UNPACK_8B_F:
201 case QOP_UNPACK_8C_F:
202 case QOP_UNPACK_8D_F:
203 case QOP_UNPACK_16A_F:
204 case QOP_UNPACK_16B_F:
205 case QOP_UNPACK_8A_I:
206 case QOP_UNPACK_8B_I:
207 case QOP_UNPACK_8C_I:
208 case QOP_UNPACK_8D_I:
209 case QOP_UNPACK_16A_I:
210 case QOP_UNPACK_16B_I:
211 return true;
212 default:
213 return false;
214 }
215 }
216
217 bool
218 qir_writes_r4(struct qinst *inst)
219 {
220 switch (inst->op) {
221 case QOP_TEX_RESULT:
222 case QOP_TLB_COLOR_READ:
223 case QOP_RCP:
224 case QOP_RSQ:
225 case QOP_EXP2:
226 case QOP_LOG2:
227 return true;
228 default:
229 return false;
230 }
231 }
232
233 bool
234 qir_reads_r4(struct qinst *inst)
235 {
236 switch (inst->op) {
237 case QOP_R4_UNPACK_A:
238 case QOP_R4_UNPACK_B:
239 case QOP_R4_UNPACK_C:
240 case QOP_R4_UNPACK_D:
241 return true;
242 default:
243 return false;
244 }
245 }
246
247 static void
248 qir_print_reg(struct vc4_compile *c, struct qreg reg)
249 {
250 static const char *files[] = {
251 [QFILE_TEMP] = "t",
252 [QFILE_VARY] = "v",
253 [QFILE_UNIF] = "u",
254 };
255
256 if (reg.file == QFILE_NULL) {
257 fprintf(stderr, "null");
258 } else if (reg.file == QFILE_SMALL_IMM) {
259 if ((int)reg.index >= -16 && (int)reg.index <= 15)
260 fprintf(stderr, "%d", reg.index);
261 else
262 fprintf(stderr, "%f", uif(reg.index));
263 } else if (reg.file == QFILE_VPM) {
264 fprintf(stderr, "vpm");
265 } else {
266 fprintf(stderr, "%s%d", files[reg.file], reg.index);
267 }
268
269 if (reg.file == QFILE_UNIF &&
270 c->uniform_contents[reg.index] == QUNIFORM_CONSTANT) {
271 fprintf(stderr, " (0x%08x / %f)",
272 c->uniform_data[reg.index],
273 uif(c->uniform_data[reg.index]));
274 }
275 }
276
277 void
278 qir_dump_inst(struct vc4_compile *c, struct qinst *inst)
279 {
280 fprintf(stderr, "%s ", qir_get_op_name(inst->op));
281
282 qir_print_reg(c, inst->dst);
283 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
284 fprintf(stderr, ", ");
285 qir_print_reg(c, inst->src[i]);
286 }
287 }
288
289 void
290 qir_dump(struct vc4_compile *c)
291 {
292 struct simple_node *node;
293
294 foreach(node, &c->instructions) {
295 struct qinst *inst = (struct qinst *)node;
296 qir_dump_inst(c, inst);
297 fprintf(stderr, "\n");
298 }
299 }
300
301 struct qreg
302 qir_get_temp(struct vc4_compile *c)
303 {
304 struct qreg reg;
305
306 reg.file = QFILE_TEMP;
307 reg.index = c->num_temps++;
308
309 return reg;
310 }
311
312 struct qinst *
313 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1)
314 {
315 struct qinst *inst = CALLOC_STRUCT(qinst);
316
317 inst->op = op;
318 inst->dst = dst;
319 inst->src = calloc(2, sizeof(inst->src[0]));
320 inst->src[0] = src0;
321 inst->src[1] = src1;
322
323 return inst;
324 }
325
326 struct qinst *
327 qir_inst4(enum qop op, struct qreg dst,
328 struct qreg a,
329 struct qreg b,
330 struct qreg c,
331 struct qreg d)
332 {
333 struct qinst *inst = CALLOC_STRUCT(qinst);
334
335 inst->op = op;
336 inst->dst = dst;
337 inst->src = calloc(4, sizeof(*inst->src));
338 inst->src[0] = a;
339 inst->src[1] = b;
340 inst->src[2] = c;
341 inst->src[3] = d;
342
343 return inst;
344 }
345
346 void
347 qir_emit(struct vc4_compile *c, struct qinst *inst)
348 {
349 insert_at_tail(&c->instructions, &inst->link);
350 }
351
352 bool
353 qir_reg_equals(struct qreg a, struct qreg b)
354 {
355 return a.file == b.file && a.index == b.index;
356 }
357
358 struct vc4_compile *
359 qir_compile_init(void)
360 {
361 struct vc4_compile *c = rzalloc(NULL, struct vc4_compile);
362
363 make_empty_list(&c->instructions);
364
365 c->output_position_index = -1;
366 c->output_clipvertex_index = -1;
367 c->output_color_index = -1;
368 c->output_point_size_index = -1;
369
370 return c;
371 }
372
373 void
374 qir_remove_instruction(struct qinst *qinst)
375 {
376 remove_from_list(&qinst->link);
377 free(qinst->src);
378 free(qinst);
379 }
380
381 struct qreg
382 qir_follow_movs(struct qinst **defs, struct qreg reg)
383 {
384 while (reg.file == QFILE_TEMP && defs[reg.index]->op == QOP_MOV)
385 reg = defs[reg.index]->src[0];
386
387 return reg;
388 }
389
390 void
391 qir_compile_destroy(struct vc4_compile *c)
392 {
393 while (!is_empty_list(&c->instructions)) {
394 struct qinst *qinst =
395 (struct qinst *)first_elem(&c->instructions);
396 qir_remove_instruction(qinst);
397 }
398
399 ralloc_free(c);
400 }
401
402 const char *
403 qir_get_stage_name(enum qstage stage)
404 {
405 static const char *names[] = {
406 [QSTAGE_FRAG] = "FS",
407 [QSTAGE_VERT] = "VS",
408 [QSTAGE_COORD] = "CS",
409 };
410
411 return names[stage];
412 }
413
414 #define OPTPASS(func) \
415 do { \
416 bool stage_progress = func(c); \
417 if (stage_progress) { \
418 progress = true; \
419 if (print_opt_debug) { \
420 fprintf(stderr, \
421 "QIR opt pass %2d: %s progress\n", \
422 pass, #func); \
423 } \
424 } \
425 } while (0)
426
427 void
428 qir_optimize(struct vc4_compile *c)
429 {
430 bool print_opt_debug = false;
431 int pass = 1;
432
433 while (true) {
434 bool progress = false;
435
436 OPTPASS(qir_opt_algebraic);
437 OPTPASS(qir_opt_cse);
438 OPTPASS(qir_opt_copy_propagation);
439 OPTPASS(qir_opt_dead_code);
440 OPTPASS(qir_opt_small_immediates);
441 OPTPASS(qir_opt_vpm_writes);
442
443 if (!progress)
444 break;
445
446 pass++;
447 }
448 }