vc4: Flag the last thread switch in the program as the last.
[mesa.git] / src / gallium / drivers / vc4 / vc4_program.c
1 /*
2 * Copyright (c) 2014 Scott Mansell
3 * Copyright © 2014 Broadcom
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
25 #include <inttypes.h>
26 #include "util/u_format.h"
27 #include "util/u_hash.h"
28 #include "util/u_math.h"
29 #include "util/u_memory.h"
30 #include "util/ralloc.h"
31 #include "util/hash_table.h"
32 #include "tgsi/tgsi_dump.h"
33 #include "tgsi/tgsi_parse.h"
34 #include "compiler/nir/nir.h"
35 #include "compiler/nir/nir_builder.h"
36 #include "nir/tgsi_to_nir.h"
37 #include "vc4_context.h"
38 #include "vc4_qpu.h"
39 #include "vc4_qir.h"
40 #include "mesa/state_tracker/st_glsl_types.h"
41
42 static struct qreg
43 ntq_get_src(struct vc4_compile *c, nir_src src, int i);
44 static void
45 ntq_emit_cf_list(struct vc4_compile *c, struct exec_list *list);
46
47 static void
48 resize_qreg_array(struct vc4_compile *c,
49 struct qreg **regs,
50 uint32_t *size,
51 uint32_t decl_size)
52 {
53 if (*size >= decl_size)
54 return;
55
56 uint32_t old_size = *size;
57 *size = MAX2(*size * 2, decl_size);
58 *regs = reralloc(c, *regs, struct qreg, *size);
59 if (!*regs) {
60 fprintf(stderr, "Malloc failure\n");
61 abort();
62 }
63
64 for (uint32_t i = old_size; i < *size; i++)
65 (*regs)[i] = c->undef;
66 }
67
68 static void
69 ntq_emit_thrsw(struct vc4_compile *c)
70 {
71 if (!c->fs_threaded)
72 return;
73
74 /* Always thread switch after each texture operation for now.
75 *
76 * We could do better by batching a bunch of texture fetches up and
77 * then doing one thread switch and collecting all their results
78 * afterward.
79 */
80 qir_emit_nondef(c, qir_inst(QOP_THRSW, c->undef,
81 c->undef, c->undef));
82 c->last_thrsw_at_top_level = (c->execute.file == QFILE_NULL);
83 }
84
85 static struct qreg
86 indirect_uniform_load(struct vc4_compile *c, nir_intrinsic_instr *intr)
87 {
88 struct qreg indirect_offset = ntq_get_src(c, intr->src[0], 0);
89 uint32_t offset = nir_intrinsic_base(intr);
90 struct vc4_compiler_ubo_range *range = NULL;
91 unsigned i;
92 for (i = 0; i < c->num_uniform_ranges; i++) {
93 range = &c->ubo_ranges[i];
94 if (offset >= range->src_offset &&
95 offset < range->src_offset + range->size) {
96 break;
97 }
98 }
99 /* The driver-location-based offset always has to be within a declared
100 * uniform range.
101 */
102 assert(range);
103 if (!range->used) {
104 range->used = true;
105 range->dst_offset = c->next_ubo_dst_offset;
106 c->next_ubo_dst_offset += range->size;
107 c->num_ubo_ranges++;
108 }
109
110 offset -= range->src_offset;
111
112 /* Adjust for where we stored the TGSI register base. */
113 indirect_offset = qir_ADD(c, indirect_offset,
114 qir_uniform_ui(c, (range->dst_offset +
115 offset)));
116
117 /* Clamp to [0, array size). Note that MIN/MAX are signed. */
118 indirect_offset = qir_MAX(c, indirect_offset, qir_uniform_ui(c, 0));
119 indirect_offset = qir_MIN(c, indirect_offset,
120 qir_uniform_ui(c, (range->dst_offset +
121 range->size - 4)));
122
123 qir_TEX_DIRECT(c, indirect_offset, qir_uniform(c, QUNIFORM_UBO_ADDR, 0));
124 c->num_texture_samples++;
125
126 ntq_emit_thrsw(c);
127
128 return qir_TEX_RESULT(c);
129 }
130
131 nir_ssa_def *
132 vc4_nir_get_swizzled_channel(nir_builder *b, nir_ssa_def **srcs, int swiz)
133 {
134 switch (swiz) {
135 default:
136 case PIPE_SWIZZLE_NONE:
137 fprintf(stderr, "warning: unknown swizzle\n");
138 /* FALLTHROUGH */
139 case PIPE_SWIZZLE_0:
140 return nir_imm_float(b, 0.0);
141 case PIPE_SWIZZLE_1:
142 return nir_imm_float(b, 1.0);
143 case PIPE_SWIZZLE_X:
144 case PIPE_SWIZZLE_Y:
145 case PIPE_SWIZZLE_Z:
146 case PIPE_SWIZZLE_W:
147 return srcs[swiz];
148 }
149 }
150
151 static struct qreg *
152 ntq_init_ssa_def(struct vc4_compile *c, nir_ssa_def *def)
153 {
154 struct qreg *qregs = ralloc_array(c->def_ht, struct qreg,
155 def->num_components);
156 _mesa_hash_table_insert(c->def_ht, def, qregs);
157 return qregs;
158 }
159
160 /**
161 * This function is responsible for getting QIR results into the associated
162 * storage for a NIR instruction.
163 *
164 * If it's a NIR SSA def, then we just set the associated hash table entry to
165 * the new result.
166 *
167 * If it's a NIR reg, then we need to update the existing qreg assigned to the
168 * NIR destination with the incoming value. To do that without introducing
169 * new MOVs, we require that the incoming qreg either be a uniform, or be
170 * SSA-defined by the previous QIR instruction in the block and rewritable by
171 * this function. That lets us sneak ahead and insert the SF flag beforehand
172 * (knowing that the previous instruction doesn't depend on flags) and rewrite
173 * its destination to be the NIR reg's destination
174 */
175 static void
176 ntq_store_dest(struct vc4_compile *c, nir_dest *dest, int chan,
177 struct qreg result)
178 {
179 struct qinst *last_inst = NULL;
180 if (!list_empty(&c->cur_block->instructions))
181 last_inst = (struct qinst *)c->cur_block->instructions.prev;
182
183 assert(result.file == QFILE_UNIF ||
184 (result.file == QFILE_TEMP &&
185 last_inst && last_inst == c->defs[result.index]));
186
187 if (dest->is_ssa) {
188 assert(chan < dest->ssa.num_components);
189
190 struct qreg *qregs;
191 struct hash_entry *entry =
192 _mesa_hash_table_search(c->def_ht, &dest->ssa);
193
194 if (entry)
195 qregs = entry->data;
196 else
197 qregs = ntq_init_ssa_def(c, &dest->ssa);
198
199 qregs[chan] = result;
200 } else {
201 nir_register *reg = dest->reg.reg;
202 assert(dest->reg.base_offset == 0);
203 assert(reg->num_array_elems == 0);
204 struct hash_entry *entry =
205 _mesa_hash_table_search(c->def_ht, reg);
206 struct qreg *qregs = entry->data;
207
208 /* Insert a MOV if the source wasn't an SSA def in the
209 * previous instruction.
210 */
211 if (result.file == QFILE_UNIF) {
212 result = qir_MOV(c, result);
213 last_inst = c->defs[result.index];
214 }
215
216 /* We know they're both temps, so just rewrite index. */
217 c->defs[last_inst->dst.index] = NULL;
218 last_inst->dst.index = qregs[chan].index;
219
220 /* If we're in control flow, then make this update of the reg
221 * conditional on the execution mask.
222 */
223 if (c->execute.file != QFILE_NULL) {
224 last_inst->dst.index = qregs[chan].index;
225
226 /* Set the flags to the current exec mask. To insert
227 * the SF, we temporarily remove our SSA instruction.
228 */
229 list_del(&last_inst->link);
230 qir_SF(c, c->execute);
231 list_addtail(&last_inst->link,
232 &c->cur_block->instructions);
233
234 last_inst->cond = QPU_COND_ZS;
235 last_inst->cond_is_exec_mask = true;
236 }
237 }
238 }
239
240 static struct qreg *
241 ntq_get_dest(struct vc4_compile *c, nir_dest *dest)
242 {
243 if (dest->is_ssa) {
244 struct qreg *qregs = ntq_init_ssa_def(c, &dest->ssa);
245 for (int i = 0; i < dest->ssa.num_components; i++)
246 qregs[i] = c->undef;
247 return qregs;
248 } else {
249 nir_register *reg = dest->reg.reg;
250 assert(dest->reg.base_offset == 0);
251 assert(reg->num_array_elems == 0);
252 struct hash_entry *entry =
253 _mesa_hash_table_search(c->def_ht, reg);
254 return entry->data;
255 }
256 }
257
258 static struct qreg
259 ntq_get_src(struct vc4_compile *c, nir_src src, int i)
260 {
261 struct hash_entry *entry;
262 if (src.is_ssa) {
263 entry = _mesa_hash_table_search(c->def_ht, src.ssa);
264 assert(i < src.ssa->num_components);
265 } else {
266 nir_register *reg = src.reg.reg;
267 entry = _mesa_hash_table_search(c->def_ht, reg);
268 assert(reg->num_array_elems == 0);
269 assert(src.reg.base_offset == 0);
270 assert(i < reg->num_components);
271 }
272
273 struct qreg *qregs = entry->data;
274 return qregs[i];
275 }
276
277 static struct qreg
278 ntq_get_alu_src(struct vc4_compile *c, nir_alu_instr *instr,
279 unsigned src)
280 {
281 assert(util_is_power_of_two(instr->dest.write_mask));
282 unsigned chan = ffs(instr->dest.write_mask) - 1;
283 struct qreg r = ntq_get_src(c, instr->src[src].src,
284 instr->src[src].swizzle[chan]);
285
286 assert(!instr->src[src].abs);
287 assert(!instr->src[src].negate);
288
289 return r;
290 };
291
292 static inline struct qreg
293 qir_SAT(struct vc4_compile *c, struct qreg val)
294 {
295 return qir_FMAX(c,
296 qir_FMIN(c, val, qir_uniform_f(c, 1.0)),
297 qir_uniform_f(c, 0.0));
298 }
299
300 static struct qreg
301 ntq_rcp(struct vc4_compile *c, struct qreg x)
302 {
303 struct qreg r = qir_RCP(c, x);
304
305 /* Apply a Newton-Raphson step to improve the accuracy. */
306 r = qir_FMUL(c, r, qir_FSUB(c,
307 qir_uniform_f(c, 2.0),
308 qir_FMUL(c, x, r)));
309
310 return r;
311 }
312
313 static struct qreg
314 ntq_rsq(struct vc4_compile *c, struct qreg x)
315 {
316 struct qreg r = qir_RSQ(c, x);
317
318 /* Apply a Newton-Raphson step to improve the accuracy. */
319 r = qir_FMUL(c, r, qir_FSUB(c,
320 qir_uniform_f(c, 1.5),
321 qir_FMUL(c,
322 qir_uniform_f(c, 0.5),
323 qir_FMUL(c, x,
324 qir_FMUL(c, r, r)))));
325
326 return r;
327 }
328
329 static struct qreg
330 ntq_umul(struct vc4_compile *c, struct qreg src0, struct qreg src1)
331 {
332 struct qreg src0_hi = qir_SHR(c, src0,
333 qir_uniform_ui(c, 24));
334 struct qreg src1_hi = qir_SHR(c, src1,
335 qir_uniform_ui(c, 24));
336
337 struct qreg hilo = qir_MUL24(c, src0_hi, src1);
338 struct qreg lohi = qir_MUL24(c, src0, src1_hi);
339 struct qreg lolo = qir_MUL24(c, src0, src1);
340
341 return qir_ADD(c, lolo, qir_SHL(c,
342 qir_ADD(c, hilo, lohi),
343 qir_uniform_ui(c, 24)));
344 }
345
346 static struct qreg
347 ntq_scale_depth_texture(struct vc4_compile *c, struct qreg src)
348 {
349 struct qreg depthf = qir_ITOF(c, qir_SHR(c, src,
350 qir_uniform_ui(c, 8)));
351 return qir_FMUL(c, depthf, qir_uniform_f(c, 1.0f/0xffffff));
352 }
353
354 /**
355 * Emits a lowered TXF_MS from an MSAA texture.
356 *
357 * The addressing math has been lowered in NIR, and now we just need to read
358 * it like a UBO.
359 */
360 static void
361 ntq_emit_txf(struct vc4_compile *c, nir_tex_instr *instr)
362 {
363 uint32_t tile_width = 32;
364 uint32_t tile_height = 32;
365 uint32_t tile_size = (tile_height * tile_width *
366 VC4_MAX_SAMPLES * sizeof(uint32_t));
367
368 unsigned unit = instr->texture_index;
369 uint32_t w = align(c->key->tex[unit].msaa_width, tile_width);
370 uint32_t w_tiles = w / tile_width;
371 uint32_t h = align(c->key->tex[unit].msaa_height, tile_height);
372 uint32_t h_tiles = h / tile_height;
373 uint32_t size = w_tiles * h_tiles * tile_size;
374
375 struct qreg addr;
376 assert(instr->num_srcs == 1);
377 assert(instr->src[0].src_type == nir_tex_src_coord);
378 addr = ntq_get_src(c, instr->src[0].src, 0);
379
380 /* Perform the clamping required by kernel validation. */
381 addr = qir_MAX(c, addr, qir_uniform_ui(c, 0));
382 addr = qir_MIN(c, addr, qir_uniform_ui(c, size - 4));
383
384 qir_TEX_DIRECT(c, addr, qir_uniform(c, QUNIFORM_TEXTURE_MSAA_ADDR, unit));
385
386 ntq_emit_thrsw(c);
387
388 struct qreg tex = qir_TEX_RESULT(c);
389 c->num_texture_samples++;
390
391 enum pipe_format format = c->key->tex[unit].format;
392 if (util_format_is_depth_or_stencil(format)) {
393 struct qreg scaled = ntq_scale_depth_texture(c, tex);
394 for (int i = 0; i < 4; i++)
395 ntq_store_dest(c, &instr->dest, i, qir_MOV(c, scaled));
396 } else {
397 for (int i = 0; i < 4; i++)
398 ntq_store_dest(c, &instr->dest, i,
399 qir_UNPACK_8_F(c, tex, i));
400 }
401 }
402
403 static void
404 ntq_emit_tex(struct vc4_compile *c, nir_tex_instr *instr)
405 {
406 struct qreg s, t, r, lod, compare;
407 bool is_txb = false, is_txl = false;
408 unsigned unit = instr->texture_index;
409
410 if (instr->op == nir_texop_txf) {
411 ntq_emit_txf(c, instr);
412 return;
413 }
414
415 for (unsigned i = 0; i < instr->num_srcs; i++) {
416 switch (instr->src[i].src_type) {
417 case nir_tex_src_coord:
418 s = ntq_get_src(c, instr->src[i].src, 0);
419 if (instr->sampler_dim == GLSL_SAMPLER_DIM_1D)
420 t = qir_uniform_f(c, 0.5);
421 else
422 t = ntq_get_src(c, instr->src[i].src, 1);
423 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE)
424 r = ntq_get_src(c, instr->src[i].src, 2);
425 break;
426 case nir_tex_src_bias:
427 lod = ntq_get_src(c, instr->src[i].src, 0);
428 is_txb = true;
429 break;
430 case nir_tex_src_lod:
431 lod = ntq_get_src(c, instr->src[i].src, 0);
432 is_txl = true;
433 break;
434 case nir_tex_src_comparitor:
435 compare = ntq_get_src(c, instr->src[i].src, 0);
436 break;
437 default:
438 unreachable("unknown texture source");
439 }
440 }
441
442 if (c->stage != QSTAGE_FRAG && !is_txl) {
443 /* From the GLSL 1.20 spec:
444 *
445 * "If it is mip-mapped and running on the vertex shader,
446 * then the base texture is used."
447 */
448 is_txl = true;
449 lod = qir_uniform_ui(c, 0);
450 }
451
452 if (c->key->tex[unit].force_first_level) {
453 lod = qir_uniform(c, QUNIFORM_TEXTURE_FIRST_LEVEL, unit);
454 is_txl = true;
455 is_txb = false;
456 }
457
458 struct qreg texture_u[] = {
459 qir_uniform(c, QUNIFORM_TEXTURE_CONFIG_P0, unit),
460 qir_uniform(c, QUNIFORM_TEXTURE_CONFIG_P1, unit),
461 qir_uniform(c, QUNIFORM_CONSTANT, 0),
462 qir_uniform(c, QUNIFORM_CONSTANT, 0),
463 };
464 uint32_t next_texture_u = 0;
465
466 /* There is no native support for GL texture rectangle coordinates, so
467 * we have to rescale from ([0, width], [0, height]) to ([0, 1], [0,
468 * 1]).
469 */
470 if (instr->sampler_dim == GLSL_SAMPLER_DIM_RECT) {
471 s = qir_FMUL(c, s,
472 qir_uniform(c, QUNIFORM_TEXRECT_SCALE_X, unit));
473 t = qir_FMUL(c, t,
474 qir_uniform(c, QUNIFORM_TEXRECT_SCALE_Y, unit));
475 }
476
477 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE || is_txl) {
478 texture_u[2] = qir_uniform(c, QUNIFORM_TEXTURE_CONFIG_P2,
479 unit | (is_txl << 16));
480 }
481
482 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
483 qir_TEX_R(c, r, texture_u[next_texture_u++]);
484 } else if (c->key->tex[unit].wrap_s == PIPE_TEX_WRAP_CLAMP_TO_BORDER ||
485 c->key->tex[unit].wrap_s == PIPE_TEX_WRAP_CLAMP ||
486 c->key->tex[unit].wrap_t == PIPE_TEX_WRAP_CLAMP_TO_BORDER ||
487 c->key->tex[unit].wrap_t == PIPE_TEX_WRAP_CLAMP) {
488 qir_TEX_R(c, qir_uniform(c, QUNIFORM_TEXTURE_BORDER_COLOR, unit),
489 texture_u[next_texture_u++]);
490 }
491
492 if (c->key->tex[unit].wrap_s == PIPE_TEX_WRAP_CLAMP) {
493 s = qir_SAT(c, s);
494 }
495
496 if (c->key->tex[unit].wrap_t == PIPE_TEX_WRAP_CLAMP) {
497 t = qir_SAT(c, t);
498 }
499
500 qir_TEX_T(c, t, texture_u[next_texture_u++]);
501
502 if (is_txl || is_txb)
503 qir_TEX_B(c, lod, texture_u[next_texture_u++]);
504
505 qir_TEX_S(c, s, texture_u[next_texture_u++]);
506
507 c->num_texture_samples++;
508
509 ntq_emit_thrsw(c);
510
511 struct qreg tex = qir_TEX_RESULT(c);
512
513 enum pipe_format format = c->key->tex[unit].format;
514
515 struct qreg *dest = ntq_get_dest(c, &instr->dest);
516 if (util_format_is_depth_or_stencil(format)) {
517 struct qreg normalized = ntq_scale_depth_texture(c, tex);
518 struct qreg depth_output;
519
520 struct qreg u0 = qir_uniform_f(c, 0.0f);
521 struct qreg u1 = qir_uniform_f(c, 1.0f);
522 if (c->key->tex[unit].compare_mode) {
523 /* From the GL_ARB_shadow spec:
524 *
525 * "Let Dt (D subscript t) be the depth texture
526 * value, in the range [0, 1]. Let R be the
527 * interpolated texture coordinate clamped to the
528 * range [0, 1]."
529 */
530 compare = qir_SAT(c, compare);
531
532 switch (c->key->tex[unit].compare_func) {
533 case PIPE_FUNC_NEVER:
534 depth_output = qir_uniform_f(c, 0.0f);
535 break;
536 case PIPE_FUNC_ALWAYS:
537 depth_output = u1;
538 break;
539 case PIPE_FUNC_EQUAL:
540 qir_SF(c, qir_FSUB(c, compare, normalized));
541 depth_output = qir_SEL(c, QPU_COND_ZS, u1, u0);
542 break;
543 case PIPE_FUNC_NOTEQUAL:
544 qir_SF(c, qir_FSUB(c, compare, normalized));
545 depth_output = qir_SEL(c, QPU_COND_ZC, u1, u0);
546 break;
547 case PIPE_FUNC_GREATER:
548 qir_SF(c, qir_FSUB(c, compare, normalized));
549 depth_output = qir_SEL(c, QPU_COND_NC, u1, u0);
550 break;
551 case PIPE_FUNC_GEQUAL:
552 qir_SF(c, qir_FSUB(c, normalized, compare));
553 depth_output = qir_SEL(c, QPU_COND_NS, u1, u0);
554 break;
555 case PIPE_FUNC_LESS:
556 qir_SF(c, qir_FSUB(c, compare, normalized));
557 depth_output = qir_SEL(c, QPU_COND_NS, u1, u0);
558 break;
559 case PIPE_FUNC_LEQUAL:
560 qir_SF(c, qir_FSUB(c, normalized, compare));
561 depth_output = qir_SEL(c, QPU_COND_NC, u1, u0);
562 break;
563 }
564 } else {
565 depth_output = normalized;
566 }
567
568 for (int i = 0; i < 4; i++)
569 dest[i] = depth_output;
570 } else {
571 for (int i = 0; i < 4; i++)
572 dest[i] = qir_UNPACK_8_F(c, tex, i);
573 }
574 }
575
576 /**
577 * Computes x - floor(x), which is tricky because our FTOI truncates (rounds
578 * to zero).
579 */
580 static struct qreg
581 ntq_ffract(struct vc4_compile *c, struct qreg src)
582 {
583 struct qreg trunc = qir_ITOF(c, qir_FTOI(c, src));
584 struct qreg diff = qir_FSUB(c, src, trunc);
585 qir_SF(c, diff);
586 return qir_MOV(c, qir_SEL(c, QPU_COND_NS,
587 qir_FADD(c, diff, qir_uniform_f(c, 1.0)),
588 diff));
589 }
590
591 /**
592 * Computes floor(x), which is tricky because our FTOI truncates (rounds to
593 * zero).
594 */
595 static struct qreg
596 ntq_ffloor(struct vc4_compile *c, struct qreg src)
597 {
598 struct qreg trunc = qir_ITOF(c, qir_FTOI(c, src));
599
600 /* This will be < 0 if we truncated and the truncation was of a value
601 * that was < 0 in the first place.
602 */
603 qir_SF(c, qir_FSUB(c, src, trunc));
604
605 return qir_MOV(c, qir_SEL(c, QPU_COND_NS,
606 qir_FSUB(c, trunc, qir_uniform_f(c, 1.0)),
607 trunc));
608 }
609
610 /**
611 * Computes ceil(x), which is tricky because our FTOI truncates (rounds to
612 * zero).
613 */
614 static struct qreg
615 ntq_fceil(struct vc4_compile *c, struct qreg src)
616 {
617 struct qreg trunc = qir_ITOF(c, qir_FTOI(c, src));
618
619 /* This will be < 0 if we truncated and the truncation was of a value
620 * that was > 0 in the first place.
621 */
622 qir_SF(c, qir_FSUB(c, trunc, src));
623
624 return qir_MOV(c, qir_SEL(c, QPU_COND_NS,
625 qir_FADD(c, trunc, qir_uniform_f(c, 1.0)),
626 trunc));
627 }
628
629 static struct qreg
630 ntq_fsin(struct vc4_compile *c, struct qreg src)
631 {
632 float coeff[] = {
633 -2.0 * M_PI,
634 pow(2.0 * M_PI, 3) / (3 * 2 * 1),
635 -pow(2.0 * M_PI, 5) / (5 * 4 * 3 * 2 * 1),
636 pow(2.0 * M_PI, 7) / (7 * 6 * 5 * 4 * 3 * 2 * 1),
637 -pow(2.0 * M_PI, 9) / (9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1),
638 };
639
640 struct qreg scaled_x =
641 qir_FMUL(c,
642 src,
643 qir_uniform_f(c, 1.0 / (M_PI * 2.0)));
644
645 struct qreg x = qir_FADD(c,
646 ntq_ffract(c, scaled_x),
647 qir_uniform_f(c, -0.5));
648 struct qreg x2 = qir_FMUL(c, x, x);
649 struct qreg sum = qir_FMUL(c, x, qir_uniform_f(c, coeff[0]));
650 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
651 x = qir_FMUL(c, x, x2);
652 sum = qir_FADD(c,
653 sum,
654 qir_FMUL(c,
655 x,
656 qir_uniform_f(c, coeff[i])));
657 }
658 return sum;
659 }
660
661 static struct qreg
662 ntq_fcos(struct vc4_compile *c, struct qreg src)
663 {
664 float coeff[] = {
665 -1.0f,
666 pow(2.0 * M_PI, 2) / (2 * 1),
667 -pow(2.0 * M_PI, 4) / (4 * 3 * 2 * 1),
668 pow(2.0 * M_PI, 6) / (6 * 5 * 4 * 3 * 2 * 1),
669 -pow(2.0 * M_PI, 8) / (8 * 7 * 6 * 5 * 4 * 3 * 2 * 1),
670 pow(2.0 * M_PI, 10) / (10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1),
671 };
672
673 struct qreg scaled_x =
674 qir_FMUL(c, src,
675 qir_uniform_f(c, 1.0f / (M_PI * 2.0f)));
676 struct qreg x_frac = qir_FADD(c,
677 ntq_ffract(c, scaled_x),
678 qir_uniform_f(c, -0.5));
679
680 struct qreg sum = qir_uniform_f(c, coeff[0]);
681 struct qreg x2 = qir_FMUL(c, x_frac, x_frac);
682 struct qreg x = x2; /* Current x^2, x^4, or x^6 */
683 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
684 if (i != 1)
685 x = qir_FMUL(c, x, x2);
686
687 struct qreg mul = qir_FMUL(c,
688 x,
689 qir_uniform_f(c, coeff[i]));
690 if (i == 0)
691 sum = mul;
692 else
693 sum = qir_FADD(c, sum, mul);
694 }
695 return sum;
696 }
697
698 static struct qreg
699 ntq_fsign(struct vc4_compile *c, struct qreg src)
700 {
701 struct qreg t = qir_get_temp(c);
702
703 qir_SF(c, src);
704 qir_MOV_dest(c, t, qir_uniform_f(c, 0.0));
705 qir_MOV_dest(c, t, qir_uniform_f(c, 1.0))->cond = QPU_COND_ZC;
706 qir_MOV_dest(c, t, qir_uniform_f(c, -1.0))->cond = QPU_COND_NS;
707 return qir_MOV(c, t);
708 }
709
710 static void
711 emit_vertex_input(struct vc4_compile *c, int attr)
712 {
713 enum pipe_format format = c->vs_key->attr_formats[attr];
714 uint32_t attr_size = util_format_get_blocksize(format);
715
716 c->vattr_sizes[attr] = align(attr_size, 4);
717 for (int i = 0; i < align(attr_size, 4) / 4; i++) {
718 c->inputs[attr * 4 + i] =
719 qir_MOV(c, qir_reg(QFILE_VPM, attr * 4 + i));
720 c->num_inputs++;
721 }
722 }
723
724 static void
725 emit_fragcoord_input(struct vc4_compile *c, int attr)
726 {
727 c->inputs[attr * 4 + 0] = qir_ITOF(c, qir_reg(QFILE_FRAG_X, 0));
728 c->inputs[attr * 4 + 1] = qir_ITOF(c, qir_reg(QFILE_FRAG_Y, 0));
729 c->inputs[attr * 4 + 2] =
730 qir_FMUL(c,
731 qir_ITOF(c, qir_FRAG_Z(c)),
732 qir_uniform_f(c, 1.0 / 0xffffff));
733 c->inputs[attr * 4 + 3] = qir_RCP(c, qir_FRAG_W(c));
734 }
735
736 static struct qreg
737 emit_fragment_varying(struct vc4_compile *c, gl_varying_slot slot,
738 uint8_t swizzle)
739 {
740 uint32_t i = c->num_input_slots++;
741 struct qreg vary = {
742 QFILE_VARY,
743 i
744 };
745
746 if (c->num_input_slots >= c->input_slots_array_size) {
747 c->input_slots_array_size =
748 MAX2(4, c->input_slots_array_size * 2);
749
750 c->input_slots = reralloc(c, c->input_slots,
751 struct vc4_varying_slot,
752 c->input_slots_array_size);
753 }
754
755 c->input_slots[i].slot = slot;
756 c->input_slots[i].swizzle = swizzle;
757
758 return qir_VARY_ADD_C(c, qir_FMUL(c, vary, qir_FRAG_W(c)));
759 }
760
761 static void
762 emit_fragment_input(struct vc4_compile *c, int attr, gl_varying_slot slot)
763 {
764 for (int i = 0; i < 4; i++) {
765 c->inputs[attr * 4 + i] =
766 emit_fragment_varying(c, slot, i);
767 c->num_inputs++;
768 }
769 }
770
771 static void
772 add_output(struct vc4_compile *c,
773 uint32_t decl_offset,
774 uint8_t slot,
775 uint8_t swizzle)
776 {
777 uint32_t old_array_size = c->outputs_array_size;
778 resize_qreg_array(c, &c->outputs, &c->outputs_array_size,
779 decl_offset + 1);
780
781 if (old_array_size != c->outputs_array_size) {
782 c->output_slots = reralloc(c,
783 c->output_slots,
784 struct vc4_varying_slot,
785 c->outputs_array_size);
786 }
787
788 c->output_slots[decl_offset].slot = slot;
789 c->output_slots[decl_offset].swizzle = swizzle;
790 }
791
792 static void
793 declare_uniform_range(struct vc4_compile *c, uint32_t start, uint32_t size)
794 {
795 unsigned array_id = c->num_uniform_ranges++;
796 if (array_id >= c->ubo_ranges_array_size) {
797 c->ubo_ranges_array_size = MAX2(c->ubo_ranges_array_size * 2,
798 array_id + 1);
799 c->ubo_ranges = reralloc(c, c->ubo_ranges,
800 struct vc4_compiler_ubo_range,
801 c->ubo_ranges_array_size);
802 }
803
804 c->ubo_ranges[array_id].dst_offset = 0;
805 c->ubo_ranges[array_id].src_offset = start;
806 c->ubo_ranges[array_id].size = size;
807 c->ubo_ranges[array_id].used = false;
808 }
809
810 static bool
811 ntq_src_is_only_ssa_def_user(nir_src *src)
812 {
813 if (!src->is_ssa)
814 return false;
815
816 if (!list_empty(&src->ssa->if_uses))
817 return false;
818
819 return (src->ssa->uses.next == &src->use_link &&
820 src->ssa->uses.next->next == &src->ssa->uses);
821 }
822
823 /**
824 * In general, emits a nir_pack_unorm_4x8 as a series of MOVs with the pack
825 * bit set.
826 *
827 * However, as an optimization, it tries to find the instructions generating
828 * the sources to be packed and just emit the pack flag there, if possible.
829 */
830 static void
831 ntq_emit_pack_unorm_4x8(struct vc4_compile *c, nir_alu_instr *instr)
832 {
833 struct qreg result = qir_get_temp(c);
834 struct nir_alu_instr *vec4 = NULL;
835
836 /* If packing from a vec4 op (as expected), identify it so that we can
837 * peek back at what generated its sources.
838 */
839 if (instr->src[0].src.is_ssa &&
840 instr->src[0].src.ssa->parent_instr->type == nir_instr_type_alu &&
841 nir_instr_as_alu(instr->src[0].src.ssa->parent_instr)->op ==
842 nir_op_vec4) {
843 vec4 = nir_instr_as_alu(instr->src[0].src.ssa->parent_instr);
844 }
845
846 /* If the pack is replicating the same channel 4 times, use the 8888
847 * pack flag. This is common for blending using the alpha
848 * channel.
849 */
850 if (instr->src[0].swizzle[0] == instr->src[0].swizzle[1] &&
851 instr->src[0].swizzle[0] == instr->src[0].swizzle[2] &&
852 instr->src[0].swizzle[0] == instr->src[0].swizzle[3]) {
853 struct qreg rep = ntq_get_src(c,
854 instr->src[0].src,
855 instr->src[0].swizzle[0]);
856 ntq_store_dest(c, &instr->dest.dest, 0, qir_PACK_8888_F(c, rep));
857 return;
858 }
859
860 for (int i = 0; i < 4; i++) {
861 int swiz = instr->src[0].swizzle[i];
862 struct qreg src;
863 if (vec4) {
864 src = ntq_get_src(c, vec4->src[swiz].src,
865 vec4->src[swiz].swizzle[0]);
866 } else {
867 src = ntq_get_src(c, instr->src[0].src, swiz);
868 }
869
870 if (vec4 &&
871 ntq_src_is_only_ssa_def_user(&vec4->src[swiz].src) &&
872 src.file == QFILE_TEMP &&
873 c->defs[src.index] &&
874 qir_is_mul(c->defs[src.index]) &&
875 !c->defs[src.index]->dst.pack) {
876 struct qinst *rewrite = c->defs[src.index];
877 c->defs[src.index] = NULL;
878 rewrite->dst = result;
879 rewrite->dst.pack = QPU_PACK_MUL_8A + i;
880 continue;
881 }
882
883 qir_PACK_8_F(c, result, src, i);
884 }
885
886 ntq_store_dest(c, &instr->dest.dest, 0, qir_MOV(c, result));
887 }
888
889 /** Handles sign-extended bitfield extracts for 16 bits. */
890 static struct qreg
891 ntq_emit_ibfe(struct vc4_compile *c, struct qreg base, struct qreg offset,
892 struct qreg bits)
893 {
894 assert(bits.file == QFILE_UNIF &&
895 c->uniform_contents[bits.index] == QUNIFORM_CONSTANT &&
896 c->uniform_data[bits.index] == 16);
897
898 assert(offset.file == QFILE_UNIF &&
899 c->uniform_contents[offset.index] == QUNIFORM_CONSTANT);
900 int offset_bit = c->uniform_data[offset.index];
901 assert(offset_bit % 16 == 0);
902
903 return qir_UNPACK_16_I(c, base, offset_bit / 16);
904 }
905
906 /** Handles unsigned bitfield extracts for 8 bits. */
907 static struct qreg
908 ntq_emit_ubfe(struct vc4_compile *c, struct qreg base, struct qreg offset,
909 struct qreg bits)
910 {
911 assert(bits.file == QFILE_UNIF &&
912 c->uniform_contents[bits.index] == QUNIFORM_CONSTANT &&
913 c->uniform_data[bits.index] == 8);
914
915 assert(offset.file == QFILE_UNIF &&
916 c->uniform_contents[offset.index] == QUNIFORM_CONSTANT);
917 int offset_bit = c->uniform_data[offset.index];
918 assert(offset_bit % 8 == 0);
919
920 return qir_UNPACK_8_I(c, base, offset_bit / 8);
921 }
922
923 /**
924 * If compare_instr is a valid comparison instruction, emits the
925 * compare_instr's comparison and returns the sel_instr's return value based
926 * on the compare_instr's result.
927 */
928 static bool
929 ntq_emit_comparison(struct vc4_compile *c, struct qreg *dest,
930 nir_alu_instr *compare_instr,
931 nir_alu_instr *sel_instr)
932 {
933 enum qpu_cond cond;
934
935 switch (compare_instr->op) {
936 case nir_op_feq:
937 case nir_op_ieq:
938 case nir_op_seq:
939 cond = QPU_COND_ZS;
940 break;
941 case nir_op_fne:
942 case nir_op_ine:
943 case nir_op_sne:
944 cond = QPU_COND_ZC;
945 break;
946 case nir_op_fge:
947 case nir_op_ige:
948 case nir_op_uge:
949 case nir_op_sge:
950 cond = QPU_COND_NC;
951 break;
952 case nir_op_flt:
953 case nir_op_ilt:
954 case nir_op_slt:
955 cond = QPU_COND_NS;
956 break;
957 default:
958 return false;
959 }
960
961 struct qreg src0 = ntq_get_alu_src(c, compare_instr, 0);
962 struct qreg src1 = ntq_get_alu_src(c, compare_instr, 1);
963
964 unsigned unsized_type =
965 nir_alu_type_get_base_type(nir_op_infos[compare_instr->op].input_types[0]);
966 if (unsized_type == nir_type_float)
967 qir_SF(c, qir_FSUB(c, src0, src1));
968 else
969 qir_SF(c, qir_SUB(c, src0, src1));
970
971 switch (sel_instr->op) {
972 case nir_op_seq:
973 case nir_op_sne:
974 case nir_op_sge:
975 case nir_op_slt:
976 *dest = qir_SEL(c, cond,
977 qir_uniform_f(c, 1.0), qir_uniform_f(c, 0.0));
978 break;
979
980 case nir_op_bcsel:
981 *dest = qir_SEL(c, cond,
982 ntq_get_alu_src(c, sel_instr, 1),
983 ntq_get_alu_src(c, sel_instr, 2));
984 break;
985
986 default:
987 *dest = qir_SEL(c, cond,
988 qir_uniform_ui(c, ~0), qir_uniform_ui(c, 0));
989 break;
990 }
991
992 /* Make the temporary for nir_store_dest(). */
993 *dest = qir_MOV(c, *dest);
994
995 return true;
996 }
997
998 /**
999 * Attempts to fold a comparison generating a boolean result into the
1000 * condition code for selecting between two values, instead of comparing the
1001 * boolean result against 0 to generate the condition code.
1002 */
1003 static struct qreg ntq_emit_bcsel(struct vc4_compile *c, nir_alu_instr *instr,
1004 struct qreg *src)
1005 {
1006 if (!instr->src[0].src.is_ssa)
1007 goto out;
1008 if (instr->src[0].src.ssa->parent_instr->type != nir_instr_type_alu)
1009 goto out;
1010 nir_alu_instr *compare =
1011 nir_instr_as_alu(instr->src[0].src.ssa->parent_instr);
1012 if (!compare)
1013 goto out;
1014
1015 struct qreg dest;
1016 if (ntq_emit_comparison(c, &dest, compare, instr))
1017 return dest;
1018
1019 out:
1020 qir_SF(c, src[0]);
1021 return qir_MOV(c, qir_SEL(c, QPU_COND_NS, src[1], src[2]));
1022 }
1023
1024 static struct qreg
1025 ntq_fddx(struct vc4_compile *c, struct qreg src)
1026 {
1027 /* Make sure that we have a bare temp to use for MUL rotation, so it
1028 * can be allocated to an accumulator.
1029 */
1030 if (src.pack || src.file != QFILE_TEMP)
1031 src = qir_MOV(c, src);
1032
1033 struct qreg from_left = qir_ROT_MUL(c, src, 1);
1034 struct qreg from_right = qir_ROT_MUL(c, src, 15);
1035
1036 /* Distinguish left/right pixels of the quad. */
1037 qir_SF(c, qir_AND(c, qir_reg(QFILE_QPU_ELEMENT, 0),
1038 qir_uniform_ui(c, 1)));
1039
1040 return qir_MOV(c, qir_SEL(c, QPU_COND_ZS,
1041 qir_FSUB(c, from_right, src),
1042 qir_FSUB(c, src, from_left)));
1043 }
1044
1045 static struct qreg
1046 ntq_fddy(struct vc4_compile *c, struct qreg src)
1047 {
1048 if (src.pack || src.file != QFILE_TEMP)
1049 src = qir_MOV(c, src);
1050
1051 struct qreg from_bottom = qir_ROT_MUL(c, src, 2);
1052 struct qreg from_top = qir_ROT_MUL(c, src, 14);
1053
1054 /* Distinguish top/bottom pixels of the quad. */
1055 qir_SF(c, qir_AND(c,
1056 qir_reg(QFILE_QPU_ELEMENT, 0),
1057 qir_uniform_ui(c, 2)));
1058
1059 return qir_MOV(c, qir_SEL(c, QPU_COND_ZS,
1060 qir_FSUB(c, from_top, src),
1061 qir_FSUB(c, src, from_bottom)));
1062 }
1063
1064 static void
1065 ntq_emit_alu(struct vc4_compile *c, nir_alu_instr *instr)
1066 {
1067 /* This should always be lowered to ALU operations for VC4. */
1068 assert(!instr->dest.saturate);
1069
1070 /* Vectors are special in that they have non-scalarized writemasks,
1071 * and just take the first swizzle channel for each argument in order
1072 * into each writemask channel.
1073 */
1074 if (instr->op == nir_op_vec2 ||
1075 instr->op == nir_op_vec3 ||
1076 instr->op == nir_op_vec4) {
1077 struct qreg srcs[4];
1078 for (int i = 0; i < nir_op_infos[instr->op].num_inputs; i++)
1079 srcs[i] = ntq_get_src(c, instr->src[i].src,
1080 instr->src[i].swizzle[0]);
1081 for (int i = 0; i < nir_op_infos[instr->op].num_inputs; i++)
1082 ntq_store_dest(c, &instr->dest.dest, i,
1083 qir_MOV(c, srcs[i]));
1084 return;
1085 }
1086
1087 if (instr->op == nir_op_pack_unorm_4x8) {
1088 ntq_emit_pack_unorm_4x8(c, instr);
1089 return;
1090 }
1091
1092 if (instr->op == nir_op_unpack_unorm_4x8) {
1093 struct qreg src = ntq_get_src(c, instr->src[0].src,
1094 instr->src[0].swizzle[0]);
1095 for (int i = 0; i < 4; i++) {
1096 if (instr->dest.write_mask & (1 << i))
1097 ntq_store_dest(c, &instr->dest.dest, i,
1098 qir_UNPACK_8_F(c, src, i));
1099 }
1100 return;
1101 }
1102
1103 /* General case: We can just grab the one used channel per src. */
1104 struct qreg src[nir_op_infos[instr->op].num_inputs];
1105 for (int i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
1106 src[i] = ntq_get_alu_src(c, instr, i);
1107 }
1108
1109 struct qreg result;
1110
1111 switch (instr->op) {
1112 case nir_op_fmov:
1113 case nir_op_imov:
1114 result = qir_MOV(c, src[0]);
1115 break;
1116 case nir_op_fmul:
1117 result = qir_FMUL(c, src[0], src[1]);
1118 break;
1119 case nir_op_fadd:
1120 result = qir_FADD(c, src[0], src[1]);
1121 break;
1122 case nir_op_fsub:
1123 result = qir_FSUB(c, src[0], src[1]);
1124 break;
1125 case nir_op_fmin:
1126 result = qir_FMIN(c, src[0], src[1]);
1127 break;
1128 case nir_op_fmax:
1129 result = qir_FMAX(c, src[0], src[1]);
1130 break;
1131
1132 case nir_op_f2i:
1133 case nir_op_f2u:
1134 result = qir_FTOI(c, src[0]);
1135 break;
1136 case nir_op_i2f:
1137 case nir_op_u2f:
1138 result = qir_ITOF(c, src[0]);
1139 break;
1140 case nir_op_b2f:
1141 result = qir_AND(c, src[0], qir_uniform_f(c, 1.0));
1142 break;
1143 case nir_op_b2i:
1144 result = qir_AND(c, src[0], qir_uniform_ui(c, 1));
1145 break;
1146 case nir_op_i2b:
1147 case nir_op_f2b:
1148 qir_SF(c, src[0]);
1149 result = qir_MOV(c, qir_SEL(c, QPU_COND_ZC,
1150 qir_uniform_ui(c, ~0),
1151 qir_uniform_ui(c, 0)));
1152 break;
1153
1154 case nir_op_iadd:
1155 result = qir_ADD(c, src[0], src[1]);
1156 break;
1157 case nir_op_ushr:
1158 result = qir_SHR(c, src[0], src[1]);
1159 break;
1160 case nir_op_isub:
1161 result = qir_SUB(c, src[0], src[1]);
1162 break;
1163 case nir_op_ishr:
1164 result = qir_ASR(c, src[0], src[1]);
1165 break;
1166 case nir_op_ishl:
1167 result = qir_SHL(c, src[0], src[1]);
1168 break;
1169 case nir_op_imin:
1170 result = qir_MIN(c, src[0], src[1]);
1171 break;
1172 case nir_op_imax:
1173 result = qir_MAX(c, src[0], src[1]);
1174 break;
1175 case nir_op_iand:
1176 result = qir_AND(c, src[0], src[1]);
1177 break;
1178 case nir_op_ior:
1179 result = qir_OR(c, src[0], src[1]);
1180 break;
1181 case nir_op_ixor:
1182 result = qir_XOR(c, src[0], src[1]);
1183 break;
1184 case nir_op_inot:
1185 result = qir_NOT(c, src[0]);
1186 break;
1187
1188 case nir_op_imul:
1189 result = ntq_umul(c, src[0], src[1]);
1190 break;
1191
1192 case nir_op_seq:
1193 case nir_op_sne:
1194 case nir_op_sge:
1195 case nir_op_slt:
1196 case nir_op_feq:
1197 case nir_op_fne:
1198 case nir_op_fge:
1199 case nir_op_flt:
1200 case nir_op_ieq:
1201 case nir_op_ine:
1202 case nir_op_ige:
1203 case nir_op_uge:
1204 case nir_op_ilt:
1205 if (!ntq_emit_comparison(c, &result, instr, instr)) {
1206 fprintf(stderr, "Bad comparison instruction\n");
1207 }
1208 break;
1209
1210 case nir_op_bcsel:
1211 result = ntq_emit_bcsel(c, instr, src);
1212 break;
1213 case nir_op_fcsel:
1214 qir_SF(c, src[0]);
1215 result = qir_MOV(c, qir_SEL(c, QPU_COND_ZC, src[1], src[2]));
1216 break;
1217
1218 case nir_op_frcp:
1219 result = ntq_rcp(c, src[0]);
1220 break;
1221 case nir_op_frsq:
1222 result = ntq_rsq(c, src[0]);
1223 break;
1224 case nir_op_fexp2:
1225 result = qir_EXP2(c, src[0]);
1226 break;
1227 case nir_op_flog2:
1228 result = qir_LOG2(c, src[0]);
1229 break;
1230
1231 case nir_op_ftrunc:
1232 result = qir_ITOF(c, qir_FTOI(c, src[0]));
1233 break;
1234 case nir_op_fceil:
1235 result = ntq_fceil(c, src[0]);
1236 break;
1237 case nir_op_ffract:
1238 result = ntq_ffract(c, src[0]);
1239 break;
1240 case nir_op_ffloor:
1241 result = ntq_ffloor(c, src[0]);
1242 break;
1243
1244 case nir_op_fsin:
1245 result = ntq_fsin(c, src[0]);
1246 break;
1247 case nir_op_fcos:
1248 result = ntq_fcos(c, src[0]);
1249 break;
1250
1251 case nir_op_fsign:
1252 result = ntq_fsign(c, src[0]);
1253 break;
1254
1255 case nir_op_fabs:
1256 result = qir_FMAXABS(c, src[0], src[0]);
1257 break;
1258 case nir_op_iabs:
1259 result = qir_MAX(c, src[0],
1260 qir_SUB(c, qir_uniform_ui(c, 0), src[0]));
1261 break;
1262
1263 case nir_op_ibitfield_extract:
1264 result = ntq_emit_ibfe(c, src[0], src[1], src[2]);
1265 break;
1266
1267 case nir_op_ubitfield_extract:
1268 result = ntq_emit_ubfe(c, src[0], src[1], src[2]);
1269 break;
1270
1271 case nir_op_usadd_4x8:
1272 result = qir_V8ADDS(c, src[0], src[1]);
1273 break;
1274
1275 case nir_op_ussub_4x8:
1276 result = qir_V8SUBS(c, src[0], src[1]);
1277 break;
1278
1279 case nir_op_umin_4x8:
1280 result = qir_V8MIN(c, src[0], src[1]);
1281 break;
1282
1283 case nir_op_umax_4x8:
1284 result = qir_V8MAX(c, src[0], src[1]);
1285 break;
1286
1287 case nir_op_umul_unorm_4x8:
1288 result = qir_V8MULD(c, src[0], src[1]);
1289 break;
1290
1291 case nir_op_fddx:
1292 case nir_op_fddx_coarse:
1293 case nir_op_fddx_fine:
1294 result = ntq_fddx(c, src[0]);
1295 break;
1296
1297 case nir_op_fddy:
1298 case nir_op_fddy_coarse:
1299 case nir_op_fddy_fine:
1300 result = ntq_fddy(c, src[0]);
1301 break;
1302
1303 default:
1304 fprintf(stderr, "unknown NIR ALU inst: ");
1305 nir_print_instr(&instr->instr, stderr);
1306 fprintf(stderr, "\n");
1307 abort();
1308 }
1309
1310 /* We have a scalar result, so the instruction should only have a
1311 * single channel written to.
1312 */
1313 assert(util_is_power_of_two(instr->dest.write_mask));
1314 ntq_store_dest(c, &instr->dest.dest,
1315 ffs(instr->dest.write_mask) - 1, result);
1316 }
1317
1318 static void
1319 emit_frag_end(struct vc4_compile *c)
1320 {
1321 struct qreg color;
1322 if (c->output_color_index != -1) {
1323 color = c->outputs[c->output_color_index];
1324 } else {
1325 color = qir_uniform_ui(c, 0);
1326 }
1327
1328 uint32_t discard_cond = QPU_COND_ALWAYS;
1329 if (c->s->info->fs.uses_discard) {
1330 qir_SF(c, c->discard);
1331 discard_cond = QPU_COND_ZS;
1332 }
1333
1334 if (c->fs_key->stencil_enabled) {
1335 qir_MOV_dest(c, qir_reg(QFILE_TLB_STENCIL_SETUP, 0),
1336 qir_uniform(c, QUNIFORM_STENCIL, 0));
1337 if (c->fs_key->stencil_twoside) {
1338 qir_MOV_dest(c, qir_reg(QFILE_TLB_STENCIL_SETUP, 0),
1339 qir_uniform(c, QUNIFORM_STENCIL, 1));
1340 }
1341 if (c->fs_key->stencil_full_writemasks) {
1342 qir_MOV_dest(c, qir_reg(QFILE_TLB_STENCIL_SETUP, 0),
1343 qir_uniform(c, QUNIFORM_STENCIL, 2));
1344 }
1345 }
1346
1347 if (c->output_sample_mask_index != -1) {
1348 qir_MS_MASK(c, c->outputs[c->output_sample_mask_index]);
1349 }
1350
1351 if (c->fs_key->depth_enabled) {
1352 if (c->output_position_index != -1) {
1353 qir_FTOI_dest(c, qir_reg(QFILE_TLB_Z_WRITE, 0),
1354 qir_FMUL(c,
1355 c->outputs[c->output_position_index],
1356 qir_uniform_f(c, 0xffffff)))->cond = discard_cond;
1357 } else {
1358 qir_MOV_dest(c, qir_reg(QFILE_TLB_Z_WRITE, 0),
1359 qir_FRAG_Z(c))->cond = discard_cond;
1360 }
1361 }
1362
1363 if (!c->msaa_per_sample_output) {
1364 qir_MOV_dest(c, qir_reg(QFILE_TLB_COLOR_WRITE, 0),
1365 color)->cond = discard_cond;
1366 } else {
1367 for (int i = 0; i < VC4_MAX_SAMPLES; i++) {
1368 qir_MOV_dest(c, qir_reg(QFILE_TLB_COLOR_WRITE_MS, 0),
1369 c->sample_colors[i])->cond = discard_cond;
1370 }
1371 }
1372 }
1373
1374 static void
1375 emit_scaled_viewport_write(struct vc4_compile *c, struct qreg rcp_w)
1376 {
1377 struct qreg packed = qir_get_temp(c);
1378
1379 for (int i = 0; i < 2; i++) {
1380 struct qreg scale =
1381 qir_uniform(c, QUNIFORM_VIEWPORT_X_SCALE + i, 0);
1382
1383 struct qreg packed_chan = packed;
1384 packed_chan.pack = QPU_PACK_A_16A + i;
1385
1386 qir_FTOI_dest(c, packed_chan,
1387 qir_FMUL(c,
1388 qir_FMUL(c,
1389 c->outputs[c->output_position_index + i],
1390 scale),
1391 rcp_w));
1392 }
1393
1394 qir_VPM_WRITE(c, packed);
1395 }
1396
1397 static void
1398 emit_zs_write(struct vc4_compile *c, struct qreg rcp_w)
1399 {
1400 struct qreg zscale = qir_uniform(c, QUNIFORM_VIEWPORT_Z_SCALE, 0);
1401 struct qreg zoffset = qir_uniform(c, QUNIFORM_VIEWPORT_Z_OFFSET, 0);
1402
1403 qir_VPM_WRITE(c, qir_FADD(c, qir_FMUL(c, qir_FMUL(c,
1404 c->outputs[c->output_position_index + 2],
1405 zscale),
1406 rcp_w),
1407 zoffset));
1408 }
1409
1410 static void
1411 emit_rcp_wc_write(struct vc4_compile *c, struct qreg rcp_w)
1412 {
1413 qir_VPM_WRITE(c, rcp_w);
1414 }
1415
1416 static void
1417 emit_point_size_write(struct vc4_compile *c)
1418 {
1419 struct qreg point_size;
1420
1421 if (c->output_point_size_index != -1)
1422 point_size = c->outputs[c->output_point_size_index];
1423 else
1424 point_size = qir_uniform_f(c, 1.0);
1425
1426 /* Workaround: HW-2726 PTB does not handle zero-size points (BCM2835,
1427 * BCM21553).
1428 */
1429 point_size = qir_FMAX(c, point_size, qir_uniform_f(c, .125));
1430
1431 qir_VPM_WRITE(c, point_size);
1432 }
1433
1434 /**
1435 * Emits a VPM read of the stub vertex attribute set up by vc4_draw.c.
1436 *
1437 * The simulator insists that there be at least one vertex attribute, so
1438 * vc4_draw.c will emit one if it wouldn't have otherwise. The simulator also
1439 * insists that all vertex attributes loaded get read by the VS/CS, so we have
1440 * to consume it here.
1441 */
1442 static void
1443 emit_stub_vpm_read(struct vc4_compile *c)
1444 {
1445 if (c->num_inputs)
1446 return;
1447
1448 c->vattr_sizes[0] = 4;
1449 (void)qir_MOV(c, qir_reg(QFILE_VPM, 0));
1450 c->num_inputs++;
1451 }
1452
1453 static void
1454 emit_vert_end(struct vc4_compile *c,
1455 struct vc4_varying_slot *fs_inputs,
1456 uint32_t num_fs_inputs)
1457 {
1458 struct qreg rcp_w = ntq_rcp(c, c->outputs[c->output_position_index + 3]);
1459
1460 emit_stub_vpm_read(c);
1461
1462 emit_scaled_viewport_write(c, rcp_w);
1463 emit_zs_write(c, rcp_w);
1464 emit_rcp_wc_write(c, rcp_w);
1465 if (c->vs_key->per_vertex_point_size)
1466 emit_point_size_write(c);
1467
1468 for (int i = 0; i < num_fs_inputs; i++) {
1469 struct vc4_varying_slot *input = &fs_inputs[i];
1470 int j;
1471
1472 for (j = 0; j < c->num_outputs; j++) {
1473 struct vc4_varying_slot *output =
1474 &c->output_slots[j];
1475
1476 if (input->slot == output->slot &&
1477 input->swizzle == output->swizzle) {
1478 qir_VPM_WRITE(c, c->outputs[j]);
1479 break;
1480 }
1481 }
1482 /* Emit padding if we didn't find a declared VS output for
1483 * this FS input.
1484 */
1485 if (j == c->num_outputs)
1486 qir_VPM_WRITE(c, qir_uniform_f(c, 0.0));
1487 }
1488 }
1489
1490 static void
1491 emit_coord_end(struct vc4_compile *c)
1492 {
1493 struct qreg rcp_w = qir_RCP(c, c->outputs[c->output_position_index + 3]);
1494
1495 emit_stub_vpm_read(c);
1496
1497 for (int i = 0; i < 4; i++)
1498 qir_VPM_WRITE(c, c->outputs[c->output_position_index + i]);
1499
1500 emit_scaled_viewport_write(c, rcp_w);
1501 emit_zs_write(c, rcp_w);
1502 emit_rcp_wc_write(c, rcp_w);
1503 if (c->vs_key->per_vertex_point_size)
1504 emit_point_size_write(c);
1505 }
1506
1507 static void
1508 vc4_optimize_nir(struct nir_shader *s)
1509 {
1510 bool progress;
1511
1512 do {
1513 progress = false;
1514
1515 NIR_PASS_V(s, nir_lower_vars_to_ssa);
1516 NIR_PASS(progress, s, nir_lower_alu_to_scalar);
1517 NIR_PASS(progress, s, nir_lower_phis_to_scalar);
1518 NIR_PASS(progress, s, nir_copy_prop);
1519 NIR_PASS(progress, s, nir_opt_remove_phis);
1520 NIR_PASS(progress, s, nir_opt_dce);
1521 NIR_PASS(progress, s, nir_opt_dead_cf);
1522 NIR_PASS(progress, s, nir_opt_cse);
1523 NIR_PASS(progress, s, nir_opt_peephole_select, 8);
1524 NIR_PASS(progress, s, nir_opt_algebraic);
1525 NIR_PASS(progress, s, nir_opt_constant_folding);
1526 NIR_PASS(progress, s, nir_opt_undef);
1527 } while (progress);
1528 }
1529
1530 static int
1531 driver_location_compare(const void *in_a, const void *in_b)
1532 {
1533 const nir_variable *const *a = in_a;
1534 const nir_variable *const *b = in_b;
1535
1536 return (*a)->data.driver_location - (*b)->data.driver_location;
1537 }
1538
1539 static void
1540 ntq_setup_inputs(struct vc4_compile *c)
1541 {
1542 unsigned num_entries = 0;
1543 nir_foreach_variable(var, &c->s->inputs)
1544 num_entries++;
1545
1546 nir_variable *vars[num_entries];
1547
1548 unsigned i = 0;
1549 nir_foreach_variable(var, &c->s->inputs)
1550 vars[i++] = var;
1551
1552 /* Sort the variables so that we emit the input setup in
1553 * driver_location order. This is required for VPM reads, whose data
1554 * is fetched into the VPM in driver_location (TGSI register index)
1555 * order.
1556 */
1557 qsort(&vars, num_entries, sizeof(*vars), driver_location_compare);
1558
1559 for (unsigned i = 0; i < num_entries; i++) {
1560 nir_variable *var = vars[i];
1561 unsigned array_len = MAX2(glsl_get_length(var->type), 1);
1562 unsigned loc = var->data.driver_location;
1563
1564 assert(array_len == 1);
1565 (void)array_len;
1566 resize_qreg_array(c, &c->inputs, &c->inputs_array_size,
1567 (loc + 1) * 4);
1568
1569 if (c->stage == QSTAGE_FRAG) {
1570 if (var->data.location == VARYING_SLOT_POS) {
1571 emit_fragcoord_input(c, loc);
1572 } else if (var->data.location == VARYING_SLOT_PNTC ||
1573 (var->data.location >= VARYING_SLOT_VAR0 &&
1574 (c->fs_key->point_sprite_mask &
1575 (1 << (var->data.location -
1576 VARYING_SLOT_VAR0))))) {
1577 c->inputs[loc * 4 + 0] = c->point_x;
1578 c->inputs[loc * 4 + 1] = c->point_y;
1579 } else {
1580 emit_fragment_input(c, loc, var->data.location);
1581 }
1582 } else {
1583 emit_vertex_input(c, loc);
1584 }
1585 }
1586 }
1587
1588 static void
1589 ntq_setup_outputs(struct vc4_compile *c)
1590 {
1591 nir_foreach_variable(var, &c->s->outputs) {
1592 unsigned array_len = MAX2(glsl_get_length(var->type), 1);
1593 unsigned loc = var->data.driver_location * 4;
1594
1595 assert(array_len == 1);
1596 (void)array_len;
1597
1598 for (int i = 0; i < 4; i++)
1599 add_output(c, loc + i, var->data.location, i);
1600
1601 if (c->stage == QSTAGE_FRAG) {
1602 switch (var->data.location) {
1603 case FRAG_RESULT_COLOR:
1604 case FRAG_RESULT_DATA0:
1605 c->output_color_index = loc;
1606 break;
1607 case FRAG_RESULT_DEPTH:
1608 c->output_position_index = loc;
1609 break;
1610 case FRAG_RESULT_SAMPLE_MASK:
1611 c->output_sample_mask_index = loc;
1612 break;
1613 }
1614 } else {
1615 switch (var->data.location) {
1616 case VARYING_SLOT_POS:
1617 c->output_position_index = loc;
1618 break;
1619 case VARYING_SLOT_PSIZ:
1620 c->output_point_size_index = loc;
1621 break;
1622 }
1623 }
1624 }
1625 }
1626
1627 static void
1628 ntq_setup_uniforms(struct vc4_compile *c)
1629 {
1630 nir_foreach_variable(var, &c->s->uniforms) {
1631 uint32_t vec4_count = st_glsl_type_size(var->type);
1632 unsigned vec4_size = 4 * sizeof(float);
1633
1634 declare_uniform_range(c, var->data.driver_location * vec4_size,
1635 vec4_count * vec4_size);
1636
1637 }
1638 }
1639
1640 /**
1641 * Sets up the mapping from nir_register to struct qreg *.
1642 *
1643 * Each nir_register gets a struct qreg per 32-bit component being stored.
1644 */
1645 static void
1646 ntq_setup_registers(struct vc4_compile *c, struct exec_list *list)
1647 {
1648 foreach_list_typed(nir_register, nir_reg, node, list) {
1649 unsigned array_len = MAX2(nir_reg->num_array_elems, 1);
1650 struct qreg *qregs = ralloc_array(c->def_ht, struct qreg,
1651 array_len *
1652 nir_reg->num_components);
1653
1654 _mesa_hash_table_insert(c->def_ht, nir_reg, qregs);
1655
1656 for (int i = 0; i < array_len * nir_reg->num_components; i++)
1657 qregs[i] = qir_get_temp(c);
1658 }
1659 }
1660
1661 static void
1662 ntq_emit_load_const(struct vc4_compile *c, nir_load_const_instr *instr)
1663 {
1664 struct qreg *qregs = ntq_init_ssa_def(c, &instr->def);
1665 for (int i = 0; i < instr->def.num_components; i++)
1666 qregs[i] = qir_uniform_ui(c, instr->value.u32[i]);
1667
1668 _mesa_hash_table_insert(c->def_ht, &instr->def, qregs);
1669 }
1670
1671 static void
1672 ntq_emit_ssa_undef(struct vc4_compile *c, nir_ssa_undef_instr *instr)
1673 {
1674 struct qreg *qregs = ntq_init_ssa_def(c, &instr->def);
1675
1676 /* QIR needs there to be *some* value, so pick 0 (same as for
1677 * ntq_setup_registers().
1678 */
1679 for (int i = 0; i < instr->def.num_components; i++)
1680 qregs[i] = qir_uniform_ui(c, 0);
1681 }
1682
1683 static void
1684 ntq_emit_intrinsic(struct vc4_compile *c, nir_intrinsic_instr *instr)
1685 {
1686 nir_const_value *const_offset;
1687 unsigned offset;
1688
1689 switch (instr->intrinsic) {
1690 case nir_intrinsic_load_uniform:
1691 assert(instr->num_components == 1);
1692 const_offset = nir_src_as_const_value(instr->src[0]);
1693 if (const_offset) {
1694 offset = nir_intrinsic_base(instr) + const_offset->u32[0];
1695 assert(offset % 4 == 0);
1696 /* We need dwords */
1697 offset = offset / 4;
1698 ntq_store_dest(c, &instr->dest, 0,
1699 qir_uniform(c, QUNIFORM_UNIFORM,
1700 offset));
1701 } else {
1702 ntq_store_dest(c, &instr->dest, 0,
1703 indirect_uniform_load(c, instr));
1704 }
1705 break;
1706
1707 case nir_intrinsic_load_user_clip_plane:
1708 for (int i = 0; i < instr->num_components; i++) {
1709 ntq_store_dest(c, &instr->dest, i,
1710 qir_uniform(c, QUNIFORM_USER_CLIP_PLANE,
1711 nir_intrinsic_ucp_id(instr) *
1712 4 + i));
1713 }
1714 break;
1715
1716 case nir_intrinsic_load_blend_const_color_r_float:
1717 case nir_intrinsic_load_blend_const_color_g_float:
1718 case nir_intrinsic_load_blend_const_color_b_float:
1719 case nir_intrinsic_load_blend_const_color_a_float:
1720 ntq_store_dest(c, &instr->dest, 0,
1721 qir_uniform(c, QUNIFORM_BLEND_CONST_COLOR_X +
1722 (instr->intrinsic -
1723 nir_intrinsic_load_blend_const_color_r_float),
1724 0));
1725 break;
1726
1727 case nir_intrinsic_load_blend_const_color_rgba8888_unorm:
1728 ntq_store_dest(c, &instr->dest, 0,
1729 qir_uniform(c, QUNIFORM_BLEND_CONST_COLOR_RGBA,
1730 0));
1731 break;
1732
1733 case nir_intrinsic_load_blend_const_color_aaaa8888_unorm:
1734 ntq_store_dest(c, &instr->dest, 0,
1735 qir_uniform(c, QUNIFORM_BLEND_CONST_COLOR_AAAA,
1736 0));
1737 break;
1738
1739 case nir_intrinsic_load_alpha_ref_float:
1740 ntq_store_dest(c, &instr->dest, 0,
1741 qir_uniform(c, QUNIFORM_ALPHA_REF, 0));
1742 break;
1743
1744 case nir_intrinsic_load_sample_mask_in:
1745 ntq_store_dest(c, &instr->dest, 0,
1746 qir_uniform(c, QUNIFORM_SAMPLE_MASK, 0));
1747 break;
1748
1749 case nir_intrinsic_load_front_face:
1750 /* The register contains 0 (front) or 1 (back), and we need to
1751 * turn it into a NIR bool where true means front.
1752 */
1753 ntq_store_dest(c, &instr->dest, 0,
1754 qir_ADD(c,
1755 qir_uniform_ui(c, -1),
1756 qir_reg(QFILE_FRAG_REV_FLAG, 0)));
1757 break;
1758
1759 case nir_intrinsic_load_input:
1760 assert(instr->num_components == 1);
1761 const_offset = nir_src_as_const_value(instr->src[0]);
1762 assert(const_offset && "vc4 doesn't support indirect inputs");
1763 if (c->stage == QSTAGE_FRAG &&
1764 nir_intrinsic_base(instr) >= VC4_NIR_TLB_COLOR_READ_INPUT) {
1765 assert(const_offset->u32[0] == 0);
1766 /* Reads of the per-sample color need to be done in
1767 * order.
1768 */
1769 int sample_index = (nir_intrinsic_base(instr) -
1770 VC4_NIR_TLB_COLOR_READ_INPUT);
1771 for (int i = 0; i <= sample_index; i++) {
1772 if (c->color_reads[i].file == QFILE_NULL) {
1773 c->color_reads[i] =
1774 qir_TLB_COLOR_READ(c);
1775 }
1776 }
1777 ntq_store_dest(c, &instr->dest, 0,
1778 qir_MOV(c, c->color_reads[sample_index]));
1779 } else {
1780 offset = nir_intrinsic_base(instr) + const_offset->u32[0];
1781 int comp = nir_intrinsic_component(instr);
1782 ntq_store_dest(c, &instr->dest, 0,
1783 qir_MOV(c, c->inputs[offset * 4 + comp]));
1784 }
1785 break;
1786
1787 case nir_intrinsic_store_output:
1788 const_offset = nir_src_as_const_value(instr->src[1]);
1789 assert(const_offset && "vc4 doesn't support indirect outputs");
1790 offset = nir_intrinsic_base(instr) + const_offset->u32[0];
1791
1792 /* MSAA color outputs are the only case where we have an
1793 * output that's not lowered to being a store of a single 32
1794 * bit value.
1795 */
1796 if (c->stage == QSTAGE_FRAG && instr->num_components == 4) {
1797 assert(offset == c->output_color_index);
1798 for (int i = 0; i < 4; i++) {
1799 c->sample_colors[i] =
1800 qir_MOV(c, ntq_get_src(c, instr->src[0],
1801 i));
1802 }
1803 } else {
1804 offset = offset * 4 + nir_intrinsic_component(instr);
1805 assert(instr->num_components == 1);
1806 c->outputs[offset] =
1807 qir_MOV(c, ntq_get_src(c, instr->src[0], 0));
1808 c->num_outputs = MAX2(c->num_outputs, offset + 1);
1809 }
1810 break;
1811
1812 case nir_intrinsic_discard:
1813 if (c->execute.file != QFILE_NULL) {
1814 qir_SF(c, c->execute);
1815 qir_MOV_cond(c, QPU_COND_ZS, c->discard,
1816 qir_uniform_ui(c, ~0));
1817 } else {
1818 qir_MOV_dest(c, c->discard, qir_uniform_ui(c, ~0));
1819 }
1820 break;
1821
1822 case nir_intrinsic_discard_if: {
1823 /* true (~0) if we're discarding */
1824 struct qreg cond = ntq_get_src(c, instr->src[0], 0);
1825
1826 if (c->execute.file != QFILE_NULL) {
1827 /* execute == 0 means the channel is active. Invert
1828 * the condition so that we can use zero as "executing
1829 * and discarding."
1830 */
1831 qir_SF(c, qir_AND(c, c->execute, qir_NOT(c, cond)));
1832 qir_MOV_cond(c, QPU_COND_ZS, c->discard, cond);
1833 } else {
1834 qir_OR_dest(c, c->discard, c->discard,
1835 ntq_get_src(c, instr->src[0], 0));
1836 }
1837
1838 break;
1839 }
1840
1841 default:
1842 fprintf(stderr, "Unknown intrinsic: ");
1843 nir_print_instr(&instr->instr, stderr);
1844 fprintf(stderr, "\n");
1845 break;
1846 }
1847 }
1848
1849 /* Clears (activates) the execute flags for any channels whose jump target
1850 * matches this block.
1851 */
1852 static void
1853 ntq_activate_execute_for_block(struct vc4_compile *c)
1854 {
1855 qir_SF(c, qir_SUB(c,
1856 c->execute,
1857 qir_uniform_ui(c, c->cur_block->index)));
1858 qir_MOV_cond(c, QPU_COND_ZS, c->execute, qir_uniform_ui(c, 0));
1859 }
1860
1861 static void
1862 ntq_emit_if(struct vc4_compile *c, nir_if *if_stmt)
1863 {
1864 if (!c->vc4->screen->has_control_flow) {
1865 fprintf(stderr,
1866 "IF statement support requires updated kernel.\n");
1867 return;
1868 }
1869
1870 nir_block *nir_else_block = nir_if_first_else_block(if_stmt);
1871 bool empty_else_block =
1872 (nir_else_block == nir_if_last_else_block(if_stmt) &&
1873 exec_list_is_empty(&nir_else_block->instr_list));
1874
1875 struct qblock *then_block = qir_new_block(c);
1876 struct qblock *after_block = qir_new_block(c);
1877 struct qblock *else_block;
1878 if (empty_else_block)
1879 else_block = after_block;
1880 else
1881 else_block = qir_new_block(c);
1882
1883 bool was_top_level = false;
1884 if (c->execute.file == QFILE_NULL) {
1885 c->execute = qir_MOV(c, qir_uniform_ui(c, 0));
1886 was_top_level = true;
1887 }
1888
1889 /* Set ZS for executing (execute == 0) and jumping (if->condition ==
1890 * 0) channels, and then update execute flags for those to point to
1891 * the ELSE block.
1892 */
1893 qir_SF(c, qir_OR(c,
1894 c->execute,
1895 ntq_get_src(c, if_stmt->condition, 0)));
1896 qir_MOV_cond(c, QPU_COND_ZS, c->execute,
1897 qir_uniform_ui(c, else_block->index));
1898
1899 /* Jump to ELSE if nothing is active for THEN, otherwise fall
1900 * through.
1901 */
1902 qir_SF(c, c->execute);
1903 qir_BRANCH(c, QPU_COND_BRANCH_ALL_ZC);
1904 qir_link_blocks(c->cur_block, else_block);
1905 qir_link_blocks(c->cur_block, then_block);
1906
1907 /* Process the THEN block. */
1908 qir_set_emit_block(c, then_block);
1909 ntq_emit_cf_list(c, &if_stmt->then_list);
1910
1911 if (!empty_else_block) {
1912 /* Handle the end of the THEN block. First, all currently
1913 * active channels update their execute flags to point to
1914 * ENDIF
1915 */
1916 qir_SF(c, c->execute);
1917 qir_MOV_cond(c, QPU_COND_ZS, c->execute,
1918 qir_uniform_ui(c, after_block->index));
1919
1920 /* If everything points at ENDIF, then jump there immediately. */
1921 qir_SF(c, qir_SUB(c, c->execute, qir_uniform_ui(c, after_block->index)));
1922 qir_BRANCH(c, QPU_COND_BRANCH_ALL_ZS);
1923 qir_link_blocks(c->cur_block, after_block);
1924 qir_link_blocks(c->cur_block, else_block);
1925
1926 qir_set_emit_block(c, else_block);
1927 ntq_activate_execute_for_block(c);
1928 ntq_emit_cf_list(c, &if_stmt->else_list);
1929 }
1930
1931 qir_link_blocks(c->cur_block, after_block);
1932
1933 qir_set_emit_block(c, after_block);
1934 if (was_top_level)
1935 c->execute = c->undef;
1936 else
1937 ntq_activate_execute_for_block(c);
1938
1939 }
1940
1941 static void
1942 ntq_emit_jump(struct vc4_compile *c, nir_jump_instr *jump)
1943 {
1944 switch (jump->type) {
1945 case nir_jump_break:
1946 qir_SF(c, c->execute);
1947 qir_MOV_cond(c, QPU_COND_ZS, c->execute,
1948 qir_uniform_ui(c, c->loop_break_block->index));
1949 break;
1950
1951 case nir_jump_continue:
1952 qir_SF(c, c->execute);
1953 qir_MOV_cond(c, QPU_COND_ZS, c->execute,
1954 qir_uniform_ui(c, c->loop_cont_block->index));
1955 break;
1956
1957 case nir_jump_return:
1958 unreachable("All returns shouold be lowered\n");
1959 }
1960 }
1961
1962 static void
1963 ntq_emit_instr(struct vc4_compile *c, nir_instr *instr)
1964 {
1965 switch (instr->type) {
1966 case nir_instr_type_alu:
1967 ntq_emit_alu(c, nir_instr_as_alu(instr));
1968 break;
1969
1970 case nir_instr_type_intrinsic:
1971 ntq_emit_intrinsic(c, nir_instr_as_intrinsic(instr));
1972 break;
1973
1974 case nir_instr_type_load_const:
1975 ntq_emit_load_const(c, nir_instr_as_load_const(instr));
1976 break;
1977
1978 case nir_instr_type_ssa_undef:
1979 ntq_emit_ssa_undef(c, nir_instr_as_ssa_undef(instr));
1980 break;
1981
1982 case nir_instr_type_tex:
1983 ntq_emit_tex(c, nir_instr_as_tex(instr));
1984 break;
1985
1986 case nir_instr_type_jump:
1987 ntq_emit_jump(c, nir_instr_as_jump(instr));
1988 break;
1989
1990 default:
1991 fprintf(stderr, "Unknown NIR instr type: ");
1992 nir_print_instr(instr, stderr);
1993 fprintf(stderr, "\n");
1994 abort();
1995 }
1996 }
1997
1998 static void
1999 ntq_emit_block(struct vc4_compile *c, nir_block *block)
2000 {
2001 nir_foreach_instr(instr, block) {
2002 ntq_emit_instr(c, instr);
2003 }
2004 }
2005
2006 static void ntq_emit_cf_list(struct vc4_compile *c, struct exec_list *list);
2007
2008 static void
2009 ntq_emit_loop(struct vc4_compile *c, nir_loop *loop)
2010 {
2011 if (!c->vc4->screen->has_control_flow) {
2012 fprintf(stderr,
2013 "loop support requires updated kernel.\n");
2014 ntq_emit_cf_list(c, &loop->body);
2015 return;
2016 }
2017
2018 bool was_top_level = false;
2019 if (c->execute.file == QFILE_NULL) {
2020 c->execute = qir_MOV(c, qir_uniform_ui(c, 0));
2021 was_top_level = true;
2022 }
2023
2024 struct qblock *save_loop_cont_block = c->loop_cont_block;
2025 struct qblock *save_loop_break_block = c->loop_break_block;
2026
2027 c->loop_cont_block = qir_new_block(c);
2028 c->loop_break_block = qir_new_block(c);
2029
2030 qir_link_blocks(c->cur_block, c->loop_cont_block);
2031 qir_set_emit_block(c, c->loop_cont_block);
2032 ntq_activate_execute_for_block(c);
2033
2034 ntq_emit_cf_list(c, &loop->body);
2035
2036 /* If anything had explicitly continued, or is here at the end of the
2037 * loop, then we need to loop again. SF updates are masked by the
2038 * instruction's condition, so we can do the OR of the two conditions
2039 * within SF.
2040 */
2041 qir_SF(c, c->execute);
2042 struct qinst *cont_check =
2043 qir_SUB_dest(c,
2044 c->undef,
2045 c->execute,
2046 qir_uniform_ui(c, c->loop_cont_block->index));
2047 cont_check->cond = QPU_COND_ZC;
2048 cont_check->sf = true;
2049
2050 qir_BRANCH(c, QPU_COND_BRANCH_ANY_ZS);
2051 qir_link_blocks(c->cur_block, c->loop_cont_block);
2052 qir_link_blocks(c->cur_block, c->loop_break_block);
2053
2054 qir_set_emit_block(c, c->loop_break_block);
2055 if (was_top_level)
2056 c->execute = c->undef;
2057 else
2058 ntq_activate_execute_for_block(c);
2059
2060 c->loop_break_block = save_loop_break_block;
2061 c->loop_cont_block = save_loop_cont_block;
2062 }
2063
2064 static void
2065 ntq_emit_function(struct vc4_compile *c, nir_function_impl *func)
2066 {
2067 fprintf(stderr, "FUNCTIONS not handled.\n");
2068 abort();
2069 }
2070
2071 static void
2072 ntq_emit_cf_list(struct vc4_compile *c, struct exec_list *list)
2073 {
2074 foreach_list_typed(nir_cf_node, node, node, list) {
2075 switch (node->type) {
2076 case nir_cf_node_block:
2077 ntq_emit_block(c, nir_cf_node_as_block(node));
2078 break;
2079
2080 case nir_cf_node_if:
2081 ntq_emit_if(c, nir_cf_node_as_if(node));
2082 break;
2083
2084 case nir_cf_node_loop:
2085 ntq_emit_loop(c, nir_cf_node_as_loop(node));
2086 break;
2087
2088 case nir_cf_node_function:
2089 ntq_emit_function(c, nir_cf_node_as_function(node));
2090 break;
2091
2092 default:
2093 fprintf(stderr, "Unknown NIR node type\n");
2094 abort();
2095 }
2096 }
2097 }
2098
2099 static void
2100 ntq_emit_impl(struct vc4_compile *c, nir_function_impl *impl)
2101 {
2102 ntq_setup_registers(c, &impl->registers);
2103 ntq_emit_cf_list(c, &impl->body);
2104 }
2105
2106 static void
2107 nir_to_qir(struct vc4_compile *c)
2108 {
2109 if (c->stage == QSTAGE_FRAG && c->s->info->fs.uses_discard)
2110 c->discard = qir_MOV(c, qir_uniform_ui(c, 0));
2111
2112 ntq_setup_inputs(c);
2113 ntq_setup_outputs(c);
2114 ntq_setup_uniforms(c);
2115 ntq_setup_registers(c, &c->s->registers);
2116
2117 /* Find the main function and emit the body. */
2118 nir_foreach_function(function, c->s) {
2119 assert(strcmp(function->name, "main") == 0);
2120 assert(function->impl);
2121 ntq_emit_impl(c, function->impl);
2122 }
2123 }
2124
2125 static const nir_shader_compiler_options nir_options = {
2126 .lower_extract_byte = true,
2127 .lower_extract_word = true,
2128 .lower_ffma = true,
2129 .lower_flrp32 = true,
2130 .lower_fpow = true,
2131 .lower_fsat = true,
2132 .lower_fsqrt = true,
2133 .lower_negate = true,
2134 .native_integers = true,
2135 };
2136
2137 const void *
2138 vc4_screen_get_compiler_options(struct pipe_screen *pscreen,
2139 enum pipe_shader_ir ir, unsigned shader)
2140 {
2141 return &nir_options;
2142 }
2143
2144 static int
2145 count_nir_instrs(nir_shader *nir)
2146 {
2147 int count = 0;
2148 nir_foreach_function(function, nir) {
2149 if (!function->impl)
2150 continue;
2151 nir_foreach_block(block, function->impl) {
2152 nir_foreach_instr(instr, block)
2153 count++;
2154 }
2155 }
2156 return count;
2157 }
2158
2159 static struct vc4_compile *
2160 vc4_shader_ntq(struct vc4_context *vc4, enum qstage stage,
2161 struct vc4_key *key)
2162 {
2163 struct vc4_compile *c = qir_compile_init();
2164
2165 c->vc4 = vc4;
2166 c->stage = stage;
2167 c->shader_state = &key->shader_state->base;
2168 c->program_id = key->shader_state->program_id;
2169 c->variant_id =
2170 p_atomic_inc_return(&key->shader_state->compiled_variant_count);
2171
2172 c->key = key;
2173 switch (stage) {
2174 case QSTAGE_FRAG:
2175 c->fs_key = (struct vc4_fs_key *)key;
2176 if (c->fs_key->is_points) {
2177 c->point_x = emit_fragment_varying(c, ~0, 0);
2178 c->point_y = emit_fragment_varying(c, ~0, 0);
2179 } else if (c->fs_key->is_lines) {
2180 c->line_x = emit_fragment_varying(c, ~0, 0);
2181 }
2182 break;
2183 case QSTAGE_VERT:
2184 c->vs_key = (struct vc4_vs_key *)key;
2185 break;
2186 case QSTAGE_COORD:
2187 c->vs_key = (struct vc4_vs_key *)key;
2188 break;
2189 }
2190
2191 c->s = nir_shader_clone(c, key->shader_state->base.ir.nir);
2192
2193 if (stage == QSTAGE_FRAG)
2194 NIR_PASS_V(c->s, vc4_nir_lower_blend, c);
2195
2196 struct nir_lower_tex_options tex_options = {
2197 /* We would need to implement txs, but we don't want the
2198 * int/float conversions
2199 */
2200 .lower_rect = false,
2201
2202 .lower_txp = ~0,
2203
2204 /* Apply swizzles to all samplers. */
2205 .swizzle_result = ~0,
2206 };
2207
2208 /* Lower the format swizzle and ARB_texture_swizzle-style swizzle.
2209 * The format swizzling applies before sRGB decode, and
2210 * ARB_texture_swizzle is the last thing before returning the sample.
2211 */
2212 for (int i = 0; i < ARRAY_SIZE(key->tex); i++) {
2213 enum pipe_format format = c->key->tex[i].format;
2214
2215 if (!format)
2216 continue;
2217
2218 const uint8_t *format_swizzle = vc4_get_format_swizzle(format);
2219
2220 for (int j = 0; j < 4; j++) {
2221 uint8_t arb_swiz = c->key->tex[i].swizzle[j];
2222
2223 if (arb_swiz <= 3) {
2224 tex_options.swizzles[i][j] =
2225 format_swizzle[arb_swiz];
2226 } else {
2227 tex_options.swizzles[i][j] = arb_swiz;
2228 }
2229 }
2230
2231 if (util_format_is_srgb(format))
2232 tex_options.lower_srgb |= (1 << i);
2233 }
2234
2235 NIR_PASS_V(c->s, nir_lower_tex, &tex_options);
2236
2237 if (c->fs_key && c->fs_key->light_twoside)
2238 NIR_PASS_V(c->s, nir_lower_two_sided_color);
2239
2240 if (c->vs_key && c->vs_key->clamp_color)
2241 NIR_PASS_V(c->s, nir_lower_clamp_color_outputs);
2242
2243 if (c->key->ucp_enables) {
2244 if (stage == QSTAGE_FRAG) {
2245 NIR_PASS_V(c->s, nir_lower_clip_fs, c->key->ucp_enables);
2246 } else {
2247 NIR_PASS_V(c->s, nir_lower_clip_vs, c->key->ucp_enables);
2248 NIR_PASS_V(c->s, nir_lower_io_to_scalar,
2249 nir_var_shader_out);
2250 }
2251 }
2252
2253 /* FS input scalarizing must happen after nir_lower_two_sided_color,
2254 * which only handles a vec4 at a time. Similarly, VS output
2255 * scalarizing must happen after nir_lower_clip_vs.
2256 */
2257 if (c->stage == QSTAGE_FRAG)
2258 NIR_PASS_V(c->s, nir_lower_io_to_scalar, nir_var_shader_in);
2259 else
2260 NIR_PASS_V(c->s, nir_lower_io_to_scalar, nir_var_shader_out);
2261
2262 NIR_PASS_V(c->s, vc4_nir_lower_io, c);
2263 NIR_PASS_V(c->s, vc4_nir_lower_txf_ms, c);
2264 NIR_PASS_V(c->s, nir_lower_idiv);
2265
2266 vc4_optimize_nir(c->s);
2267
2268 NIR_PASS_V(c->s, nir_convert_from_ssa, true);
2269
2270 if (vc4_debug & VC4_DEBUG_SHADERDB) {
2271 fprintf(stderr, "SHADER-DB: %s prog %d/%d: %d NIR instructions\n",
2272 qir_get_stage_name(c->stage),
2273 c->program_id, c->variant_id,
2274 count_nir_instrs(c->s));
2275 }
2276
2277 if (vc4_debug & VC4_DEBUG_NIR) {
2278 fprintf(stderr, "%s prog %d/%d NIR:\n",
2279 qir_get_stage_name(c->stage),
2280 c->program_id, c->variant_id);
2281 nir_print_shader(c->s, stderr);
2282 }
2283
2284 nir_to_qir(c);
2285
2286 switch (stage) {
2287 case QSTAGE_FRAG:
2288 /* FS threading requires that the thread execute
2289 * QPU_SIG_LAST_THREAD_SWITCH exactly once before terminating
2290 * (with no other THRSW afterwards, obviously). If we didn't
2291 * fetch a texture at a top level block, this wouldn't be
2292 * true.
2293 */
2294 if (c->fs_threaded && !c->last_thrsw_at_top_level) {
2295 c->failed = true;
2296 return c;
2297 }
2298
2299 emit_frag_end(c);
2300 break;
2301 case QSTAGE_VERT:
2302 emit_vert_end(c,
2303 c->vs_key->fs_inputs->input_slots,
2304 c->vs_key->fs_inputs->num_inputs);
2305 break;
2306 case QSTAGE_COORD:
2307 emit_coord_end(c);
2308 break;
2309 }
2310
2311 if (vc4_debug & VC4_DEBUG_QIR) {
2312 fprintf(stderr, "%s prog %d/%d pre-opt QIR:\n",
2313 qir_get_stage_name(c->stage),
2314 c->program_id, c->variant_id);
2315 qir_dump(c);
2316 fprintf(stderr, "\n");
2317 }
2318
2319 qir_optimize(c);
2320 qir_lower_uniforms(c);
2321
2322 qir_schedule_instructions(c);
2323 qir_emit_uniform_stream_resets(c);
2324
2325 if (vc4_debug & VC4_DEBUG_QIR) {
2326 fprintf(stderr, "%s prog %d/%d QIR:\n",
2327 qir_get_stage_name(c->stage),
2328 c->program_id, c->variant_id);
2329 qir_dump(c);
2330 fprintf(stderr, "\n");
2331 }
2332
2333 qir_reorder_uniforms(c);
2334 vc4_generate_code(vc4, c);
2335
2336 if (vc4_debug & VC4_DEBUG_SHADERDB) {
2337 fprintf(stderr, "SHADER-DB: %s prog %d/%d: %d instructions\n",
2338 qir_get_stage_name(c->stage),
2339 c->program_id, c->variant_id,
2340 c->qpu_inst_count);
2341 fprintf(stderr, "SHADER-DB: %s prog %d/%d: %d uniforms\n",
2342 qir_get_stage_name(c->stage),
2343 c->program_id, c->variant_id,
2344 c->num_uniforms);
2345 }
2346
2347 ralloc_free(c->s);
2348
2349 return c;
2350 }
2351
2352 static void *
2353 vc4_shader_state_create(struct pipe_context *pctx,
2354 const struct pipe_shader_state *cso)
2355 {
2356 struct vc4_context *vc4 = vc4_context(pctx);
2357 struct vc4_uncompiled_shader *so = CALLOC_STRUCT(vc4_uncompiled_shader);
2358 if (!so)
2359 return NULL;
2360
2361 so->program_id = vc4->next_uncompiled_program_id++;
2362
2363 nir_shader *s;
2364
2365 if (cso->type == PIPE_SHADER_IR_NIR) {
2366 /* The backend takes ownership of the NIR shader on state
2367 * creation.
2368 */
2369 s = cso->ir.nir;
2370 } else {
2371 assert(cso->type == PIPE_SHADER_IR_TGSI);
2372
2373 if (vc4_debug & VC4_DEBUG_TGSI) {
2374 fprintf(stderr, "prog %d TGSI:\n",
2375 so->program_id);
2376 tgsi_dump(cso->tokens, 0);
2377 fprintf(stderr, "\n");
2378 }
2379 s = tgsi_to_nir(cso->tokens, &nir_options);
2380 }
2381
2382 NIR_PASS_V(s, nir_opt_global_to_local);
2383 NIR_PASS_V(s, nir_convert_to_ssa);
2384 NIR_PASS_V(s, nir_normalize_cubemap_coords);
2385
2386 NIR_PASS_V(s, nir_lower_load_const_to_scalar);
2387
2388 vc4_optimize_nir(s);
2389
2390 NIR_PASS_V(s, nir_remove_dead_variables, nir_var_local);
2391
2392 /* Garbage collect dead instructions */
2393 nir_sweep(s);
2394
2395 so->base.type = PIPE_SHADER_IR_NIR;
2396 so->base.ir.nir = s;
2397
2398 if (vc4_debug & VC4_DEBUG_NIR) {
2399 fprintf(stderr, "%s prog %d NIR:\n",
2400 gl_shader_stage_name(s->stage),
2401 so->program_id);
2402 nir_print_shader(s, stderr);
2403 fprintf(stderr, "\n");
2404 }
2405
2406 return so;
2407 }
2408
2409 static void
2410 copy_uniform_state_to_shader(struct vc4_compiled_shader *shader,
2411 struct vc4_compile *c)
2412 {
2413 int count = c->num_uniforms;
2414 struct vc4_shader_uniform_info *uinfo = &shader->uniforms;
2415
2416 uinfo->count = count;
2417 uinfo->data = ralloc_array(shader, uint32_t, count);
2418 memcpy(uinfo->data, c->uniform_data,
2419 count * sizeof(*uinfo->data));
2420 uinfo->contents = ralloc_array(shader, enum quniform_contents, count);
2421 memcpy(uinfo->contents, c->uniform_contents,
2422 count * sizeof(*uinfo->contents));
2423 uinfo->num_texture_samples = c->num_texture_samples;
2424
2425 vc4_set_shader_uniform_dirty_flags(shader);
2426 }
2427
2428 static void
2429 vc4_setup_compiled_fs_inputs(struct vc4_context *vc4, struct vc4_compile *c,
2430 struct vc4_compiled_shader *shader)
2431 {
2432 struct vc4_fs_inputs inputs;
2433
2434 memset(&inputs, 0, sizeof(inputs));
2435 inputs.input_slots = ralloc_array(shader,
2436 struct vc4_varying_slot,
2437 c->num_input_slots);
2438
2439 bool input_live[c->num_input_slots];
2440
2441 memset(input_live, 0, sizeof(input_live));
2442 qir_for_each_inst_inorder(inst, c) {
2443 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
2444 if (inst->src[i].file == QFILE_VARY)
2445 input_live[inst->src[i].index] = true;
2446 }
2447 }
2448
2449 for (int i = 0; i < c->num_input_slots; i++) {
2450 struct vc4_varying_slot *slot = &c->input_slots[i];
2451
2452 if (!input_live[i])
2453 continue;
2454
2455 /* Skip non-VS-output inputs. */
2456 if (slot->slot == (uint8_t)~0)
2457 continue;
2458
2459 if (slot->slot == VARYING_SLOT_COL0 ||
2460 slot->slot == VARYING_SLOT_COL1 ||
2461 slot->slot == VARYING_SLOT_BFC0 ||
2462 slot->slot == VARYING_SLOT_BFC1) {
2463 shader->color_inputs |= (1 << inputs.num_inputs);
2464 }
2465
2466 inputs.input_slots[inputs.num_inputs] = *slot;
2467 inputs.num_inputs++;
2468 }
2469 shader->num_inputs = inputs.num_inputs;
2470
2471 /* Add our set of inputs to the set of all inputs seen. This way, we
2472 * can have a single pointer that identifies an FS inputs set,
2473 * allowing VS to avoid recompiling when the FS is recompiled (or a
2474 * new one is bound using separate shader objects) but the inputs
2475 * don't change.
2476 */
2477 struct set_entry *entry = _mesa_set_search(vc4->fs_inputs_set, &inputs);
2478 if (entry) {
2479 shader->fs_inputs = entry->key;
2480 ralloc_free(inputs.input_slots);
2481 } else {
2482 struct vc4_fs_inputs *alloc_inputs;
2483
2484 alloc_inputs = rzalloc(vc4->fs_inputs_set, struct vc4_fs_inputs);
2485 memcpy(alloc_inputs, &inputs, sizeof(inputs));
2486 ralloc_steal(alloc_inputs, inputs.input_slots);
2487 _mesa_set_add(vc4->fs_inputs_set, alloc_inputs);
2488
2489 shader->fs_inputs = alloc_inputs;
2490 }
2491 }
2492
2493 static struct vc4_compiled_shader *
2494 vc4_get_compiled_shader(struct vc4_context *vc4, enum qstage stage,
2495 struct vc4_key *key)
2496 {
2497 struct hash_table *ht;
2498 uint32_t key_size;
2499 if (stage == QSTAGE_FRAG) {
2500 ht = vc4->fs_cache;
2501 key_size = sizeof(struct vc4_fs_key);
2502 } else {
2503 ht = vc4->vs_cache;
2504 key_size = sizeof(struct vc4_vs_key);
2505 }
2506
2507 struct vc4_compiled_shader *shader;
2508 struct hash_entry *entry = _mesa_hash_table_search(ht, key);
2509 if (entry)
2510 return entry->data;
2511
2512 struct vc4_compile *c = vc4_shader_ntq(vc4, stage, key);
2513 shader = rzalloc(NULL, struct vc4_compiled_shader);
2514
2515 shader->program_id = vc4->next_compiled_program_id++;
2516 if (stage == QSTAGE_FRAG) {
2517 vc4_setup_compiled_fs_inputs(vc4, c, shader);
2518
2519 /* Note: the temporary clone in c->s has been freed. */
2520 nir_shader *orig_shader = key->shader_state->base.ir.nir;
2521 if (orig_shader->info->outputs_written & (1 << FRAG_RESULT_DEPTH))
2522 shader->disable_early_z = true;
2523 } else {
2524 shader->num_inputs = c->num_inputs;
2525
2526 shader->vattr_offsets[0] = 0;
2527 for (int i = 0; i < 8; i++) {
2528 shader->vattr_offsets[i + 1] =
2529 shader->vattr_offsets[i] + c->vattr_sizes[i];
2530
2531 if (c->vattr_sizes[i])
2532 shader->vattrs_live |= (1 << i);
2533 }
2534 }
2535
2536 shader->failed = c->failed;
2537 if (c->failed) {
2538 shader->failed = true;
2539 } else {
2540 copy_uniform_state_to_shader(shader, c);
2541 shader->bo = vc4_bo_alloc_shader(vc4->screen, c->qpu_insts,
2542 c->qpu_inst_count *
2543 sizeof(uint64_t));
2544 }
2545
2546 /* Copy the compiler UBO range state to the compiled shader, dropping
2547 * out arrays that were never referenced by an indirect load.
2548 *
2549 * (Note that QIR dead code elimination of an array access still
2550 * leaves that array alive, though)
2551 */
2552 if (c->num_ubo_ranges) {
2553 shader->num_ubo_ranges = c->num_ubo_ranges;
2554 shader->ubo_ranges = ralloc_array(shader, struct vc4_ubo_range,
2555 c->num_ubo_ranges);
2556 uint32_t j = 0;
2557 for (int i = 0; i < c->num_uniform_ranges; i++) {
2558 struct vc4_compiler_ubo_range *range =
2559 &c->ubo_ranges[i];
2560 if (!range->used)
2561 continue;
2562
2563 shader->ubo_ranges[j].dst_offset = range->dst_offset;
2564 shader->ubo_ranges[j].src_offset = range->src_offset;
2565 shader->ubo_ranges[j].size = range->size;
2566 shader->ubo_size += c->ubo_ranges[i].size;
2567 j++;
2568 }
2569 }
2570 if (shader->ubo_size) {
2571 if (vc4_debug & VC4_DEBUG_SHADERDB) {
2572 fprintf(stderr, "SHADER-DB: %s prog %d/%d: %d UBO uniforms\n",
2573 qir_get_stage_name(c->stage),
2574 c->program_id, c->variant_id,
2575 shader->ubo_size / 4);
2576 }
2577 }
2578
2579 qir_compile_destroy(c);
2580
2581 struct vc4_key *dup_key;
2582 dup_key = rzalloc_size(shader, key_size); /* TODO: don't use rzalloc */
2583 memcpy(dup_key, key, key_size);
2584 _mesa_hash_table_insert(ht, dup_key, shader);
2585
2586 return shader;
2587 }
2588
2589 static void
2590 vc4_setup_shared_key(struct vc4_context *vc4, struct vc4_key *key,
2591 struct vc4_texture_stateobj *texstate)
2592 {
2593 for (int i = 0; i < texstate->num_textures; i++) {
2594 struct pipe_sampler_view *sampler = texstate->textures[i];
2595 struct vc4_sampler_view *vc4_sampler = vc4_sampler_view(sampler);
2596 struct pipe_sampler_state *sampler_state =
2597 texstate->samplers[i];
2598
2599 if (!sampler)
2600 continue;
2601
2602 key->tex[i].format = sampler->format;
2603 key->tex[i].swizzle[0] = sampler->swizzle_r;
2604 key->tex[i].swizzle[1] = sampler->swizzle_g;
2605 key->tex[i].swizzle[2] = sampler->swizzle_b;
2606 key->tex[i].swizzle[3] = sampler->swizzle_a;
2607
2608 if (sampler->texture->nr_samples > 1) {
2609 key->tex[i].msaa_width = sampler->texture->width0;
2610 key->tex[i].msaa_height = sampler->texture->height0;
2611 } else if (sampler){
2612 key->tex[i].compare_mode = sampler_state->compare_mode;
2613 key->tex[i].compare_func = sampler_state->compare_func;
2614 key->tex[i].wrap_s = sampler_state->wrap_s;
2615 key->tex[i].wrap_t = sampler_state->wrap_t;
2616 key->tex[i].force_first_level =
2617 vc4_sampler->force_first_level;
2618 }
2619 }
2620
2621 key->ucp_enables = vc4->rasterizer->base.clip_plane_enable;
2622 }
2623
2624 static void
2625 vc4_update_compiled_fs(struct vc4_context *vc4, uint8_t prim_mode)
2626 {
2627 struct vc4_job *job = vc4->job;
2628 struct vc4_fs_key local_key;
2629 struct vc4_fs_key *key = &local_key;
2630
2631 if (!(vc4->dirty & (VC4_DIRTY_PRIM_MODE |
2632 VC4_DIRTY_BLEND |
2633 VC4_DIRTY_FRAMEBUFFER |
2634 VC4_DIRTY_ZSA |
2635 VC4_DIRTY_RASTERIZER |
2636 VC4_DIRTY_SAMPLE_MASK |
2637 VC4_DIRTY_FRAGTEX |
2638 VC4_DIRTY_UNCOMPILED_FS))) {
2639 return;
2640 }
2641
2642 memset(key, 0, sizeof(*key));
2643 vc4_setup_shared_key(vc4, &key->base, &vc4->fragtex);
2644 key->base.shader_state = vc4->prog.bind_fs;
2645 key->is_points = (prim_mode == PIPE_PRIM_POINTS);
2646 key->is_lines = (prim_mode >= PIPE_PRIM_LINES &&
2647 prim_mode <= PIPE_PRIM_LINE_STRIP);
2648 key->blend = vc4->blend->rt[0];
2649 if (vc4->blend->logicop_enable) {
2650 key->logicop_func = vc4->blend->logicop_func;
2651 } else {
2652 key->logicop_func = PIPE_LOGICOP_COPY;
2653 }
2654 if (job->msaa) {
2655 key->msaa = vc4->rasterizer->base.multisample;
2656 key->sample_coverage = (vc4->rasterizer->base.multisample &&
2657 vc4->sample_mask != (1 << VC4_MAX_SAMPLES) - 1);
2658 key->sample_alpha_to_coverage = vc4->blend->alpha_to_coverage;
2659 key->sample_alpha_to_one = vc4->blend->alpha_to_one;
2660 }
2661
2662 if (vc4->framebuffer.cbufs[0])
2663 key->color_format = vc4->framebuffer.cbufs[0]->format;
2664
2665 key->stencil_enabled = vc4->zsa->stencil_uniforms[0] != 0;
2666 key->stencil_twoside = vc4->zsa->stencil_uniforms[1] != 0;
2667 key->stencil_full_writemasks = vc4->zsa->stencil_uniforms[2] != 0;
2668 key->depth_enabled = (vc4->zsa->base.depth.enabled ||
2669 key->stencil_enabled);
2670 if (vc4->zsa->base.alpha.enabled) {
2671 key->alpha_test = true;
2672 key->alpha_test_func = vc4->zsa->base.alpha.func;
2673 }
2674
2675 if (key->is_points) {
2676 key->point_sprite_mask =
2677 vc4->rasterizer->base.sprite_coord_enable;
2678 key->point_coord_upper_left =
2679 (vc4->rasterizer->base.sprite_coord_mode ==
2680 PIPE_SPRITE_COORD_UPPER_LEFT);
2681 }
2682
2683 key->light_twoside = vc4->rasterizer->base.light_twoside;
2684
2685 struct vc4_compiled_shader *old_fs = vc4->prog.fs;
2686 vc4->prog.fs = vc4_get_compiled_shader(vc4, QSTAGE_FRAG, &key->base);
2687 if (vc4->prog.fs == old_fs)
2688 return;
2689
2690 vc4->dirty |= VC4_DIRTY_COMPILED_FS;
2691
2692 if (vc4->rasterizer->base.flatshade &&
2693 old_fs && vc4->prog.fs->color_inputs != old_fs->color_inputs) {
2694 vc4->dirty |= VC4_DIRTY_FLAT_SHADE_FLAGS;
2695 }
2696
2697 if (old_fs && vc4->prog.fs->fs_inputs != old_fs->fs_inputs)
2698 vc4->dirty |= VC4_DIRTY_FS_INPUTS;
2699 }
2700
2701 static void
2702 vc4_update_compiled_vs(struct vc4_context *vc4, uint8_t prim_mode)
2703 {
2704 struct vc4_vs_key local_key;
2705 struct vc4_vs_key *key = &local_key;
2706
2707 if (!(vc4->dirty & (VC4_DIRTY_PRIM_MODE |
2708 VC4_DIRTY_RASTERIZER |
2709 VC4_DIRTY_VERTTEX |
2710 VC4_DIRTY_VTXSTATE |
2711 VC4_DIRTY_UNCOMPILED_VS |
2712 VC4_DIRTY_FS_INPUTS))) {
2713 return;
2714 }
2715
2716 memset(key, 0, sizeof(*key));
2717 vc4_setup_shared_key(vc4, &key->base, &vc4->verttex);
2718 key->base.shader_state = vc4->prog.bind_vs;
2719 key->fs_inputs = vc4->prog.fs->fs_inputs;
2720 key->clamp_color = vc4->rasterizer->base.clamp_vertex_color;
2721
2722 for (int i = 0; i < ARRAY_SIZE(key->attr_formats); i++)
2723 key->attr_formats[i] = vc4->vtx->pipe[i].src_format;
2724
2725 key->per_vertex_point_size =
2726 (prim_mode == PIPE_PRIM_POINTS &&
2727 vc4->rasterizer->base.point_size_per_vertex);
2728
2729 struct vc4_compiled_shader *vs =
2730 vc4_get_compiled_shader(vc4, QSTAGE_VERT, &key->base);
2731 if (vs != vc4->prog.vs) {
2732 vc4->prog.vs = vs;
2733 vc4->dirty |= VC4_DIRTY_COMPILED_VS;
2734 }
2735
2736 key->is_coord = true;
2737 /* Coord shaders don't care what the FS inputs are. */
2738 key->fs_inputs = NULL;
2739 struct vc4_compiled_shader *cs =
2740 vc4_get_compiled_shader(vc4, QSTAGE_COORD, &key->base);
2741 if (cs != vc4->prog.cs) {
2742 vc4->prog.cs = cs;
2743 vc4->dirty |= VC4_DIRTY_COMPILED_CS;
2744 }
2745 }
2746
2747 bool
2748 vc4_update_compiled_shaders(struct vc4_context *vc4, uint8_t prim_mode)
2749 {
2750 vc4_update_compiled_fs(vc4, prim_mode);
2751 vc4_update_compiled_vs(vc4, prim_mode);
2752
2753 return !(vc4->prog.cs->failed ||
2754 vc4->prog.vs->failed ||
2755 vc4->prog.fs->failed);
2756 }
2757
2758 static uint32_t
2759 fs_cache_hash(const void *key)
2760 {
2761 return _mesa_hash_data(key, sizeof(struct vc4_fs_key));
2762 }
2763
2764 static uint32_t
2765 vs_cache_hash(const void *key)
2766 {
2767 return _mesa_hash_data(key, sizeof(struct vc4_vs_key));
2768 }
2769
2770 static bool
2771 fs_cache_compare(const void *key1, const void *key2)
2772 {
2773 return memcmp(key1, key2, sizeof(struct vc4_fs_key)) == 0;
2774 }
2775
2776 static bool
2777 vs_cache_compare(const void *key1, const void *key2)
2778 {
2779 return memcmp(key1, key2, sizeof(struct vc4_vs_key)) == 0;
2780 }
2781
2782 static uint32_t
2783 fs_inputs_hash(const void *key)
2784 {
2785 const struct vc4_fs_inputs *inputs = key;
2786
2787 return _mesa_hash_data(inputs->input_slots,
2788 sizeof(*inputs->input_slots) *
2789 inputs->num_inputs);
2790 }
2791
2792 static bool
2793 fs_inputs_compare(const void *key1, const void *key2)
2794 {
2795 const struct vc4_fs_inputs *inputs1 = key1;
2796 const struct vc4_fs_inputs *inputs2 = key2;
2797
2798 return (inputs1->num_inputs == inputs2->num_inputs &&
2799 memcmp(inputs1->input_slots,
2800 inputs2->input_slots,
2801 sizeof(*inputs1->input_slots) *
2802 inputs1->num_inputs) == 0);
2803 }
2804
2805 static void
2806 delete_from_cache_if_matches(struct hash_table *ht,
2807 struct hash_entry *entry,
2808 struct vc4_uncompiled_shader *so)
2809 {
2810 const struct vc4_key *key = entry->key;
2811
2812 if (key->shader_state == so) {
2813 struct vc4_compiled_shader *shader = entry->data;
2814 _mesa_hash_table_remove(ht, entry);
2815 vc4_bo_unreference(&shader->bo);
2816 ralloc_free(shader);
2817 }
2818 }
2819
2820 static void
2821 vc4_shader_state_delete(struct pipe_context *pctx, void *hwcso)
2822 {
2823 struct vc4_context *vc4 = vc4_context(pctx);
2824 struct vc4_uncompiled_shader *so = hwcso;
2825
2826 struct hash_entry *entry;
2827 hash_table_foreach(vc4->fs_cache, entry)
2828 delete_from_cache_if_matches(vc4->fs_cache, entry, so);
2829 hash_table_foreach(vc4->vs_cache, entry)
2830 delete_from_cache_if_matches(vc4->vs_cache, entry, so);
2831
2832 ralloc_free(so->base.ir.nir);
2833 free(so);
2834 }
2835
2836 static void
2837 vc4_fp_state_bind(struct pipe_context *pctx, void *hwcso)
2838 {
2839 struct vc4_context *vc4 = vc4_context(pctx);
2840 vc4->prog.bind_fs = hwcso;
2841 vc4->dirty |= VC4_DIRTY_UNCOMPILED_FS;
2842 }
2843
2844 static void
2845 vc4_vp_state_bind(struct pipe_context *pctx, void *hwcso)
2846 {
2847 struct vc4_context *vc4 = vc4_context(pctx);
2848 vc4->prog.bind_vs = hwcso;
2849 vc4->dirty |= VC4_DIRTY_UNCOMPILED_VS;
2850 }
2851
2852 void
2853 vc4_program_init(struct pipe_context *pctx)
2854 {
2855 struct vc4_context *vc4 = vc4_context(pctx);
2856
2857 pctx->create_vs_state = vc4_shader_state_create;
2858 pctx->delete_vs_state = vc4_shader_state_delete;
2859
2860 pctx->create_fs_state = vc4_shader_state_create;
2861 pctx->delete_fs_state = vc4_shader_state_delete;
2862
2863 pctx->bind_fs_state = vc4_fp_state_bind;
2864 pctx->bind_vs_state = vc4_vp_state_bind;
2865
2866 vc4->fs_cache = _mesa_hash_table_create(pctx, fs_cache_hash,
2867 fs_cache_compare);
2868 vc4->vs_cache = _mesa_hash_table_create(pctx, vs_cache_hash,
2869 vs_cache_compare);
2870 vc4->fs_inputs_set = _mesa_set_create(pctx, fs_inputs_hash,
2871 fs_inputs_compare);
2872 }
2873
2874 void
2875 vc4_program_fini(struct pipe_context *pctx)
2876 {
2877 struct vc4_context *vc4 = vc4_context(pctx);
2878
2879 struct hash_entry *entry;
2880 hash_table_foreach(vc4->fs_cache, entry) {
2881 struct vc4_compiled_shader *shader = entry->data;
2882 vc4_bo_unreference(&shader->bo);
2883 ralloc_free(shader);
2884 _mesa_hash_table_remove(vc4->fs_cache, entry);
2885 }
2886
2887 hash_table_foreach(vc4->vs_cache, entry) {
2888 struct vc4_compiled_shader *shader = entry->data;
2889 vc4_bo_unreference(&shader->bo);
2890 ralloc_free(shader);
2891 _mesa_hash_table_remove(vc4->vs_cache, entry);
2892 }
2893 }