blob: 415000b9825bdafbe5454fe3431225f54a9e75b4 [file] [log] [blame]
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001/*
Alyssa Rosenzweig11554462019-05-19 23:20:34 +00002 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003 *
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
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010033#include "main/mtypes.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000034#include "compiler/glsl/glsl_to_nir.h"
35#include "compiler/nir_types.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000036#include "compiler/nir/nir_builder.h"
37#include "util/half_float.h"
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -070038#include "util/u_math.h"
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010039#include "util/u_debug.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000040#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"
Alyssa Rosenzweig11554462019-05-19 23:20:34 +000047#include "midgard_ops.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000048#include "helpers.h"
Alyssa Rosenzweig11554462019-05-19 23:20:34 +000049#include "compiler.h"
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -050050#include "midgard_quirks.h"
Icecream951e1eee92020-07-06 19:30:37 +120051#include "panfrost-quirks.h"
52#include "panfrost/util/pan_lower_framebuffer.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000053
54#include "disassemble.h"
55
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010056static const struct debug_named_value debug_options[] = {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070057 {"msgs", MIDGARD_DBG_MSGS, "Print debug messages"},
58 {"shaders", MIDGARD_DBG_SHADERS, "Dump shaders in NIR and MIR"},
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070059 {"shaderdb", MIDGARD_DBG_SHADERDB, "Prints shader-db statistics"},
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070060 DEBUG_NAMED_VALUE_END
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010061};
62
63DEBUG_GET_ONCE_FLAGS_OPTION(midgard_debug, "MIDGARD_MESA_DEBUG", debug_options, 0)
64
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070065unsigned SHADER_DB_COUNT = 0;
66
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010067int midgard_debug = 0;
68
69#define DBG(fmt, ...) \
70 do { if (midgard_debug & MIDGARD_DBG_MSGS) \
71 fprintf(stderr, "%s:%d: "fmt, \
72 __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0)
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070073static midgard_block *
74create_empty_block(compiler_context *ctx)
75{
76 midgard_block *blk = rzalloc(ctx, midgard_block);
77
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -040078 blk->base.predecessors = _mesa_set_create(blk,
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070079 _mesa_hash_pointer,
80 _mesa_key_pointer_equal);
81
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -040082 blk->base.name = ctx->block_source_count++;
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070083
84 return blk;
85}
86
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +000087static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070088schedule_barrier(compiler_context *ctx)
89{
90 midgard_block *temp = ctx->after_block;
91 ctx->after_block = create_empty_block(ctx);
92 ctx->block_count++;
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -040093 list_addtail(&ctx->after_block->base.link, &ctx->blocks);
94 list_inithead(&ctx->after_block->base.instructions);
95 pan_block_add_successor(&ctx->current_block->base, &ctx->after_block->base);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070096 ctx->current_block = ctx->after_block;
97 ctx->after_block = temp;
98}
99
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000100/* Helpers to generate midgard_instruction's using macro magic, since every
101 * driver seems to do it that way */
102
103#define EMIT(op, ...) emit_mir_instruction(ctx, v_##op(__VA_ARGS__));
Alyssa Rosenzweig56f9b472019-06-14 16:03:01 -0700104
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400105#define M_LOAD_STORE(name, store, T) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000106 static midgard_instruction m_##name(unsigned ssa, unsigned address) { \
107 midgard_instruction i = { \
108 .type = TAG_LOAD_STORE_4, \
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -0700109 .mask = 0xF, \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700110 .dest = ~0, \
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -0500111 .src = { ~0, ~0, ~0, ~0 }, \
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -0400112 .swizzle = SWIZZLE_IDENTITY_4, \
Italo Nicolabea6a652020-07-23 19:24:39 +0000113 .op = midgard_op_##name, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000114 .load_store = { \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000115 .address = address \
116 } \
117 }; \
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700118 \
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400119 if (store) { \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700120 i.src[0] = ssa; \
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400121 i.src_types[0] = T; \
Alyssa Rosenzweig9915bb22020-05-07 10:12:38 -0400122 i.dest_type = T; \
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400123 } else { \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700124 i.dest = ssa; \
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400125 i.dest_type = T; \
126 } \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000127 return i; \
128 }
129
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400130#define M_LOAD(name, T) M_LOAD_STORE(name, false, T)
131#define M_STORE(name, T) M_LOAD_STORE(name, true, T)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000132
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400133M_LOAD(ld_attr_32, nir_type_uint32);
134M_LOAD(ld_vary_32, nir_type_uint32);
135M_LOAD(ld_ubo_int4, nir_type_uint32);
136M_LOAD(ld_int4, nir_type_uint32);
137M_STORE(st_int4, nir_type_uint32);
138M_LOAD(ld_color_buffer_32u, nir_type_uint32);
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -0400139M_LOAD(ld_color_buffer_as_fp16, nir_type_float16);
Icecream952fbe7ca2020-07-09 23:44:41 +1200140M_LOAD(ld_color_buffer_as_fp32, nir_type_float32);
Alyssa Rosenzweig714eba82020-04-27 19:01:40 -0400141M_STORE(st_vary_32, nir_type_uint32);
142M_LOAD(ld_cubemap_coords, nir_type_uint32);
143M_LOAD(ld_compute_id, nir_type_uint32);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000144
145static midgard_instruction
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000146v_branch(bool conditional, bool invert)
147{
148 midgard_instruction ins = {
149 .type = TAG_ALU_4,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000150 .unit = ALU_ENAB_BRANCH,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000151 .compact_branch = true,
152 .branch = {
153 .conditional = conditional,
154 .invert_conditional = invert
Alyssa Rosenzweig29416a82019-07-30 12:20:24 -0700155 },
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700156 .dest = ~0,
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -0500157 .src = { ~0, ~0, ~0, ~0 },
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000158 };
159
160 return ins;
161}
162
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000163static void
164attach_constants(compiler_context *ctx, midgard_instruction *ins, void *constants, int name)
165{
166 ins->has_constants = true;
167 memcpy(&ins->constants, constants, 16);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000168}
169
170static int
Timothy Arceri035759b2019-03-29 12:39:48 +1100171glsl_type_size(const struct glsl_type *type, bool bindless)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000172{
173 return glsl_count_attribute_slots(type, false);
174}
175
176/* Lower fdot2 to a vector multiplication followed by channel addition */
177static void
178midgard_nir_lower_fdot2_body(nir_builder *b, nir_alu_instr *alu)
179{
180 if (alu->op != nir_op_fdot2)
181 return;
182
183 b->cursor = nir_before_instr(&alu->instr);
184
185 nir_ssa_def *src0 = nir_ssa_for_alu_src(b, alu, 0);
186 nir_ssa_def *src1 = nir_ssa_for_alu_src(b, alu, 1);
187
188 nir_ssa_def *product = nir_fmul(b, src0, src1);
189
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700190 nir_ssa_def *sum = nir_fadd(b,
191 nir_channel(b, product, 0),
192 nir_channel(b, product, 1));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000193
194 /* Replace the fdot2 with this sum */
195 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(sum));
196}
197
198static bool
199midgard_nir_lower_fdot2(nir_shader *shader)
200{
201 bool progress = false;
202
203 nir_foreach_function(function, shader) {
204 if (!function->impl) continue;
205
206 nir_builder _b;
207 nir_builder *b = &_b;
208 nir_builder_init(b, function->impl);
209
210 nir_foreach_block(block, function->impl) {
211 nir_foreach_instr_safe(instr, block) {
212 if (instr->type != nir_instr_type_alu) continue;
213
214 nir_alu_instr *alu = nir_instr_as_alu(instr);
215 midgard_nir_lower_fdot2_body(b, alu);
216
217 progress |= true;
218 }
219 }
220
221 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
222
223 }
224
225 return progress;
226}
227
Icecream957534a312020-06-06 15:39:22 +1200228static const nir_variable *
Jason Ekstrand94f0bae2020-07-20 16:07:11 -0500229search_var(nir_shader *nir, nir_variable_mode mode, unsigned driver_loc)
Icecream957534a312020-06-06 15:39:22 +1200230{
Jason Ekstrand94f0bae2020-07-20 16:07:11 -0500231 nir_foreach_variable_with_modes(var, nir, mode) {
Icecream957534a312020-06-06 15:39:22 +1200232 if (var->data.driver_location == driver_loc)
233 return var;
234 }
235
236 return NULL;
237}
238
Icecream95d37e9012020-06-06 17:25:08 +1200239/* Midgard can write all of color, depth and stencil in a single writeout
240 * operation, so we merge depth/stencil stores with color stores.
241 * If there are no color stores, we add a write to the "depth RT".
242 */
243static bool
244midgard_nir_lower_zs_store(nir_shader *nir)
245{
246 if (nir->info.stage != MESA_SHADER_FRAGMENT)
247 return false;
248
249 nir_variable *z_var = NULL, *s_var = NULL;
250
Jason Ekstrand2956d532020-07-18 18:24:25 -0500251 nir_foreach_shader_out_variable(var, nir) {
Icecream95d37e9012020-06-06 17:25:08 +1200252 if (var->data.location == FRAG_RESULT_DEPTH)
253 z_var = var;
254 else if (var->data.location == FRAG_RESULT_STENCIL)
255 s_var = var;
256 }
257
258 if (!z_var && !s_var)
259 return false;
260
261 bool progress = false;
262
263 nir_foreach_function(function, nir) {
264 if (!function->impl) continue;
265
266 nir_intrinsic_instr *z_store = NULL, *s_store = NULL;
267
268 nir_foreach_block(block, function->impl) {
269 nir_foreach_instr_safe(instr, block) {
270 if (instr->type != nir_instr_type_intrinsic)
271 continue;
272
273 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
274 if (intr->intrinsic != nir_intrinsic_store_output)
275 continue;
276
277 if (z_var && nir_intrinsic_base(intr) == z_var->data.driver_location) {
278 assert(!z_store);
279 z_store = intr;
280 }
281
282 if (s_var && nir_intrinsic_base(intr) == s_var->data.driver_location) {
283 assert(!s_store);
284 s_store = intr;
285 }
286 }
287 }
288
289 if (!z_store && !s_store) continue;
290
291 bool replaced = false;
292
293 nir_foreach_block(block, function->impl) {
294 nir_foreach_instr_safe(instr, block) {
295 if (instr->type != nir_instr_type_intrinsic)
296 continue;
297
298 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
299 if (intr->intrinsic != nir_intrinsic_store_output)
300 continue;
301
Jason Ekstrand94f0bae2020-07-20 16:07:11 -0500302 const nir_variable *var = search_var(nir, nir_var_shader_out, nir_intrinsic_base(intr));
Icecream95d37e9012020-06-06 17:25:08 +1200303 assert(var);
304
305 if (var->data.location != FRAG_RESULT_COLOR &&
306 var->data.location < FRAG_RESULT_DATA0)
307 continue;
308
Icecream95334dab02020-07-10 23:28:21 +1200309 if (var->data.index)
310 continue;
311
Icecream95d37e9012020-06-06 17:25:08 +1200312 assert(nir_src_is_const(intr->src[1]) && "no indirect outputs");
313
314 nir_builder b;
315 nir_builder_init(&b, function->impl);
316
317 assert(!z_store || z_store->instr.block == instr->block);
318 assert(!s_store || s_store->instr.block == instr->block);
319 b.cursor = nir_after_block_before_jump(instr->block);
320
321 nir_intrinsic_instr *combined_store;
322 combined_store = nir_intrinsic_instr_create(b.shader, nir_intrinsic_store_combined_output_pan);
323
324 combined_store->num_components = intr->src[0].ssa->num_components;
325
326 nir_intrinsic_set_base(combined_store, nir_intrinsic_base(intr));
327
328 unsigned writeout = PAN_WRITEOUT_C;
329 if (z_store)
330 writeout |= PAN_WRITEOUT_Z;
331 if (s_store)
332 writeout |= PAN_WRITEOUT_S;
333
334 nir_intrinsic_set_component(combined_store, writeout);
335
336 struct nir_ssa_def *zero = nir_imm_int(&b, 0);
337
338 struct nir_ssa_def *src[4] = {
339 intr->src[0].ssa,
340 intr->src[1].ssa,
341 z_store ? z_store->src[0].ssa : zero,
342 s_store ? s_store->src[0].ssa : zero,
343 };
344
345 for (int i = 0; i < 4; ++i)
346 combined_store->src[i] = nir_src_for_ssa(src[i]);
347
348 nir_builder_instr_insert(&b, &combined_store->instr);
349
350 nir_instr_remove(instr);
351
352 replaced = true;
353 }
354 }
355
356 /* Insert a store to the depth RT (0xff) if needed */
357 if (!replaced) {
358 nir_builder b;
359 nir_builder_init(&b, function->impl);
360
361 nir_block *block = NULL;
362 if (z_store && s_store)
363 assert(z_store->instr.block == s_store->instr.block);
364
365 if (z_store)
366 block = z_store->instr.block;
367 else
368 block = s_store->instr.block;
369
370 b.cursor = nir_after_block_before_jump(block);
371
372 nir_intrinsic_instr *combined_store;
373 combined_store = nir_intrinsic_instr_create(b.shader, nir_intrinsic_store_combined_output_pan);
374
375 combined_store->num_components = 4;
376
Icecream9518059f42020-07-08 16:00:51 +1200377 unsigned base;
378 if (z_store)
379 base = nir_intrinsic_base(z_store);
380 else
381 base = nir_intrinsic_base(s_store);
382 nir_intrinsic_set_base(combined_store, base);
Icecream95d37e9012020-06-06 17:25:08 +1200383
384 unsigned writeout = 0;
385 if (z_store)
386 writeout |= PAN_WRITEOUT_Z;
387 if (s_store)
388 writeout |= PAN_WRITEOUT_S;
389
390 nir_intrinsic_set_component(combined_store, writeout);
391
392 struct nir_ssa_def *zero = nir_imm_int(&b, 0);
393
394 struct nir_ssa_def *src[4] = {
395 nir_imm_vec4(&b, 0, 0, 0, 0),
396 zero,
397 z_store ? z_store->src[0].ssa : zero,
398 s_store ? s_store->src[0].ssa : zero,
399 };
400
401 for (int i = 0; i < 4; ++i)
402 combined_store->src[i] = nir_src_for_ssa(src[i]);
403
404 nir_builder_instr_insert(&b, &combined_store->instr);
405 }
406
407 if (z_store)
408 nir_instr_remove(&z_store->instr);
409
410 if (s_store)
411 nir_instr_remove(&s_store->instr);
412
413 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
414 progress = true;
415 }
416
417 return progress;
418}
419
Icecream950ff62632020-07-06 23:52:40 +1200420/* Real writeout stores, which break execution, need to be moved to after
421 * dual-source stores, which are just standard register writes. */
422static bool
423midgard_nir_reorder_writeout(nir_shader *nir)
424{
425 bool progress = false;
426
427 nir_foreach_function(function, nir) {
428 if (!function->impl) continue;
429
430 nir_foreach_block(block, function->impl) {
431 nir_instr *last_writeout = NULL;
432
433 nir_foreach_instr_reverse_safe(instr, block) {
434 if (instr->type != nir_instr_type_intrinsic)
435 continue;
436
437 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
438 if (intr->intrinsic != nir_intrinsic_store_output)
439 continue;
440
Jason Ekstrand94f0bae2020-07-20 16:07:11 -0500441 const nir_variable *var = search_var(nir, nir_var_shader_out, nir_intrinsic_base(intr));
Icecream950ff62632020-07-06 23:52:40 +1200442
443 if (var->data.index) {
444 if (!last_writeout)
445 last_writeout = instr;
446 continue;
447 }
448
449 if (!last_writeout)
450 continue;
451
452 /* This is a real store, so move it to after dual-source stores */
453 exec_node_remove(&instr->node);
454 exec_node_insert_after(&last_writeout->node, &instr->node);
455
456 progress = true;
457 }
458 }
459 }
460
461 return progress;
462}
463
Alyssa Rosenzweig2486fe62020-08-27 14:55:11 -0400464static bool
465mdg_is_64(const nir_instr *instr, const void *_unused)
466{
467 const nir_alu_instr *alu = nir_instr_as_alu(instr);
468
469 if (nir_dest_bit_size(alu->dest.dest) == 64)
470 return true;
471
472 switch (alu->op) {
473 case nir_op_umul_high:
474 case nir_op_imul_high:
475 return true;
476 default:
477 return false;
478 }
479}
480
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700481/* Flushes undefined values to zero */
482
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000483static void
Alyssa Rosenzweig7c793a42020-05-22 16:23:06 -0400484optimise_nir(nir_shader *nir, unsigned quirks, bool is_blend)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000485{
486 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700487 unsigned lower_flrp =
488 (nir->options->lower_flrp16 ? 16 : 0) |
489 (nir->options->lower_flrp32 ? 32 : 0) |
490 (nir->options->lower_flrp64 ? 64 : 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000491
492 NIR_PASS(progress, nir, nir_lower_regs_to_ssa);
Rhys Perry8b98d092019-02-05 15:56:24 +0000493 NIR_PASS(progress, nir, nir_lower_idiv, nir_lower_idiv_fast);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000494
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -0700495 nir_lower_tex_options lower_tex_options = {
496 .lower_txs_lod = true,
Alyssa Rosenzweig4c43b352019-11-21 13:40:00 -0500497 .lower_txp = ~0,
498 .lower_tex_without_implicit_lod =
499 (quirks & MIDGARD_EXPLICIT_LOD),
Alyssa Rosenzweig7dab5742020-08-28 09:48:38 -0400500 .lower_tg4_broadcom_swizzle = true,
Alyssa Rosenzweigc57337b2019-12-19 11:12:50 -0500501
502 /* TODO: we have native gradient.. */
503 .lower_txd = true,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000504 };
505
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -0700506 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_options);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000507
Alyssa Rosenzweigc57337b2019-12-19 11:12:50 -0500508 /* Must lower fdot2 after tex is lowered */
509 NIR_PASS(progress, nir, midgard_nir_lower_fdot2);
510
Alyssa Rosenzweigbda2bb32019-11-21 08:45:27 -0500511 /* T720 is broken. */
512
513 if (quirks & MIDGARD_BROKEN_LOD)
514 NIR_PASS_V(nir, midgard_nir_lod_errata);
515
Alyssa Rosenzweigc495c6c2020-05-12 19:07:48 -0400516 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_early);
517
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000518 do {
519 progress = false;
520
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000521 NIR_PASS(progress, nir, nir_lower_var_copies);
522 NIR_PASS(progress, nir, nir_lower_vars_to_ssa);
523
524 NIR_PASS(progress, nir, nir_copy_prop);
Boris Brezillon440b0d62020-01-06 14:31:38 +0100525 NIR_PASS(progress, nir, nir_opt_remove_phis);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000526 NIR_PASS(progress, nir, nir_opt_dce);
527 NIR_PASS(progress, nir, nir_opt_dead_cf);
528 NIR_PASS(progress, nir, nir_opt_cse);
529 NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true);
530 NIR_PASS(progress, nir, nir_opt_algebraic);
531 NIR_PASS(progress, nir, nir_opt_constant_folding);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700532
533 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700534 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700535 NIR_PASS(lower_flrp_progress,
536 nir,
537 nir_lower_flrp,
538 lower_flrp,
Marek Olšákac55b1a2020-07-22 22:13:16 -0400539 false /* always_precise */);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700540 if (lower_flrp_progress) {
541 NIR_PASS(progress, nir,
542 nir_opt_constant_folding);
543 progress = true;
544 }
545
546 /* Nothing should rematerialize any flrps, so we only
547 * need to do this lowering once.
548 */
549 lower_flrp = 0;
550 }
551
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000552 NIR_PASS(progress, nir, nir_opt_undef);
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700553 NIR_PASS(progress, nir, nir_undef_to_zero);
554
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000555 NIR_PASS(progress, nir, nir_opt_loop_unroll,
556 nir_var_shader_in |
557 nir_var_shader_out |
558 nir_var_function_temp);
559
Eric Anholtf25e1692020-08-27 12:49:13 -0700560 NIR_PASS(progress, nir, nir_opt_vectorize, NULL, NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000561 } while (progress);
562
Alyssa Rosenzweig2486fe62020-08-27 14:55:11 -0400563 NIR_PASS_V(nir, nir_lower_alu_to_scalar, mdg_is_64, NULL);
564
Alyssa Rosenzweigd838cb92020-06-16 13:07:02 -0400565 /* Run after opts so it can hit more */
566 if (!is_blend)
567 NIR_PASS(progress, nir, nir_fuse_io_16);
568
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000569 /* Must be run at the end to prevent creation of fsin/fcos ops */
570 NIR_PASS(progress, nir, midgard_nir_scale_trig);
571
572 do {
573 progress = false;
574
575 NIR_PASS(progress, nir, nir_opt_dce);
576 NIR_PASS(progress, nir, nir_opt_algebraic);
577 NIR_PASS(progress, nir, nir_opt_constant_folding);
578 NIR_PASS(progress, nir, nir_copy_prop);
579 } while (progress);
580
581 NIR_PASS(progress, nir, nir_opt_algebraic_late);
Alyssa Rosenzweig211dee42020-04-29 20:27:16 -0400582 NIR_PASS(progress, nir, nir_opt_algebraic_distribute_src_mods);
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000583
584 /* We implement booleans as 32-bit 0/~0 */
585 NIR_PASS(progress, nir, nir_lower_bool_to_int32);
586
587 /* Now that booleans are lowered, we can run out late opts */
Alyssa Rosenzweigeffe6fb02019-03-25 02:49:04 +0000588 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_late);
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -0400589 NIR_PASS(progress, nir, midgard_nir_cancel_inot);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000590
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000591 NIR_PASS(progress, nir, nir_copy_prop);
592 NIR_PASS(progress, nir, nir_opt_dce);
593
594 /* Take us out of SSA */
595 NIR_PASS(progress, nir, nir_lower_locals_to_regs);
596 NIR_PASS(progress, nir, nir_convert_from_ssa, true);
597
598 /* We are a vector architecture; write combine where possible */
599 NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest);
600 NIR_PASS(progress, nir, nir_lower_vec_to_movs);
601
602 NIR_PASS(progress, nir, nir_opt_dce);
603}
604
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000605/* Do not actually emit a load; instead, cache the constant for inlining */
606
607static void
608emit_load_const(compiler_context *ctx, nir_load_const_instr *instr)
609{
610 nir_ssa_def def = instr->def;
611
Boris Brezillon15c92d12020-01-20 15:00:57 +0100612 midgard_constants *consts = rzalloc(NULL, midgard_constants);
613
614 assert(instr->def.num_components * instr->def.bit_size <= sizeof(*consts) * 8);
615
616#define RAW_CONST_COPY(bits) \
617 nir_const_value_to_array(consts->u##bits, instr->value, \
618 instr->def.num_components, u##bits)
619
620 switch (instr->def.bit_size) {
621 case 64:
622 RAW_CONST_COPY(64);
623 break;
624 case 32:
625 RAW_CONST_COPY(32);
626 break;
627 case 16:
628 RAW_CONST_COPY(16);
629 break;
630 case 8:
631 RAW_CONST_COPY(8);
632 break;
633 default:
634 unreachable("Invalid bit_size for load_const instruction\n");
635 }
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -0700636
637 /* Shifted for SSA, +1 for off-by-one */
Boris Brezillon15c92d12020-01-20 15:00:57 +0100638 _mesa_hash_table_u64_insert(ctx->ssa_constants, (def.index << 1) + 1, consts);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000639}
640
Alyssa Rosenzweige1693012019-07-24 12:52:27 -0700641/* Normally constants are embedded implicitly, but for I/O and such we have to
642 * explicitly emit a move with the constant source */
643
644static void
645emit_explicit_constant(compiler_context *ctx, unsigned node, unsigned to)
646{
647 void *constant_value = _mesa_hash_table_u64_search(ctx->ssa_constants, node + 1);
648
649 if (constant_value) {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -0400650 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), to);
Alyssa Rosenzweige1693012019-07-24 12:52:27 -0700651 attach_constants(ctx, &ins, constant_value, node + 1);
652 emit_mir_instruction(ctx, ins);
653 }
654}
655
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000656static bool
657nir_is_non_scalar_swizzle(nir_alu_src *src, unsigned nr_components)
658{
659 unsigned comp = src->swizzle[0];
660
661 for (unsigned c = 1; c < nr_components; ++c) {
662 if (src->swizzle[c] != comp)
663 return true;
664 }
665
666 return false;
667}
668
Italo Nicola8e221f52020-08-31 11:17:48 +0000669#define ATOMIC_CASE_IMPL(ctx, instr, nir, op, is_shared) \
670 case nir_intrinsic_##nir: \
671 emit_atomic(ctx, instr, is_shared, midgard_op_##op); \
672 break;
673
674#define ATOMIC_CASE(ctx, instr, nir, op) \
675 ATOMIC_CASE_IMPL(ctx, instr, shared_atomic_##nir, atomic_##op, true); \
676 ATOMIC_CASE_IMPL(ctx, instr, global_atomic_##nir, atomic_##op, false);
677
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000678#define ALU_CASE(nir, _op) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000679 case nir_op_##nir: \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000680 op = midgard_alu_op_##_op; \
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700681 assert(src_bitsize == dst_bitsize); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000682 break;
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700683
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400684#define ALU_CASE_RTZ(nir, _op) \
685 case nir_op_##nir: \
686 op = midgard_alu_op_##_op; \
687 roundmode = MIDGARD_RTZ; \
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400688 break;
689
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -0400690#define ALU_CHECK_CMP(sext) \
691 assert(src_bitsize == 16 || src_bitsize == 32); \
692 assert(dst_bitsize == 16 || dst_bitsize == 32); \
693
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700694#define ALU_CASE_BCAST(nir, _op, count) \
695 case nir_op_##nir: \
696 op = midgard_alu_op_##_op; \
697 broadcast_swizzle = count; \
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -0400698 ALU_CHECK_CMP(true); \
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700699 break;
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400700
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400701#define ALU_CASE_CMP(nir, _op, sext) \
702 case nir_op_##nir: \
703 op = midgard_alu_op_##_op; \
704 ALU_CHECK_CMP(sext); \
705 break;
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700706
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -0400707/* Compare mir_lower_invert */
708static bool
709nir_accepts_inot(nir_op op, unsigned src)
710{
711 switch (op) {
712 case nir_op_ior:
Alyssa Rosenzweig6b023b32020-05-08 17:42:40 -0400713 case nir_op_iand: /* TODO: b2f16 */
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -0400714 case nir_op_ixor:
715 return true;
716 case nir_op_b32csel:
717 /* Only the condition */
718 return (src == 0);
719 default:
720 return false;
721 }
722}
723
Alyssa Rosenzweig29afa882020-05-04 17:33:52 -0400724static bool
725mir_accept_dest_mod(compiler_context *ctx, nir_dest **dest, nir_op op)
726{
727 if (pan_has_dest_mod(dest, op)) {
728 assert((*dest)->is_ssa);
729 BITSET_SET(ctx->already_emitted, (*dest)->ssa.index);
730 return true;
731 }
732
733 return false;
734}
735
Italo Nicola83592de2020-07-15 18:48:42 +0000736/* Look for floating point mods. We have the mods fsat, fsat_signed,
737 * and fpos. We also have the relations (note 3 * 2 = 6 cases):
738 *
739 * fsat_signed(fpos(x)) = fsat(x)
740 * fsat_signed(fsat(x)) = fsat(x)
741 * fpos(fsat_signed(x)) = fsat(x)
742 * fpos(fsat(x)) = fsat(x)
743 * fsat(fsat_signed(x)) = fsat(x)
744 * fsat(fpos(x)) = fsat(x)
745 *
746 * So by cases any composition of output modifiers is equivalent to
747 * fsat alone.
748 */
749static unsigned
750mir_determine_float_outmod(compiler_context *ctx, nir_dest **dest, unsigned prior_outmod)
751{
752 bool fpos = mir_accept_dest_mod(ctx, dest, nir_op_fclamp_pos);
753 bool fsat = mir_accept_dest_mod(ctx, dest, nir_op_fsat);
754 bool ssat = mir_accept_dest_mod(ctx, dest, nir_op_fsat_signed);
755 bool prior = (prior_outmod != midgard_outmod_none);
756 int count = (int) prior + (int) fpos + (int) ssat + (int) fsat;
757
758 return ((count > 1) || fsat) ? midgard_outmod_sat :
759 fpos ? midgard_outmod_pos :
760 ssat ? midgard_outmod_sat_signed :
761 prior_outmod;
762}
763
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000764static void
Alyssa Rosenzweigf8b881f2020-05-25 14:19:24 -0400765mir_copy_src(midgard_instruction *ins, nir_alu_instr *instr, unsigned i, unsigned to, bool *abs, bool *neg, bool *not, enum midgard_roundmode *roundmode, bool is_int, unsigned bcast_count)
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -0400766{
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400767 nir_alu_src src = instr->src[i];
Alyssa Rosenzweigb124f532020-04-29 18:10:43 -0400768
769 if (!is_int) {
770 if (pan_has_source_mod(&src, nir_op_fneg))
771 *neg = !(*neg);
772
773 if (pan_has_source_mod(&src, nir_op_fabs))
774 *abs = true;
775 }
776
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -0400777 if (nir_accepts_inot(instr->op, i) && pan_has_source_mod(&src, nir_op_inot))
778 *not = true;
779
Alyssa Rosenzweigf8b881f2020-05-25 14:19:24 -0400780 if (roundmode) {
781 if (pan_has_source_mod(&src, nir_op_fround_even))
782 *roundmode = MIDGARD_RTE;
783
784 if (pan_has_source_mod(&src, nir_op_ftrunc))
785 *roundmode = MIDGARD_RTZ;
786
787 if (pan_has_source_mod(&src, nir_op_ffloor))
788 *roundmode = MIDGARD_RTN;
789
790 if (pan_has_source_mod(&src, nir_op_fceil))
791 *roundmode = MIDGARD_RTP;
792 }
793
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400794 unsigned bits = nir_src_bit_size(src.src);
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -0400795
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400796 ins->src[to] = nir_src_index(NULL, &src.src);
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -0400797 ins->src_types[to] = nir_op_infos[instr->op].input_types[i] | bits;
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400798
799 for (unsigned c = 0; c < NIR_MAX_VEC_COMPONENTS; ++c) {
800 ins->swizzle[to][c] = src.swizzle[
801 (!bcast_count || c < bcast_count) ? c :
802 (bcast_count - 1)];
803 }
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -0400804}
805
Alyssa Rosenzweigd39f95b2020-05-04 15:45:47 -0400806/* Midgard features both fcsel and icsel, depending on whether you want int or
807 * float modifiers. NIR's csel is typeless, so we want a heuristic to guess if
808 * we should emit an int or float csel depending on what modifiers could be
809 * placed. In the absense of modifiers, this is probably arbitrary. */
810
811static bool
812mir_is_bcsel_float(nir_alu_instr *instr)
813{
814 nir_op intmods[] = {
815 nir_op_i2i8, nir_op_i2i16,
816 nir_op_i2i32, nir_op_i2i64
817 };
818
819 nir_op floatmods[] = {
820 nir_op_fabs, nir_op_fneg,
821 nir_op_f2f16, nir_op_f2f32,
822 nir_op_f2f64
823 };
824
825 nir_op floatdestmods[] = {
826 nir_op_fsat, nir_op_fsat_signed, nir_op_fclamp_pos,
827 nir_op_f2f16, nir_op_f2f32
828 };
829
830 signed score = 0;
831
832 for (unsigned i = 1; i < 3; ++i) {
833 nir_alu_src s = instr->src[i];
834 for (unsigned q = 0; q < ARRAY_SIZE(intmods); ++q) {
835 if (pan_has_source_mod(&s, intmods[q]))
836 score--;
837 }
838 }
839
840 for (unsigned i = 1; i < 3; ++i) {
841 nir_alu_src s = instr->src[i];
842 for (unsigned q = 0; q < ARRAY_SIZE(floatmods); ++q) {
843 if (pan_has_source_mod(&s, floatmods[q]))
844 score++;
845 }
846 }
847
848 for (unsigned q = 0; q < ARRAY_SIZE(floatdestmods); ++q) {
849 nir_dest *dest = &instr->dest.dest;
850 if (pan_has_dest_mod(&dest, floatdestmods[q]))
851 score++;
852 }
853
854 return (score > 0);
855}
856
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -0400857static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000858emit_alu(compiler_context *ctx, nir_alu_instr *instr)
859{
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400860 nir_dest *dest = &instr->dest.dest;
861
862 if (dest->is_ssa && BITSET_TEST(ctx->already_emitted, dest->ssa.index))
863 return;
864
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -0700865 /* Derivatives end up emitted on the texture pipe, not the ALUs. This
866 * is handled elsewhere */
867
868 if (instr->op == nir_op_fddx || instr->op == nir_op_fddy) {
869 midgard_emit_derivatives(ctx, instr);
870 return;
871 }
872
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400873 bool is_ssa = dest->is_ssa;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000874
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400875 unsigned nr_components = nir_dest_num_components(*dest);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000876 unsigned nr_inputs = nir_op_infos[instr->op].num_inputs;
Alyssa Rosenzweig04f76ad2020-04-27 18:58:21 -0400877 unsigned op = 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000878
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700879 /* Number of components valid to check for the instruction (the rest
880 * will be forced to the last), or 0 to use as-is. Relevant as
881 * ball-type instructions have a channel count in NIR but are all vec4
882 * in Midgard */
883
884 unsigned broadcast_swizzle = 0;
885
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -0400886 /* Should we swap arguments? */
887 bool flip_src12 = false;
888
Eric Anholt4c24c822020-08-25 10:15:27 -0700889 ASSERTED unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
890 ASSERTED unsigned dst_bitsize = nir_dest_bit_size(*dest);
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700891
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400892 enum midgard_roundmode roundmode = MIDGARD_RTE;
893
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000894 switch (instr->op) {
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000895 ALU_CASE(fadd, fadd);
896 ALU_CASE(fmul, fmul);
897 ALU_CASE(fmin, fmin);
898 ALU_CASE(fmax, fmax);
899 ALU_CASE(imin, imin);
900 ALU_CASE(imax, imax);
Alyssa Rosenzweig2e7555b2019-04-05 05:16:54 +0000901 ALU_CASE(umin, umin);
902 ALU_CASE(umax, umax);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000903 ALU_CASE(ffloor, ffloor);
Alyssa Rosenzweigc6be9962019-02-23 01:12:10 +0000904 ALU_CASE(fround_even, froundeven);
905 ALU_CASE(ftrunc, ftrunc);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000906 ALU_CASE(fceil, fceil);
907 ALU_CASE(fdot3, fdot3);
908 ALU_CASE(fdot4, fdot4);
909 ALU_CASE(iadd, iadd);
910 ALU_CASE(isub, isub);
911 ALU_CASE(imul, imul);
Alyssa Rosenzweig3e2cb212020-08-27 14:35:23 -0400912 ALU_CASE(imul_high, imul);
913 ALU_CASE(umul_high, imul);
Alyssa Rosenzweig9f14e202019-06-05 15:18:35 +0000914
915 /* Zero shoved as second-arg */
916 ALU_CASE(iabs, iabsdiff);
917
Jason Ekstrandf2dc0f22019-05-06 11:45:46 -0500918 ALU_CASE(mov, imov);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000919
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400920 ALU_CASE_CMP(feq32, feq, false);
Karol Herbste5899c12020-08-18 19:51:57 +0200921 ALU_CASE_CMP(fneu32, fne, false);
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400922 ALU_CASE_CMP(flt32, flt, false);
923 ALU_CASE_CMP(ieq32, ieq, true);
924 ALU_CASE_CMP(ine32, ine, true);
925 ALU_CASE_CMP(ilt32, ilt, true);
926 ALU_CASE_CMP(ult32, ult, false);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000927
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000928 /* We don't have a native b2f32 instruction. Instead, like many
929 * GPUs, we exploit booleans as 0/~0 for false/true, and
930 * correspondingly AND
931 * by 1.0 to do the type conversion. For the moment, prime us
932 * to emit:
933 *
934 * iand [whatever], #0
935 *
936 * At the end of emit_alu (as MIR), we'll fix-up the constant
937 */
938
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400939 ALU_CASE_CMP(b2f32, iand, true);
Alyssa Rosenzweig6b023b32020-05-08 17:42:40 -0400940 ALU_CASE_CMP(b2f16, iand, true);
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400941 ALU_CASE_CMP(b2i32, iand, true);
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000942
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000943 /* Likewise, we don't have a dedicated f2b32 instruction, but
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000944 * we can do a "not equal to 0.0" test. */
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000945
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -0400946 ALU_CASE_CMP(f2b32, fne, false);
947 ALU_CASE_CMP(i2b32, ine, true);
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000948
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000949 ALU_CASE(frcp, frcp);
950 ALU_CASE(frsq, frsqrt);
951 ALU_CASE(fsqrt, fsqrt);
952 ALU_CASE(fexp2, fexp2);
953 ALU_CASE(flog2, flog2);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000954
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400955 ALU_CASE_RTZ(f2i64, f2i_rte);
956 ALU_CASE_RTZ(f2u64, f2u_rte);
957 ALU_CASE_RTZ(i2f64, i2f_rte);
958 ALU_CASE_RTZ(u2f64, u2f_rte);
Boris Brezillonfcceeaf2020-01-20 22:05:14 +0100959
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400960 ALU_CASE_RTZ(f2i32, f2i_rte);
961 ALU_CASE_RTZ(f2u32, f2u_rte);
962 ALU_CASE_RTZ(i2f32, i2f_rte);
963 ALU_CASE_RTZ(u2f32, u2f_rte);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000964
Alyssa Rosenzweig0ae01412020-05-25 14:46:40 -0400965 ALU_CASE_RTZ(f2i8, f2i_rte);
966 ALU_CASE_RTZ(f2u8, f2u_rte);
967
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -0400968 ALU_CASE_RTZ(f2i16, f2i_rte);
969 ALU_CASE_RTZ(f2u16, f2u_rte);
970 ALU_CASE_RTZ(i2f16, i2f_rte);
971 ALU_CASE_RTZ(u2f16, u2f_rte);
Alyssa Rosenzweigd8c084d2019-07-01 17:41:20 -0700972
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000973 ALU_CASE(fsin, fsin);
974 ALU_CASE(fcos, fcos);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000975
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -0400976 /* We'll get 0 in the second arg, so:
977 * ~a = ~(a | 0) = nor(a, 0) */
978 ALU_CASE(inot, inor);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000979 ALU_CASE(iand, iand);
980 ALU_CASE(ior, ior);
981 ALU_CASE(ixor, ixor);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000982 ALU_CASE(ishl, ishl);
983 ALU_CASE(ishr, iasr);
984 ALU_CASE(ushr, ilsr);
985
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700986 ALU_CASE_BCAST(b32all_fequal2, fball_eq, 2);
987 ALU_CASE_BCAST(b32all_fequal3, fball_eq, 3);
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -0400988 ALU_CASE_CMP(b32all_fequal4, fball_eq, true);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000989
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700990 ALU_CASE_BCAST(b32any_fnequal2, fbany_neq, 2);
991 ALU_CASE_BCAST(b32any_fnequal3, fbany_neq, 3);
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -0400992 ALU_CASE_CMP(b32any_fnequal4, fbany_neq, true);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000993
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700994 ALU_CASE_BCAST(b32all_iequal2, iball_eq, 2);
995 ALU_CASE_BCAST(b32all_iequal3, iball_eq, 3);
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -0400996 ALU_CASE_CMP(b32all_iequal4, iball_eq, true);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000997
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700998 ALU_CASE_BCAST(b32any_inequal2, ibany_neq, 2);
999 ALU_CASE_BCAST(b32any_inequal3, ibany_neq, 3);
Alyssa Rosenzweig1108eaa2020-05-08 17:41:49 -04001000 ALU_CASE_CMP(b32any_inequal4, ibany_neq, true);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001001
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001002 /* Source mods will be shoved in later */
1003 ALU_CASE(fabs, fmov);
1004 ALU_CASE(fneg, fmov);
1005 ALU_CASE(fsat, fmov);
Alyssa Rosenzweig24e2e242020-05-04 16:12:41 -04001006 ALU_CASE(fsat_signed, fmov);
1007 ALU_CASE(fclamp_pos, fmov);
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001008
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001009 /* For size conversion, we use a move. Ideally though we would squash
1010 * these ops together; maybe that has to happen after in NIR as part of
1011 * propagation...? An earlier algebraic pass ensured we step down by
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001012 * only / exactly one size. If stepping down, we use a dest override to
1013 * reduce the size; if stepping up, we use a larger-sized move with a
1014 * half source and a sign/zero-extension modifier */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001015
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001016 case nir_op_i2i8:
1017 case nir_op_i2i16:
1018 case nir_op_i2i32:
Alyssa Rosenzweig2655a302019-11-04 22:21:20 -05001019 case nir_op_i2i64:
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001020 case nir_op_u2u8:
1021 case nir_op_u2u16:
Alyssa Rosenzweig2655a302019-11-04 22:21:20 -05001022 case nir_op_u2u32:
Boris Brezillonf53a0792020-01-20 16:03:52 +01001023 case nir_op_u2u64:
1024 case nir_op_f2f16:
Boris Brezillone1f9e8d2020-01-20 16:05:31 +01001025 case nir_op_f2f32:
1026 case nir_op_f2f64: {
1027 if (instr->op == nir_op_f2f16 || instr->op == nir_op_f2f32 ||
1028 instr->op == nir_op_f2f64)
Boris Brezillonf53a0792020-01-20 16:03:52 +01001029 op = midgard_alu_op_fmov;
1030 else
1031 op = midgard_alu_op_imov;
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001032
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001033 break;
1034 }
1035
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +00001036 /* For greater-or-equal, we lower to less-or-equal and flip the
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001037 * arguments */
1038
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +00001039 case nir_op_fge:
1040 case nir_op_fge32:
1041 case nir_op_ige32:
1042 case nir_op_uge32: {
1043 op =
1044 instr->op == nir_op_fge ? midgard_alu_op_fle :
1045 instr->op == nir_op_fge32 ? midgard_alu_op_fle :
1046 instr->op == nir_op_ige32 ? midgard_alu_op_ile :
1047 instr->op == nir_op_uge32 ? midgard_alu_op_ule :
1048 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001049
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001050 flip_src12 = true;
Alyssa Rosenzweigeb28a362020-05-07 10:12:24 -04001051 ALU_CHECK_CMP(false);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001052 break;
1053 }
1054
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +00001055 case nir_op_b32csel: {
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +00001056 bool mixed = nir_is_non_scalar_swizzle(&instr->src[0], nr_components);
Alyssa Rosenzweigd39f95b2020-05-04 15:45:47 -04001057 bool is_float = mir_is_bcsel_float(instr);
1058 op = is_float ?
1059 (mixed ? midgard_alu_op_fcsel_v : midgard_alu_op_fcsel) :
1060 (mixed ? midgard_alu_op_icsel_v : midgard_alu_op_icsel);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001061
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001062 break;
1063 }
1064
Alyssa Rosenzweig551d9902020-05-13 16:17:46 -04001065 case nir_op_unpack_32_2x16:
1066 case nir_op_unpack_32_4x8:
1067 case nir_op_pack_32_2x16:
1068 case nir_op_pack_32_4x8: {
1069 op = midgard_alu_op_imov;
1070 break;
1071 }
1072
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001073 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001074 DBG("Unhandled ALU op %s\n", nir_op_infos[instr->op].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001075 assert(0);
1076 return;
1077 }
1078
Alyssa Rosenzweig72c1e3a2020-05-21 12:31:40 -04001079 /* Promote imov to fmov if it might help inline a constant */
1080 if (op == midgard_alu_op_imov && nir_src_is_const(instr->src[0].src)
1081 && nir_src_bit_size(instr->src[0].src) == 32
1082 && nir_is_same_comp_swizzle(instr->src[0].swizzle,
1083 nir_src_num_components(instr->src[0].src))) {
1084 op = midgard_alu_op_fmov;
1085 }
1086
Alyssa Rosenzweig0a13bab2019-05-15 01:16:51 +00001087 /* Midgard can perform certain modifiers on output of an ALU op */
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001088
1089 unsigned outmod = 0;
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001090 bool is_int = midgard_is_integer_op(op);
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +00001091
Alyssa Rosenzweig3e2cb212020-08-27 14:35:23 -04001092 if (instr->op == nir_op_umul_high || instr->op == nir_op_imul_high) {
1093 outmod = midgard_outmod_int_high;
1094 } else if (midgard_is_integer_out_op(op)) {
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07001095 outmod = midgard_outmod_int_wrap;
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001096 } else if (instr->op == nir_op_fsat) {
1097 outmod = midgard_outmod_sat;
1098 } else if (instr->op == nir_op_fsat_signed) {
1099 outmod = midgard_outmod_sat_signed;
1100 } else if (instr->op == nir_op_fclamp_pos) {
1101 outmod = midgard_outmod_pos;
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07001102 }
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001103
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001104 /* Fetch unit, quirks, etc information */
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +00001105 unsigned opcode_props = alu_opcode_props[op].props;
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001106 bool quirk_flipped_r24 = opcode_props & QUIRK_FLIPPED_R24;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001107
Italo Nicola20969032020-07-13 16:19:08 +00001108 if (!midgard_is_integer_out_op(op)) {
Italo Nicola83592de2020-07-15 18:48:42 +00001109 outmod = mir_determine_float_outmod(ctx, &dest, outmod);
Alyssa Rosenzweig29afa882020-05-04 17:33:52 -04001110 }
1111
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001112 midgard_instruction ins = {
1113 .type = TAG_ALU_4,
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001114 .dest = nir_dest_index(dest),
Alyssa Rosenzweigecf94662020-04-27 18:57:34 -04001115 .dest_type = nir_op_infos[instr->op].output_type
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001116 | nir_dest_bit_size(*dest),
Alyssa Rosenzweig93513cd2020-05-25 14:19:11 -04001117 .roundmode = roundmode,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001118 };
1119
Alyssa Rosenzweigf8b881f2020-05-25 14:19:24 -04001120 enum midgard_roundmode *roundptr = (opcode_props & MIDGARD_ROUNDS) ?
1121 &ins.roundmode : NULL;
1122
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -04001123 for (unsigned i = nr_inputs; i < ARRAY_SIZE(ins.src); ++i)
1124 ins.src[i] = ~0;
1125
1126 if (quirk_flipped_r24) {
1127 ins.src[0] = ~0;
Alyssa Rosenzweigf8b881f2020-05-25 14:19:24 -04001128 mir_copy_src(&ins, instr, 0, 1, &ins.src_abs[1], &ins.src_neg[1], &ins.src_invert[1], roundptr, is_int, broadcast_swizzle);
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -04001129 } else {
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001130 for (unsigned i = 0; i < nr_inputs; ++i) {
1131 unsigned to = i;
1132
1133 if (instr->op == nir_op_b32csel) {
1134 /* The condition is the first argument; move
1135 * the other arguments up one to be a binary
1136 * instruction for Midgard with the condition
1137 * last */
1138
1139 if (i == 0)
1140 to = 2;
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -04001141 else if (flip_src12)
1142 to = 2 - i;
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001143 else
1144 to = i - 1;
1145 } else if (flip_src12) {
1146 to = 1 - to;
1147 }
1148
Alyssa Rosenzweigf8b881f2020-05-25 14:19:24 -04001149 mir_copy_src(&ins, instr, i, to, &ins.src_abs[to], &ins.src_neg[to], &ins.src_invert[to], roundptr, is_int, broadcast_swizzle);
Alyssa Rosenzweig449e5de2020-04-30 13:46:35 -04001150
1151 /* (!c) ? a : b = c ? b : a */
1152 if (instr->op == nir_op_b32csel && ins.src_invert[2]) {
1153 ins.src_invert[2] = false;
1154 flip_src12 ^= true;
1155 }
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001156 }
Alyssa Rosenzweig6757c482020-04-27 18:55:11 -04001157 }
1158
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001159 if (instr->op == nir_op_fneg || instr->op == nir_op_fabs) {
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001160 /* Lowered to move */
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001161 if (instr->op == nir_op_fneg)
Alyssa Rosenzweig1cd65352020-05-21 12:38:27 -04001162 ins.src_neg[1] ^= true;
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001163
1164 if (instr->op == nir_op_fabs)
Alyssa Rosenzweig1cd65352020-05-21 12:38:27 -04001165 ins.src_abs[1] = true;
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001166 }
1167
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001168 ins.mask = mask_of(nr_components);
1169
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001170 /* Apply writemask if non-SSA, keeping in mind that we can't write to
1171 * components that don't exist. Note modifier => SSA => !reg => no
1172 * writemask, so we don't have to worry about writemasks here.*/
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001173
1174 if (!is_ssa)
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001175 ins.mask &= instr->dest.write_mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001176
Italo Nicolaf4c89bf2020-07-09 12:02:57 +00001177 ins.op = op;
Italo Nicola50113732020-07-15 18:43:18 +00001178 ins.outmod = outmod;
Italo Nicolaf4c89bf2020-07-09 12:02:57 +00001179
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001180 /* Late fixup for emulated instructions */
1181
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001182 if (instr->op == nir_op_b2f32 || instr->op == nir_op_b2i32) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001183 /* Presently, our second argument is an inline #0 constant.
1184 * Switch over to an embedded 1.0 constant (that can't fit
1185 * inline, since we're 32-bit, not 16-bit like the inline
1186 * constants) */
1187
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001188 ins.has_inline_constant = false;
1189 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001190 ins.src_types[1] = nir_type_float32;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001191 ins.has_constants = true;
Alyssa Rosenzweig9da46032019-03-24 16:07:31 +00001192
Boris Brezillon15c92d12020-01-20 15:00:57 +01001193 if (instr->op == nir_op_b2f32)
1194 ins.constants.f32[0] = 1.0f;
1195 else
1196 ins.constants.i32[0] = 1;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001197
1198 for (unsigned c = 0; c < 16; ++c)
1199 ins.swizzle[1][c] = 0;
Alyssa Rosenzweig6b023b32020-05-08 17:42:40 -04001200 } else if (instr->op == nir_op_b2f16) {
1201 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
1202 ins.src_types[1] = nir_type_float16;
1203 ins.has_constants = true;
1204 ins.constants.i16[0] = _mesa_float_to_half(1.0);
1205
1206 for (unsigned c = 0; c < 16; ++c)
1207 ins.swizzle[1][c] = 0;
Alyssa Rosenzweig88c59792019-06-05 15:24:51 +00001208 } else if (nr_inputs == 1 && !quirk_flipped_r24) {
1209 /* Lots of instructions need a 0 plonked in */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001210 ins.has_inline_constant = false;
1211 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Italo Nicolab1b0ce02020-07-10 14:51:52 +00001212 ins.src_types[1] = ins.src_types[0];
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001213 ins.has_constants = true;
Boris Brezillon15c92d12020-01-20 15:00:57 +01001214 ins.constants.u32[0] = 0;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001215
1216 for (unsigned c = 0; c < 16; ++c)
1217 ins.swizzle[1][c] = 0;
Alyssa Rosenzweig551d9902020-05-13 16:17:46 -04001218 } else if (instr->op == nir_op_pack_32_2x16) {
1219 ins.dest_type = nir_type_uint16;
1220 ins.mask = mask_of(nr_components * 2);
Alyssa Rosenzweige9c780b2020-05-13 18:41:52 -04001221 ins.is_pack = true;
Alyssa Rosenzweig551d9902020-05-13 16:17:46 -04001222 } else if (instr->op == nir_op_pack_32_4x8) {
1223 ins.dest_type = nir_type_uint8;
1224 ins.mask = mask_of(nr_components * 4);
Alyssa Rosenzweige9c780b2020-05-13 18:41:52 -04001225 ins.is_pack = true;
Alyssa Rosenzweig551d9902020-05-13 16:17:46 -04001226 } else if (instr->op == nir_op_unpack_32_2x16) {
1227 ins.dest_type = nir_type_uint32;
1228 ins.mask = mask_of(nr_components >> 1);
Alyssa Rosenzweige9c780b2020-05-13 18:41:52 -04001229 ins.is_pack = true;
Alyssa Rosenzweig551d9902020-05-13 16:17:46 -04001230 } else if (instr->op == nir_op_unpack_32_4x8) {
1231 ins.dest_type = nir_type_uint32;
1232 ins.mask = mask_of(nr_components >> 2);
Alyssa Rosenzweige9c780b2020-05-13 18:41:52 -04001233 ins.is_pack = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001234 }
1235
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001236 if ((opcode_props & UNITS_ALL) == UNIT_VLUT) {
1237 /* To avoid duplicating the lookup tables (probably), true LUT
1238 * instructions can only operate as if they were scalars. Lower
1239 * them here by changing the component. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001240
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001241 unsigned orig_mask = ins.mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001242
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001243 unsigned swizzle_back[MIR_VEC_COMPONENTS];
1244 memcpy(&swizzle_back, ins.swizzle[0], sizeof(swizzle_back));
1245
Icecream95a6f0d7f2020-05-24 00:23:25 +12001246 midgard_instruction ins_split[MIR_VEC_COMPONENTS];
1247 unsigned ins_count = 0;
1248
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001249 for (int i = 0; i < nr_components; ++i) {
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001250 /* Mask the associated component, dropping the
1251 * instruction if needed */
1252
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001253 ins.mask = 1 << i;
1254 ins.mask &= orig_mask;
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001255
Icecream95a6f0d7f2020-05-24 00:23:25 +12001256 for (unsigned j = 0; j < ins_count; ++j) {
1257 if (swizzle_back[i] == ins_split[j].swizzle[0][0]) {
1258 ins_split[j].mask |= ins.mask;
1259 ins.mask = 0;
1260 break;
1261 }
1262 }
1263
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001264 if (!ins.mask)
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001265 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001266
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001267 for (unsigned j = 0; j < MIR_VEC_COMPONENTS; ++j)
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04001268 ins.swizzle[0][j] = swizzle_back[i]; /* Pull from the correct component */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001269
Icecream95a6f0d7f2020-05-24 00:23:25 +12001270 ins_split[ins_count] = ins;
1271
1272 ++ins_count;
1273 }
1274
1275 for (unsigned i = 0; i < ins_count; ++i) {
1276 emit_mir_instruction(ctx, ins_split[i]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001277 }
1278 } else {
1279 emit_mir_instruction(ctx, ins);
1280 }
1281}
1282
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001283#undef ALU_CASE
1284
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001285static void
1286mir_set_intr_mask(nir_instr *instr, midgard_instruction *ins, bool is_read)
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001287{
1288 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001289 unsigned nir_mask = 0;
1290 unsigned dsize = 0;
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001291
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001292 if (is_read) {
1293 nir_mask = mask_of(nir_intrinsic_dest_components(intr));
1294 dsize = nir_dest_bit_size(intr->dest);
1295 } else {
1296 nir_mask = nir_intrinsic_write_mask(intr);
1297 dsize = 32;
1298 }
1299
1300 /* Once we have the NIR mask, we need to normalize to work in 32-bit space */
Alyssa Rosenzweig9b8cb9f2020-03-09 20:19:29 -04001301 unsigned bytemask = pan_to_bytemask(dsize, nir_mask);
Alyssa Rosenzweigb91d7152020-05-11 15:06:53 -04001302 ins->dest_type = nir_type_uint | dsize;
Italo Nicola11012612020-08-26 14:56:13 +00001303 mir_set_bytemask(ins, bytemask);
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001304}
1305
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001306/* Uniforms and UBOs use a shared code path, as uniforms are just (slightly
1307 * optimized) versions of UBO #0 */
1308
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001309static midgard_instruction *
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001310emit_ubo_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001311 compiler_context *ctx,
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001312 nir_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001313 unsigned dest,
1314 unsigned offset,
1315 nir_src *indirect_offset,
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001316 unsigned indirect_shift,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001317 unsigned index)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001318{
1319 /* TODO: half-floats */
1320
Alyssa Rosenzweigbc9a7d02019-11-15 14:19:34 -05001321 midgard_instruction ins = m_ld_ubo_int4(dest, 0);
Boris Brezillon15c92d12020-01-20 15:00:57 +01001322 ins.constants.u32[0] = offset;
Alyssa Rosenzweigda736512019-12-19 11:12:25 -05001323
1324 if (instr->type == nir_instr_type_intrinsic)
1325 mir_set_intr_mask(instr, &ins, true);
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001326
1327 if (indirect_offset) {
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001328 ins.src[2] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001329 ins.src_types[2] = nir_type_uint32;
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001330 ins.load_store.arg_2 = (indirect_shift << 5);
Alyssa Rosenzweig797fa872020-07-06 10:57:04 -04001331
1332 /* X component for the whole swizzle to prevent register
1333 * pressure from ballooning from the extra components */
1334 for (unsigned i = 0; i < ARRAY_SIZE(ins.swizzle[2]); ++i)
1335 ins.swizzle[2][i] = 0;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001336 } else {
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001337 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001338 }
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001339
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001340 ins.load_store.arg_1 = index;
1341
Alyssa Rosenzweige7ac46b2019-08-02 17:09:54 -07001342 return emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001343}
1344
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001345/* Globals are like UBOs if you squint. And shared memory is like globals if
1346 * you squint even harder */
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001347
1348static void
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001349emit_global(
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001350 compiler_context *ctx,
1351 nir_instr *instr,
1352 bool is_read,
1353 unsigned srcdest,
Alyssa Rosenzweig0bb25e42020-02-27 09:41:17 -05001354 nir_src *offset,
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001355 bool is_shared)
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001356{
1357 /* TODO: types */
1358
Dylan Baker8e369612018-09-14 12:57:32 -07001359 midgard_instruction ins;
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001360
1361 if (is_read)
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001362 ins = m_ld_int4(srcdest, 0);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001363 else
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001364 ins = m_st_int4(srcdest, 0);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001365
Alyssa Rosenzweig0bb25e42020-02-27 09:41:17 -05001366 mir_set_offset(ctx, &ins, offset, is_shared);
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001367 mir_set_intr_mask(instr, &ins, is_read);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001368
Alyssa Rosenzweig41184f82020-08-27 15:13:19 -04001369 /* Set a valid swizzle for masked out components */
1370 assert(ins.mask);
1371 unsigned first_component = __builtin_ffs(ins.mask) - 1;
1372
1373 for (unsigned i = 0; i < ARRAY_SIZE(ins.swizzle[0]); ++i) {
1374 if (!(ins.mask & (1 << i)))
1375 ins.swizzle[0][i] = first_component;
1376 }
1377
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001378 emit_mir_instruction(ctx, ins);
1379}
1380
Italo Nicola8e221f52020-08-31 11:17:48 +00001381/* If is_shared is off, the only other possible value are globals, since
1382 * SSBO's are being lowered to globals through a NIR pass. */
1383static void
1384emit_atomic(
1385 compiler_context *ctx,
1386 nir_intrinsic_instr *instr,
1387 bool is_shared,
1388 midgard_load_store_op op)
1389{
1390 unsigned bitsize = nir_src_bit_size(instr->src[1]);
1391 nir_alu_type type =
1392 (op == midgard_op_atomic_imin || op == midgard_op_atomic_imax) ?
1393 nir_type_int : nir_type_uint;
1394
1395 unsigned dest = nir_dest_index(&instr->dest);
1396 unsigned val = nir_src_index(ctx, &instr->src[1]);
1397 emit_explicit_constant(ctx, val, val);
1398
1399 midgard_instruction ins = {
1400 .type = TAG_LOAD_STORE_4,
1401 .mask = 0xF,
1402 .dest = dest,
1403 .src = { ~0, ~0, ~0, val },
1404 .src_types = { 0, 0, 0, type | bitsize },
1405 .op = op
1406 };
1407
1408 nir_src *src_offset = nir_get_io_offset_src(instr);
1409
1410 /* cmpxchg takes an extra value in arg_2, so we don't use it for the offset */
1411 if (op == midgard_op_atomic_cmpxchg) {
1412 unsigned addr = nir_src_index(ctx, src_offset);
1413
1414 ins.src[1] = addr;
1415 ins.src_types[1] = nir_type_uint | nir_src_bit_size(*src_offset);
1416
1417 unsigned xchg_val = nir_src_index(ctx, &instr->src[2]);
1418 emit_explicit_constant(ctx, xchg_val, xchg_val);
1419
1420 ins.src[2] = val;
1421 ins.src_types[2] = type | bitsize;
1422 ins.src[3] = xchg_val;
1423
1424 if (is_shared)
1425 ins.load_store.arg_1 |= 0x6E;
1426 } else {
1427 mir_set_offset(ctx, &ins, src_offset, is_shared);
1428 }
1429
1430 mir_set_intr_mask(&instr->instr, &ins, true);
1431
1432 emit_mir_instruction(ctx, ins);
1433}
1434
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001435static void
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001436emit_varying_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001437 compiler_context *ctx,
1438 unsigned dest, unsigned offset,
1439 unsigned nr_comp, unsigned component,
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001440 nir_src *indirect_offset, nir_alu_type type, bool flat)
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001441{
1442 /* XXX: Half-floats? */
1443 /* TODO: swizzle, mask */
1444
1445 midgard_instruction ins = m_ld_vary_32(dest, offset);
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001446 ins.mask = mask_of(nr_comp);
Alyssa Rosenzweig2d168832020-06-04 11:32:59 -04001447 ins.dest_type = type;
1448
1449 if (type == nir_type_float16) {
1450 /* Ensure we are aligned so we can pack it later */
1451 ins.mask = mask_of(ALIGN_POT(nr_comp, 2));
1452 }
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001453
1454 for (unsigned i = 0; i < ARRAY_SIZE(ins.swizzle[0]); ++i)
1455 ins.swizzle[0][i] = MIN2(i + component, COMPONENT_W);
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001456
1457 midgard_varying_parameter p = {
1458 .is_varying = 1,
1459 .interpolation = midgard_interp_default,
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001460 .flat = flat,
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001461 };
1462
1463 unsigned u;
1464 memcpy(&u, &p, sizeof(p));
1465 ins.load_store.varying_parameters = u;
1466
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001467 if (indirect_offset) {
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001468 ins.src[2] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001469 ins.src_types[2] = nir_type_uint32;
1470 } else
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001471 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001472
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001473 ins.load_store.arg_1 = 0x9E;
1474
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001475 /* Use the type appropriate load */
1476 switch (type) {
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001477 case nir_type_uint32:
1478 case nir_type_bool32:
Italo Nicolabea6a652020-07-23 19:24:39 +00001479 ins.op = midgard_op_ld_vary_32u;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001480 break;
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001481 case nir_type_int32:
Italo Nicolabea6a652020-07-23 19:24:39 +00001482 ins.op = midgard_op_ld_vary_32i;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001483 break;
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001484 case nir_type_float32:
Italo Nicolabea6a652020-07-23 19:24:39 +00001485 ins.op = midgard_op_ld_vary_32;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001486 break;
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001487 case nir_type_float16:
Italo Nicolabea6a652020-07-23 19:24:39 +00001488 ins.op = midgard_op_ld_vary_16;
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001489 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001490 default:
1491 unreachable("Attempted to load unknown type");
1492 break;
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001493 }
1494
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001495 emit_mir_instruction(ctx, ins);
1496}
1497
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001498static void
1499emit_attr_read(
1500 compiler_context *ctx,
1501 unsigned dest, unsigned offset,
1502 unsigned nr_comp, nir_alu_type t)
1503{
1504 midgard_instruction ins = m_ld_attr_32(dest, offset);
1505 ins.load_store.arg_1 = 0x1E;
1506 ins.load_store.arg_2 = 0x1E;
1507 ins.mask = mask_of(nr_comp);
1508
1509 /* Use the type appropriate load */
1510 switch (t) {
1511 case nir_type_uint:
1512 case nir_type_bool:
Italo Nicolabea6a652020-07-23 19:24:39 +00001513 ins.op = midgard_op_ld_attr_32u;
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001514 break;
1515 case nir_type_int:
Italo Nicolabea6a652020-07-23 19:24:39 +00001516 ins.op = midgard_op_ld_attr_32i;
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001517 break;
1518 case nir_type_float:
Italo Nicolabea6a652020-07-23 19:24:39 +00001519 ins.op = midgard_op_ld_attr_32;
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001520 break;
1521 default:
1522 unreachable("Attempted to load unknown type");
1523 break;
1524 }
1525
1526 emit_mir_instruction(ctx, ins);
1527}
1528
Alyssa Rosenzweigfcbb3d42020-02-04 09:46:17 -05001529static void
Alyssa Rosenzweigb756a662020-03-10 16:19:33 -04001530emit_sysval_read(compiler_context *ctx, nir_instr *instr,
Alyssa Rosenzweigfcbb3d42020-02-04 09:46:17 -05001531 unsigned nr_components, unsigned offset)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001532{
Alyssa Rosenzweig674b24d2020-03-10 15:54:17 -04001533 nir_dest nir_dest;
Alyssa Rosenzweig6d8490f2019-07-11 15:34:56 -07001534
Boris Brezillonbd49c8f2019-06-14 09:59:20 +02001535 /* Figure out which uniform this is */
Alyssa Rosenzweige6102672020-03-10 16:06:30 -04001536 int sysval = panfrost_sysval_for_instr(instr, &nir_dest);
Alyssa Rosenzweigc2ff3bb2020-03-10 16:00:56 -04001537 void *val = _mesa_hash_table_u64_search(ctx->sysvals.sysval_to_id, sysval);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001538
Alyssa Rosenzweig674b24d2020-03-10 15:54:17 -04001539 unsigned dest = nir_dest_index(&nir_dest);
1540
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001541 /* Sysvals are prefix uniforms */
1542 unsigned uniform = ((uintptr_t) val) - 1;
1543
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001544 /* Emit the read itself -- this is never indirect */
Alyssa Rosenzweig63e240d2019-08-02 17:10:18 -07001545 midgard_instruction *ins =
Alyssa Rosenzweigfcbb3d42020-02-04 09:46:17 -05001546 emit_ubo_read(ctx, instr, dest, (uniform * 16) + offset, NULL, 0, 0);
Alyssa Rosenzweig63e240d2019-08-02 17:10:18 -07001547
1548 ins->mask = mask_of(nr_components);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001549}
1550
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001551static unsigned
1552compute_builtin_arg(nir_op op)
1553{
1554 switch (op) {
1555 case nir_intrinsic_load_work_group_id:
1556 return 0x14;
1557 case nir_intrinsic_load_local_invocation_id:
1558 return 0x10;
1559 default:
1560 unreachable("Invalid compute paramater loaded");
1561 }
1562}
1563
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001564static void
Icecream95a6806342020-06-06 15:41:51 +12001565emit_fragment_store(compiler_context *ctx, unsigned src, unsigned src_z, unsigned src_s, enum midgard_rt_id rt)
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001566{
Boris Brezillone1ba0cd2020-01-31 10:05:16 +01001567 assert(rt < ARRAY_SIZE(ctx->writeout_branch));
1568
1569 midgard_instruction *br = ctx->writeout_branch[rt];
1570
1571 assert(!br);
1572
Alyssa Rosenzweig5e06d902019-08-30 11:06:33 -07001573 emit_explicit_constant(ctx, src, src);
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001574
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001575 struct midgard_instruction ins =
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05001576 v_branch(false, false);
1577
Icecream9592d3f1f2020-06-06 15:08:06 +12001578 bool depth_only = (rt == MIDGARD_ZS_RT);
1579
Icecream95a6806342020-06-06 15:41:51 +12001580 ins.writeout = depth_only ? 0 : PAN_WRITEOUT_C;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001581
1582 /* Add dependencies */
Alyssa Rosenzweig76529832019-08-30 11:01:15 -07001583 ins.src[0] = src;
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001584 ins.src_types[0] = nir_type_uint32;
Icecream9592d3f1f2020-06-06 15:08:06 +12001585 ins.constants.u32[0] = depth_only ? 0xFF : (rt - MIDGARD_COLOR_RT0) * 0x100;
Icecream952a5504f2020-06-06 14:42:18 +12001586 for (int i = 0; i < 4; ++i)
1587 ins.swizzle[0][i] = i;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001588
Icecream95a6806342020-06-06 15:41:51 +12001589 if (~src_z) {
1590 emit_explicit_constant(ctx, src_z, src_z);
1591 ins.src[2] = src_z;
1592 ins.src_types[2] = nir_type_uint32;
1593 ins.writeout |= PAN_WRITEOUT_Z;
1594 }
1595 if (~src_s) {
1596 emit_explicit_constant(ctx, src_s, src_s);
1597 ins.src[3] = src_s;
1598 ins.src_types[3] = nir_type_uint32;
1599 ins.writeout |= PAN_WRITEOUT_S;
1600 }
1601
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001602 /* Emit the branch */
Boris Brezillone1ba0cd2020-01-31 10:05:16 +01001603 br = emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig281cc6f2019-11-23 12:43:55 -05001604 schedule_barrier(ctx);
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05001605 ctx->writeout_branch[rt] = br;
1606
1607 /* Push our current location = current block count - 1 = where we'll
1608 * jump to. Maybe a bit too clever for my own good */
1609
1610 br->branch.target_block = ctx->block_count - 1;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001611}
1612
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001613static void
1614emit_compute_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1615{
Alyssa Rosenzweig7c2647f2020-03-10 15:48:52 -04001616 unsigned reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001617 midgard_instruction ins = m_ld_compute_id(reg, 0);
1618 ins.mask = mask_of(3);
Alyssa Rosenzweigd3747fb2020-02-12 08:39:29 -05001619 ins.swizzle[0][3] = COMPONENT_X; /* xyzx */
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001620 ins.load_store.arg_1 = compute_builtin_arg(instr->intrinsic);
1621 emit_mir_instruction(ctx, ins);
1622}
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05001623
1624static unsigned
1625vertex_builtin_arg(nir_op op)
1626{
1627 switch (op) {
1628 case nir_intrinsic_load_vertex_id:
1629 return PAN_VERTEX_ID;
1630 case nir_intrinsic_load_instance_id:
1631 return PAN_INSTANCE_ID;
1632 default:
1633 unreachable("Invalid vertex builtin");
1634 }
1635}
1636
1637static void
1638emit_vertex_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1639{
Alyssa Rosenzweig7c2647f2020-03-10 15:48:52 -04001640 unsigned reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05001641 emit_attr_read(ctx, reg, vertex_builtin_arg(instr->intrinsic), 1, nir_type_int);
1642}
1643
Alyssa Rosenzweig3f590982020-02-03 20:23:41 -05001644static void
Alyssa Rosenzweig80ebf112020-08-27 19:55:53 -04001645emit_special(compiler_context *ctx, nir_intrinsic_instr *instr, unsigned idx)
Alyssa Rosenzweigda2eed32020-07-15 09:56:24 -04001646{
1647 unsigned reg = nir_dest_index(&instr->dest);
1648
1649 midgard_instruction ld = m_ld_color_buffer_32u(reg, 0);
Italo Nicolabea6a652020-07-23 19:24:39 +00001650 ld.op = midgard_op_ld_color_buffer_32u_old;
Alyssa Rosenzweig80ebf112020-08-27 19:55:53 -04001651 ld.load_store.address = idx;
Alyssa Rosenzweigda2eed32020-07-15 09:56:24 -04001652 ld.load_store.arg_2 = 0x1E;
1653
1654 for (int i = 0; i < 4; ++i)
1655 ld.swizzle[0][i] = COMPONENT_X;
1656
1657 emit_mir_instruction(ctx, ld);
1658}
1659
1660static void
Alyssa Rosenzweig3f590982020-02-03 20:23:41 -05001661emit_control_barrier(compiler_context *ctx)
1662{
1663 midgard_instruction ins = {
1664 .type = TAG_TEXTURE_4,
Alyssa Rosenzweigfde1f2b2020-05-13 11:05:34 -04001665 .dest = ~0,
Alyssa Rosenzweig3f590982020-02-03 20:23:41 -05001666 .src = { ~0, ~0, ~0, ~0 },
Italo Nicola92c808c2020-07-29 19:10:25 +00001667 .op = TEXTURE_OP_BARRIER,
Alyssa Rosenzweig3f590982020-02-03 20:23:41 -05001668 };
1669
1670 emit_mir_instruction(ctx, ins);
1671}
1672
Alyssa Rosenzweigdb7b0eb2020-04-30 14:17:06 -04001673static unsigned
1674mir_get_branch_cond(nir_src *src, bool *invert)
1675{
1676 /* Wrap it. No swizzle since it's a scalar */
1677
1678 nir_alu_src alu = {
1679 .src = *src
1680 };
1681
1682 *invert = pan_has_source_mod(&alu, nir_op_inot);
1683 return nir_src_index(NULL, &alu.src);
1684}
1685
Icecream957781d2c2020-07-06 19:54:56 +12001686static uint8_t
Icecream95e7641922020-07-19 22:31:26 +12001687output_load_rt_addr(compiler_context *ctx, nir_intrinsic_instr *instr)
Icecream957781d2c2020-07-06 19:54:56 +12001688{
Icecream95e7641922020-07-19 22:31:26 +12001689 if (ctx->is_blend)
1690 return ctx->blend_rt;
1691
Icecream957781d2c2020-07-06 19:54:56 +12001692 const nir_variable *var;
Jason Ekstrand94f0bae2020-07-20 16:07:11 -05001693 var = search_var(ctx->nir, nir_var_shader_out, nir_intrinsic_base(instr));
Icecream957781d2c2020-07-06 19:54:56 +12001694 assert(var);
1695
1696 unsigned loc = var->data.location;
1697
1698 if (loc == FRAG_RESULT_COLOR)
1699 loc = FRAG_RESULT_DATA0;
1700
1701 if (loc >= FRAG_RESULT_DATA0)
1702 return loc - FRAG_RESULT_DATA0;
1703
1704 if (loc == FRAG_RESULT_DEPTH)
1705 return 0x1F;
1706 if (loc == FRAG_RESULT_STENCIL)
1707 return 0x1E;
1708
Icecream956493d292020-07-14 15:06:09 +12001709 unreachable("Invalid RT to load from");
Icecream957781d2c2020-07-06 19:54:56 +12001710}
1711
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001712static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001713emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
1714{
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001715 unsigned offset = 0, reg;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001716
1717 switch (instr->intrinsic) {
1718 case nir_intrinsic_discard_if:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001719 case nir_intrinsic_discard: {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001720 bool conditional = instr->intrinsic == nir_intrinsic_discard_if;
1721 struct midgard_instruction discard = v_branch(conditional, false);
1722 discard.branch.target_type = TARGET_DISCARD;
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07001723
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001724 if (conditional) {
Alyssa Rosenzweigdb7b0eb2020-04-30 14:17:06 -04001725 discard.src[0] = mir_get_branch_cond(&instr->src[0],
1726 &discard.branch.invert_conditional);
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04001727 discard.src_types[0] = nir_type_uint32;
1728 }
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07001729
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001730 emit_mir_instruction(ctx, discard);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07001731 schedule_barrier(ctx);
1732
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001733 break;
1734 }
1735
1736 case nir_intrinsic_load_uniform:
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001737 case nir_intrinsic_load_ubo:
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001738 case nir_intrinsic_load_global:
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001739 case nir_intrinsic_load_shared:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001740 case nir_intrinsic_load_input:
1741 case nir_intrinsic_load_interpolated_input: {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001742 bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform;
1743 bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo;
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001744 bool is_global = instr->intrinsic == nir_intrinsic_load_global;
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001745 bool is_shared = instr->intrinsic == nir_intrinsic_load_shared;
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001746 bool is_flat = instr->intrinsic == nir_intrinsic_load_input;
1747 bool is_interp = instr->intrinsic == nir_intrinsic_load_interpolated_input;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001748
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001749 /* Get the base type of the intrinsic */
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001750 /* TODO: Infer type? Does it matter? */
1751 nir_alu_type t =
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001752 (is_ubo || is_global || is_shared) ? nir_type_uint :
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001753 (is_interp) ? nir_type_float :
1754 nir_intrinsic_type(instr);
1755
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001756 t = nir_alu_type_get_base_type(t);
1757
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05001758 if (!(is_ubo || is_global)) {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001759 offset = nir_intrinsic_base(instr);
1760 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001761
Alyssa Rosenzweigc1715b52019-05-22 02:44:12 +00001762 unsigned nr_comp = nir_intrinsic_dest_components(instr);
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001763
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001764 nir_src *src_offset = nir_get_io_offset_src(instr);
1765
1766 bool direct = nir_src_is_const(*src_offset);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001767 nir_src *indirect_offset = direct ? NULL : src_offset;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001768
1769 if (direct)
1770 offset += nir_src_as_uint(*src_offset);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001771
Alyssa Rosenzweig43568f22019-06-06 08:16:04 -07001772 /* We may need to apply a fractional offset */
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001773 int component = (is_flat || is_interp) ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001774 nir_intrinsic_component(instr) : 0;
Alyssa Rosenzweig7c2647f2020-03-10 15:48:52 -04001775 reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001776
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001777 if (is_uniform && !ctx->is_blend) {
Alyssa Rosenzweigc2ff3bb2020-03-10 16:00:56 -04001778 emit_ubo_read(ctx, &instr->instr, reg, (ctx->sysvals.sysval_count + offset) * 16, indirect_offset, 4, 0);
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001779 } else if (is_ubo) {
1780 nir_src index = instr->src[0];
1781
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001782 /* TODO: Is indirect block number possible? */
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001783 assert(nir_src_is_const(index));
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001784
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001785 uint32_t uindex = nir_src_as_uint(index) + 1;
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001786 emit_ubo_read(ctx, &instr->instr, reg, offset, indirect_offset, 0, uindex);
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05001787 } else if (is_global || is_shared) {
Alyssa Rosenzweig0bb25e42020-02-27 09:41:17 -05001788 emit_global(ctx, &instr->instr, true, reg, src_offset, is_shared);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001789 } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) {
Alyssa Rosenzweig5f8dd412020-05-22 16:22:48 -04001790 emit_varying_read(ctx, reg, offset, nr_comp, component, indirect_offset, t | nir_dest_bit_size(instr->dest), is_flat);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001791 } else if (ctx->is_blend) {
Icecream9585954ec2020-06-25 22:21:50 +12001792 /* ctx->blend_input will be precoloured to r0/r2, where
Alyssa Rosenzweig277b6162020-06-12 16:45:24 -04001793 * the input is preloaded */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001794
Icecream9585954ec2020-06-25 22:21:50 +12001795 unsigned *input = offset ? &ctx->blend_src1 : &ctx->blend_input;
1796
1797 if (*input == ~0)
1798 *input = reg;
Alyssa Rosenzweig277b6162020-06-12 16:45:24 -04001799 else
Icecream9585954ec2020-06-25 22:21:50 +12001800 emit_mir_instruction(ctx, v_mov(*input, reg));
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001801 } else if (ctx->stage == MESA_SHADER_VERTEX) {
1802 emit_attr_read(ctx, reg, offset, nr_comp, t);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001803 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001804 DBG("Unknown load\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001805 assert(0);
1806 }
1807
1808 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001809 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001810
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001811 /* Artefact of load_interpolated_input. TODO: other barycentric modes */
1812 case nir_intrinsic_load_barycentric_pixel:
Tomeu Vizoso25042062020-01-03 09:42:11 +01001813 case nir_intrinsic_load_barycentric_centroid:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001814 break;
1815
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001816 /* Reads 128-bit value raw off the tilebuffer during blending, tasty */
1817
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001818 case nir_intrinsic_load_raw_output_pan: {
Alyssa Rosenzweig7c2647f2020-03-10 15:48:52 -04001819 reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001820
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001821 /* T720 and below use different blend opcodes with slightly
1822 * different semantics than T760 and up */
1823
Alyssa Rosenzweig2d1e18e2020-01-02 12:28:54 -05001824 midgard_instruction ld = m_ld_color_buffer_32u(reg, 0);
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001825
Icecream95e7641922020-07-19 22:31:26 +12001826 ld.load_store.arg_2 = output_load_rt_addr(ctx, instr);
Icecream957781d2c2020-07-06 19:54:56 +12001827
Icecream95c20d1662020-07-16 14:16:11 +12001828 if (nir_src_is_const(instr->src[0])) {
1829 ld.load_store.arg_1 = nir_src_as_uint(instr->src[0]);
1830 } else {
1831 ld.load_store.varying_parameters = 2;
1832 ld.src[1] = nir_src_index(ctx, &instr->src[0]);
1833 ld.src_types[1] = nir_type_int32;
1834 }
1835
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001836 if (ctx->quirks & MIDGARD_OLD_BLEND) {
Italo Nicolabea6a652020-07-23 19:24:39 +00001837 ld.op = midgard_op_ld_color_buffer_32u_old;
Alyssa Rosenzweig5a175e42020-05-29 21:11:11 -04001838 ld.load_store.address = 16;
1839 ld.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001840 }
1841
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001842 emit_mir_instruction(ctx, ld);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001843 break;
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001844 }
1845
1846 case nir_intrinsic_load_output: {
1847 reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001848
Icecream952fbe7ca2020-07-09 23:44:41 +12001849 unsigned bits = nir_dest_bit_size(instr->dest);
1850
1851 midgard_instruction ld;
1852 if (bits == 16)
1853 ld = m_ld_color_buffer_as_fp16(reg, 0);
1854 else
1855 ld = m_ld_color_buffer_as_fp32(reg, 0);
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001856
Icecream95e7641922020-07-19 22:31:26 +12001857 ld.load_store.arg_2 = output_load_rt_addr(ctx, instr);
Icecream957781d2c2020-07-06 19:54:56 +12001858
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001859 for (unsigned c = 4; c < 16; ++c)
1860 ld.swizzle[0][c] = 0;
1861
1862 if (ctx->quirks & MIDGARD_OLD_BLEND) {
Icecream952fbe7ca2020-07-09 23:44:41 +12001863 if (bits == 16)
Italo Nicolabea6a652020-07-23 19:24:39 +00001864 ld.op = midgard_op_ld_color_buffer_as_fp16_old;
Icecream952fbe7ca2020-07-09 23:44:41 +12001865 else
Italo Nicolabea6a652020-07-23 19:24:39 +00001866 ld.op = midgard_op_ld_color_buffer_as_fp32_old;
Alyssa Rosenzweig36af05b2020-06-01 14:14:33 -04001867 ld.load_store.address = 1;
1868 ld.load_store.arg_2 = 0x1E;
1869 }
1870
1871 emit_mir_instruction(ctx, ld);
1872 break;
1873 }
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001874
1875 case nir_intrinsic_load_blend_const_color_rgba: {
1876 assert(ctx->is_blend);
Alyssa Rosenzweig7c2647f2020-03-10 15:48:52 -04001877 reg = nir_dest_index(&instr->dest);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001878
1879 /* Blend constants are embedded directly in the shader and
1880 * patched in, so we use some magic routing */
1881
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04001882 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), reg);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001883 ins.has_constants = true;
1884 ins.has_blend_constant = true;
1885 emit_mir_instruction(ctx, ins);
1886 break;
1887 }
1888
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001889 case nir_intrinsic_store_output:
Icecream95d37e9012020-06-06 17:25:08 +12001890 case nir_intrinsic_store_combined_output_pan:
Karol Herbst1aabb792019-03-29 21:40:45 +01001891 assert(nir_src_is_const(instr->src[1]) && "no indirect outputs");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001892
Karol Herbst1aabb792019-03-29 21:40:45 +01001893 offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001894
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001895 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001896
1897 if (ctx->stage == MESA_SHADER_FRAGMENT) {
Icecream95d37e9012020-06-06 17:25:08 +12001898 bool combined = instr->intrinsic ==
1899 nir_intrinsic_store_combined_output_pan;
1900
Boris Brezillonc68cd392020-01-31 09:22:50 +01001901 const nir_variable *var;
Jason Ekstrand94f0bae2020-07-20 16:07:11 -05001902 var = search_var(ctx->nir, nir_var_shader_out,
Boris Brezillonc68cd392020-01-31 09:22:50 +01001903 nir_intrinsic_base(instr));
1904 assert(var);
Icecream9585954ec2020-06-25 22:21:50 +12001905
1906 /* Dual-source blend writeout is done by leaving the
1907 * value in r2 for the blend shader to use. */
1908 if (var->data.index) {
1909 if (instr->src[0].is_ssa) {
1910 emit_explicit_constant(ctx, reg, reg);
1911
1912 unsigned out = make_compiler_temp(ctx);
1913
1914 midgard_instruction ins = v_mov(reg, out);
1915 emit_mir_instruction(ctx, ins);
1916
1917 ctx->blend_src1 = out;
1918 } else {
1919 ctx->blend_src1 = reg;
1920 }
1921
1922 break;
1923 }
1924
1925 enum midgard_rt_id rt;
Boris Brezillonc68cd392020-01-31 09:22:50 +01001926 if (var->data.location == FRAG_RESULT_COLOR)
1927 rt = MIDGARD_COLOR_RT0;
1928 else if (var->data.location >= FRAG_RESULT_DATA0)
1929 rt = MIDGARD_COLOR_RT0 + var->data.location -
1930 FRAG_RESULT_DATA0;
Icecream95d37e9012020-06-06 17:25:08 +12001931 else if (combined)
1932 rt = MIDGARD_ZS_RT;
Boris Brezillonc68cd392020-01-31 09:22:50 +01001933 else
Eric Anholt4c24c822020-08-25 10:15:27 -07001934 unreachable("bad rt");
Boris Brezillonc68cd392020-01-31 09:22:50 +01001935
Icecream95d37e9012020-06-06 17:25:08 +12001936 unsigned reg_z = ~0, reg_s = ~0;
1937 if (combined) {
1938 unsigned writeout = nir_intrinsic_component(instr);
1939 if (writeout & PAN_WRITEOUT_Z)
1940 reg_z = nir_src_index(ctx, &instr->src[2]);
1941 if (writeout & PAN_WRITEOUT_S)
1942 reg_s = nir_src_index(ctx, &instr->src[3]);
1943 }
1944
1945 emit_fragment_store(ctx, reg, reg_z, reg_s, rt);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001946 } else if (ctx->stage == MESA_SHADER_VERTEX) {
Icecream95d37e9012020-06-06 17:25:08 +12001947 assert(instr->intrinsic == nir_intrinsic_store_output);
1948
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001949 /* We should have been vectorized, though we don't
1950 * currently check that st_vary is emitted only once
1951 * per slot (this is relevant, since there's not a mask
1952 * parameter available on the store [set to 0 by the
1953 * blob]). We do respect the component by adjusting the
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001954 * swizzle. If this is a constant source, we'll need to
1955 * emit that explicitly. */
1956
1957 emit_explicit_constant(ctx, reg, reg);
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001958
Boris Brezillon6af63c92020-01-16 11:20:06 +01001959 unsigned dst_component = nir_intrinsic_component(instr);
Alyssa Rosenzweig27887212019-08-15 16:53:03 -07001960 unsigned nr_comp = nir_src_num_components(instr->src[0]);
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07001961
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001962 midgard_instruction st = m_st_vary_32(reg, offset);
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001963 st.load_store.arg_1 = 0x9E;
1964 st.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001965
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001966 switch (nir_alu_type_get_base_type(nir_intrinsic_type(instr))) {
1967 case nir_type_uint:
1968 case nir_type_bool:
Italo Nicolabea6a652020-07-23 19:24:39 +00001969 st.op = midgard_op_st_vary_32u;
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001970 break;
1971 case nir_type_int:
Italo Nicolabea6a652020-07-23 19:24:39 +00001972 st.op = midgard_op_st_vary_32i;
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001973 break;
1974 case nir_type_float:
Italo Nicolabea6a652020-07-23 19:24:39 +00001975 st.op = midgard_op_st_vary_32;
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001976 break;
1977 default:
1978 unreachable("Attempted to store unknown type");
1979 break;
1980 }
1981
Boris Brezillon6af63c92020-01-16 11:20:06 +01001982 /* nir_intrinsic_component(store_intr) encodes the
1983 * destination component start. Source component offset
1984 * adjustment is taken care of in
1985 * install_registers_instr(), when offset_swizzle() is
1986 * called.
1987 */
1988 unsigned src_component = COMPONENT_X;
1989
1990 assert(nr_comp > 0);
1991 for (unsigned i = 0; i < ARRAY_SIZE(st.swizzle); ++i) {
1992 st.swizzle[0][i] = src_component;
1993 if (i >= dst_component && i < dst_component + nr_comp - 1)
1994 src_component++;
1995 }
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001996
Alyssa Rosenzweig4aced182019-06-06 08:21:27 -07001997 emit_mir_instruction(ctx, st);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001998 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001999 DBG("Unknown store\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002000 assert(0);
2001 }
2002
2003 break;
2004
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07002005 /* Special case of store_output for lowered blend shaders */
2006 case nir_intrinsic_store_raw_output_pan:
2007 assert (ctx->stage == MESA_SHADER_FRAGMENT);
2008 reg = nir_src_index(ctx, &instr->src[0]);
Icecream95a6806342020-06-06 15:41:51 +12002009 emit_fragment_store(ctx, reg, ~0, ~0, ctx->blend_rt);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07002010 break;
2011
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05002012 case nir_intrinsic_store_global:
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05002013 case nir_intrinsic_store_shared:
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07002014 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07002015 emit_explicit_constant(ctx, reg, reg);
Alyssa Rosenzweig3a310fb2020-02-05 15:17:44 -05002016
Alyssa Rosenzweig0bb25e42020-02-27 09:41:17 -05002017 emit_global(ctx, &instr->instr, false, reg, &instr->src[1], instr->intrinsic == nir_intrinsic_store_shared);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07002018 break;
2019
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05002020 case nir_intrinsic_load_ssbo_address:
Alyssa Rosenzweigb756a662020-03-10 16:19:33 -04002021 emit_sysval_read(ctx, &instr->instr, 1, 0);
Alyssa Rosenzweigfcbb3d42020-02-04 09:46:17 -05002022 break;
2023
2024 case nir_intrinsic_get_buffer_size:
Alyssa Rosenzweigb756a662020-03-10 16:19:33 -04002025 emit_sysval_read(ctx, &instr->instr, 1, 8);
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05002026 break;
Dylan Baker8e369612018-09-14 12:57:32 -07002027
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002028 case nir_intrinsic_load_viewport_scale:
2029 case nir_intrinsic_load_viewport_offset:
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -07002030 case nir_intrinsic_load_num_work_groups:
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -05002031 case nir_intrinsic_load_sampler_lod_parameters_pan:
Alyssa Rosenzweigb756a662020-03-10 16:19:33 -04002032 emit_sysval_read(ctx, &instr->instr, 3, 0);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002033 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002034
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07002035 case nir_intrinsic_load_work_group_id:
2036 case nir_intrinsic_load_local_invocation_id:
2037 emit_compute_builtin(ctx, instr);
2038 break;
2039
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05002040 case nir_intrinsic_load_vertex_id:
2041 case nir_intrinsic_load_instance_id:
2042 emit_vertex_builtin(ctx, instr);
2043 break;
2044
Alyssa Rosenzweig80ebf112020-08-27 19:55:53 -04002045 case nir_intrinsic_load_sample_mask_in:
2046 emit_special(ctx, instr, 96);
2047 break;
2048
Alyssa Rosenzweigda2eed32020-07-15 09:56:24 -04002049 case nir_intrinsic_load_sample_id:
Alyssa Rosenzweig80ebf112020-08-27 19:55:53 -04002050 emit_special(ctx, instr, 97);
Alyssa Rosenzweigda2eed32020-07-15 09:56:24 -04002051 break;
2052
Alyssa Rosenzweig3f590982020-02-03 20:23:41 -05002053 case nir_intrinsic_memory_barrier_buffer:
2054 case nir_intrinsic_memory_barrier_shared:
2055 break;
2056
2057 case nir_intrinsic_control_barrier:
2058 schedule_barrier(ctx);
2059 emit_control_barrier(ctx);
2060 schedule_barrier(ctx);
2061 break;
2062
Italo Nicolad7b6d2e2020-08-31 17:32:30 +00002063 ATOMIC_CASE(ctx, instr, add, add);
2064 ATOMIC_CASE(ctx, instr, and, and);
2065 ATOMIC_CASE(ctx, instr, comp_swap, cmpxchg);
2066 ATOMIC_CASE(ctx, instr, exchange, xchg);
2067 ATOMIC_CASE(ctx, instr, imax, imax);
2068 ATOMIC_CASE(ctx, instr, imin, imin);
2069 ATOMIC_CASE(ctx, instr, or, or);
2070 ATOMIC_CASE(ctx, instr, umax, umax);
2071 ATOMIC_CASE(ctx, instr, umin, umin);
2072 ATOMIC_CASE(ctx, instr, xor, xor);
2073
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002074 default:
Tomeu Vizosoae5e6402020-02-21 13:47:38 +01002075 fprintf(stderr, "Unhandled intrinsic %s\n", nir_intrinsic_infos[instr->intrinsic].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002076 assert(0);
2077 break;
2078 }
2079}
2080
Alyssa Rosenzweig1d0b3ef2020-08-05 18:11:15 -04002081/* Returns dimension with 0 special casing cubemaps */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002082static unsigned
2083midgard_tex_format(enum glsl_sampler_dim dim)
2084{
2085 switch (dim) {
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002086 case GLSL_SAMPLER_DIM_1D:
2087 case GLSL_SAMPLER_DIM_BUF:
Alyssa Rosenzweig1d0b3ef2020-08-05 18:11:15 -04002088 return 1;
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002089
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002090 case GLSL_SAMPLER_DIM_2D:
Alyssa Rosenzweiga2748d42020-06-30 15:31:30 -04002091 case GLSL_SAMPLER_DIM_MS:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002092 case GLSL_SAMPLER_DIM_EXTERNAL:
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -07002093 case GLSL_SAMPLER_DIM_RECT:
Alyssa Rosenzweig1d0b3ef2020-08-05 18:11:15 -04002094 return 2;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002095
2096 case GLSL_SAMPLER_DIM_3D:
Alyssa Rosenzweig1d0b3ef2020-08-05 18:11:15 -04002097 return 3;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002098
2099 case GLSL_SAMPLER_DIM_CUBE:
Alyssa Rosenzweig1d0b3ef2020-08-05 18:11:15 -04002100 return 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002101
2102 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002103 DBG("Unknown sampler dim type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002104 assert(0);
2105 return 0;
2106 }
2107}
2108
Alyssa Rosenzweigc6c906e2020-05-21 18:02:38 -04002109/* Tries to attach an explicit LOD or bias as a constant. Returns whether this
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07002110 * was successful */
2111
2112static bool
2113pan_attach_constant_bias(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002114 compiler_context *ctx,
2115 nir_src lod,
2116 midgard_texture_word *word)
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07002117{
2118 /* To attach as constant, it has to *be* constant */
2119
2120 if (!nir_src_is_const(lod))
2121 return false;
2122
2123 float f = nir_src_as_float(lod);
2124
2125 /* Break into fixed-point */
2126 signed lod_int = f;
2127 float lod_frac = f - lod_int;
2128
2129 /* Carry over negative fractions */
2130 if (lod_frac < 0.0) {
2131 lod_int--;
2132 lod_frac += 1.0;
2133 }
2134
2135 /* Encode */
2136 word->bias = float_to_ubyte(lod_frac);
2137 word->bias_int = lod_int;
2138
2139 return true;
2140}
2141
Alyssa Rosenzweigf6e19dd2020-08-28 08:35:19 -04002142static enum mali_texture_mode
2143mdg_texture_mode(nir_tex_instr *instr)
2144{
Alyssa Rosenzweig7dab5742020-08-28 09:48:38 -04002145 if (instr->op == nir_texop_tg4 && instr->is_shadow)
2146 return TEXTURE_GATHER_SHADOW;
2147 else if (instr->op == nir_texop_tg4)
2148 return TEXTURE_GATHER_X + instr->component;
2149 else if (instr->is_shadow)
Alyssa Rosenzweigf6e19dd2020-08-28 08:35:19 -04002150 return TEXTURE_SHADOW;
2151 else
2152 return TEXTURE_NORMAL;
2153}
2154
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002155static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02002156emit_texop_native(compiler_context *ctx, nir_tex_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002157 unsigned midgard_texop)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002158{
2159 /* TODO */
2160 //assert (!instr->sampler);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002161
Italo Nicola83592de2020-07-15 18:48:42 +00002162 nir_dest *dest = &instr->dest;
2163
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002164 int texture_index = instr->texture_index;
2165 int sampler_index = texture_index;
2166
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002167 nir_alu_type dest_base = nir_alu_type_get_base_type(instr->dest_type);
Italo Nicola83592de2020-07-15 18:48:42 +00002168 nir_alu_type dest_type = dest_base | nir_dest_bit_size(*dest);
2169
2170 /* texture instructions support float outmods */
2171 unsigned outmod = midgard_outmod_none;
2172 if (dest_base == nir_type_float) {
2173 outmod = mir_determine_float_outmod(ctx, &dest, 0);
2174 }
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002175
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002176 midgard_instruction ins = {
2177 .type = TAG_TEXTURE_4,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07002178 .mask = 0xF,
Italo Nicola83592de2020-07-15 18:48:42 +00002179 .dest = nir_dest_index(dest),
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05002180 .src = { ~0, ~0, ~0, ~0 },
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002181 .dest_type = dest_type,
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002182 .swizzle = SWIZZLE_IDENTITY_4,
Italo Nicola83592de2020-07-15 18:48:42 +00002183 .outmod = outmod,
Italo Nicola92c808c2020-07-29 19:10:25 +00002184 .op = midgard_texop,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002185 .texture = {
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002186 .format = midgard_tex_format(instr->sampler_dim),
2187 .texture_handle = texture_index,
2188 .sampler_handle = sampler_index,
Alyssa Rosenzweigf6e19dd2020-08-28 08:35:19 -04002189 .mode = mdg_texture_mode(instr)
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002190 }
2191 };
Alyssa Rosenzweig8429bee2019-06-14 16:03:39 -07002192
Alyssa Rosenzweig7dab5742020-08-28 09:48:38 -04002193 if (instr->is_shadow && !instr->is_new_style_shadow && instr->op != nir_texop_tg4)
Icecream95d1290e72020-05-12 10:16:31 +12002194 for (int i = 0; i < 4; ++i)
2195 ins.swizzle[0][i] = COMPONENT_X;
2196
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05002197 /* We may need a temporary for the coordinate */
2198
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05002199 bool needs_temp_coord =
2200 (midgard_texop == TEXTURE_OP_TEXEL_FETCH) ||
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05002201 (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) ||
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05002202 (instr->is_shadow);
2203
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05002204 unsigned coords = needs_temp_coord ? make_compiler_temp_reg(ctx) : 0;
2205
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002206 for (unsigned i = 0; i < instr->num_srcs; ++i) {
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07002207 int index = nir_src_index(ctx, &instr->src[i].src);
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07002208 unsigned nr_components = nir_src_num_components(instr->src[i].src);
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002209 unsigned sz = nir_src_bit_size(instr->src[i].src);
2210 nir_alu_type T = nir_tex_instr_src_type(instr, i) | sz;
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07002211
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002212 switch (instr->src[i].src_type) {
2213 case nir_tex_src_coord: {
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002214 emit_explicit_constant(ctx, index, index);
2215
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05002216 unsigned coord_mask = mask_of(instr->coord_components);
2217
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05002218 bool flip_zw = (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) && (coord_mask & (1 << COMPONENT_Z));
2219
2220 if (flip_zw)
2221 coord_mask ^= ((1 << COMPONENT_Z) | (1 << COMPONENT_W));
2222
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05002223 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
2224 /* texelFetch is undefined on samplerCube */
2225 assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH);
2226
2227 /* For cubemaps, we use a special ld/st op to
2228 * select the face and copy the xy into the
2229 * texture register */
2230
2231 midgard_instruction ld = m_ld_cubemap_coords(coords, 0);
2232 ld.src[1] = index;
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002233 ld.src_types[1] = T;
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05002234 ld.mask = 0x3; /* xy */
2235 ld.load_store.arg_1 = 0x20;
2236 ld.swizzle[1][3] = COMPONENT_X;
2237 emit_mir_instruction(ctx, ld);
2238
2239 /* xyzw -> xyxx */
2240 ins.swizzle[1][2] = instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
2241 ins.swizzle[1][3] = COMPONENT_X;
2242 } else if (needs_temp_coord) {
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05002243 /* mov coord_temp, coords */
2244 midgard_instruction mov = v_mov(index, coords);
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05002245 mov.mask = coord_mask;
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05002246
2247 if (flip_zw)
2248 mov.swizzle[1][COMPONENT_W] = COMPONENT_Z;
2249
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05002250 emit_mir_instruction(ctx, mov);
2251 } else {
2252 coords = index;
2253 }
2254
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05002255 ins.src[1] = coords;
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002256 ins.src_types[1] = T;
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05002257
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002258 /* Texelfetch coordinates uses all four elements
2259 * (xyz/index) regardless of texture dimensionality,
2260 * which means it's necessary to zero the unused
2261 * components to keep everything happy */
2262
2263 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05002264 /* mov index.zw, #0, or generalized */
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05002265 midgard_instruction mov =
2266 v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), coords);
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002267 mov.has_constants = true;
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05002268 mov.mask = coord_mask ^ 0xF;
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002269 emit_mir_instruction(ctx, mov);
2270 }
2271
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002272 if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) {
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05002273 /* Array component in w but NIR wants it in z,
2274 * but if we have a temp coord we already fixed
2275 * that up */
2276
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002277 if (nr_components == 3) {
2278 ins.swizzle[1][2] = COMPONENT_Z;
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05002279 ins.swizzle[1][3] = needs_temp_coord ? COMPONENT_W : COMPONENT_Z;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002280 } else if (nr_components == 2) {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05002281 ins.swizzle[1][2] =
2282 instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002283 ins.swizzle[1][3] = COMPONENT_X;
2284 } else
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07002285 unreachable("Invalid texture 2D components");
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00002286 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002287
Alyssa Rosenzweig64b2fe92019-12-20 12:38:24 -05002288 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
2289 /* We zeroed */
2290 ins.swizzle[1][2] = COMPONENT_Z;
2291 ins.swizzle[1][3] = COMPONENT_W;
2292 }
2293
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002294 break;
2295 }
2296
Alyssa Rosenzweig4012e062019-06-11 09:43:08 -07002297 case nir_tex_src_bias:
2298 case nir_tex_src_lod: {
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002299 /* Try as a constant if we can */
2300
2301 bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH;
2302 if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture))
2303 break;
2304
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002305 ins.texture.lod_register = true;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002306 ins.src[2] = index;
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002307 ins.src_types[2] = T;
Alyssa Rosenzweig72e57492019-12-20 12:34:20 -05002308
2309 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
2310 ins.swizzle[2][c] = COMPONENT_X;
2311
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002312 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07002313
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07002314 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002315 };
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07002316
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05002317 case nir_tex_src_offset: {
2318 ins.texture.offset_register = true;
2319 ins.src[3] = index;
Alyssa Rosenzweig4fb02172020-04-27 19:11:19 -04002320 ins.src_types[3] = T;
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05002321
2322 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
2323 ins.swizzle[3][c] = (c > COMPONENT_Z) ? 0 : c;
2324
2325 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweig4ec1f952019-12-20 12:58:10 -05002326 break;
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05002327 };
2328
Alyssa Rosenzweig6d9f9512020-06-30 15:31:39 -04002329 case nir_tex_src_comparator:
2330 case nir_tex_src_ms_index: {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05002331 unsigned comp = COMPONENT_Z;
2332
2333 /* mov coord_temp.foo, coords */
2334 midgard_instruction mov = v_mov(index, coords);
2335 mov.mask = 1 << comp;
2336
2337 for (unsigned i = 0; i < MIR_VEC_COMPONENTS; ++i)
2338 mov.swizzle[1][i] = COMPONENT_X;
2339
2340 emit_mir_instruction(ctx, mov);
2341 break;
2342 }
2343
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01002344 default: {
Tomeu Vizosoae5e6402020-02-21 13:47:38 +01002345 fprintf(stderr, "Unknown texture source type: %d\n", instr->src[i].src_type);
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01002346 assert(0);
2347 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002348 }
2349 }
2350
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002351 emit_mir_instruction(ctx, ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002352}
2353
2354static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02002355emit_tex(compiler_context *ctx, nir_tex_instr *instr)
2356{
2357 switch (instr->op) {
2358 case nir_texop_tex:
2359 case nir_texop_txb:
2360 emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL);
2361 break;
2362 case nir_texop_txl:
Alyssa Rosenzweig7dab5742020-08-28 09:48:38 -04002363 case nir_texop_tg4:
Boris Brezillon5c17f842019-06-17 21:47:46 +02002364 emit_texop_native(ctx, instr, TEXTURE_OP_LOD);
2365 break;
Alyssa Rosenzweigf4bb7f02019-06-21 16:17:34 -07002366 case nir_texop_txf:
Alyssa Rosenzweig63a87222020-06-30 15:32:01 -04002367 case nir_texop_txf_ms:
Alyssa Rosenzweigf4bb7f02019-06-21 16:17:34 -07002368 emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH);
2369 break;
Boris Brezillonc3558862019-06-17 22:13:04 +02002370 case nir_texop_txs:
Alyssa Rosenzweigb756a662020-03-10 16:19:33 -04002371 emit_sysval_read(ctx, &instr->instr, 4, 0);
Boris Brezillonc3558862019-06-17 22:13:04 +02002372 break;
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01002373 default: {
Tomeu Vizosoae5e6402020-02-21 13:47:38 +01002374 fprintf(stderr, "Unhandled texture op: %d\n", instr->op);
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01002375 assert(0);
2376 }
Boris Brezillon5c17f842019-06-17 21:47:46 +02002377 }
2378}
2379
2380static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002381emit_jump(compiler_context *ctx, nir_jump_instr *instr)
2382{
2383 switch (instr->type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002384 case nir_jump_break: {
2385 /* Emit a branch out of the loop */
2386 struct midgard_instruction br = v_branch(false, false);
2387 br.branch.target_type = TARGET_BREAK;
2388 br.branch.target_break = ctx->current_loop_depth;
2389 emit_mir_instruction(ctx, br);
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002390 break;
2391 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002392
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002393 default:
2394 DBG("Unknown jump type %d\n", instr->type);
2395 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002396 }
2397}
2398
2399static void
2400emit_instr(compiler_context *ctx, struct nir_instr *instr)
2401{
2402 switch (instr->type) {
2403 case nir_instr_type_load_const:
2404 emit_load_const(ctx, nir_instr_as_load_const(instr));
2405 break;
2406
2407 case nir_instr_type_intrinsic:
2408 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
2409 break;
2410
2411 case nir_instr_type_alu:
2412 emit_alu(ctx, nir_instr_as_alu(instr));
2413 break;
2414
2415 case nir_instr_type_tex:
2416 emit_tex(ctx, nir_instr_as_tex(instr));
2417 break;
2418
2419 case nir_instr_type_jump:
2420 emit_jump(ctx, nir_instr_as_jump(instr));
2421 break;
2422
2423 case nir_instr_type_ssa_undef:
2424 /* Spurious */
2425 break;
2426
2427 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002428 DBG("Unhandled instruction type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002429 break;
2430 }
2431}
2432
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002433
2434/* ALU instructions can inline or embed constants, which decreases register
2435 * pressure and saves space. */
2436
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002437#define CONDITIONAL_ATTACH(idx) { \
2438 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[idx] + 1); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002439\
2440 if (entry) { \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002441 attach_constants(ctx, alu, entry, alu->src[idx] + 1); \
2442 alu->src[idx] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002443 } \
2444}
2445
2446static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002447inline_alu_constants(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002448{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002449 mir_foreach_instr_in_block(block, alu) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002450 /* Other instructions cannot inline constants */
2451 if (alu->type != TAG_ALU_4) continue;
Alyssa Rosenzweig5e06d902019-08-30 11:06:33 -07002452 if (alu->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002453
2454 /* If there is already a constant here, we can do nothing */
2455 if (alu->has_constants) continue;
2456
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002457 CONDITIONAL_ATTACH(0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002458
2459 if (!alu->has_constants) {
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002460 CONDITIONAL_ATTACH(1)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002461 } else if (!alu->inline_constant) {
2462 /* Corner case: _two_ vec4 constants, for instance with a
2463 * csel. For this case, we can only use a constant
2464 * register for one, we'll have to emit a move for the
Alyssa Rosenzweig3b10bcd2020-04-27 17:47:13 -04002465 * other. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002466
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002467 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[1] + 1);
Alyssa Rosenzweig3b10bcd2020-04-27 17:47:13 -04002468 unsigned scratch = make_compiler_temp(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002469
2470 if (entry) {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04002471 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), scratch);
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002472 attach_constants(ctx, &ins, entry, alu->src[1] + 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002473
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002474 /* Set the source */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002475 alu->src[1] = scratch;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002476
2477 /* Inject us -before- the last instruction which set r31 */
Boris Brezillon938c5b02019-08-28 09:17:21 +02002478 mir_insert_instruction_before(ctx, mir_prev_op(alu), ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002479 }
2480 }
2481 }
2482}
2483
Italo Nicola5f7e0182020-07-10 09:36:58 +00002484unsigned
2485max_bitsize_for_alu(midgard_instruction *ins)
2486{
2487 unsigned max_bitsize = 0;
2488 for (int i = 0; i < MIR_SRC_COUNT; i++) {
2489 if (ins->src[i] == ~0) continue;
2490 unsigned src_bitsize = nir_alu_type_get_type_size(ins->src_types[i]);
2491 max_bitsize = MAX2(src_bitsize, max_bitsize);
2492 }
2493 unsigned dst_bitsize = nir_alu_type_get_type_size(ins->dest_type);
2494 max_bitsize = MAX2(dst_bitsize, max_bitsize);
2495
2496 /* We don't have fp16 LUTs, so we'll want to emit code like:
2497 *
2498 * vlut.fsinr hr0, hr0
2499 *
2500 * where both input and output are 16-bit but the operation is carried
2501 * out in 32-bit
2502 */
2503
2504 switch (ins->op) {
2505 case midgard_alu_op_fsqrt:
2506 case midgard_alu_op_frcp:
2507 case midgard_alu_op_frsqrt:
2508 case midgard_alu_op_fsin:
2509 case midgard_alu_op_fcos:
2510 case midgard_alu_op_fexp2:
2511 case midgard_alu_op_flog2:
2512 max_bitsize = MAX2(max_bitsize, 32);
2513 break;
2514
2515 default:
2516 break;
2517 }
2518
Alyssa Rosenzweig3e2cb212020-08-27 14:35:23 -04002519 /* High implies computing at a higher bitsize, e.g umul_high of 32-bit
2520 * requires computing at 64-bit */
2521 if (midgard_is_integer_out_op(ins->op) && ins->outmod == midgard_outmod_int_high) {
2522 max_bitsize *= 2;
2523 assert(max_bitsize <= 64);
2524 }
2525
Italo Nicola5f7e0182020-07-10 09:36:58 +00002526 return max_bitsize;
2527}
2528
2529midgard_reg_mode
2530reg_mode_for_bitsize(unsigned bitsize)
2531{
2532 switch (bitsize) {
2533 /* use 16 pipe for 8 since we don't support vec16 yet */
2534 case 8:
2535 case 16:
2536 return midgard_reg_mode_16;
2537 case 32:
2538 return midgard_reg_mode_32;
2539 case 64:
2540 return midgard_reg_mode_64;
2541 default:
2542 unreachable("invalid bit size");
2543 }
2544}
2545
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002546/* Midgard supports two types of constants, embedded constants (128-bit) and
2547 * inline constants (16-bit). Sometimes, especially with scalar ops, embedded
2548 * constants can be demoted to inline constants, for space savings and
2549 * sometimes a performance boost */
2550
2551static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002552embedded_to_inline_constant(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002553{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002554 mir_foreach_instr_in_block(block, ins) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002555 if (!ins->has_constants) continue;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002556 if (ins->has_inline_constant) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002557
2558 /* Blend constants must not be inlined by definition */
2559 if (ins->has_blend_constant) continue;
2560
Italo Nicola5f7e0182020-07-10 09:36:58 +00002561 unsigned max_bitsize = max_bitsize_for_alu(ins);
2562
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07002563 /* We can inline 32-bit (sometimes) or 16-bit (usually) */
Italo Nicola5f7e0182020-07-10 09:36:58 +00002564 bool is_16 = max_bitsize == 16;
2565 bool is_32 = max_bitsize == 32;
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07002566
2567 if (!(is_16 || is_32))
2568 continue;
2569
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002570 /* src1 cannot be an inline constant due to encoding
2571 * restrictions. So, if possible we try to flip the arguments
2572 * in that case */
2573
Italo Nicolaf4c89bf2020-07-09 12:02:57 +00002574 int op = ins->op;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002575
Alyssa Rosenzweigba9f3d12020-04-30 13:11:52 -04002576 if (ins->src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT) &&
2577 alu_opcode_props[op].props & OP_COMMUTES) {
2578 mir_flip(ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002579 }
2580
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002581 if (ins->src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002582 /* Component is from the swizzle. Take a nonzero component */
2583 assert(ins->mask);
2584 unsigned first_comp = ffs(ins->mask) - 1;
2585 unsigned component = ins->swizzle[1][first_comp];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002586
2587 /* Scale constant appropriately, if we can legally */
Icecream95d97aaad2020-06-05 20:17:27 +12002588 int16_t scaled_constant = 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002589
Boris Brezillon15c92d12020-01-20 15:00:57 +01002590 if (is_16) {
2591 scaled_constant = ins->constants.u16[component];
2592 } else if (midgard_is_integer_op(op)) {
2593 scaled_constant = ins->constants.u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002594
2595 /* Constant overflow after resize */
Boris Brezillon15c92d12020-01-20 15:00:57 +01002596 if (scaled_constant != ins->constants.u32[component])
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002597 continue;
2598 } else {
Boris Brezillon15c92d12020-01-20 15:00:57 +01002599 float original = ins->constants.f32[component];
Alyssa Rosenzweig39786142019-04-28 15:46:47 +00002600 scaled_constant = _mesa_float_to_half(original);
2601
2602 /* Check for loss of precision. If this is
2603 * mediump, we don't care, but for a highp
2604 * shader, we need to pay attention. NIR
2605 * doesn't yet tell us which mode we're in!
2606 * Practically this prevents most constants
2607 * from being inlined, sadly. */
2608
2609 float fp32 = _mesa_half_to_float(scaled_constant);
2610
2611 if (fp32 != original)
2612 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002613 }
2614
Alyssa Rosenzweig1cd65352020-05-21 12:38:27 -04002615 /* Should've been const folded */
2616 if (ins->src_abs[1] || ins->src_neg[1])
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002617 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002618
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002619 /* Make sure that the constant is not itself a vector
2620 * by checking if all accessed values are the same. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002621
Boris Brezillon15c92d12020-01-20 15:00:57 +01002622 const midgard_constants *cons = &ins->constants;
2623 uint32_t value = is_16 ? cons->u16[component] : cons->u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002624
2625 bool is_vector = false;
Italo Nicolaf4c89bf2020-07-09 12:02:57 +00002626 unsigned mask = effective_writemask(ins->op, ins->mask);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002627
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002628 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002629 /* We only care if this component is actually used */
2630 if (!(mask & (1 << c)))
2631 continue;
2632
Boris Brezillon15c92d12020-01-20 15:00:57 +01002633 uint32_t test = is_16 ?
2634 cons->u16[ins->swizzle[1][c]] :
2635 cons->u32[ins->swizzle[1][c]];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002636
2637 if (test != value) {
2638 is_vector = true;
2639 break;
2640 }
2641 }
2642
2643 if (is_vector)
2644 continue;
2645
2646 /* Get rid of the embedded constant */
2647 ins->has_constants = false;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002648 ins->src[1] = ~0;
2649 ins->has_inline_constant = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002650 ins->inline_constant = scaled_constant;
2651 }
2652 }
2653}
2654
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002655/* Dead code elimination for branches at the end of a block - only one branch
2656 * per block is legal semantically */
2657
2658static void
Alyssa Rosenzweig1c2d4692020-04-30 13:13:24 -04002659midgard_cull_dead_branch(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002660{
2661 bool branched = false;
2662
2663 mir_foreach_instr_in_block_safe(block, ins) {
2664 if (!midgard_is_branch_unit(ins->unit)) continue;
2665
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002666 if (branched)
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002667 mir_remove_instruction(ins);
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002668
2669 branched = true;
2670 }
2671}
2672
Alyssa Rosenzweig622e3a82020-06-02 12:15:18 -04002673/* We want to force the invert on AND/OR to the second slot to legalize into
2674 * iandnot/iornot. The relevant patterns are for AND (and OR respectively)
2675 *
2676 * ~a & #b = ~a & ~(#~b)
2677 * ~a & b = b & ~a
2678 */
2679
2680static void
2681midgard_legalize_invert(compiler_context *ctx, midgard_block *block)
2682{
2683 mir_foreach_instr_in_block(block, ins) {
2684 if (ins->type != TAG_ALU_4) continue;
2685
Italo Nicolaf4c89bf2020-07-09 12:02:57 +00002686 if (ins->op != midgard_alu_op_iand &&
2687 ins->op != midgard_alu_op_ior) continue;
Alyssa Rosenzweig622e3a82020-06-02 12:15:18 -04002688
2689 if (ins->src_invert[1] || !ins->src_invert[0]) continue;
2690
2691 if (ins->has_inline_constant) {
2692 /* ~(#~a) = ~(~#a) = a, so valid, and forces both
2693 * inverts on */
2694 ins->inline_constant = ~ins->inline_constant;
2695 ins->src_invert[1] = true;
2696 } else {
2697 /* Flip to the right invert order. Note
2698 * has_inline_constant false by assumption on the
2699 * branch, so flipping makes sense. */
2700 mir_flip(ins);
2701 }
2702 }
2703}
2704
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002705static unsigned
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002706emit_fragment_epilogue(compiler_context *ctx, unsigned rt)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002707{
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002708 /* Loop to ourselves */
Boris Brezillone1ba0cd2020-01-31 10:05:16 +01002709 midgard_instruction *br = ctx->writeout_branch[rt];
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002710 struct midgard_instruction ins = v_branch(false, false);
Icecream9592d3f1f2020-06-06 15:08:06 +12002711 ins.writeout = br->writeout;
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002712 ins.branch.target_block = ctx->block_count - 1;
Boris Brezillone1ba0cd2020-01-31 10:05:16 +01002713 ins.constants.u32[0] = br->constants.u32[0];
Icecream952a5504f2020-06-06 14:42:18 +12002714 memcpy(&ins.src_types, &br->src_types, sizeof(ins.src_types));
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002715 emit_mir_instruction(ctx, ins);
2716
Alyssa Rosenzweig3448b262019-12-03 10:37:01 -05002717 ctx->current_block->epilogue = true;
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002718 schedule_barrier(ctx);
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002719 return ins.branch.target_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002720}
2721
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002722static midgard_block *
Icecream95ed4d2732020-07-08 13:15:09 +12002723emit_block_init(compiler_context *ctx)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002724{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002725 midgard_block *this_block = ctx->after_block;
2726 ctx->after_block = NULL;
2727
2728 if (!this_block)
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002729 this_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002730
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002731 list_addtail(&this_block->base.link, &ctx->blocks);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002732
Alyssa Rosenzweigc5dd1d52020-03-11 08:22:08 -04002733 this_block->scheduled = false;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002734 ++ctx->block_count;
2735
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002736 /* Set up current block */
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002737 list_inithead(&this_block->base.instructions);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002738 ctx->current_block = this_block;
2739
Icecream95ed4d2732020-07-08 13:15:09 +12002740 return this_block;
2741}
2742
2743static midgard_block *
2744emit_block(compiler_context *ctx, nir_block *block)
2745{
2746 midgard_block *this_block = emit_block_init(ctx);
2747
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002748 nir_foreach_instr(instr, block) {
2749 emit_instr(ctx, instr);
2750 ++ctx->instruction_count;
2751 }
2752
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002753 return this_block;
2754}
2755
2756static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list);
2757
2758static void
2759emit_if(struct compiler_context *ctx, nir_if *nif)
2760{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002761 midgard_block *before_block = ctx->current_block;
2762
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002763 /* Speculatively emit the branch, but we can't fill it in until later */
Alyssa Rosenzweigdb7b0eb2020-04-30 14:17:06 -04002764 bool inv = false;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002765 EMIT(branch, true, true);
2766 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block);
Alyssa Rosenzweigdb7b0eb2020-04-30 14:17:06 -04002767 then_branch->src[0] = mir_get_branch_cond(&nif->condition, &inv);
Alyssa Rosenzweig074815c2020-04-29 16:29:01 -04002768 then_branch->src_types[0] = nir_type_uint32;
Alyssa Rosenzweigdb7b0eb2020-04-30 14:17:06 -04002769 then_branch->branch.invert_conditional = !inv;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002770
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002771 /* Emit the two subblocks. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002772 midgard_block *then_block = emit_cf_list(ctx, &nif->then_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002773 midgard_block *end_then_block = ctx->current_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002774
2775 /* Emit a jump from the end of the then block to the end of the else */
2776 EMIT(branch, false, false);
2777 midgard_instruction *then_exit = mir_last_in_block(ctx->current_block);
2778
2779 /* Emit second block, and check if it's empty */
2780
2781 int else_idx = ctx->block_count;
2782 int count_in = ctx->instruction_count;
2783 midgard_block *else_block = emit_cf_list(ctx, &nif->else_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002784 midgard_block *end_else_block = ctx->current_block;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002785 int after_else_idx = ctx->block_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002786
2787 /* Now that we have the subblocks emitted, fix up the branches */
2788
2789 assert(then_block);
2790 assert(else_block);
2791
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002792 if (ctx->instruction_count == count_in) {
2793 /* The else block is empty, so don't emit an exit jump */
2794 mir_remove_instruction(then_exit);
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002795 then_branch->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002796 } else {
2797 then_branch->branch.target_block = else_idx;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002798 then_exit->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002799 }
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002800
2801 /* Wire up the successors */
2802
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002803 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002804
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002805 pan_block_add_successor(&before_block->base, &then_block->base);
2806 pan_block_add_successor(&before_block->base, &else_block->base);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002807
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002808 pan_block_add_successor(&end_then_block->base, &ctx->after_block->base);
2809 pan_block_add_successor(&end_else_block->base, &ctx->after_block->base);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002810}
2811
2812static void
2813emit_loop(struct compiler_context *ctx, nir_loop *nloop)
2814{
2815 /* Remember where we are */
2816 midgard_block *start_block = ctx->current_block;
2817
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002818 /* Allocate a loop number, growing the current inner loop depth */
2819 int loop_idx = ++ctx->current_loop_depth;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002820
2821 /* Get index from before the body so we can loop back later */
2822 int start_idx = ctx->block_count;
2823
2824 /* Emit the body itself */
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002825 midgard_block *loop_block = emit_cf_list(ctx, &nloop->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002826
2827 /* Branch back to loop back */
2828 struct midgard_instruction br_back = v_branch(false, false);
2829 br_back.branch.target_block = start_idx;
2830 emit_mir_instruction(ctx, br_back);
2831
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002832 /* Mark down that branch in the graph. */
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002833 pan_block_add_successor(&start_block->base, &loop_block->base);
2834 pan_block_add_successor(&ctx->current_block->base, &loop_block->base);
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +00002835
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002836 /* Find the index of the block about to follow us (note: we don't add
2837 * one; blocks are 0-indexed so we get a fencepost problem) */
2838 int break_block_idx = ctx->block_count;
2839
2840 /* Fix up the break statements we emitted to point to the right place,
2841 * now that we can allocate a block number for them */
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002842 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002843
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002844 mir_foreach_block_from(ctx, start_block, _block) {
2845 mir_foreach_instr_in_block(((midgard_block *) _block), ins) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002846 if (ins->type != TAG_ALU_4) continue;
2847 if (!ins->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002848
2849 /* We found a branch -- check the type to see if we need to do anything */
2850 if (ins->branch.target_type != TARGET_BREAK) continue;
2851
2852 /* It's a break! Check if it's our break */
2853 if (ins->branch.target_break != loop_idx) continue;
2854
2855 /* Okay, cool, we're breaking out of this loop.
2856 * Rewrite from a break to a goto */
2857
2858 ins->branch.target_type = TARGET_GOTO;
2859 ins->branch.target_block = break_block_idx;
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002860
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002861 pan_block_add_successor(_block, &ctx->after_block->base);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002862 }
2863 }
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002864
2865 /* Now that we've finished emitting the loop, free up the depth again
2866 * so we play nice with recursion amid nested loops */
2867 --ctx->current_loop_depth;
Alyssa Rosenzweig7ad65162019-07-09 11:10:49 -07002868
2869 /* Dump loop stats */
2870 ++ctx->loop_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002871}
2872
2873static midgard_block *
2874emit_cf_list(struct compiler_context *ctx, struct exec_list *list)
2875{
2876 midgard_block *start_block = NULL;
2877
2878 foreach_list_typed(nir_cf_node, node, node, list) {
2879 switch (node->type) {
2880 case nir_cf_node_block: {
2881 midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node));
2882
2883 if (!start_block)
2884 start_block = block;
2885
2886 break;
2887 }
2888
2889 case nir_cf_node_if:
2890 emit_if(ctx, nir_cf_node_as_if(node));
2891 break;
2892
2893 case nir_cf_node_loop:
2894 emit_loop(ctx, nir_cf_node_as_loop(node));
2895 break;
2896
2897 case nir_cf_node_function:
2898 assert(0);
2899 break;
2900 }
2901 }
2902
2903 return start_block;
2904}
2905
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002906/* Due to lookahead, we need to report the first tag executed in the command
2907 * stream and in branch targets. An initial block might be empty, so iterate
2908 * until we find one that 'works' */
2909
Italo Nicola8150c1d2020-07-29 20:14:55 +00002910unsigned
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002911midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx)
2912{
2913 midgard_block *initial_block = mir_get_block(ctx, block_idx);
2914
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002915 mir_foreach_block_from(ctx, initial_block, _v) {
2916 midgard_block *v = (midgard_block *) _v;
Alyssa Rosenzweig45ac8ea2019-11-04 10:32:49 -05002917 if (v->quadword_count) {
2918 midgard_bundle *initial_bundle =
2919 util_dynarray_element(&v->bundles, midgard_bundle, 0);
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002920
Alyssa Rosenzweiga55a2e022020-02-04 09:28:06 -05002921 return initial_bundle->tag;
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002922 }
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002923 }
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002924
Alyssa Rosenzweiga55a2e022020-02-04 09:28:06 -05002925 /* Default to a tag 1 which will break from the shader, in case we jump
2926 * to the exit block (i.e. `return` in a compute shader) */
2927
2928 return 1;
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002929}
2930
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002931/* For each fragment writeout instruction, generate a writeout loop to
2932 * associate with it */
2933
2934static void
2935mir_add_writeout_loops(compiler_context *ctx)
2936{
2937 for (unsigned rt = 0; rt < ARRAY_SIZE(ctx->writeout_branch); ++rt) {
2938 midgard_instruction *br = ctx->writeout_branch[rt];
2939 if (!br) continue;
2940
2941 unsigned popped = br->branch.target_block;
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002942 pan_block_add_successor(&(mir_get_block(ctx, popped - 1)->base), &ctx->current_block->base);
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002943 br->branch.target_block = emit_fragment_epilogue(ctx, rt);
Alyssa Rosenzweige27fd4b2020-04-27 20:34:36 -04002944 br->branch.target_type = TARGET_GOTO;
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002945
2946 /* If we have more RTs, we'll need to restore back after our
2947 * loop terminates */
2948
2949 if ((rt + 1) < ARRAY_SIZE(ctx->writeout_branch) && ctx->writeout_branch[rt + 1]) {
2950 midgard_instruction uncond = v_branch(false, false);
2951 uncond.branch.target_block = popped;
Alyssa Rosenzweige27fd4b2020-04-27 20:34:36 -04002952 uncond.branch.target_type = TARGET_GOTO;
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002953 emit_mir_instruction(ctx, uncond);
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04002954 pan_block_add_successor(&ctx->current_block->base, &(mir_get_block(ctx, popped)->base));
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002955 schedule_barrier(ctx);
2956 } else {
2957 /* We're last, so we can terminate here */
2958 br->last_writeout = true;
2959 }
2960 }
2961}
2962
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002963int
Icecream954a8ad1e2020-07-17 22:34:04 +12002964midgard_compile_shader_nir(nir_shader *nir, panfrost_program *program, bool is_blend, unsigned blend_rt, unsigned gpu_id, bool shaderdb, bool silent)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002965{
2966 struct util_dynarray *compiled = &program->compiled;
2967
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002968 midgard_debug = debug_get_option_midgard_debug();
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002969
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002970 /* TODO: Bound against what? */
2971 compiler_context *ctx = rzalloc(NULL, compiler_context);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002972
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002973 ctx->nir = nir;
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002974 ctx->stage = nir->info.stage;
2975 ctx->is_blend = is_blend;
Boris Brezillone1ba0cd2020-01-31 10:05:16 +01002976 ctx->blend_rt = MIDGARD_COLOR_RT0 + blend_rt;
Alyssa Rosenzweig277b6162020-06-12 16:45:24 -04002977 ctx->blend_input = ~0;
Icecream9585954ec2020-06-25 22:21:50 +12002978 ctx->blend_src1 = ~0;
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -05002979 ctx->quirks = midgard_get_quirks(gpu_id);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002980
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07002981 /* Start off with a safe cutoff, allowing usage of all 16 work
2982 * registers. Later, we'll promote uniform reads to uniform registers
2983 * if we determine it is beneficial to do so */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002984 ctx->uniform_cutoff = 8;
2985
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002986 /* Initialize at a global (not block) level hash tables */
2987
2988 ctx->ssa_constants = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002989
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002990 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
2991 * (so we don't accidentally duplicate the epilogue since mesa/st has
2992 * messed with our I/O quite a bit already) */
2993
2994 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002995
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002996 if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002997 NIR_PASS_V(nir, nir_lower_viewport_transform);
Alyssa Rosenzweig20237162019-08-26 12:14:11 -07002998 NIR_PASS_V(nir, nir_lower_point_size, 1.0, 1024.0);
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002999 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003000
3001 NIR_PASS_V(nir, nir_lower_var_copies);
3002 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
3003 NIR_PASS_V(nir, nir_split_var_copies);
3004 NIR_PASS_V(nir, nir_lower_var_copies);
3005 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
3006 NIR_PASS_V(nir, nir_lower_var_copies);
3007 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00003008
Icecream951e1eee92020-07-06 19:30:37 +12003009 unsigned pan_quirks = panfrost_get_quirks(gpu_id);
Icecream951e1eee92020-07-06 19:30:37 +12003010 NIR_PASS_V(nir, pan_lower_framebuffer,
Icecream952fa60b72020-07-06 19:34:49 +12003011 program->rt_formats, is_blend, pan_quirks);
Icecream951e1eee92020-07-06 19:30:37 +12003012
Jason Ekstrandb019b222020-06-10 17:54:25 -05003013 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in | nir_var_shader_out,
3014 glsl_type_size, 0);
Alyssa Rosenzweig31489372019-11-05 08:59:49 -05003015 NIR_PASS_V(nir, nir_lower_ssbo);
Icecream95d37e9012020-06-06 17:25:08 +12003016 NIR_PASS_V(nir, midgard_nir_lower_zs_store);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003017
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003018 /* Optimisation passes */
3019
Alyssa Rosenzweig7c793a42020-05-22 16:23:06 -04003020 optimise_nir(nir, ctx->quirks, is_blend);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003021
Icecream950ff62632020-07-06 23:52:40 +12003022 NIR_PASS_V(nir, midgard_nir_reorder_writeout);
3023
Icecream954a8ad1e2020-07-17 22:34:04 +12003024 if ((midgard_debug & MIDGARD_DBG_SHADERS) && !silent) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003025 nir_print_shader(nir, stdout);
3026 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003027
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00003028 /* Assign sysvals and counts, now that we're sure
3029 * (post-optimisation) */
3030
Alyssa Rosenzweig680fb052020-08-18 08:31:42 -04003031 panfrost_nir_assign_sysvals(&ctx->sysvals, ctx, nir);
Alyssa Rosenzweigc2ff3bb2020-03-10 16:00:56 -04003032 program->sysval_count = ctx->sysvals.sysval_count;
3033 memcpy(program->sysvals, ctx->sysvals.sysvals, sizeof(ctx->sysvals.sysvals[0]) * ctx->sysvals.sysval_count);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003034
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003035 nir_foreach_function(func, nir) {
3036 if (!func->impl)
3037 continue;
3038
3039 list_inithead(&ctx->blocks);
3040 ctx->block_count = 0;
3041 ctx->func = func;
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04003042 ctx->already_emitted = calloc(BITSET_WORDS(func->impl->ssa_alloc), sizeof(BITSET_WORD));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003043
Icecream95ed4d2732020-07-08 13:15:09 +12003044 if (nir->info.outputs_read && !is_blend) {
3045 emit_block_init(ctx);
3046
3047 struct midgard_instruction wait = v_branch(false, false);
3048 wait.branch.target_type = TARGET_TILEBUF_WAIT;
3049
3050 emit_mir_instruction(ctx, wait);
3051
3052 ++ctx->instruction_count;
3053 }
3054
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003055 emit_cf_list(ctx, &func->impl->body);
Alyssa Rosenzweig22bb5a92020-04-29 18:08:26 -04003056 free(ctx->already_emitted);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003057 break; /* TODO: Multi-function shaders */
3058 }
3059
3060 util_dynarray_init(compiled, NULL);
3061
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07003062 /* Per-block lowering before opts */
3063
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003064 mir_foreach_block(ctx, _block) {
3065 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07003066 inline_alu_constants(ctx, block);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07003067 embedded_to_inline_constant(ctx, block);
3068 }
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00003069 /* MIR-level optimizations */
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00003070
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00003071 bool progress = false;
3072
3073 do {
3074 progress = false;
Alyssa Rosenzweigfc06b8b2020-05-06 17:34:09 -04003075 progress |= midgard_opt_dead_code_eliminate(ctx);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00003076
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003077 mir_foreach_block(ctx, _block) {
3078 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00003079 progress |= midgard_opt_copy_prop(ctx, block);
Alyssa Rosenzweig9ce75822019-07-24 15:37:24 -07003080 progress |= midgard_opt_combine_projection(ctx, block);
3081 progress |= midgard_opt_varying_projection(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00003082 }
3083 } while (progress);
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00003084
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003085 mir_foreach_block(ctx, _block) {
3086 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -07003087 midgard_lower_derivatives(ctx, block);
Alyssa Rosenzweig622e3a82020-06-02 12:15:18 -04003088 midgard_legalize_invert(ctx, block);
Alyssa Rosenzweig1c2d4692020-04-30 13:13:24 -04003089 midgard_cull_dead_branch(ctx, block);
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07003090 }
3091
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05003092 if (ctx->stage == MESA_SHADER_FRAGMENT)
3093 mir_add_writeout_loops(ctx);
3094
Alyssa Rosenzweig9a7f0e22020-05-12 13:26:32 -04003095 /* Analyze now that the code is known but before scheduling creates
3096 * pipeline registers which are harder to track */
3097 mir_analyze_helper_terminate(ctx);
3098 mir_analyze_helper_requirements(ctx);
3099
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003100 /* Schedule! */
Robert Foss62adb652020-01-15 01:14:16 +01003101 midgard_schedule_program(ctx);
Alyssa Rosenzweig9dc3b182019-12-06 09:32:38 -05003102 mir_ra(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003103
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003104 /* Emit flat binary from the instruction arrays. Iterate each block in
3105 * sequence. Save instruction boundaries such that lookahead tags can
3106 * be assigned easily */
3107
3108 /* Cache _all_ bundles in source order for lookahead across failed branches */
3109
3110 int bundle_count = 0;
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003111 mir_foreach_block(ctx, _block) {
3112 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003113 bundle_count += block->bundles.size / sizeof(midgard_bundle);
3114 }
3115 midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count);
3116 int bundle_idx = 0;
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003117 mir_foreach_block(ctx, _block) {
3118 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003119 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
3120 source_order_bundles[bundle_idx++] = bundle;
3121 }
3122 }
3123
3124 int current_bundle = 0;
3125
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00003126 /* Midgard prefetches instruction types, so during emission we
3127 * need to lookahead. Unless this is the last instruction, in
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05003128 * which we return 1. */
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00003129
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003130 mir_foreach_block(ctx, _block) {
3131 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweigd3ad8d62019-06-06 11:19:44 -07003132 mir_foreach_bundle_in_block(block, bundle) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003133 int lookahead = 1;
3134
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05003135 if (!bundle->last_writeout && (current_bundle + 1 < bundle_count))
3136 lookahead = source_order_bundles[current_bundle + 1]->tag;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003137
Alyssa Rosenzweig30a393f2020-05-21 19:14:23 -04003138 emit_binary_bundle(ctx, block, bundle, compiled, lookahead);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003139 ++current_bundle;
3140 }
3141
3142 /* TODO: Free deeper */
3143 //util_dynarray_fini(&block->instructions);
3144 }
3145
3146 free(source_order_bundles);
3147
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00003148 /* Report the very first tag executed */
3149 program->first_tag = midgard_get_first_tag_from_block(ctx, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003150
3151 /* Deal with off-by-one related to the fencepost problem */
3152 program->work_register_count = ctx->work_registers + 1;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003153 program->uniform_cutoff = ctx->uniform_cutoff;
3154
3155 program->blend_patch_offset = ctx->blend_constant_offset;
Alyssa Rosenzweigf0d00612019-07-19 16:23:52 -07003156 program->tls_size = ctx->tls_size;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003157
Icecream954a8ad1e2020-07-17 22:34:04 +12003158 if ((midgard_debug & MIDGARD_DBG_SHADERS) && !silent)
Icecream95968f36d2020-01-23 09:42:12 +13003159 disassemble_midgard(stdout, program->compiled.data, program->compiled.size, gpu_id, ctx->stage);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003160
Icecream954a8ad1e2020-07-17 22:34:04 +12003161 if ((midgard_debug & MIDGARD_DBG_SHADERDB || shaderdb) && !silent) {
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07003162 unsigned nr_bundles = 0, nr_ins = 0;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003163
3164 /* Count instructions and bundles */
3165
Alyssa Rosenzweig5aaaf7b2020-03-11 08:36:31 -04003166 mir_foreach_block(ctx, _block) {
3167 midgard_block *block = (midgard_block *) _block;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003168 nr_bundles += util_dynarray_num_elements(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003169 &block->bundles, midgard_bundle);
Alyssa Rosenzweig2d739f62019-07-09 11:16:57 -07003170
Alyssa Rosenzweig67909c82019-08-30 13:08:16 -07003171 mir_foreach_bundle_in_block(block, bun)
3172 nr_ins += bun->instruction_count;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003173 }
3174
3175 /* Calculate thread count. There are certain cutoffs by
3176 * register count for thread count */
3177
3178 unsigned nr_registers = program->work_register_count;
3179
3180 unsigned nr_threads =
3181 (nr_registers <= 4) ? 4 :
3182 (nr_registers <= 8) ? 2 :
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003183 1;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003184
3185 /* Dump stats */
3186
3187 fprintf(stderr, "shader%d - %s shader: "
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003188 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07003189 "%u registers, %u threads, %u loops, "
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07003190 "%u:%u spills:fills\n",
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003191 SHADER_DB_COUNT++,
Alyssa Rosenzweig014d2e42020-05-25 13:19:43 -04003192 ctx->is_blend ? "PAN_SHADER_BLEND" :
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003193 gl_shader_stage_name(ctx->stage),
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07003194 nr_ins, nr_bundles, ctx->quadword_count,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07003195 nr_registers, nr_threads,
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07003196 ctx->loop_count,
3197 ctx->spills, ctx->fills);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003198 }
3199
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07003200 ralloc_free(ctx);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07003201
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00003202 return 0;
3203}