pan/mdg: Treat packs "specially"
[mesa.git] / src / panfrost / midgard / midgard_compile.c
1 /*
2 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <sys/mman.h>
27 #include <fcntl.h>
28 #include <stdint.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <err.h>
32
33 #include "main/mtypes.h"
34 #include "compiler/glsl/glsl_to_nir.h"
35 #include "compiler/nir_types.h"
36 #include "compiler/nir/nir_builder.h"
37 #include "util/half_float.h"
38 #include "util/u_math.h"
39 #include "util/u_debug.h"
40 #include "util/u_dynarray.h"
41 #include "util/list.h"
42 #include "main/mtypes.h"
43
44 #include "midgard.h"
45 #include "midgard_nir.h"
46 #include "midgard_compile.h"
47 #include "midgard_ops.h"
48 #include "helpers.h"
49 #include "compiler.h"
50 #include "midgard_quirks.h"
51
52 #include "disassemble.h"
53
54 static const struct debug_named_value debug_options[] = {
55 {"msgs", MIDGARD_DBG_MSGS, "Print debug messages"},
56 {"shaders", MIDGARD_DBG_SHADERS, "Dump shaders in NIR and MIR"},
57 {"shaderdb", MIDGARD_DBG_SHADERDB, "Prints shader-db statistics"},
58 DEBUG_NAMED_VALUE_END
59 };
60
61 DEBUG_GET_ONCE_FLAGS_OPTION(midgard_debug, "MIDGARD_MESA_DEBUG", debug_options, 0)
62
63 unsigned SHADER_DB_COUNT = 0;
64
65 int midgard_debug = 0;
66
67 #define DBG(fmt, ...) \
68 do { if (midgard_debug & MIDGARD_DBG_MSGS) \
69 fprintf(stderr, "%s:%d: "fmt, \
70 __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0)
71 static midgard_block *
72 create_empty_block(compiler_context *ctx)
73 {
74 midgard_block *blk = rzalloc(ctx, midgard_block);
75
76 blk->base.predecessors = _mesa_set_create(blk,
77 _mesa_hash_pointer,
78 _mesa_key_pointer_equal);
79
80 blk->base.name = ctx->block_source_count++;
81
82 return blk;
83 }
84
85 static void
86 schedule_barrier(compiler_context *ctx)
87 {
88 midgard_block *temp = ctx->after_block;
89 ctx->after_block = create_empty_block(ctx);
90 ctx->block_count++;
91 list_addtail(&ctx->after_block->base.link, &ctx->blocks);
92 list_inithead(&ctx->after_block->base.instructions);
93 pan_block_add_successor(&ctx->current_block->base, &ctx->after_block->base);
94 ctx->current_block = ctx->after_block;
95 ctx->after_block = temp;
96 }
97
98 /* Helpers to generate midgard_instruction's using macro magic, since every
99 * driver seems to do it that way */
100
101 #define EMIT(op, ...) emit_mir_instruction(ctx, v_##op(__VA_ARGS__));
102
103 #define M_LOAD_STORE(name, store, T) \
104 static midgard_instruction m_##name(unsigned ssa, unsigned address) { \
105 midgard_instruction i = { \
106 .type = TAG_LOAD_STORE_4, \
107 .mask = 0xF, \
108 .dest = ~0, \
109 .src = { ~0, ~0, ~0, ~0 }, \
110 .swizzle = SWIZZLE_IDENTITY_4, \
111 .load_store = { \
112 .op = midgard_op_##name, \
113 .address = address \
114 } \
115 }; \
116 \
117 if (store) { \
118 i.src[0] = ssa; \
119 i.src_types[0] = T; \
120 i.dest_type = T; \
121 } else { \
122 i.dest = ssa; \
123 i.dest_type = T; \
124 } \
125 return i; \
126 }
127
128 #define M_LOAD(name, T) M_LOAD_STORE(name, false, T)
129 #define M_STORE(name, T) M_LOAD_STORE(name, true, T)
130
131 M_LOAD(ld_attr_32, nir_type_uint32);
132 M_LOAD(ld_vary_32, nir_type_uint32);
133 M_LOAD(ld_ubo_int4, nir_type_uint32);
134 M_LOAD(ld_int4, nir_type_uint32);
135 M_STORE(st_int4, nir_type_uint32);
136 M_LOAD(ld_color_buffer_32u, nir_type_uint32);
137 M_STORE(st_vary_32, nir_type_uint32);
138 M_LOAD(ld_cubemap_coords, nir_type_uint32);
139 M_LOAD(ld_compute_id, nir_type_uint32);
140
141 static midgard_instruction
142 v_branch(bool conditional, bool invert)
143 {
144 midgard_instruction ins = {
145 .type = TAG_ALU_4,
146 .unit = ALU_ENAB_BRANCH,
147 .compact_branch = true,
148 .branch = {
149 .conditional = conditional,
150 .invert_conditional = invert
151 },
152 .dest = ~0,
153 .src = { ~0, ~0, ~0, ~0 },
154 };
155
156 return ins;
157 }
158
159 static midgard_branch_extended
160 midgard_create_branch_extended( midgard_condition cond,
161 midgard_jmp_writeout_op op,
162 unsigned dest_tag,
163 signed quadword_offset)
164 {
165 /* The condition code is actually a LUT describing a function to
166 * combine multiple condition codes. However, we only support a single
167 * condition code at the moment, so we just duplicate over a bunch of
168 * times. */
169
170 uint16_t duplicated_cond =
171 (cond << 14) |
172 (cond << 12) |
173 (cond << 10) |
174 (cond << 8) |
175 (cond << 6) |
176 (cond << 4) |
177 (cond << 2) |
178 (cond << 0);
179
180 midgard_branch_extended branch = {
181 .op = op,
182 .dest_tag = dest_tag,
183 .offset = quadword_offset,
184 .cond = duplicated_cond
185 };
186
187 return branch;
188 }
189
190 static void
191 attach_constants(compiler_context *ctx, midgard_instruction *ins, void *constants, int name)
192 {
193 ins->has_constants = true;
194 memcpy(&ins->constants, constants, 16);
195 }
196
197 static int
198 glsl_type_size(const struct glsl_type *type, bool bindless)
199 {
200 return glsl_count_attribute_slots(type, false);
201 }
202
203 /* Lower fdot2 to a vector multiplication followed by channel addition */
204 static void
205 midgard_nir_lower_fdot2_body(nir_builder *b, nir_alu_instr *alu)
206 {
207 if (alu->op != nir_op_fdot2)
208 return;
209
210 b->cursor = nir_before_instr(&alu->instr);
211
212 nir_ssa_def *src0 = nir_ssa_for_alu_src(b, alu, 0);
213 nir_ssa_def *src1 = nir_ssa_for_alu_src(b, alu, 1);
214
215 nir_ssa_def *product = nir_fmul(b, src0, src1);
216
217 nir_ssa_def *sum = nir_fadd(b,
218 nir_channel(b, product, 0),
219 nir_channel(b, product, 1));
220
221 /* Replace the fdot2 with this sum */
222 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(sum));
223 }
224
225 static bool
226 midgard_nir_lower_fdot2(nir_shader *shader)
227 {
228 bool progress = false;
229
230 nir_foreach_function(function, shader) {
231 if (!function->impl) continue;
232
233 nir_builder _b;
234 nir_builder *b = &_b;
235 nir_builder_init(b, function->impl);
236
237 nir_foreach_block(block, function->impl) {
238 nir_foreach_instr_safe(instr, block) {
239 if (instr->type != nir_instr_type_alu) continue;
240
241 nir_alu_instr *alu = nir_instr_as_alu(instr);
242 midgard_nir_lower_fdot2_body(b, alu);
243
244 progress |= true;
245 }
246 }
247
248 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
249
250 }
251
252 return progress;
253 }
254
255 /* Midgard can't write depth and stencil separately. It has to happen in a
256 * single store operation containing both. Let's add a panfrost specific
257 * intrinsic and turn all depth/stencil stores into a packed depth+stencil
258 * one.
259 */
260 static bool
261 midgard_nir_lower_zs_store(nir_shader *nir)
262 {
263 if (nir->info.stage != MESA_SHADER_FRAGMENT)
264 return false;
265
266 nir_variable *z_var = NULL, *s_var = NULL;
267
268 nir_foreach_variable(var, &nir->outputs) {
269 if (var->data.location == FRAG_RESULT_DEPTH)
270 z_var = var;
271 else if (var->data.location == FRAG_RESULT_STENCIL)
272 s_var = var;
273 }
274
275 if (!z_var && !s_var)
276 return false;
277
278 bool progress = false;
279
280 nir_foreach_function(function, nir) {
281 if (!function->impl) continue;
282
283 nir_intrinsic_instr *z_store = NULL, *s_store = NULL, *last_store = NULL;
284
285 nir_foreach_block(block, function->impl) {
286 nir_foreach_instr_safe(instr, block) {
287 if (instr->type != nir_instr_type_intrinsic)
288 continue;
289
290 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
291 if (intr->intrinsic != nir_intrinsic_store_output)
292 continue;
293
294 if (z_var && nir_intrinsic_base(intr) == z_var->data.driver_location) {
295 assert(!z_store);
296 z_store = intr;
297 last_store = intr;
298 }
299
300 if (s_var && nir_intrinsic_base(intr) == s_var->data.driver_location) {
301 assert(!s_store);
302 s_store = intr;
303 last_store = intr;
304 }
305 }
306 }
307
308 if (!z_store && !s_store) continue;
309
310 nir_builder b;
311 nir_builder_init(&b, function->impl);
312
313 b.cursor = nir_before_instr(&last_store->instr);
314
315 nir_ssa_def *zs_store_src;
316
317 if (z_store && s_store) {
318 nir_ssa_def *srcs[2] = {
319 nir_ssa_for_src(&b, z_store->src[0], 1),
320 nir_ssa_for_src(&b, s_store->src[0], 1),
321 };
322
323 zs_store_src = nir_vec(&b, srcs, 2);
324 } else {
325 zs_store_src = nir_ssa_for_src(&b, last_store->src[0], 1);
326 }
327
328 nir_intrinsic_instr *zs_store;
329
330 zs_store = nir_intrinsic_instr_create(b.shader,
331 nir_intrinsic_store_zs_output_pan);
332 zs_store->src[0] = nir_src_for_ssa(zs_store_src);
333 zs_store->num_components = z_store && s_store ? 2 : 1;
334 nir_intrinsic_set_component(zs_store, z_store ? 0 : 1);
335
336 /* Replace the Z and S store by a ZS store */
337 nir_builder_instr_insert(&b, &zs_store->instr);
338
339 if (z_store)
340 nir_instr_remove(&z_store->instr);
341
342 if (s_store)
343 nir_instr_remove(&s_store->instr);
344
345 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
346 progress = true;
347 }
348
349 return progress;
350 }
351
352 /* Flushes undefined values to zero */
353
354 static void
355 optimise_nir(nir_shader *nir, unsigned quirks)
356 {
357 bool progress;
358 unsigned lower_flrp =
359 (nir->options->lower_flrp16 ? 16 : 0) |
360 (nir->options->lower_flrp32 ? 32 : 0) |
361 (nir->options->lower_flrp64 ? 64 : 0);
362
363 NIR_PASS(progress, nir, nir_lower_regs_to_ssa);
364 NIR_PASS(progress, nir, nir_lower_idiv, nir_lower_idiv_fast);
365
366 nir_lower_tex_options lower_tex_options = {
367 .lower_txs_lod = true,
368 .lower_txp = ~0,
369 .lower_tex_without_implicit_lod =
370 (quirks & MIDGARD_EXPLICIT_LOD),
371
372 /* TODO: we have native gradient.. */
373 .lower_txd = true,
374 };
375
376 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_options);
377
378 /* Must lower fdot2 after tex is lowered */
379 NIR_PASS(progress, nir, midgard_nir_lower_fdot2);
380
381 /* T720 is broken. */
382
383 if (quirks & MIDGARD_BROKEN_LOD)
384 NIR_PASS_V(nir, midgard_nir_lod_errata);
385
386 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_early);
387
388 do {
389 progress = false;
390
391 NIR_PASS(progress, nir, nir_lower_var_copies);
392 NIR_PASS(progress, nir, nir_lower_vars_to_ssa);
393
394 NIR_PASS(progress, nir, nir_copy_prop);
395 NIR_PASS(progress, nir, nir_opt_remove_phis);
396 NIR_PASS(progress, nir, nir_opt_dce);
397 NIR_PASS(progress, nir, nir_opt_dead_cf);
398 NIR_PASS(progress, nir, nir_opt_cse);
399 NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true);
400 NIR_PASS(progress, nir, nir_opt_algebraic);
401 NIR_PASS(progress, nir, nir_opt_constant_folding);
402
403 if (lower_flrp != 0) {
404 bool lower_flrp_progress = false;
405 NIR_PASS(lower_flrp_progress,
406 nir,
407 nir_lower_flrp,
408 lower_flrp,
409 false /* always_precise */,
410 nir->options->lower_ffma);
411 if (lower_flrp_progress) {
412 NIR_PASS(progress, nir,
413 nir_opt_constant_folding);
414 progress = true;
415 }
416
417 /* Nothing should rematerialize any flrps, so we only
418 * need to do this lowering once.
419 */
420 lower_flrp = 0;
421 }
422
423 NIR_PASS(progress, nir, nir_opt_undef);
424 NIR_PASS(progress, nir, nir_undef_to_zero);
425
426 NIR_PASS(progress, nir, nir_opt_loop_unroll,
427 nir_var_shader_in |
428 nir_var_shader_out |
429 nir_var_function_temp);
430
431 NIR_PASS(progress, nir, nir_opt_vectorize);
432 } while (progress);
433
434 /* Must be run at the end to prevent creation of fsin/fcos ops */
435 NIR_PASS(progress, nir, midgard_nir_scale_trig);
436
437 do {
438 progress = false;
439
440 NIR_PASS(progress, nir, nir_opt_dce);
441 NIR_PASS(progress, nir, nir_opt_algebraic);
442 NIR_PASS(progress, nir, nir_opt_constant_folding);
443 NIR_PASS(progress, nir, nir_copy_prop);
444 } while (progress);
445
446 NIR_PASS(progress, nir, nir_opt_algebraic_late);
447 NIR_PASS(progress, nir, nir_opt_algebraic_distribute_src_mods);
448
449 /* We implement booleans as 32-bit 0/~0 */
450 NIR_PASS(progress, nir, nir_lower_bool_to_int32);
451
452 /* Now that booleans are lowered, we can run out late opts */
453 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_late);
454 NIR_PASS(progress, nir, midgard_nir_cancel_inot);
455
456 NIR_PASS(progress, nir, nir_copy_prop);
457 NIR_PASS(progress, nir, nir_opt_dce);
458
459 /* Take us out of SSA */
460 NIR_PASS(progress, nir, nir_lower_locals_to_regs);
461 NIR_PASS(progress, nir, nir_convert_from_ssa, true);
462
463 /* We are a vector architecture; write combine where possible */
464 NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest);
465 NIR_PASS(progress, nir, nir_lower_vec_to_movs);
466
467 NIR_PASS(progress, nir, nir_opt_dce);
468 }
469
470 /* Do not actually emit a load; instead, cache the constant for inlining */
471
472 static void
473 emit_load_const(compiler_context *ctx, nir_load_const_instr *instr)
474 {
475 nir_ssa_def def = instr->def;
476
477 midgard_constants *consts = rzalloc(NULL, midgard_constants);
478
479 assert(instr->def.num_components * instr->def.bit_size <= sizeof(*consts) * 8);
480
481 #define RAW_CONST_COPY(bits) \
482 nir_const_value_to_array(consts->u##bits, instr->value, \
483 instr->def.num_components, u##bits)
484
485 switch (instr->def.bit_size) {
486 case 64:
487 RAW_CONST_COPY(64);
488 break;
489 case 32:
490 RAW_CONST_COPY(32);
491 break;
492 case 16:
493 RAW_CONST_COPY(16);
494 break;
495 case 8:
496 RAW_CONST_COPY(8);
497 break;
498 default:
499 unreachable("Invalid bit_size for load_const instruction\n");
500 }
501
502 /* Shifted for SSA, +1 for off-by-one */
503 _mesa_hash_table_u64_insert(ctx->ssa_constants, (def.index << 1) + 1, consts);
504 }
505
506 /* Normally constants are embedded implicitly, but for I/O and such we have to
507 * explicitly emit a move with the constant source */
508
509 static void
510 emit_explicit_constant(compiler_context *ctx, unsigned node, unsigned to)
511 {
512 void *constant_value = _mesa_hash_table_u64_search(ctx->ssa_constants, node + 1);
513
514 if (constant_value) {
515 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), to);
516 attach_constants(ctx, &ins, constant_value, node + 1);
517 emit_mir_instruction(ctx, ins);
518 }
519 }
520
521 static bool
522 nir_is_non_scalar_swizzle(nir_alu_src *src, unsigned nr_components)
523 {
524 unsigned comp = src->swizzle[0];
525
526 for (unsigned c = 1; c < nr_components; ++c) {
527 if (src->swizzle[c] != comp)
528 return true;
529 }
530
531 return false;
532 }
533
534 #define ALU_CASE(nir, _op) \
535 case nir_op_##nir: \
536 op = midgard_alu_op_##_op; \
537 assert(src_bitsize == dst_bitsize); \
538 break;
539
540 #define ALU_CHECK_CMP(sext) \
541 assert(src_bitsize == 16 || src_bitsize == 32); \
542 assert(dst_bitsize == 16 || dst_bitsize == 32); \
543
544 #define ALU_CASE_BCAST(nir, _op, count) \
545 case nir_op_##nir: \
546 op = midgard_alu_op_##_op; \
547 broadcast_swizzle = count; \
548 ALU_CHECK_CMP(true); \
549 break;
550
551 #define ALU_CASE_CMP(nir, _op, sext) \
552 case nir_op_##nir: \
553 op = midgard_alu_op_##_op; \
554 ALU_CHECK_CMP(sext); \
555 break;
556
557 /* Analyze the sizes of the dest and inputs to determine reg mode. */
558
559 static midgard_reg_mode
560 reg_mode_for_nir(nir_alu_instr *instr)
561 {
562 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
563 unsigned dst_bitsize = nir_dest_bit_size(instr->dest.dest);
564 unsigned max_bitsize = MAX2(src_bitsize, dst_bitsize);
565
566 /* We don't have fp16 LUTs, so we'll want to emit code like:
567 *
568 * vlut.fsinr hr0, hr0
569 *
570 * where both input and output are 16-bit but the operation is carried
571 * out in 32-bit
572 */
573
574 switch (instr->op) {
575 case nir_op_fsqrt:
576 case nir_op_frcp:
577 case nir_op_frsq:
578 case nir_op_fsin:
579 case nir_op_fcos:
580 case nir_op_fexp2:
581 case nir_op_flog2:
582 max_bitsize = MAX2(max_bitsize, 32);
583 default:
584 break;
585 }
586
587 switch (max_bitsize) {
588 case 8:
589 return midgard_reg_mode_8;
590 case 16:
591 return midgard_reg_mode_16;
592 case 32:
593 return midgard_reg_mode_32;
594 case 64:
595 return midgard_reg_mode_64;
596 default:
597 unreachable("Invalid bit size");
598 }
599 }
600
601 /* Compare mir_lower_invert */
602 static bool
603 nir_accepts_inot(nir_op op, unsigned src)
604 {
605 switch (op) {
606 case nir_op_ior:
607 case nir_op_iand: /* TODO: b2f16 */
608 case nir_op_ixor:
609 return true;
610 case nir_op_b32csel:
611 /* Only the condition */
612 return (src == 0);
613 default:
614 return false;
615 }
616 }
617
618 static bool
619 mir_accept_dest_mod(compiler_context *ctx, nir_dest **dest, nir_op op)
620 {
621 if (pan_has_dest_mod(dest, op)) {
622 assert((*dest)->is_ssa);
623 BITSET_SET(ctx->already_emitted, (*dest)->ssa.index);
624 return true;
625 }
626
627 return false;
628 }
629
630 static void
631 mir_copy_src(midgard_instruction *ins, nir_alu_instr *instr, unsigned i, unsigned to, bool *abs, bool *neg, bool *not, bool is_int, unsigned bcast_count)
632 {
633 nir_alu_src src = instr->src[i];
634
635 if (!is_int) {
636 if (pan_has_source_mod(&src, nir_op_fneg))
637 *neg = !(*neg);
638
639 if (pan_has_source_mod(&src, nir_op_fabs))
640 *abs = true;
641 }
642
643 if (nir_accepts_inot(instr->op, i) && pan_has_source_mod(&src, nir_op_inot))
644 *not = true;
645
646 unsigned bits = nir_src_bit_size(src.src);
647
648 ins->src[to] = nir_src_index(NULL, &src.src);
649 ins->src_types[to] = nir_op_infos[instr->op].input_types[i] | bits;
650
651 for (unsigned c = 0; c < NIR_MAX_VEC_COMPONENTS; ++c) {
652 ins->swizzle[to][c] = src.swizzle[
653 (!bcast_count || c < bcast_count) ? c :
654 (bcast_count - 1)];
655 }
656 }
657
658 /* Midgard features both fcsel and icsel, depending on whether you want int or
659 * float modifiers. NIR's csel is typeless, so we want a heuristic to guess if
660 * we should emit an int or float csel depending on what modifiers could be
661 * placed. In the absense of modifiers, this is probably arbitrary. */
662
663 static bool
664 mir_is_bcsel_float(nir_alu_instr *instr)
665 {
666 nir_op intmods[] = {
667 nir_op_i2i8, nir_op_i2i16,
668 nir_op_i2i32, nir_op_i2i64
669 };
670
671 nir_op floatmods[] = {
672 nir_op_fabs, nir_op_fneg,
673 nir_op_f2f16, nir_op_f2f32,
674 nir_op_f2f64
675 };
676
677 nir_op floatdestmods[] = {
678 nir_op_fsat, nir_op_fsat_signed, nir_op_fclamp_pos,
679 nir_op_f2f16, nir_op_f2f32
680 };
681
682 signed score = 0;
683
684 for (unsigned i = 1; i < 3; ++i) {
685 nir_alu_src s = instr->src[i];
686 for (unsigned q = 0; q < ARRAY_SIZE(intmods); ++q) {
687 if (pan_has_source_mod(&s, intmods[q]))
688 score--;
689 }
690 }
691
692 for (unsigned i = 1; i < 3; ++i) {
693 nir_alu_src s = instr->src[i];
694 for (unsigned q = 0; q < ARRAY_SIZE(floatmods); ++q) {
695 if (pan_has_source_mod(&s, floatmods[q]))
696 score++;
697 }
698 }
699
700 for (unsigned q = 0; q < ARRAY_SIZE(floatdestmods); ++q) {
701 nir_dest *dest = &instr->dest.dest;
702 if (pan_has_dest_mod(&dest, floatdestmods[q]))
703 score++;
704 }
705
706 return (score > 0);
707 }
708
709 static void
710 emit_alu(compiler_context *ctx, nir_alu_instr *instr)
711 {
712 nir_dest *dest = &instr->dest.dest;
713
714 if (dest->is_ssa && BITSET_TEST(ctx->already_emitted, dest->ssa.index))
715 return;
716
717 /* Derivatives end up emitted on the texture pipe, not the ALUs. This
718 * is handled elsewhere */
719
720 if (instr->op == nir_op_fddx || instr->op == nir_op_fddy) {
721 midgard_emit_derivatives(ctx, instr);
722 return;
723 }
724
725 bool is_ssa = dest->is_ssa;
726
727 unsigned nr_components = nir_dest_num_components(*dest);
728 unsigned nr_inputs = nir_op_infos[instr->op].num_inputs;
729 unsigned op = 0;
730
731 /* Number of components valid to check for the instruction (the rest
732 * will be forced to the last), or 0 to use as-is. Relevant as
733 * ball-type instructions have a channel count in NIR but are all vec4
734 * in Midgard */
735
736 unsigned broadcast_swizzle = 0;
737
738 /* What register mode should we operate in? */
739 midgard_reg_mode reg_mode =
740 reg_mode_for_nir(instr);
741
742 /* Should we swap arguments? */
743 bool flip_src12 = false;
744
745 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
746 unsigned dst_bitsize = nir_dest_bit_size(*dest);
747
748 switch (instr->op) {
749 ALU_CASE(fadd, fadd);
750 ALU_CASE(fmul, fmul);
751 ALU_CASE(fmin, fmin);
752 ALU_CASE(fmax, fmax);
753 ALU_CASE(imin, imin);
754 ALU_CASE(imax, imax);
755 ALU_CASE(umin, umin);
756 ALU_CASE(umax, umax);
757 ALU_CASE(ffloor, ffloor);
758 ALU_CASE(fround_even, froundeven);
759 ALU_CASE(ftrunc, ftrunc);
760 ALU_CASE(fceil, fceil);
761 ALU_CASE(fdot3, fdot3);
762 ALU_CASE(fdot4, fdot4);
763 ALU_CASE(iadd, iadd);
764 ALU_CASE(isub, isub);
765 ALU_CASE(imul, imul);
766
767 /* Zero shoved as second-arg */
768 ALU_CASE(iabs, iabsdiff);
769
770 ALU_CASE(mov, imov);
771
772 ALU_CASE_CMP(feq32, feq, false);
773 ALU_CASE_CMP(fne32, fne, false);
774 ALU_CASE_CMP(flt32, flt, false);
775 ALU_CASE_CMP(ieq32, ieq, true);
776 ALU_CASE_CMP(ine32, ine, true);
777 ALU_CASE_CMP(ilt32, ilt, true);
778 ALU_CASE_CMP(ult32, ult, false);
779
780 /* We don't have a native b2f32 instruction. Instead, like many
781 * GPUs, we exploit booleans as 0/~0 for false/true, and
782 * correspondingly AND
783 * by 1.0 to do the type conversion. For the moment, prime us
784 * to emit:
785 *
786 * iand [whatever], #0
787 *
788 * At the end of emit_alu (as MIR), we'll fix-up the constant
789 */
790
791 ALU_CASE_CMP(b2f32, iand, true);
792 ALU_CASE_CMP(b2f16, iand, true);
793 ALU_CASE_CMP(b2i32, iand, true);
794
795 /* Likewise, we don't have a dedicated f2b32 instruction, but
796 * we can do a "not equal to 0.0" test. */
797
798 ALU_CASE_CMP(f2b32, fne, false);
799 ALU_CASE_CMP(i2b32, ine, true);
800
801 ALU_CASE(frcp, frcp);
802 ALU_CASE(frsq, frsqrt);
803 ALU_CASE(fsqrt, fsqrt);
804 ALU_CASE(fexp2, fexp2);
805 ALU_CASE(flog2, flog2);
806
807 ALU_CASE(f2i64, f2i_rtz);
808 ALU_CASE(f2u64, f2u_rtz);
809 ALU_CASE(i2f64, i2f_rtz);
810 ALU_CASE(u2f64, u2f_rtz);
811
812 ALU_CASE(f2i32, f2i_rtz);
813 ALU_CASE(f2u32, f2u_rtz);
814 ALU_CASE(i2f32, i2f_rtz);
815 ALU_CASE(u2f32, u2f_rtz);
816
817 ALU_CASE(f2i16, f2i_rtz);
818 ALU_CASE(f2u16, f2u_rtz);
819 ALU_CASE(i2f16, i2f_rtz);
820 ALU_CASE(u2f16, u2f_rtz);
821
822 ALU_CASE(fsin, fsin);
823 ALU_CASE(fcos, fcos);
824
825 /* We'll get 0 in the second arg, so:
826 * ~a = ~(a | 0) = nor(a, 0) */
827 ALU_CASE(inot, inor);
828 ALU_CASE(iand, iand);
829 ALU_CASE(ior, ior);
830 ALU_CASE(ixor, ixor);
831 ALU_CASE(ishl, ishl);
832 ALU_CASE(ishr, iasr);
833 ALU_CASE(ushr, ilsr);
834
835 ALU_CASE_BCAST(b32all_fequal2, fball_eq, 2);
836 ALU_CASE_BCAST(b32all_fequal3, fball_eq, 3);
837 ALU_CASE_CMP(b32all_fequal4, fball_eq, true);
838
839 ALU_CASE_BCAST(b32any_fnequal2, fbany_neq, 2);
840 ALU_CASE_BCAST(b32any_fnequal3, fbany_neq, 3);
841 ALU_CASE_CMP(b32any_fnequal4, fbany_neq, true);
842
843 ALU_CASE_BCAST(b32all_iequal2, iball_eq, 2);
844 ALU_CASE_BCAST(b32all_iequal3, iball_eq, 3);
845 ALU_CASE_CMP(b32all_iequal4, iball_eq, true);
846
847 ALU_CASE_BCAST(b32any_inequal2, ibany_neq, 2);
848 ALU_CASE_BCAST(b32any_inequal3, ibany_neq, 3);
849 ALU_CASE_CMP(b32any_inequal4, ibany_neq, true);
850
851 /* Source mods will be shoved in later */
852 ALU_CASE(fabs, fmov);
853 ALU_CASE(fneg, fmov);
854 ALU_CASE(fsat, fmov);
855 ALU_CASE(fsat_signed, fmov);
856 ALU_CASE(fclamp_pos, fmov);
857
858 /* For size conversion, we use a move. Ideally though we would squash
859 * these ops together; maybe that has to happen after in NIR as part of
860 * propagation...? An earlier algebraic pass ensured we step down by
861 * only / exactly one size. If stepping down, we use a dest override to
862 * reduce the size; if stepping up, we use a larger-sized move with a
863 * half source and a sign/zero-extension modifier */
864
865 case nir_op_i2i8:
866 case nir_op_i2i16:
867 case nir_op_i2i32:
868 case nir_op_i2i64:
869 case nir_op_u2u8:
870 case nir_op_u2u16:
871 case nir_op_u2u32:
872 case nir_op_u2u64:
873 case nir_op_f2f16:
874 case nir_op_f2f32:
875 case nir_op_f2f64: {
876 if (instr->op == nir_op_f2f16 || instr->op == nir_op_f2f32 ||
877 instr->op == nir_op_f2f64)
878 op = midgard_alu_op_fmov;
879 else
880 op = midgard_alu_op_imov;
881
882 break;
883 }
884
885 /* For greater-or-equal, we lower to less-or-equal and flip the
886 * arguments */
887
888 case nir_op_fge:
889 case nir_op_fge32:
890 case nir_op_ige32:
891 case nir_op_uge32: {
892 op =
893 instr->op == nir_op_fge ? midgard_alu_op_fle :
894 instr->op == nir_op_fge32 ? midgard_alu_op_fle :
895 instr->op == nir_op_ige32 ? midgard_alu_op_ile :
896 instr->op == nir_op_uge32 ? midgard_alu_op_ule :
897 0;
898
899 flip_src12 = true;
900 ALU_CHECK_CMP(false);
901 break;
902 }
903
904 case nir_op_b32csel: {
905 bool mixed = nir_is_non_scalar_swizzle(&instr->src[0], nr_components);
906 bool is_float = mir_is_bcsel_float(instr);
907 op = is_float ?
908 (mixed ? midgard_alu_op_fcsel_v : midgard_alu_op_fcsel) :
909 (mixed ? midgard_alu_op_icsel_v : midgard_alu_op_icsel);
910
911 break;
912 }
913
914 case nir_op_unpack_32_2x16:
915 case nir_op_unpack_32_4x8:
916 case nir_op_pack_32_2x16:
917 case nir_op_pack_32_4x8: {
918 op = midgard_alu_op_imov;
919 break;
920 }
921
922 default:
923 DBG("Unhandled ALU op %s\n", nir_op_infos[instr->op].name);
924 assert(0);
925 return;
926 }
927
928 /* Promote imov to fmov if it might help inline a constant */
929 if (op == midgard_alu_op_imov && nir_src_is_const(instr->src[0].src)
930 && nir_src_bit_size(instr->src[0].src) == 32
931 && nir_is_same_comp_swizzle(instr->src[0].swizzle,
932 nir_src_num_components(instr->src[0].src))) {
933 op = midgard_alu_op_fmov;
934 }
935
936 /* Midgard can perform certain modifiers on output of an ALU op */
937
938 unsigned outmod = 0;
939 bool is_int = midgard_is_integer_op(op);
940
941 if (midgard_is_integer_out_op(op)) {
942 outmod = midgard_outmod_int_wrap;
943 } else if (instr->op == nir_op_fsat) {
944 outmod = midgard_outmod_sat;
945 } else if (instr->op == nir_op_fsat_signed) {
946 outmod = midgard_outmod_sat_signed;
947 } else if (instr->op == nir_op_fclamp_pos) {
948 outmod = midgard_outmod_pos;
949 }
950
951 /* Fetch unit, quirks, etc information */
952 unsigned opcode_props = alu_opcode_props[op].props;
953 bool quirk_flipped_r24 = opcode_props & QUIRK_FLIPPED_R24;
954
955 /* Look for floating point mods. We have the mods fsat, fsat_signed,
956 * and fpos. We also have the relations (note 3 * 2 = 6 cases):
957 *
958 * fsat_signed(fpos(x)) = fsat(x)
959 * fsat_signed(fsat(x)) = fsat(x)
960 * fpos(fsat_signed(x)) = fsat(x)
961 * fpos(fsat(x)) = fsat(x)
962 * fsat(fsat_signed(x)) = fsat(x)
963 * fsat(fpos(x)) = fsat(x)
964 *
965 * So by cases any composition of output modifiers is equivalent to
966 * fsat alone.
967 */
968
969 if (!is_int && !(opcode_props & OP_TYPE_CONVERT)) {
970 bool fpos = mir_accept_dest_mod(ctx, &dest, nir_op_fclamp_pos);
971 bool fsat = mir_accept_dest_mod(ctx, &dest, nir_op_fsat);
972 bool ssat = mir_accept_dest_mod(ctx, &dest, nir_op_fsat_signed);
973 bool prior = (outmod != midgard_outmod_none);
974 int count = (int) prior + (int) fpos + (int) ssat + (int) fsat;
975
976 outmod = ((count > 1) || fsat) ? midgard_outmod_sat :
977 fpos ? midgard_outmod_pos :
978 ssat ? midgard_outmod_sat_signed :
979 outmod;
980 }
981
982 midgard_instruction ins = {
983 .type = TAG_ALU_4,
984 .dest = nir_dest_index(dest),
985 .dest_type = nir_op_infos[instr->op].output_type
986 | nir_dest_bit_size(*dest),
987 };
988
989 for (unsigned i = nr_inputs; i < ARRAY_SIZE(ins.src); ++i)
990 ins.src[i] = ~0;
991
992 if (quirk_flipped_r24) {
993 ins.src[0] = ~0;
994 mir_copy_src(&ins, instr, 0, 1, &ins.src_abs[1], &ins.src_neg[1], &ins.src_invert[1], is_int, broadcast_swizzle);
995 } else {
996 for (unsigned i = 0; i < nr_inputs; ++i) {
997 unsigned to = i;
998
999 if (instr->op == nir_op_b32csel) {
1000 /* The condition is the first argument; move
1001 * the other arguments up one to be a binary
1002 * instruction for Midgard with the condition
1003 * last */
1004
1005 if (i == 0)
1006 to = 2;
1007 else if (flip_src12)
1008 to = 2 - i;
1009 else
1010 to = i - 1;
1011 } else if (flip_src12) {
1012 to = 1 - to;
1013 }
1014
1015 mir_copy_src(&ins, instr, i, to, &ins.src_abs[to], &ins.src_neg[to], &ins.src_invert[to], is_int, broadcast_swizzle);
1016
1017 /* (!c) ? a : b = c ? b : a */
1018 if (instr->op == nir_op_b32csel && ins.src_invert[2]) {
1019 ins.src_invert[2] = false;
1020 flip_src12 ^= true;
1021 }
1022 }
1023 }
1024
1025 if (instr->op == nir_op_fneg || instr->op == nir_op_fabs) {
1026 /* Lowered to move */
1027 if (instr->op == nir_op_fneg)
1028 ins.src_neg[1] ^= true;
1029
1030 if (instr->op == nir_op_fabs)
1031 ins.src_abs[1] = true;
1032 }
1033
1034 ins.mask = mask_of(nr_components);
1035
1036 midgard_vector_alu alu = {
1037 .op = op,
1038 .reg_mode = reg_mode,
1039 .outmod = outmod,
1040 };
1041
1042 /* Apply writemask if non-SSA, keeping in mind that we can't write to
1043 * components that don't exist. Note modifier => SSA => !reg => no
1044 * writemask, so we don't have to worry about writemasks here.*/
1045
1046 if (!is_ssa)
1047 ins.mask &= instr->dest.write_mask;
1048
1049 ins.alu = alu;
1050
1051 /* Late fixup for emulated instructions */
1052
1053 if (instr->op == nir_op_b2f32 || instr->op == nir_op_b2i32) {
1054 /* Presently, our second argument is an inline #0 constant.
1055 * Switch over to an embedded 1.0 constant (that can't fit
1056 * inline, since we're 32-bit, not 16-bit like the inline
1057 * constants) */
1058
1059 ins.has_inline_constant = false;
1060 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
1061 ins.src_types[1] = nir_type_float32;
1062 ins.has_constants = true;
1063
1064 if (instr->op == nir_op_b2f32)
1065 ins.constants.f32[0] = 1.0f;
1066 else
1067 ins.constants.i32[0] = 1;
1068
1069 for (unsigned c = 0; c < 16; ++c)
1070 ins.swizzle[1][c] = 0;
1071 } else if (instr->op == nir_op_b2f16) {
1072 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
1073 ins.src_types[1] = nir_type_float16;
1074 ins.has_constants = true;
1075 ins.constants.i16[0] = _mesa_float_to_half(1.0);
1076
1077 for (unsigned c = 0; c < 16; ++c)
1078 ins.swizzle[1][c] = 0;
1079 } else if (nr_inputs == 1 && !quirk_flipped_r24) {
1080 /* Lots of instructions need a 0 plonked in */
1081 ins.has_inline_constant = false;
1082 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
1083 ins.src_types[1] = nir_type_uint32;
1084 ins.has_constants = true;
1085 ins.constants.u32[0] = 0;
1086
1087 for (unsigned c = 0; c < 16; ++c)
1088 ins.swizzle[1][c] = 0;
1089 } else if (instr->op == nir_op_pack_32_2x16) {
1090 ins.dest_type = nir_type_uint16;
1091 ins.mask = mask_of(nr_components * 2);
1092 ins.is_pack = true;
1093 } else if (instr->op == nir_op_pack_32_4x8) {
1094 ins.dest_type = nir_type_uint8;
1095 ins.mask = mask_of(nr_components * 4);
1096 ins.is_pack = true;
1097 } else if (instr->op == nir_op_unpack_32_2x16) {
1098 ins.dest_type = nir_type_uint32;
1099 ins.mask = mask_of(nr_components >> 1);
1100 ins.is_pack = true;
1101 } else if (instr->op == nir_op_unpack_32_4x8) {
1102 ins.dest_type = nir_type_uint32;
1103 ins.mask = mask_of(nr_components >> 2);
1104 ins.is_pack = true;
1105 }
1106
1107 /* Arrange for creation of iandnot/iornot */
1108 if (ins.src_invert[0] && !ins.src_invert[1]) {
1109 mir_flip(&ins);
1110 ins.src_invert[0] = false;
1111 ins.src_invert[1] = true;
1112 }
1113
1114 if ((opcode_props & UNITS_ALL) == UNIT_VLUT) {
1115 /* To avoid duplicating the lookup tables (probably), true LUT
1116 * instructions can only operate as if they were scalars. Lower
1117 * them here by changing the component. */
1118
1119 unsigned orig_mask = ins.mask;
1120
1121 unsigned swizzle_back[MIR_VEC_COMPONENTS];
1122 memcpy(&swizzle_back, ins.swizzle[0], sizeof(swizzle_back));
1123
1124 for (int i = 0; i < nr_components; ++i) {
1125 /* Mask the associated component, dropping the
1126 * instruction if needed */
1127
1128 ins.mask = 1 << i;
1129 ins.mask &= orig_mask;
1130
1131 if (!ins.mask)
1132 continue;
1133
1134 for (unsigned j = 0; j < MIR_VEC_COMPONENTS; ++j)
1135 ins.swizzle[0][j] = swizzle_back[i]; /* Pull from the correct component */
1136
1137 emit_mir_instruction(ctx, ins);
1138 }
1139 } else {
1140 emit_mir_instruction(ctx, ins);
1141 }
1142 }
1143
1144 #undef ALU_CASE
1145
1146 static void
1147 mir_set_intr_mask(nir_instr *instr, midgard_instruction *ins, bool is_read)
1148 {
1149 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
1150 unsigned nir_mask = 0;
1151 unsigned dsize = 0;
1152
1153 if (is_read) {
1154 nir_mask = mask_of(nir_intrinsic_dest_components(intr));
1155 dsize = nir_dest_bit_size(intr->dest);
1156 } else {
1157 nir_mask = nir_intrinsic_write_mask(intr);
1158 dsize = 32;
1159 }
1160
1161 /* Once we have the NIR mask, we need to normalize to work in 32-bit space */
1162 unsigned bytemask = pan_to_bytemask(dsize, nir_mask);
1163 mir_set_bytemask(ins, bytemask);
1164 ins->dest_type = nir_type_uint | dsize;
1165 }
1166
1167 /* Uniforms and UBOs use a shared code path, as uniforms are just (slightly
1168 * optimized) versions of UBO #0 */
1169
1170 static midgard_instruction *
1171 emit_ubo_read(
1172 compiler_context *ctx,
1173 nir_instr *instr,
1174 unsigned dest,
1175 unsigned offset,
1176 nir_src *indirect_offset,
1177 unsigned indirect_shift,
1178 unsigned index)
1179 {
1180 /* TODO: half-floats */
1181
1182 midgard_instruction ins = m_ld_ubo_int4(dest, 0);
1183 ins.constants.u32[0] = offset;
1184
1185 if (instr->type == nir_instr_type_intrinsic)
1186 mir_set_intr_mask(instr, &ins, true);
1187
1188 if (indirect_offset) {
1189 ins.src[2] = nir_src_index(ctx, indirect_offset);
1190 ins.src_types[2] = nir_type_uint32;
1191 ins.load_store.arg_2 = (indirect_shift << 5);
1192 } else {
1193 ins.load_store.arg_2 = 0x1E;
1194 }
1195
1196 ins.load_store.arg_1 = index;
1197
1198 return emit_mir_instruction(ctx, ins);
1199 }
1200
1201 /* Globals are like UBOs if you squint. And shared memory is like globals if
1202 * you squint even harder */
1203
1204 static void
1205 emit_global(
1206 compiler_context *ctx,
1207 nir_instr *instr,
1208 bool is_read,
1209 unsigned srcdest,
1210 nir_src *offset,
1211 bool is_shared)
1212 {
1213 /* TODO: types */
1214
1215 midgard_instruction ins;
1216
1217 if (is_read)
1218 ins = m_ld_int4(srcdest, 0);
1219 else
1220 ins = m_st_int4(srcdest, 0);
1221
1222 mir_set_offset(ctx, &ins, offset, is_shared);
1223 mir_set_intr_mask(instr, &ins, is_read);
1224
1225 emit_mir_instruction(ctx, ins);
1226 }
1227
1228 static void
1229 emit_varying_read(
1230 compiler_context *ctx,
1231 unsigned dest, unsigned offset,
1232 unsigned nr_comp, unsigned component,
1233 nir_src *indirect_offset, nir_alu_type type, bool flat)
1234 {
1235 /* XXX: Half-floats? */
1236 /* TODO: swizzle, mask */
1237
1238 midgard_instruction ins = m_ld_vary_32(dest, offset);
1239 ins.mask = mask_of(nr_comp);
1240
1241 for (unsigned i = 0; i < ARRAY_SIZE(ins.swizzle[0]); ++i)
1242 ins.swizzle[0][i] = MIN2(i + component, COMPONENT_W);
1243
1244 midgard_varying_parameter p = {
1245 .is_varying = 1,
1246 .interpolation = midgard_interp_default,
1247 .flat = flat,
1248 };
1249
1250 unsigned u;
1251 memcpy(&u, &p, sizeof(p));
1252 ins.load_store.varying_parameters = u;
1253
1254 if (indirect_offset) {
1255 ins.src[2] = nir_src_index(ctx, indirect_offset);
1256 ins.src_types[2] = nir_type_uint32;
1257 } else
1258 ins.load_store.arg_2 = 0x1E;
1259
1260 ins.load_store.arg_1 = 0x9E;
1261
1262 /* Use the type appropriate load */
1263 switch (type) {
1264 case nir_type_uint:
1265 case nir_type_bool:
1266 ins.load_store.op = midgard_op_ld_vary_32u;
1267 break;
1268 case nir_type_int:
1269 ins.load_store.op = midgard_op_ld_vary_32i;
1270 break;
1271 case nir_type_float:
1272 ins.load_store.op = midgard_op_ld_vary_32;
1273 break;
1274 default:
1275 unreachable("Attempted to load unknown type");
1276 break;
1277 }
1278
1279 emit_mir_instruction(ctx, ins);
1280 }
1281
1282 static void
1283 emit_attr_read(
1284 compiler_context *ctx,
1285 unsigned dest, unsigned offset,
1286 unsigned nr_comp, nir_alu_type t)
1287 {
1288 midgard_instruction ins = m_ld_attr_32(dest, offset);
1289 ins.load_store.arg_1 = 0x1E;
1290 ins.load_store.arg_2 = 0x1E;
1291 ins.mask = mask_of(nr_comp);
1292
1293 /* Use the type appropriate load */
1294 switch (t) {
1295 case nir_type_uint:
1296 case nir_type_bool:
1297 ins.load_store.op = midgard_op_ld_attr_32u;
1298 break;
1299 case nir_type_int:
1300 ins.load_store.op = midgard_op_ld_attr_32i;
1301 break;
1302 case nir_type_float:
1303 ins.load_store.op = midgard_op_ld_attr_32;
1304 break;
1305 default:
1306 unreachable("Attempted to load unknown type");
1307 break;
1308 }
1309
1310 emit_mir_instruction(ctx, ins);
1311 }
1312
1313 static void
1314 emit_sysval_read(compiler_context *ctx, nir_instr *instr,
1315 unsigned nr_components, unsigned offset)
1316 {
1317 nir_dest nir_dest;
1318
1319 /* Figure out which uniform this is */
1320 int sysval = panfrost_sysval_for_instr(instr, &nir_dest);
1321 void *val = _mesa_hash_table_u64_search(ctx->sysvals.sysval_to_id, sysval);
1322
1323 unsigned dest = nir_dest_index(&nir_dest);
1324
1325 /* Sysvals are prefix uniforms */
1326 unsigned uniform = ((uintptr_t) val) - 1;
1327
1328 /* Emit the read itself -- this is never indirect */
1329 midgard_instruction *ins =
1330 emit_ubo_read(ctx, instr, dest, (uniform * 16) + offset, NULL, 0, 0);
1331
1332 ins->mask = mask_of(nr_components);
1333 }
1334
1335 static unsigned
1336 compute_builtin_arg(nir_op op)
1337 {
1338 switch (op) {
1339 case nir_intrinsic_load_work_group_id:
1340 return 0x14;
1341 case nir_intrinsic_load_local_invocation_id:
1342 return 0x10;
1343 default:
1344 unreachable("Invalid compute paramater loaded");
1345 }
1346 }
1347
1348 static void
1349 emit_fragment_store(compiler_context *ctx, unsigned src, enum midgard_rt_id rt)
1350 {
1351 assert(rt < ARRAY_SIZE(ctx->writeout_branch));
1352
1353 midgard_instruction *br = ctx->writeout_branch[rt];
1354
1355 assert(!br);
1356
1357 emit_explicit_constant(ctx, src, src);
1358
1359 struct midgard_instruction ins =
1360 v_branch(false, false);
1361
1362 ins.writeout = true;
1363
1364 /* Add dependencies */
1365 ins.src[0] = src;
1366 ins.src_types[0] = nir_type_uint32;
1367 ins.constants.u32[0] = rt == MIDGARD_ZS_RT ?
1368 0xFF : (rt - MIDGARD_COLOR_RT0) * 0x100;
1369
1370 /* Emit the branch */
1371 br = emit_mir_instruction(ctx, ins);
1372 schedule_barrier(ctx);
1373 ctx->writeout_branch[rt] = br;
1374
1375 /* Push our current location = current block count - 1 = where we'll
1376 * jump to. Maybe a bit too clever for my own good */
1377
1378 br->branch.target_block = ctx->block_count - 1;
1379 }
1380
1381 static void
1382 emit_compute_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1383 {
1384 unsigned reg = nir_dest_index(&instr->dest);
1385 midgard_instruction ins = m_ld_compute_id(reg, 0);
1386 ins.mask = mask_of(3);
1387 ins.swizzle[0][3] = COMPONENT_X; /* xyzx */
1388 ins.load_store.arg_1 = compute_builtin_arg(instr->intrinsic);
1389 emit_mir_instruction(ctx, ins);
1390 }
1391
1392 static unsigned
1393 vertex_builtin_arg(nir_op op)
1394 {
1395 switch (op) {
1396 case nir_intrinsic_load_vertex_id:
1397 return PAN_VERTEX_ID;
1398 case nir_intrinsic_load_instance_id:
1399 return PAN_INSTANCE_ID;
1400 default:
1401 unreachable("Invalid vertex builtin");
1402 }
1403 }
1404
1405 static void
1406 emit_vertex_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1407 {
1408 unsigned reg = nir_dest_index(&instr->dest);
1409 emit_attr_read(ctx, reg, vertex_builtin_arg(instr->intrinsic), 1, nir_type_int);
1410 }
1411
1412 static void
1413 emit_control_barrier(compiler_context *ctx)
1414 {
1415 midgard_instruction ins = {
1416 .type = TAG_TEXTURE_4,
1417 .dest = ~0,
1418 .src = { ~0, ~0, ~0, ~0 },
1419 .texture = {
1420 .op = TEXTURE_OP_BARRIER,
1421
1422 /* TODO: optimize */
1423 .barrier_buffer = 1,
1424 .barrier_shared = 1
1425 }
1426 };
1427
1428 emit_mir_instruction(ctx, ins);
1429 }
1430
1431 static const nir_variable *
1432 search_var(struct exec_list *vars, unsigned driver_loc)
1433 {
1434 nir_foreach_variable(var, vars) {
1435 if (var->data.driver_location == driver_loc)
1436 return var;
1437 }
1438
1439 return NULL;
1440 }
1441
1442 static unsigned
1443 mir_get_branch_cond(nir_src *src, bool *invert)
1444 {
1445 /* Wrap it. No swizzle since it's a scalar */
1446
1447 nir_alu_src alu = {
1448 .src = *src
1449 };
1450
1451 *invert = pan_has_source_mod(&alu, nir_op_inot);
1452 return nir_src_index(NULL, &alu.src);
1453 }
1454
1455 static void
1456 emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
1457 {
1458 unsigned offset = 0, reg;
1459
1460 switch (instr->intrinsic) {
1461 case nir_intrinsic_discard_if:
1462 case nir_intrinsic_discard: {
1463 bool conditional = instr->intrinsic == nir_intrinsic_discard_if;
1464 struct midgard_instruction discard = v_branch(conditional, false);
1465 discard.branch.target_type = TARGET_DISCARD;
1466
1467 if (conditional) {
1468 discard.src[0] = mir_get_branch_cond(&instr->src[0],
1469 &discard.branch.invert_conditional);
1470 discard.src_types[0] = nir_type_uint32;
1471 }
1472
1473 emit_mir_instruction(ctx, discard);
1474 schedule_barrier(ctx);
1475
1476 break;
1477 }
1478
1479 case nir_intrinsic_load_uniform:
1480 case nir_intrinsic_load_ubo:
1481 case nir_intrinsic_load_global:
1482 case nir_intrinsic_load_shared:
1483 case nir_intrinsic_load_input:
1484 case nir_intrinsic_load_interpolated_input: {
1485 bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform;
1486 bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo;
1487 bool is_global = instr->intrinsic == nir_intrinsic_load_global;
1488 bool is_shared = instr->intrinsic == nir_intrinsic_load_shared;
1489 bool is_flat = instr->intrinsic == nir_intrinsic_load_input;
1490 bool is_interp = instr->intrinsic == nir_intrinsic_load_interpolated_input;
1491
1492 /* Get the base type of the intrinsic */
1493 /* TODO: Infer type? Does it matter? */
1494 nir_alu_type t =
1495 (is_ubo || is_global || is_shared) ? nir_type_uint :
1496 (is_interp) ? nir_type_float :
1497 nir_intrinsic_type(instr);
1498
1499 t = nir_alu_type_get_base_type(t);
1500
1501 if (!(is_ubo || is_global)) {
1502 offset = nir_intrinsic_base(instr);
1503 }
1504
1505 unsigned nr_comp = nir_intrinsic_dest_components(instr);
1506
1507 nir_src *src_offset = nir_get_io_offset_src(instr);
1508
1509 bool direct = nir_src_is_const(*src_offset);
1510 nir_src *indirect_offset = direct ? NULL : src_offset;
1511
1512 if (direct)
1513 offset += nir_src_as_uint(*src_offset);
1514
1515 /* We may need to apply a fractional offset */
1516 int component = (is_flat || is_interp) ?
1517 nir_intrinsic_component(instr) : 0;
1518 reg = nir_dest_index(&instr->dest);
1519
1520 if (is_uniform && !ctx->is_blend) {
1521 emit_ubo_read(ctx, &instr->instr, reg, (ctx->sysvals.sysval_count + offset) * 16, indirect_offset, 4, 0);
1522 } else if (is_ubo) {
1523 nir_src index = instr->src[0];
1524
1525 /* TODO: Is indirect block number possible? */
1526 assert(nir_src_is_const(index));
1527
1528 uint32_t uindex = nir_src_as_uint(index) + 1;
1529 emit_ubo_read(ctx, &instr->instr, reg, offset, indirect_offset, 0, uindex);
1530 } else if (is_global || is_shared) {
1531 emit_global(ctx, &instr->instr, true, reg, src_offset, is_shared);
1532 } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) {
1533 emit_varying_read(ctx, reg, offset, nr_comp, component, indirect_offset, t, is_flat);
1534 } else if (ctx->is_blend) {
1535 /* For blend shaders, load the input color, which is
1536 * preloaded to r0 */
1537
1538 midgard_instruction move = v_mov(SSA_FIXED_REGISTER(0), reg);
1539 emit_mir_instruction(ctx, move);
1540 schedule_barrier(ctx);
1541 } else if (ctx->stage == MESA_SHADER_VERTEX) {
1542 emit_attr_read(ctx, reg, offset, nr_comp, t);
1543 } else {
1544 DBG("Unknown load\n");
1545 assert(0);
1546 }
1547
1548 break;
1549 }
1550
1551 /* Artefact of load_interpolated_input. TODO: other barycentric modes */
1552 case nir_intrinsic_load_barycentric_pixel:
1553 case nir_intrinsic_load_barycentric_centroid:
1554 break;
1555
1556 /* Reads 128-bit value raw off the tilebuffer during blending, tasty */
1557
1558 case nir_intrinsic_load_raw_output_pan:
1559 case nir_intrinsic_load_output_u8_as_fp16_pan:
1560 reg = nir_dest_index(&instr->dest);
1561 assert(ctx->is_blend);
1562
1563 /* T720 and below use different blend opcodes with slightly
1564 * different semantics than T760 and up */
1565
1566 midgard_instruction ld = m_ld_color_buffer_32u(reg, 0);
1567 bool old_blend = ctx->quirks & MIDGARD_OLD_BLEND;
1568
1569 if (instr->intrinsic == nir_intrinsic_load_output_u8_as_fp16_pan) {
1570 ld.load_store.op = old_blend ?
1571 midgard_op_ld_color_buffer_u8_as_fp16_old :
1572 midgard_op_ld_color_buffer_u8_as_fp16;
1573
1574 if (old_blend) {
1575 ld.load_store.address = 1;
1576 ld.load_store.arg_2 = 0x1E;
1577 }
1578
1579 for (unsigned c = 4; c < 16; ++c)
1580 ld.swizzle[0][c] = 0;
1581
1582 ld.dest_type = nir_type_float16;
1583 }
1584
1585 emit_mir_instruction(ctx, ld);
1586 break;
1587
1588 case nir_intrinsic_load_blend_const_color_rgba: {
1589 assert(ctx->is_blend);
1590 reg = nir_dest_index(&instr->dest);
1591
1592 /* Blend constants are embedded directly in the shader and
1593 * patched in, so we use some magic routing */
1594
1595 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), reg);
1596 ins.has_constants = true;
1597 ins.has_blend_constant = true;
1598 emit_mir_instruction(ctx, ins);
1599 break;
1600 }
1601
1602 case nir_intrinsic_store_zs_output_pan: {
1603 assert(ctx->stage == MESA_SHADER_FRAGMENT);
1604 emit_fragment_store(ctx, nir_src_index(ctx, &instr->src[0]),
1605 MIDGARD_ZS_RT);
1606
1607 midgard_instruction *br = ctx->writeout_branch[MIDGARD_ZS_RT];
1608
1609 if (!nir_intrinsic_component(instr))
1610 br->writeout_depth = true;
1611 if (nir_intrinsic_component(instr) ||
1612 instr->num_components)
1613 br->writeout_stencil = true;
1614 assert(br->writeout_depth | br->writeout_stencil);
1615 break;
1616 }
1617
1618 case nir_intrinsic_store_output:
1619 assert(nir_src_is_const(instr->src[1]) && "no indirect outputs");
1620
1621 offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]);
1622
1623 reg = nir_src_index(ctx, &instr->src[0]);
1624
1625 if (ctx->stage == MESA_SHADER_FRAGMENT) {
1626 const nir_variable *var;
1627 enum midgard_rt_id rt;
1628
1629 var = search_var(&ctx->nir->outputs,
1630 nir_intrinsic_base(instr));
1631 assert(var);
1632 if (var->data.location == FRAG_RESULT_COLOR)
1633 rt = MIDGARD_COLOR_RT0;
1634 else if (var->data.location >= FRAG_RESULT_DATA0)
1635 rt = MIDGARD_COLOR_RT0 + var->data.location -
1636 FRAG_RESULT_DATA0;
1637 else
1638 assert(0);
1639
1640 emit_fragment_store(ctx, reg, rt);
1641 } else if (ctx->stage == MESA_SHADER_VERTEX) {
1642 /* We should have been vectorized, though we don't
1643 * currently check that st_vary is emitted only once
1644 * per slot (this is relevant, since there's not a mask
1645 * parameter available on the store [set to 0 by the
1646 * blob]). We do respect the component by adjusting the
1647 * swizzle. If this is a constant source, we'll need to
1648 * emit that explicitly. */
1649
1650 emit_explicit_constant(ctx, reg, reg);
1651
1652 unsigned dst_component = nir_intrinsic_component(instr);
1653 unsigned nr_comp = nir_src_num_components(instr->src[0]);
1654
1655 midgard_instruction st = m_st_vary_32(reg, offset);
1656 st.load_store.arg_1 = 0x9E;
1657 st.load_store.arg_2 = 0x1E;
1658
1659 switch (nir_alu_type_get_base_type(nir_intrinsic_type(instr))) {
1660 case nir_type_uint:
1661 case nir_type_bool:
1662 st.load_store.op = midgard_op_st_vary_32u;
1663 break;
1664 case nir_type_int:
1665 st.load_store.op = midgard_op_st_vary_32i;
1666 break;
1667 case nir_type_float:
1668 st.load_store.op = midgard_op_st_vary_32;
1669 break;
1670 default:
1671 unreachable("Attempted to store unknown type");
1672 break;
1673 }
1674
1675 /* nir_intrinsic_component(store_intr) encodes the
1676 * destination component start. Source component offset
1677 * adjustment is taken care of in
1678 * install_registers_instr(), when offset_swizzle() is
1679 * called.
1680 */
1681 unsigned src_component = COMPONENT_X;
1682
1683 assert(nr_comp > 0);
1684 for (unsigned i = 0; i < ARRAY_SIZE(st.swizzle); ++i) {
1685 st.swizzle[0][i] = src_component;
1686 if (i >= dst_component && i < dst_component + nr_comp - 1)
1687 src_component++;
1688 }
1689
1690 emit_mir_instruction(ctx, st);
1691 } else {
1692 DBG("Unknown store\n");
1693 assert(0);
1694 }
1695
1696 break;
1697
1698 /* Special case of store_output for lowered blend shaders */
1699 case nir_intrinsic_store_raw_output_pan:
1700 assert (ctx->stage == MESA_SHADER_FRAGMENT);
1701 reg = nir_src_index(ctx, &instr->src[0]);
1702
1703 if (ctx->quirks & MIDGARD_OLD_BLEND) {
1704 /* Suppose reg = qr0.xyzw. That means 4 8-bit ---> 1 32-bit. So
1705 * reg = r0.x. We want to splatter. So we can do a 32-bit move
1706 * of:
1707 *
1708 * imov r0.xyzw, r0.xxxx
1709 */
1710
1711 unsigned expanded = make_compiler_temp(ctx);
1712
1713 midgard_instruction splatter = v_mov(reg, expanded);
1714
1715 for (unsigned c = 0; c < 16; ++c)
1716 splatter.swizzle[1][c] = 0;
1717
1718 emit_mir_instruction(ctx, splatter);
1719 emit_fragment_store(ctx, expanded, ctx->blend_rt);
1720 } else
1721 emit_fragment_store(ctx, reg, ctx->blend_rt);
1722
1723 break;
1724
1725 case nir_intrinsic_store_global:
1726 case nir_intrinsic_store_shared:
1727 reg = nir_src_index(ctx, &instr->src[0]);
1728 emit_explicit_constant(ctx, reg, reg);
1729
1730 emit_global(ctx, &instr->instr, false, reg, &instr->src[1], instr->intrinsic == nir_intrinsic_store_shared);
1731 break;
1732
1733 case nir_intrinsic_load_ssbo_address:
1734 emit_sysval_read(ctx, &instr->instr, 1, 0);
1735 break;
1736
1737 case nir_intrinsic_get_buffer_size:
1738 emit_sysval_read(ctx, &instr->instr, 1, 8);
1739 break;
1740
1741 case nir_intrinsic_load_viewport_scale:
1742 case nir_intrinsic_load_viewport_offset:
1743 case nir_intrinsic_load_num_work_groups:
1744 case nir_intrinsic_load_sampler_lod_parameters_pan:
1745 emit_sysval_read(ctx, &instr->instr, 3, 0);
1746 break;
1747
1748 case nir_intrinsic_load_work_group_id:
1749 case nir_intrinsic_load_local_invocation_id:
1750 emit_compute_builtin(ctx, instr);
1751 break;
1752
1753 case nir_intrinsic_load_vertex_id:
1754 case nir_intrinsic_load_instance_id:
1755 emit_vertex_builtin(ctx, instr);
1756 break;
1757
1758 case nir_intrinsic_memory_barrier_buffer:
1759 case nir_intrinsic_memory_barrier_shared:
1760 break;
1761
1762 case nir_intrinsic_control_barrier:
1763 schedule_barrier(ctx);
1764 emit_control_barrier(ctx);
1765 schedule_barrier(ctx);
1766 break;
1767
1768 default:
1769 fprintf(stderr, "Unhandled intrinsic %s\n", nir_intrinsic_infos[instr->intrinsic].name);
1770 assert(0);
1771 break;
1772 }
1773 }
1774
1775 static unsigned
1776 midgard_tex_format(enum glsl_sampler_dim dim)
1777 {
1778 switch (dim) {
1779 case GLSL_SAMPLER_DIM_1D:
1780 case GLSL_SAMPLER_DIM_BUF:
1781 return MALI_TEX_1D;
1782
1783 case GLSL_SAMPLER_DIM_2D:
1784 case GLSL_SAMPLER_DIM_EXTERNAL:
1785 case GLSL_SAMPLER_DIM_RECT:
1786 return MALI_TEX_2D;
1787
1788 case GLSL_SAMPLER_DIM_3D:
1789 return MALI_TEX_3D;
1790
1791 case GLSL_SAMPLER_DIM_CUBE:
1792 return MALI_TEX_CUBE;
1793
1794 default:
1795 DBG("Unknown sampler dim type\n");
1796 assert(0);
1797 return 0;
1798 }
1799 }
1800
1801 /* Tries to attach an explicit LOD or bias as a constant. Returns whether this
1802 * was successful */
1803
1804 static bool
1805 pan_attach_constant_bias(
1806 compiler_context *ctx,
1807 nir_src lod,
1808 midgard_texture_word *word)
1809 {
1810 /* To attach as constant, it has to *be* constant */
1811
1812 if (!nir_src_is_const(lod))
1813 return false;
1814
1815 float f = nir_src_as_float(lod);
1816
1817 /* Break into fixed-point */
1818 signed lod_int = f;
1819 float lod_frac = f - lod_int;
1820
1821 /* Carry over negative fractions */
1822 if (lod_frac < 0.0) {
1823 lod_int--;
1824 lod_frac += 1.0;
1825 }
1826
1827 /* Encode */
1828 word->bias = float_to_ubyte(lod_frac);
1829 word->bias_int = lod_int;
1830
1831 return true;
1832 }
1833
1834 static void
1835 emit_texop_native(compiler_context *ctx, nir_tex_instr *instr,
1836 unsigned midgard_texop)
1837 {
1838 /* TODO */
1839 //assert (!instr->sampler);
1840
1841 int texture_index = instr->texture_index;
1842 int sampler_index = texture_index;
1843
1844 nir_alu_type dest_base = nir_alu_type_get_base_type(instr->dest_type);
1845 nir_alu_type dest_type = dest_base | nir_dest_bit_size(instr->dest);
1846
1847 midgard_instruction ins = {
1848 .type = TAG_TEXTURE_4,
1849 .mask = 0xF,
1850 .dest = nir_dest_index(&instr->dest),
1851 .src = { ~0, ~0, ~0, ~0 },
1852 .dest_type = dest_type,
1853 .swizzle = SWIZZLE_IDENTITY_4,
1854 .texture = {
1855 .op = midgard_texop,
1856 .format = midgard_tex_format(instr->sampler_dim),
1857 .texture_handle = texture_index,
1858 .sampler_handle = sampler_index,
1859 .shadow = instr->is_shadow,
1860 }
1861 };
1862
1863 if (instr->is_shadow && !instr->is_new_style_shadow)
1864 for (int i = 0; i < 4; ++i)
1865 ins.swizzle[0][i] = COMPONENT_X;
1866
1867 /* We may need a temporary for the coordinate */
1868
1869 bool needs_temp_coord =
1870 (midgard_texop == TEXTURE_OP_TEXEL_FETCH) ||
1871 (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) ||
1872 (instr->is_shadow);
1873
1874 unsigned coords = needs_temp_coord ? make_compiler_temp_reg(ctx) : 0;
1875
1876 for (unsigned i = 0; i < instr->num_srcs; ++i) {
1877 int index = nir_src_index(ctx, &instr->src[i].src);
1878 unsigned nr_components = nir_src_num_components(instr->src[i].src);
1879 unsigned sz = nir_src_bit_size(instr->src[i].src);
1880 nir_alu_type T = nir_tex_instr_src_type(instr, i) | sz;
1881
1882 switch (instr->src[i].src_type) {
1883 case nir_tex_src_coord: {
1884 emit_explicit_constant(ctx, index, index);
1885
1886 unsigned coord_mask = mask_of(instr->coord_components);
1887
1888 bool flip_zw = (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) && (coord_mask & (1 << COMPONENT_Z));
1889
1890 if (flip_zw)
1891 coord_mask ^= ((1 << COMPONENT_Z) | (1 << COMPONENT_W));
1892
1893 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
1894 /* texelFetch is undefined on samplerCube */
1895 assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH);
1896
1897 /* For cubemaps, we use a special ld/st op to
1898 * select the face and copy the xy into the
1899 * texture register */
1900
1901 midgard_instruction ld = m_ld_cubemap_coords(coords, 0);
1902 ld.src[1] = index;
1903 ld.src_types[1] = T;
1904 ld.mask = 0x3; /* xy */
1905 ld.load_store.arg_1 = 0x20;
1906 ld.swizzle[1][3] = COMPONENT_X;
1907 emit_mir_instruction(ctx, ld);
1908
1909 /* xyzw -> xyxx */
1910 ins.swizzle[1][2] = instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
1911 ins.swizzle[1][3] = COMPONENT_X;
1912 } else if (needs_temp_coord) {
1913 /* mov coord_temp, coords */
1914 midgard_instruction mov = v_mov(index, coords);
1915 mov.mask = coord_mask;
1916
1917 if (flip_zw)
1918 mov.swizzle[1][COMPONENT_W] = COMPONENT_Z;
1919
1920 emit_mir_instruction(ctx, mov);
1921 } else {
1922 coords = index;
1923 }
1924
1925 ins.src[1] = coords;
1926 ins.src_types[1] = T;
1927
1928 /* Texelfetch coordinates uses all four elements
1929 * (xyz/index) regardless of texture dimensionality,
1930 * which means it's necessary to zero the unused
1931 * components to keep everything happy */
1932
1933 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
1934 /* mov index.zw, #0, or generalized */
1935 midgard_instruction mov =
1936 v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), coords);
1937 mov.has_constants = true;
1938 mov.mask = coord_mask ^ 0xF;
1939 emit_mir_instruction(ctx, mov);
1940 }
1941
1942 if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) {
1943 /* Array component in w but NIR wants it in z,
1944 * but if we have a temp coord we already fixed
1945 * that up */
1946
1947 if (nr_components == 3) {
1948 ins.swizzle[1][2] = COMPONENT_Z;
1949 ins.swizzle[1][3] = needs_temp_coord ? COMPONENT_W : COMPONENT_Z;
1950 } else if (nr_components == 2) {
1951 ins.swizzle[1][2] =
1952 instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
1953 ins.swizzle[1][3] = COMPONENT_X;
1954 } else
1955 unreachable("Invalid texture 2D components");
1956 }
1957
1958 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
1959 /* We zeroed */
1960 ins.swizzle[1][2] = COMPONENT_Z;
1961 ins.swizzle[1][3] = COMPONENT_W;
1962 }
1963
1964 break;
1965 }
1966
1967 case nir_tex_src_bias:
1968 case nir_tex_src_lod: {
1969 /* Try as a constant if we can */
1970
1971 bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH;
1972 if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture))
1973 break;
1974
1975 ins.texture.lod_register = true;
1976 ins.src[2] = index;
1977 ins.src_types[2] = T;
1978
1979 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1980 ins.swizzle[2][c] = COMPONENT_X;
1981
1982 emit_explicit_constant(ctx, index, index);
1983
1984 break;
1985 };
1986
1987 case nir_tex_src_offset: {
1988 ins.texture.offset_register = true;
1989 ins.src[3] = index;
1990 ins.src_types[3] = T;
1991
1992 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1993 ins.swizzle[3][c] = (c > COMPONENT_Z) ? 0 : c;
1994
1995 emit_explicit_constant(ctx, index, index);
1996 break;
1997 };
1998
1999 case nir_tex_src_comparator: {
2000 unsigned comp = COMPONENT_Z;
2001
2002 /* mov coord_temp.foo, coords */
2003 midgard_instruction mov = v_mov(index, coords);
2004 mov.mask = 1 << comp;
2005
2006 for (unsigned i = 0; i < MIR_VEC_COMPONENTS; ++i)
2007 mov.swizzle[1][i] = COMPONENT_X;
2008
2009 emit_mir_instruction(ctx, mov);
2010 break;
2011 }
2012
2013 default: {
2014 fprintf(stderr, "Unknown texture source type: %d\n", instr->src[i].src_type);
2015 assert(0);
2016 }
2017 }
2018 }
2019
2020 emit_mir_instruction(ctx, ins);
2021 }
2022
2023 static void
2024 emit_tex(compiler_context *ctx, nir_tex_instr *instr)
2025 {
2026 switch (instr->op) {
2027 case nir_texop_tex:
2028 case nir_texop_txb:
2029 emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL);
2030 break;
2031 case nir_texop_txl:
2032 emit_texop_native(ctx, instr, TEXTURE_OP_LOD);
2033 break;
2034 case nir_texop_txf:
2035 emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH);
2036 break;
2037 case nir_texop_txs:
2038 emit_sysval_read(ctx, &instr->instr, 4, 0);
2039 break;
2040 default: {
2041 fprintf(stderr, "Unhandled texture op: %d\n", instr->op);
2042 assert(0);
2043 }
2044 }
2045 }
2046
2047 static void
2048 emit_jump(compiler_context *ctx, nir_jump_instr *instr)
2049 {
2050 switch (instr->type) {
2051 case nir_jump_break: {
2052 /* Emit a branch out of the loop */
2053 struct midgard_instruction br = v_branch(false, false);
2054 br.branch.target_type = TARGET_BREAK;
2055 br.branch.target_break = ctx->current_loop_depth;
2056 emit_mir_instruction(ctx, br);
2057 break;
2058 }
2059
2060 default:
2061 DBG("Unknown jump type %d\n", instr->type);
2062 break;
2063 }
2064 }
2065
2066 static void
2067 emit_instr(compiler_context *ctx, struct nir_instr *instr)
2068 {
2069 switch (instr->type) {
2070 case nir_instr_type_load_const:
2071 emit_load_const(ctx, nir_instr_as_load_const(instr));
2072 break;
2073
2074 case nir_instr_type_intrinsic:
2075 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
2076 break;
2077
2078 case nir_instr_type_alu:
2079 emit_alu(ctx, nir_instr_as_alu(instr));
2080 break;
2081
2082 case nir_instr_type_tex:
2083 emit_tex(ctx, nir_instr_as_tex(instr));
2084 break;
2085
2086 case nir_instr_type_jump:
2087 emit_jump(ctx, nir_instr_as_jump(instr));
2088 break;
2089
2090 case nir_instr_type_ssa_undef:
2091 /* Spurious */
2092 break;
2093
2094 default:
2095 DBG("Unhandled instruction type\n");
2096 break;
2097 }
2098 }
2099
2100
2101 /* ALU instructions can inline or embed constants, which decreases register
2102 * pressure and saves space. */
2103
2104 #define CONDITIONAL_ATTACH(idx) { \
2105 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[idx] + 1); \
2106 \
2107 if (entry) { \
2108 attach_constants(ctx, alu, entry, alu->src[idx] + 1); \
2109 alu->src[idx] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \
2110 } \
2111 }
2112
2113 static void
2114 inline_alu_constants(compiler_context *ctx, midgard_block *block)
2115 {
2116 mir_foreach_instr_in_block(block, alu) {
2117 /* Other instructions cannot inline constants */
2118 if (alu->type != TAG_ALU_4) continue;
2119 if (alu->compact_branch) continue;
2120
2121 /* If there is already a constant here, we can do nothing */
2122 if (alu->has_constants) continue;
2123
2124 CONDITIONAL_ATTACH(0);
2125
2126 if (!alu->has_constants) {
2127 CONDITIONAL_ATTACH(1)
2128 } else if (!alu->inline_constant) {
2129 /* Corner case: _two_ vec4 constants, for instance with a
2130 * csel. For this case, we can only use a constant
2131 * register for one, we'll have to emit a move for the
2132 * other. */
2133
2134 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[1] + 1);
2135 unsigned scratch = make_compiler_temp(ctx);
2136
2137 if (entry) {
2138 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), scratch);
2139 attach_constants(ctx, &ins, entry, alu->src[1] + 1);
2140
2141 /* Set the source */
2142 alu->src[1] = scratch;
2143
2144 /* Inject us -before- the last instruction which set r31 */
2145 mir_insert_instruction_before(ctx, mir_prev_op(alu), ins);
2146 }
2147 }
2148 }
2149 }
2150
2151 /* Midgard supports two types of constants, embedded constants (128-bit) and
2152 * inline constants (16-bit). Sometimes, especially with scalar ops, embedded
2153 * constants can be demoted to inline constants, for space savings and
2154 * sometimes a performance boost */
2155
2156 static void
2157 embedded_to_inline_constant(compiler_context *ctx, midgard_block *block)
2158 {
2159 mir_foreach_instr_in_block(block, ins) {
2160 if (!ins->has_constants) continue;
2161 if (ins->has_inline_constant) continue;
2162
2163 /* Blend constants must not be inlined by definition */
2164 if (ins->has_blend_constant) continue;
2165
2166 /* We can inline 32-bit (sometimes) or 16-bit (usually) */
2167 bool is_16 = ins->alu.reg_mode == midgard_reg_mode_16;
2168 bool is_32 = ins->alu.reg_mode == midgard_reg_mode_32;
2169
2170 if (!(is_16 || is_32))
2171 continue;
2172
2173 /* src1 cannot be an inline constant due to encoding
2174 * restrictions. So, if possible we try to flip the arguments
2175 * in that case */
2176
2177 int op = ins->alu.op;
2178
2179 if (ins->src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT) &&
2180 alu_opcode_props[op].props & OP_COMMUTES) {
2181 mir_flip(ins);
2182 }
2183
2184 if (ins->src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
2185 /* Component is from the swizzle. Take a nonzero component */
2186 assert(ins->mask);
2187 unsigned first_comp = ffs(ins->mask) - 1;
2188 unsigned component = ins->swizzle[1][first_comp];
2189
2190 /* Scale constant appropriately, if we can legally */
2191 uint16_t scaled_constant = 0;
2192
2193 if (is_16) {
2194 scaled_constant = ins->constants.u16[component];
2195 } else if (midgard_is_integer_op(op)) {
2196 scaled_constant = ins->constants.u32[component];
2197
2198 /* Constant overflow after resize */
2199 if (scaled_constant != ins->constants.u32[component])
2200 continue;
2201 } else {
2202 float original = ins->constants.f32[component];
2203 scaled_constant = _mesa_float_to_half(original);
2204
2205 /* Check for loss of precision. If this is
2206 * mediump, we don't care, but for a highp
2207 * shader, we need to pay attention. NIR
2208 * doesn't yet tell us which mode we're in!
2209 * Practically this prevents most constants
2210 * from being inlined, sadly. */
2211
2212 float fp32 = _mesa_half_to_float(scaled_constant);
2213
2214 if (fp32 != original)
2215 continue;
2216 }
2217
2218 /* Should've been const folded */
2219 if (ins->src_abs[1] || ins->src_neg[1])
2220 continue;
2221
2222 /* Make sure that the constant is not itself a vector
2223 * by checking if all accessed values are the same. */
2224
2225 const midgard_constants *cons = &ins->constants;
2226 uint32_t value = is_16 ? cons->u16[component] : cons->u32[component];
2227
2228 bool is_vector = false;
2229 unsigned mask = effective_writemask(&ins->alu, ins->mask);
2230
2231 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c) {
2232 /* We only care if this component is actually used */
2233 if (!(mask & (1 << c)))
2234 continue;
2235
2236 uint32_t test = is_16 ?
2237 cons->u16[ins->swizzle[1][c]] :
2238 cons->u32[ins->swizzle[1][c]];
2239
2240 if (test != value) {
2241 is_vector = true;
2242 break;
2243 }
2244 }
2245
2246 if (is_vector)
2247 continue;
2248
2249 /* Get rid of the embedded constant */
2250 ins->has_constants = false;
2251 ins->src[1] = ~0;
2252 ins->has_inline_constant = true;
2253 ins->inline_constant = scaled_constant;
2254 }
2255 }
2256 }
2257
2258 /* Dead code elimination for branches at the end of a block - only one branch
2259 * per block is legal semantically */
2260
2261 static void
2262 midgard_cull_dead_branch(compiler_context *ctx, midgard_block *block)
2263 {
2264 bool branched = false;
2265
2266 mir_foreach_instr_in_block_safe(block, ins) {
2267 if (!midgard_is_branch_unit(ins->unit)) continue;
2268
2269 if (branched)
2270 mir_remove_instruction(ins);
2271
2272 branched = true;
2273 }
2274 }
2275
2276 static unsigned
2277 emit_fragment_epilogue(compiler_context *ctx, unsigned rt)
2278 {
2279 /* Loop to ourselves */
2280 midgard_instruction *br = ctx->writeout_branch[rt];
2281 struct midgard_instruction ins = v_branch(false, false);
2282 ins.writeout = true;
2283 ins.writeout_depth = br->writeout_depth;
2284 ins.writeout_stencil = br->writeout_stencil;
2285 ins.branch.target_block = ctx->block_count - 1;
2286 ins.constants.u32[0] = br->constants.u32[0];
2287 emit_mir_instruction(ctx, ins);
2288
2289 ctx->current_block->epilogue = true;
2290 schedule_barrier(ctx);
2291 return ins.branch.target_block;
2292 }
2293
2294 static midgard_block *
2295 emit_block(compiler_context *ctx, nir_block *block)
2296 {
2297 midgard_block *this_block = ctx->after_block;
2298 ctx->after_block = NULL;
2299
2300 if (!this_block)
2301 this_block = create_empty_block(ctx);
2302
2303 list_addtail(&this_block->base.link, &ctx->blocks);
2304
2305 this_block->scheduled = false;
2306 ++ctx->block_count;
2307
2308 /* Set up current block */
2309 list_inithead(&this_block->base.instructions);
2310 ctx->current_block = this_block;
2311
2312 nir_foreach_instr(instr, block) {
2313 emit_instr(ctx, instr);
2314 ++ctx->instruction_count;
2315 }
2316
2317 return this_block;
2318 }
2319
2320 static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list);
2321
2322 static void
2323 emit_if(struct compiler_context *ctx, nir_if *nif)
2324 {
2325 midgard_block *before_block = ctx->current_block;
2326
2327 /* Speculatively emit the branch, but we can't fill it in until later */
2328 bool inv = false;
2329 EMIT(branch, true, true);
2330 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block);
2331 then_branch->src[0] = mir_get_branch_cond(&nif->condition, &inv);
2332 then_branch->src_types[0] = nir_type_uint32;
2333 then_branch->branch.invert_conditional = !inv;
2334
2335 /* Emit the two subblocks. */
2336 midgard_block *then_block = emit_cf_list(ctx, &nif->then_list);
2337 midgard_block *end_then_block = ctx->current_block;
2338
2339 /* Emit a jump from the end of the then block to the end of the else */
2340 EMIT(branch, false, false);
2341 midgard_instruction *then_exit = mir_last_in_block(ctx->current_block);
2342
2343 /* Emit second block, and check if it's empty */
2344
2345 int else_idx = ctx->block_count;
2346 int count_in = ctx->instruction_count;
2347 midgard_block *else_block = emit_cf_list(ctx, &nif->else_list);
2348 midgard_block *end_else_block = ctx->current_block;
2349 int after_else_idx = ctx->block_count;
2350
2351 /* Now that we have the subblocks emitted, fix up the branches */
2352
2353 assert(then_block);
2354 assert(else_block);
2355
2356 if (ctx->instruction_count == count_in) {
2357 /* The else block is empty, so don't emit an exit jump */
2358 mir_remove_instruction(then_exit);
2359 then_branch->branch.target_block = after_else_idx;
2360 } else {
2361 then_branch->branch.target_block = else_idx;
2362 then_exit->branch.target_block = after_else_idx;
2363 }
2364
2365 /* Wire up the successors */
2366
2367 ctx->after_block = create_empty_block(ctx);
2368
2369 pan_block_add_successor(&before_block->base, &then_block->base);
2370 pan_block_add_successor(&before_block->base, &else_block->base);
2371
2372 pan_block_add_successor(&end_then_block->base, &ctx->after_block->base);
2373 pan_block_add_successor(&end_else_block->base, &ctx->after_block->base);
2374 }
2375
2376 static void
2377 emit_loop(struct compiler_context *ctx, nir_loop *nloop)
2378 {
2379 /* Remember where we are */
2380 midgard_block *start_block = ctx->current_block;
2381
2382 /* Allocate a loop number, growing the current inner loop depth */
2383 int loop_idx = ++ctx->current_loop_depth;
2384
2385 /* Get index from before the body so we can loop back later */
2386 int start_idx = ctx->block_count;
2387
2388 /* Emit the body itself */
2389 midgard_block *loop_block = emit_cf_list(ctx, &nloop->body);
2390
2391 /* Branch back to loop back */
2392 struct midgard_instruction br_back = v_branch(false, false);
2393 br_back.branch.target_block = start_idx;
2394 emit_mir_instruction(ctx, br_back);
2395
2396 /* Mark down that branch in the graph. */
2397 pan_block_add_successor(&start_block->base, &loop_block->base);
2398 pan_block_add_successor(&ctx->current_block->base, &loop_block->base);
2399
2400 /* Find the index of the block about to follow us (note: we don't add
2401 * one; blocks are 0-indexed so we get a fencepost problem) */
2402 int break_block_idx = ctx->block_count;
2403
2404 /* Fix up the break statements we emitted to point to the right place,
2405 * now that we can allocate a block number for them */
2406 ctx->after_block = create_empty_block(ctx);
2407
2408 mir_foreach_block_from(ctx, start_block, _block) {
2409 mir_foreach_instr_in_block(((midgard_block *) _block), ins) {
2410 if (ins->type != TAG_ALU_4) continue;
2411 if (!ins->compact_branch) continue;
2412
2413 /* We found a branch -- check the type to see if we need to do anything */
2414 if (ins->branch.target_type != TARGET_BREAK) continue;
2415
2416 /* It's a break! Check if it's our break */
2417 if (ins->branch.target_break != loop_idx) continue;
2418
2419 /* Okay, cool, we're breaking out of this loop.
2420 * Rewrite from a break to a goto */
2421
2422 ins->branch.target_type = TARGET_GOTO;
2423 ins->branch.target_block = break_block_idx;
2424
2425 pan_block_add_successor(_block, &ctx->after_block->base);
2426 }
2427 }
2428
2429 /* Now that we've finished emitting the loop, free up the depth again
2430 * so we play nice with recursion amid nested loops */
2431 --ctx->current_loop_depth;
2432
2433 /* Dump loop stats */
2434 ++ctx->loop_count;
2435 }
2436
2437 static midgard_block *
2438 emit_cf_list(struct compiler_context *ctx, struct exec_list *list)
2439 {
2440 midgard_block *start_block = NULL;
2441
2442 foreach_list_typed(nir_cf_node, node, node, list) {
2443 switch (node->type) {
2444 case nir_cf_node_block: {
2445 midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node));
2446
2447 if (!start_block)
2448 start_block = block;
2449
2450 break;
2451 }
2452
2453 case nir_cf_node_if:
2454 emit_if(ctx, nir_cf_node_as_if(node));
2455 break;
2456
2457 case nir_cf_node_loop:
2458 emit_loop(ctx, nir_cf_node_as_loop(node));
2459 break;
2460
2461 case nir_cf_node_function:
2462 assert(0);
2463 break;
2464 }
2465 }
2466
2467 return start_block;
2468 }
2469
2470 /* Due to lookahead, we need to report the first tag executed in the command
2471 * stream and in branch targets. An initial block might be empty, so iterate
2472 * until we find one that 'works' */
2473
2474 static unsigned
2475 midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx)
2476 {
2477 midgard_block *initial_block = mir_get_block(ctx, block_idx);
2478
2479 mir_foreach_block_from(ctx, initial_block, _v) {
2480 midgard_block *v = (midgard_block *) _v;
2481 if (v->quadword_count) {
2482 midgard_bundle *initial_bundle =
2483 util_dynarray_element(&v->bundles, midgard_bundle, 0);
2484
2485 return initial_bundle->tag;
2486 }
2487 }
2488
2489 /* Default to a tag 1 which will break from the shader, in case we jump
2490 * to the exit block (i.e. `return` in a compute shader) */
2491
2492 return 1;
2493 }
2494
2495 /* For each fragment writeout instruction, generate a writeout loop to
2496 * associate with it */
2497
2498 static void
2499 mir_add_writeout_loops(compiler_context *ctx)
2500 {
2501 for (unsigned rt = 0; rt < ARRAY_SIZE(ctx->writeout_branch); ++rt) {
2502 midgard_instruction *br = ctx->writeout_branch[rt];
2503 if (!br) continue;
2504
2505 unsigned popped = br->branch.target_block;
2506 pan_block_add_successor(&(mir_get_block(ctx, popped - 1)->base), &ctx->current_block->base);
2507 br->branch.target_block = emit_fragment_epilogue(ctx, rt);
2508 br->branch.target_type = TARGET_GOTO;
2509
2510 /* If we have more RTs, we'll need to restore back after our
2511 * loop terminates */
2512
2513 if ((rt + 1) < ARRAY_SIZE(ctx->writeout_branch) && ctx->writeout_branch[rt + 1]) {
2514 midgard_instruction uncond = v_branch(false, false);
2515 uncond.branch.target_block = popped;
2516 uncond.branch.target_type = TARGET_GOTO;
2517 emit_mir_instruction(ctx, uncond);
2518 pan_block_add_successor(&ctx->current_block->base, &(mir_get_block(ctx, popped)->base));
2519 schedule_barrier(ctx);
2520 } else {
2521 /* We're last, so we can terminate here */
2522 br->last_writeout = true;
2523 }
2524 }
2525 }
2526
2527 int
2528 midgard_compile_shader_nir(nir_shader *nir, panfrost_program *program, bool is_blend, unsigned blend_rt, unsigned gpu_id, bool shaderdb)
2529 {
2530 struct util_dynarray *compiled = &program->compiled;
2531
2532 midgard_debug = debug_get_option_midgard_debug();
2533
2534 /* TODO: Bound against what? */
2535 compiler_context *ctx = rzalloc(NULL, compiler_context);
2536
2537 ctx->nir = nir;
2538 ctx->stage = nir->info.stage;
2539 ctx->is_blend = is_blend;
2540 ctx->alpha_ref = program->alpha_ref;
2541 ctx->blend_rt = MIDGARD_COLOR_RT0 + blend_rt;
2542 ctx->quirks = midgard_get_quirks(gpu_id);
2543
2544 /* Start off with a safe cutoff, allowing usage of all 16 work
2545 * registers. Later, we'll promote uniform reads to uniform registers
2546 * if we determine it is beneficial to do so */
2547 ctx->uniform_cutoff = 8;
2548
2549 /* Initialize at a global (not block) level hash tables */
2550
2551 ctx->ssa_constants = _mesa_hash_table_u64_create(NULL);
2552 ctx->hash_to_temp = _mesa_hash_table_u64_create(NULL);
2553
2554 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
2555 * (so we don't accidentally duplicate the epilogue since mesa/st has
2556 * messed with our I/O quite a bit already) */
2557
2558 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2559
2560 if (ctx->stage == MESA_SHADER_VERTEX) {
2561 NIR_PASS_V(nir, nir_lower_viewport_transform);
2562 NIR_PASS_V(nir, nir_lower_point_size, 1.0, 1024.0);
2563 }
2564
2565 NIR_PASS_V(nir, nir_lower_var_copies);
2566 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2567 NIR_PASS_V(nir, nir_split_var_copies);
2568 NIR_PASS_V(nir, nir_lower_var_copies);
2569 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
2570 NIR_PASS_V(nir, nir_lower_var_copies);
2571 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2572
2573 NIR_PASS_V(nir, nir_lower_io, nir_var_all, glsl_type_size, 0);
2574 NIR_PASS_V(nir, nir_lower_ssbo);
2575 NIR_PASS_V(nir, midgard_nir_lower_zs_store);
2576
2577 /* Optimisation passes */
2578
2579 optimise_nir(nir, ctx->quirks);
2580
2581 if (midgard_debug & MIDGARD_DBG_SHADERS) {
2582 nir_print_shader(nir, stdout);
2583 }
2584
2585 /* Assign sysvals and counts, now that we're sure
2586 * (post-optimisation) */
2587
2588 panfrost_nir_assign_sysvals(&ctx->sysvals, nir);
2589 program->sysval_count = ctx->sysvals.sysval_count;
2590 memcpy(program->sysvals, ctx->sysvals.sysvals, sizeof(ctx->sysvals.sysvals[0]) * ctx->sysvals.sysval_count);
2591
2592 nir_foreach_function(func, nir) {
2593 if (!func->impl)
2594 continue;
2595
2596 list_inithead(&ctx->blocks);
2597 ctx->block_count = 0;
2598 ctx->func = func;
2599 ctx->already_emitted = calloc(BITSET_WORDS(func->impl->ssa_alloc), sizeof(BITSET_WORD));
2600
2601 emit_cf_list(ctx, &func->impl->body);
2602 free(ctx->already_emitted);
2603 break; /* TODO: Multi-function shaders */
2604 }
2605
2606 util_dynarray_init(compiled, NULL);
2607
2608 /* Per-block lowering before opts */
2609
2610 mir_foreach_block(ctx, _block) {
2611 midgard_block *block = (midgard_block *) _block;
2612 inline_alu_constants(ctx, block);
2613 embedded_to_inline_constant(ctx, block);
2614 }
2615 /* MIR-level optimizations */
2616
2617 bool progress = false;
2618
2619 do {
2620 progress = false;
2621 progress |= midgard_opt_dead_code_eliminate(ctx);
2622
2623 mir_foreach_block(ctx, _block) {
2624 midgard_block *block = (midgard_block *) _block;
2625 progress |= midgard_opt_copy_prop(ctx, block);
2626 progress |= midgard_opt_combine_projection(ctx, block);
2627 progress |= midgard_opt_varying_projection(ctx, block);
2628 }
2629 } while (progress);
2630
2631 mir_foreach_block(ctx, _block) {
2632 midgard_block *block = (midgard_block *) _block;
2633 midgard_lower_derivatives(ctx, block);
2634 midgard_cull_dead_branch(ctx, block);
2635 }
2636
2637 if (ctx->stage == MESA_SHADER_FRAGMENT)
2638 mir_add_writeout_loops(ctx);
2639
2640 /* Analyze now that the code is known but before scheduling creates
2641 * pipeline registers which are harder to track */
2642 mir_analyze_helper_terminate(ctx);
2643 mir_analyze_helper_requirements(ctx);
2644
2645 /* Schedule! */
2646 midgard_schedule_program(ctx);
2647 mir_ra(ctx);
2648
2649 /* Now that all the bundles are scheduled and we can calculate block
2650 * sizes, emit actual branch instructions rather than placeholders */
2651
2652 int br_block_idx = 0;
2653
2654 mir_foreach_block(ctx, _block) {
2655 midgard_block *block = (midgard_block *) _block;
2656 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2657 for (int c = 0; c < bundle->instruction_count; ++c) {
2658 midgard_instruction *ins = bundle->instructions[c];
2659
2660 if (!midgard_is_branch_unit(ins->unit)) continue;
2661
2662 /* Parse some basic branch info */
2663 bool is_compact = ins->unit == ALU_ENAB_BR_COMPACT;
2664 bool is_conditional = ins->branch.conditional;
2665 bool is_inverted = ins->branch.invert_conditional;
2666 bool is_discard = ins->branch.target_type == TARGET_DISCARD;
2667 bool is_writeout = ins->writeout;
2668
2669 /* Determine the block we're jumping to */
2670 int target_number = ins->branch.target_block;
2671
2672 /* Report the destination tag */
2673 int dest_tag = is_discard ? 0 : midgard_get_first_tag_from_block(ctx, target_number);
2674
2675 /* Count up the number of quadwords we're
2676 * jumping over = number of quadwords until
2677 * (br_block_idx, target_number) */
2678
2679 int quadword_offset = 0;
2680
2681 if (is_discard) {
2682 /* Ignored */
2683 } else if (target_number > br_block_idx) {
2684 /* Jump forward */
2685
2686 for (int idx = br_block_idx + 1; idx < target_number; ++idx) {
2687 midgard_block *blk = mir_get_block(ctx, idx);
2688 assert(blk);
2689
2690 quadword_offset += blk->quadword_count;
2691 }
2692 } else {
2693 /* Jump backwards */
2694
2695 for (int idx = br_block_idx; idx >= target_number; --idx) {
2696 midgard_block *blk = mir_get_block(ctx, idx);
2697 assert(blk);
2698
2699 quadword_offset -= blk->quadword_count;
2700 }
2701 }
2702
2703 /* Unconditional extended branches (far jumps)
2704 * have issues, so we always use a conditional
2705 * branch, setting the condition to always for
2706 * unconditional. For compact unconditional
2707 * branches, cond isn't used so it doesn't
2708 * matter what we pick. */
2709
2710 midgard_condition cond =
2711 !is_conditional ? midgard_condition_always :
2712 is_inverted ? midgard_condition_false :
2713 midgard_condition_true;
2714
2715 midgard_jmp_writeout_op op =
2716 is_discard ? midgard_jmp_writeout_op_discard :
2717 is_writeout ? midgard_jmp_writeout_op_writeout :
2718 (is_compact && !is_conditional) ? midgard_jmp_writeout_op_branch_uncond :
2719 midgard_jmp_writeout_op_branch_cond;
2720
2721 if (!is_compact) {
2722 midgard_branch_extended branch =
2723 midgard_create_branch_extended(
2724 cond, op,
2725 dest_tag,
2726 quadword_offset);
2727
2728 memcpy(&ins->branch_extended, &branch, sizeof(branch));
2729 } else if (is_conditional || is_discard) {
2730 midgard_branch_cond branch = {
2731 .op = op,
2732 .dest_tag = dest_tag,
2733 .offset = quadword_offset,
2734 .cond = cond
2735 };
2736
2737 assert(branch.offset == quadword_offset);
2738
2739 memcpy(&ins->br_compact, &branch, sizeof(branch));
2740 } else {
2741 assert(op == midgard_jmp_writeout_op_branch_uncond);
2742
2743 midgard_branch_uncond branch = {
2744 .op = op,
2745 .dest_tag = dest_tag,
2746 .offset = quadword_offset,
2747 .unknown = 1
2748 };
2749
2750 assert(branch.offset == quadword_offset);
2751
2752 memcpy(&ins->br_compact, &branch, sizeof(branch));
2753 }
2754 }
2755 }
2756
2757 ++br_block_idx;
2758 }
2759
2760 /* Emit flat binary from the instruction arrays. Iterate each block in
2761 * sequence. Save instruction boundaries such that lookahead tags can
2762 * be assigned easily */
2763
2764 /* Cache _all_ bundles in source order for lookahead across failed branches */
2765
2766 int bundle_count = 0;
2767 mir_foreach_block(ctx, _block) {
2768 midgard_block *block = (midgard_block *) _block;
2769 bundle_count += block->bundles.size / sizeof(midgard_bundle);
2770 }
2771 midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count);
2772 int bundle_idx = 0;
2773 mir_foreach_block(ctx, _block) {
2774 midgard_block *block = (midgard_block *) _block;
2775 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2776 source_order_bundles[bundle_idx++] = bundle;
2777 }
2778 }
2779
2780 int current_bundle = 0;
2781
2782 /* Midgard prefetches instruction types, so during emission we
2783 * need to lookahead. Unless this is the last instruction, in
2784 * which we return 1. */
2785
2786 mir_foreach_block(ctx, _block) {
2787 midgard_block *block = (midgard_block *) _block;
2788 mir_foreach_bundle_in_block(block, bundle) {
2789 int lookahead = 1;
2790
2791 if (!bundle->last_writeout && (current_bundle + 1 < bundle_count))
2792 lookahead = source_order_bundles[current_bundle + 1]->tag;
2793
2794 emit_binary_bundle(ctx, bundle, compiled, lookahead);
2795 ++current_bundle;
2796 }
2797
2798 /* TODO: Free deeper */
2799 //util_dynarray_fini(&block->instructions);
2800 }
2801
2802 free(source_order_bundles);
2803
2804 /* Report the very first tag executed */
2805 program->first_tag = midgard_get_first_tag_from_block(ctx, 0);
2806
2807 /* Deal with off-by-one related to the fencepost problem */
2808 program->work_register_count = ctx->work_registers + 1;
2809 program->uniform_cutoff = ctx->uniform_cutoff;
2810
2811 program->blend_patch_offset = ctx->blend_constant_offset;
2812 program->tls_size = ctx->tls_size;
2813
2814 if (midgard_debug & MIDGARD_DBG_SHADERS)
2815 disassemble_midgard(stdout, program->compiled.data, program->compiled.size, gpu_id, ctx->stage);
2816
2817 if (midgard_debug & MIDGARD_DBG_SHADERDB || shaderdb) {
2818 unsigned nr_bundles = 0, nr_ins = 0;
2819
2820 /* Count instructions and bundles */
2821
2822 mir_foreach_block(ctx, _block) {
2823 midgard_block *block = (midgard_block *) _block;
2824 nr_bundles += util_dynarray_num_elements(
2825 &block->bundles, midgard_bundle);
2826
2827 mir_foreach_bundle_in_block(block, bun)
2828 nr_ins += bun->instruction_count;
2829 }
2830
2831 /* Calculate thread count. There are certain cutoffs by
2832 * register count for thread count */
2833
2834 unsigned nr_registers = program->work_register_count;
2835
2836 unsigned nr_threads =
2837 (nr_registers <= 4) ? 4 :
2838 (nr_registers <= 8) ? 2 :
2839 1;
2840
2841 /* Dump stats */
2842
2843 fprintf(stderr, "shader%d - %s shader: "
2844 "%u inst, %u bundles, %u quadwords, "
2845 "%u registers, %u threads, %u loops, "
2846 "%u:%u spills:fills\n",
2847 SHADER_DB_COUNT++,
2848 gl_shader_stage_name(ctx->stage),
2849 nr_ins, nr_bundles, ctx->quadword_count,
2850 nr_registers, nr_threads,
2851 ctx->loop_count,
2852 ctx->spills, ctx->fills);
2853 }
2854
2855 ralloc_free(ctx);
2856
2857 return 0;
2858 }