blob: c3752784b6b4a39bf34cedaca39ed493691a413e [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"
36#include "main/imports.h"
37#include "compiler/nir/nir_builder.h"
38#include "util/half_float.h"
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -070039#include "util/u_math.h"
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010040#include "util/u_debug.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000041#include "util/u_dynarray.h"
42#include "util/list.h"
43#include "main/mtypes.h"
44
45#include "midgard.h"
46#include "midgard_nir.h"
47#include "midgard_compile.h"
Alyssa Rosenzweig11554462019-05-19 23:20:34 +000048#include "midgard_ops.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000049#include "helpers.h"
Alyssa Rosenzweig11554462019-05-19 23:20:34 +000050#include "compiler.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000051
52#include "disassemble.h"
53
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010054static const struct debug_named_value debug_options[] = {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070055 {"msgs", MIDGARD_DBG_MSGS, "Print debug messages"},
56 {"shaders", MIDGARD_DBG_SHADERS, "Dump shaders in NIR and MIR"},
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070057 {"shaderdb", MIDGARD_DBG_SHADERDB, "Prints shader-db statistics"},
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070058 DEBUG_NAMED_VALUE_END
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010059};
60
61DEBUG_GET_ONCE_FLAGS_OPTION(midgard_debug, "MIDGARD_MESA_DEBUG", debug_options, 0)
62
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070063unsigned SHADER_DB_COUNT = 0;
64
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010065int midgard_debug = 0;
66
67#define DBG(fmt, ...) \
68 do { if (midgard_debug & MIDGARD_DBG_MSGS) \
69 fprintf(stderr, "%s:%d: "fmt, \
70 __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0)
71
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +000072static bool
73midgard_is_branch_unit(unsigned unit)
74{
75 return (unit == ALU_ENAB_BRANCH) || (unit == ALU_ENAB_BR_COMPACT);
76}
77
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +000078static void
79midgard_block_add_successor(midgard_block *block, midgard_block *successor)
80{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -070081 assert(block);
82 assert(successor);
83
84 /* Deduplicate */
85 for (unsigned i = 0; i < block->nr_successors; ++i) {
86 if (block->successors[i] == successor)
87 return;
88 }
89
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +000090 block->successors[block->nr_successors++] = successor;
91 assert(block->nr_successors <= ARRAY_SIZE(block->successors));
92}
93
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000094/* Helpers to generate midgard_instruction's using macro magic, since every
95 * driver seems to do it that way */
96
97#define EMIT(op, ...) emit_mir_instruction(ctx, v_##op(__VA_ARGS__));
Alyssa Rosenzweig56f9b472019-06-14 16:03:01 -070098
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -070099#define M_LOAD_STORE(name, store) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000100 static midgard_instruction m_##name(unsigned ssa, unsigned address) { \
101 midgard_instruction i = { \
102 .type = TAG_LOAD_STORE_4, \
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -0700103 .mask = 0xF, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000104 .ssa_args = { \
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700105 .dest = -1, \
106 .src = { -1, -1, -1 }, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000107 }, \
108 .load_store = { \
109 .op = midgard_op_##name, \
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000110 .swizzle = SWIZZLE_XYZW, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000111 .address = address \
112 } \
113 }; \
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700114 \
115 if (store) \
116 i.ssa_args.src[0] = ssa; \
117 else \
118 i.ssa_args.dest = ssa; \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000119 \
120 return i; \
121 }
122
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700123#define M_LOAD(name) M_LOAD_STORE(name, false)
124#define M_STORE(name) M_LOAD_STORE(name, true)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000125
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000126/* Inputs a NIR ALU source, with modifiers attached if necessary, and outputs
127 * the corresponding Midgard source */
128
129static midgard_vector_alu_src
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700130vector_alu_modifiers(nir_alu_src *src, bool is_int, unsigned broadcast_count,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700131 bool half, bool sext)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000132{
133 if (!src) return blank_alu_src;
134
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700135 /* Figure out how many components there are so we can adjust the
136 * swizzle. Specifically we want to broadcast the last channel so
137 * things like ball2/3 work
138 */
139
140 if (broadcast_count) {
141 uint8_t last_component = src->swizzle[broadcast_count - 1];
142
143 for (unsigned c = broadcast_count; c < NIR_MAX_VEC_COMPONENTS; ++c) {
144 src->swizzle[c] = last_component;
145 }
146 }
147
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000148 midgard_vector_alu_src alu_src = {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000149 .rep_low = 0,
150 .rep_high = 0,
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700151 .half = half,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000152 .swizzle = SWIZZLE_FROM_ARRAY(src->swizzle)
153 };
154
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000155 if (is_int) {
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000156 alu_src.mod = midgard_int_normal;
157
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700158 /* Sign/zero-extend if needed */
159
160 if (half) {
161 alu_src.mod = sext ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700162 midgard_int_sign_extend
163 : midgard_int_zero_extend;
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700164 }
165
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000166 /* These should have been lowered away */
167 assert(!(src->abs || src->negate));
168 } else {
169 alu_src.mod = (src->abs << 0) | (src->negate << 1);
170 }
171
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000172 return alu_src;
173}
174
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000175/* load/store instructions have both 32-bit and 16-bit variants, depending on
176 * whether we are using vectors composed of highp or mediump. At the moment, we
177 * don't support half-floats -- this requires changes in other parts of the
178 * compiler -- therefore the 16-bit versions are commented out. */
179
Alyssa Rosenzweig74ab80b2019-05-14 04:11:36 +0000180//M_LOAD(ld_attr_16);
181M_LOAD(ld_attr_32);
182//M_LOAD(ld_vary_16);
183M_LOAD(ld_vary_32);
184//M_LOAD(ld_uniform_16);
185M_LOAD(ld_uniform_32);
186M_LOAD(ld_color_buffer_8);
187//M_STORE(st_vary_16);
188M_STORE(st_vary_32);
Alyssa Rosenzweigbe568402019-07-25 07:09:40 -0700189M_LOAD(st_cubemap_coords);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000190
191static midgard_instruction
192v_alu_br_compact_cond(midgard_jmp_writeout_op op, unsigned tag, signed offset, unsigned cond)
193{
194 midgard_branch_cond branch = {
195 .op = op,
196 .dest_tag = tag,
197 .offset = offset,
198 .cond = cond
199 };
200
201 uint16_t compact;
202 memcpy(&compact, &branch, sizeof(branch));
203
204 midgard_instruction ins = {
205 .type = TAG_ALU_4,
206 .unit = ALU_ENAB_BR_COMPACT,
207 .prepacked_branch = true,
208 .compact_branch = true,
Alyssa Rosenzweig29416a82019-07-30 12:20:24 -0700209 .br_compact = compact,
210 .ssa_args = {
211 .dest = -1,
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700212 .src = { -1, -1, -1 },
Alyssa Rosenzweig29416a82019-07-30 12:20:24 -0700213 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000214 };
215
216 if (op == midgard_jmp_writeout_op_writeout)
217 ins.writeout = true;
218
219 return ins;
220}
221
222static midgard_instruction
223v_branch(bool conditional, bool invert)
224{
225 midgard_instruction ins = {
226 .type = TAG_ALU_4,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000227 .unit = ALU_ENAB_BRANCH,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000228 .compact_branch = true,
229 .branch = {
230 .conditional = conditional,
231 .invert_conditional = invert
Alyssa Rosenzweig29416a82019-07-30 12:20:24 -0700232 },
233 .ssa_args = {
234 .dest = -1,
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700235 .src = { -1, -1, -1 },
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000236 }
237 };
238
239 return ins;
240}
241
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000242static midgard_branch_extended
243midgard_create_branch_extended( midgard_condition cond,
244 midgard_jmp_writeout_op op,
245 unsigned dest_tag,
246 signed quadword_offset)
247{
Alyssa Rosenzweig13ee87c2019-07-29 09:15:32 -0700248 /* The condition code is actually a LUT describing a function to
249 * combine multiple condition codes. However, we only support a single
250 * condition code at the moment, so we just duplicate over a bunch of
251 * times. */
252
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000253 uint16_t duplicated_cond =
254 (cond << 14) |
255 (cond << 12) |
256 (cond << 10) |
257 (cond << 8) |
258 (cond << 6) |
259 (cond << 4) |
260 (cond << 2) |
261 (cond << 0);
262
263 midgard_branch_extended branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +0000264 .op = op,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000265 .dest_tag = dest_tag,
266 .offset = quadword_offset,
267 .cond = duplicated_cond
268 };
269
270 return branch;
271}
272
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000273static void
274attach_constants(compiler_context *ctx, midgard_instruction *ins, void *constants, int name)
275{
276 ins->has_constants = true;
277 memcpy(&ins->constants, constants, 16);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000278}
279
280static int
Timothy Arceri035759b2019-03-29 12:39:48 +1100281glsl_type_size(const struct glsl_type *type, bool bindless)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000282{
283 return glsl_count_attribute_slots(type, false);
284}
285
286/* Lower fdot2 to a vector multiplication followed by channel addition */
287static void
288midgard_nir_lower_fdot2_body(nir_builder *b, nir_alu_instr *alu)
289{
290 if (alu->op != nir_op_fdot2)
291 return;
292
293 b->cursor = nir_before_instr(&alu->instr);
294
295 nir_ssa_def *src0 = nir_ssa_for_alu_src(b, alu, 0);
296 nir_ssa_def *src1 = nir_ssa_for_alu_src(b, alu, 1);
297
298 nir_ssa_def *product = nir_fmul(b, src0, src1);
299
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700300 nir_ssa_def *sum = nir_fadd(b,
301 nir_channel(b, product, 0),
302 nir_channel(b, product, 1));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000303
304 /* Replace the fdot2 with this sum */
305 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(sum));
306}
307
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000308static int
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700309midgard_sysval_for_ssbo(nir_intrinsic_instr *instr)
310{
311 nir_src index = instr->src[0];
312 assert(nir_src_is_const(index));
313 uint32_t uindex = nir_src_as_uint(index);
314
315 return PAN_SYSVAL(SSBO, uindex);
316}
317
318static int
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000319midgard_nir_sysval_for_intrinsic(nir_intrinsic_instr *instr)
320{
321 switch (instr->intrinsic) {
322 case nir_intrinsic_load_viewport_scale:
323 return PAN_SYSVAL_VIEWPORT_SCALE;
324 case nir_intrinsic_load_viewport_offset:
325 return PAN_SYSVAL_VIEWPORT_OFFSET;
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700326 case nir_intrinsic_load_ssbo:
327 return midgard_sysval_for_ssbo(instr);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000328 default:
329 return -1;
330 }
331}
332
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200333static int sysval_for_instr(compiler_context *ctx, nir_instr *instr,
334 unsigned *dest)
335{
336 nir_intrinsic_instr *intr;
337 nir_dest *dst = NULL;
Boris Brezillonc3558862019-06-17 22:13:04 +0200338 nir_tex_instr *tex;
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200339 int sysval = -1;
340
341 switch (instr->type) {
342 case nir_instr_type_intrinsic:
343 intr = nir_instr_as_intrinsic(instr);
344 sysval = midgard_nir_sysval_for_intrinsic(intr);
345 dst = &intr->dest;
346 break;
Boris Brezillonc3558862019-06-17 22:13:04 +0200347 case nir_instr_type_tex:
348 tex = nir_instr_as_tex(instr);
349 if (tex->op != nir_texop_txs)
350 break;
351
352 sysval = PAN_SYSVAL(TEXTURE_SIZE,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700353 PAN_TXS_SYSVAL_ID(tex->texture_index,
354 nir_tex_instr_dest_size(tex) -
355 (tex->is_array ? 1 : 0),
356 tex->is_array));
Boris Brezillonc3558862019-06-17 22:13:04 +0200357 dst = &tex->dest;
358 break;
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200359 default:
360 break;
361 }
362
363 if (dest && dst)
364 *dest = nir_dest_index(ctx, dst);
365
366 return sysval;
367}
368
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000369static void
370midgard_nir_assign_sysval_body(compiler_context *ctx, nir_instr *instr)
371{
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200372 int sysval;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000373
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200374 sysval = sysval_for_instr(ctx, instr, NULL);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000375 if (sysval < 0)
376 return;
377
378 /* We have a sysval load; check if it's already been assigned */
379
380 if (_mesa_hash_table_u64_search(ctx->sysval_to_id, sysval))
381 return;
382
383 /* It hasn't -- so assign it now! */
384
385 unsigned id = ctx->sysval_count++;
386 _mesa_hash_table_u64_insert(ctx->sysval_to_id, sysval, (void *) ((uintptr_t) id + 1));
387 ctx->sysvals[id] = sysval;
388}
389
390static void
391midgard_nir_assign_sysvals(compiler_context *ctx, nir_shader *shader)
392{
393 ctx->sysval_count = 0;
394
395 nir_foreach_function(function, shader) {
396 if (!function->impl) continue;
397
398 nir_foreach_block(block, function->impl) {
399 nir_foreach_instr_safe(instr, block) {
400 midgard_nir_assign_sysval_body(ctx, instr);
401 }
402 }
403 }
404}
405
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000406static bool
407midgard_nir_lower_fdot2(nir_shader *shader)
408{
409 bool progress = false;
410
411 nir_foreach_function(function, shader) {
412 if (!function->impl) continue;
413
414 nir_builder _b;
415 nir_builder *b = &_b;
416 nir_builder_init(b, function->impl);
417
418 nir_foreach_block(block, function->impl) {
419 nir_foreach_instr_safe(instr, block) {
420 if (instr->type != nir_instr_type_alu) continue;
421
422 nir_alu_instr *alu = nir_instr_as_alu(instr);
423 midgard_nir_lower_fdot2_body(b, alu);
424
425 progress |= true;
426 }
427 }
428
429 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
430
431 }
432
433 return progress;
434}
435
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700436/* Flushes undefined values to zero */
437
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000438static void
439optimise_nir(nir_shader *nir)
440{
441 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700442 unsigned lower_flrp =
443 (nir->options->lower_flrp16 ? 16 : 0) |
444 (nir->options->lower_flrp32 ? 32 : 0) |
445 (nir->options->lower_flrp64 ? 64 : 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000446
447 NIR_PASS(progress, nir, nir_lower_regs_to_ssa);
448 NIR_PASS(progress, nir, midgard_nir_lower_fdot2);
Alyssa Rosenzweigc51312b2019-06-05 15:12:58 +0000449 NIR_PASS(progress, nir, nir_lower_idiv);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000450
Boris Brezillonc3558862019-06-17 22:13:04 +0200451 nir_lower_tex_options lower_tex_1st_pass_options = {
Alyssa Rosenzweig6ae4f9c2019-06-11 09:51:29 -0700452 .lower_rect = true,
453 .lower_txp = ~0
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000454 };
455
Boris Brezillonc3558862019-06-17 22:13:04 +0200456 nir_lower_tex_options lower_tex_2nd_pass_options = {
457 .lower_txs_lod = true,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700458 };
Boris Brezillonc3558862019-06-17 22:13:04 +0200459
460 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_1st_pass_options);
461 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_2nd_pass_options);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000462
463 do {
464 progress = false;
465
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000466 NIR_PASS(progress, nir, nir_lower_var_copies);
467 NIR_PASS(progress, nir, nir_lower_vars_to_ssa);
468
469 NIR_PASS(progress, nir, nir_copy_prop);
470 NIR_PASS(progress, nir, nir_opt_dce);
471 NIR_PASS(progress, nir, nir_opt_dead_cf);
472 NIR_PASS(progress, nir, nir_opt_cse);
473 NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true);
474 NIR_PASS(progress, nir, nir_opt_algebraic);
475 NIR_PASS(progress, nir, nir_opt_constant_folding);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700476
477 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700478 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700479 NIR_PASS(lower_flrp_progress,
480 nir,
481 nir_lower_flrp,
482 lower_flrp,
483 false /* always_precise */,
484 nir->options->lower_ffma);
485 if (lower_flrp_progress) {
486 NIR_PASS(progress, nir,
487 nir_opt_constant_folding);
488 progress = true;
489 }
490
491 /* Nothing should rematerialize any flrps, so we only
492 * need to do this lowering once.
493 */
494 lower_flrp = 0;
495 }
496
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000497 NIR_PASS(progress, nir, nir_opt_undef);
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700498 NIR_PASS(progress, nir, nir_undef_to_zero);
499
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000500 NIR_PASS(progress, nir, nir_opt_loop_unroll,
501 nir_var_shader_in |
502 nir_var_shader_out |
503 nir_var_function_temp);
504
Alyssa Rosenzweig94029702019-06-17 11:12:51 -0700505 NIR_PASS(progress, nir, nir_opt_vectorize);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000506 } while (progress);
507
508 /* Must be run at the end to prevent creation of fsin/fcos ops */
509 NIR_PASS(progress, nir, midgard_nir_scale_trig);
510
511 do {
512 progress = false;
513
514 NIR_PASS(progress, nir, nir_opt_dce);
515 NIR_PASS(progress, nir, nir_opt_algebraic);
516 NIR_PASS(progress, nir, nir_opt_constant_folding);
517 NIR_PASS(progress, nir, nir_copy_prop);
518 } while (progress);
519
520 NIR_PASS(progress, nir, nir_opt_algebraic_late);
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000521
522 /* We implement booleans as 32-bit 0/~0 */
523 NIR_PASS(progress, nir, nir_lower_bool_to_int32);
524
525 /* Now that booleans are lowered, we can run out late opts */
Alyssa Rosenzweigeffe6fb02019-03-25 02:49:04 +0000526 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_late);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000527
Alyssa Rosenzweigeffe6fb02019-03-25 02:49:04 +0000528 /* Lower mods for float ops only. Integer ops don't support modifiers
529 * (saturate doesn't make sense on integers, neg/abs require dedicated
530 * instructions) */
531
532 NIR_PASS(progress, nir, nir_lower_to_source_mods, nir_lower_float_source_mods);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000533 NIR_PASS(progress, nir, nir_copy_prop);
534 NIR_PASS(progress, nir, nir_opt_dce);
535
536 /* Take us out of SSA */
537 NIR_PASS(progress, nir, nir_lower_locals_to_regs);
538 NIR_PASS(progress, nir, nir_convert_from_ssa, true);
539
540 /* We are a vector architecture; write combine where possible */
541 NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest);
542 NIR_PASS(progress, nir, nir_lower_vec_to_movs);
543
544 NIR_PASS(progress, nir, nir_opt_dce);
545}
546
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000547/* Do not actually emit a load; instead, cache the constant for inlining */
548
549static void
550emit_load_const(compiler_context *ctx, nir_load_const_instr *instr)
551{
552 nir_ssa_def def = instr->def;
553
Tomeu Vizoso554975b2019-05-07 17:28:36 +0200554 float *v = rzalloc_array(NULL, float, 4);
Karol Herbst14531d62019-03-27 00:59:03 +0100555 nir_const_load_to_arr(v, instr, f32);
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -0700556
557 /* Shifted for SSA, +1 for off-by-one */
558 _mesa_hash_table_u64_insert(ctx->ssa_constants, (def.index << 1) + 1, v);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000559}
560
Alyssa Rosenzweige1693012019-07-24 12:52:27 -0700561/* Normally constants are embedded implicitly, but for I/O and such we have to
562 * explicitly emit a move with the constant source */
563
564static void
565emit_explicit_constant(compiler_context *ctx, unsigned node, unsigned to)
566{
567 void *constant_value = _mesa_hash_table_u64_search(ctx->ssa_constants, node + 1);
568
569 if (constant_value) {
570 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, to);
571 attach_constants(ctx, &ins, constant_value, node + 1);
572 emit_mir_instruction(ctx, ins);
573 }
574}
575
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000576static bool
577nir_is_non_scalar_swizzle(nir_alu_src *src, unsigned nr_components)
578{
579 unsigned comp = src->swizzle[0];
580
581 for (unsigned c = 1; c < nr_components; ++c) {
582 if (src->swizzle[c] != comp)
583 return true;
584 }
585
586 return false;
587}
588
589/* Midgard puts scalar conditionals in r31.w; move an arbitrary source (the
590 * output of a conditional test) into that register */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000591
592static void
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000593emit_condition(compiler_context *ctx, nir_src *src, bool for_branch, unsigned component)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000594{
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +0000595 int condition = nir_src_index(ctx, src);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000596
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000597 /* Source to swizzle the desired component into w */
598
599 const midgard_vector_alu_src alu_src = {
600 .swizzle = SWIZZLE(component, component, component, component),
601 };
602
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000603 /* There is no boolean move instruction. Instead, we simulate a move by
604 * ANDing the condition with itself to get it into r31.w */
605
606 midgard_instruction ins = {
607 .type = TAG_ALU_4,
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000608
609 /* We need to set the conditional as close as possible */
610 .precede_break = true,
611 .unit = for_branch ? UNIT_SMUL : UNIT_SADD,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -0700612 .mask = 1 << COMPONENT_W,
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000613
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000614 .ssa_args = {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700615 .src = { condition, condition, -1 },
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000616 .dest = SSA_FIXED_REGISTER(31),
617 },
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700618
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000619 .alu = {
620 .op = midgard_alu_op_iand,
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700621 .outmod = midgard_outmod_int_wrap,
Alyssa Rosenzweig576a27f2019-04-30 02:19:26 +0000622 .reg_mode = midgard_reg_mode_32,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000623 .dest_override = midgard_dest_override_none,
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000624 .src1 = vector_alu_srco_unsigned(alu_src),
625 .src2 = vector_alu_srco_unsigned(alu_src)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000626 },
627 };
628
629 emit_mir_instruction(ctx, ins);
630}
631
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000632/* Or, for mixed conditions (with csel_v), here's a vector version using all of
633 * r31 instead */
634
635static void
636emit_condition_mixed(compiler_context *ctx, nir_alu_src *src, unsigned nr_comp)
637{
638 int condition = nir_src_index(ctx, &src->src);
639
640 /* Source to swizzle the desired component into w */
641
642 const midgard_vector_alu_src alu_src = {
643 .swizzle = SWIZZLE_FROM_ARRAY(src->swizzle),
644 };
645
646 /* There is no boolean move instruction. Instead, we simulate a move by
647 * ANDing the condition with itself to get it into r31.w */
648
649 midgard_instruction ins = {
650 .type = TAG_ALU_4,
651 .precede_break = true,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -0700652 .mask = mask_of(nr_comp),
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000653 .ssa_args = {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700654 .src = { condition, condition, -1 },
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000655 .dest = SSA_FIXED_REGISTER(31),
656 },
657 .alu = {
658 .op = midgard_alu_op_iand,
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700659 .outmod = midgard_outmod_int_wrap,
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000660 .reg_mode = midgard_reg_mode_32,
661 .dest_override = midgard_dest_override_none,
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000662 .src1 = vector_alu_srco_unsigned(alu_src),
663 .src2 = vector_alu_srco_unsigned(alu_src)
664 },
665 };
666
667 emit_mir_instruction(ctx, ins);
668}
669
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000670#define ALU_CASE(nir, _op) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000671 case nir_op_##nir: \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000672 op = midgard_alu_op_##_op; \
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700673 assert(src_bitsize == dst_bitsize); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000674 break;
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700675
676#define ALU_CASE_BCAST(nir, _op, count) \
677 case nir_op_##nir: \
678 op = midgard_alu_op_##_op; \
679 broadcast_swizzle = count; \
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700680 assert(src_bitsize == dst_bitsize); \
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700681 break;
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000682static bool
683nir_is_fzero_constant(nir_src src)
684{
685 if (!nir_src_is_const(src))
686 return false;
687
688 for (unsigned c = 0; c < nir_src_num_components(src); ++c) {
689 if (nir_src_comp_as_float(src, c) != 0.0)
690 return false;
691 }
692
693 return true;
694}
695
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700696/* Analyze the sizes of the inputs to determine which reg mode. Ops needed
697 * special treatment override this anyway. */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700698
699static midgard_reg_mode
700reg_mode_for_nir(nir_alu_instr *instr)
701{
702 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
703
704 switch (src_bitsize) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700705 case 8:
706 return midgard_reg_mode_8;
707 case 16:
708 return midgard_reg_mode_16;
709 case 32:
710 return midgard_reg_mode_32;
711 case 64:
712 return midgard_reg_mode_64;
713 default:
714 unreachable("Invalid bit size");
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700715 }
716}
717
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000718static void
719emit_alu(compiler_context *ctx, nir_alu_instr *instr)
720{
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -0700721 /* Derivatives end up emitted on the texture pipe, not the ALUs. This
722 * is handled elsewhere */
723
724 if (instr->op == nir_op_fddx || instr->op == nir_op_fddy) {
725 midgard_emit_derivatives(ctx, instr);
726 return;
727 }
728
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000729 bool is_ssa = instr->dest.dest.is_ssa;
730
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +0000731 unsigned dest = nir_dest_index(ctx, &instr->dest.dest);
Alyssa Rosenzweigf42e5be2019-07-01 15:28:37 -0700732 unsigned nr_components = nir_dest_num_components(instr->dest.dest);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000733 unsigned nr_inputs = nir_op_infos[instr->op].num_inputs;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000734
735 /* Most Midgard ALU ops have a 1:1 correspondance to NIR ops; these are
736 * supported. A few do not and are commented for now. Also, there are a
737 * number of NIR ops which Midgard does not support and need to be
738 * lowered, also TODO. This switch block emits the opcode and calling
739 * convention of the Midgard instruction; actual packing is done in
740 * emit_alu below */
741
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000742 unsigned op;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000743
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700744 /* Number of components valid to check for the instruction (the rest
745 * will be forced to the last), or 0 to use as-is. Relevant as
746 * ball-type instructions have a channel count in NIR but are all vec4
747 * in Midgard */
748
749 unsigned broadcast_swizzle = 0;
750
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700751 /* What register mode should we operate in? */
752 midgard_reg_mode reg_mode =
753 reg_mode_for_nir(instr);
754
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700755 /* Do we need a destination override? Used for inline
756 * type conversion */
757
758 midgard_dest_override dest_override =
759 midgard_dest_override_none;
760
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700761 /* Should we use a smaller respective source and sign-extend? */
762
763 bool half_1 = false, sext_1 = false;
764 bool half_2 = false, sext_2 = false;
765
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700766 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
767 unsigned dst_bitsize = nir_dest_bit_size(instr->dest.dest);
768
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000769 switch (instr->op) {
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000770 ALU_CASE(fadd, fadd);
771 ALU_CASE(fmul, fmul);
772 ALU_CASE(fmin, fmin);
773 ALU_CASE(fmax, fmax);
774 ALU_CASE(imin, imin);
775 ALU_CASE(imax, imax);
Alyssa Rosenzweig2e7555b2019-04-05 05:16:54 +0000776 ALU_CASE(umin, umin);
777 ALU_CASE(umax, umax);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000778 ALU_CASE(ffloor, ffloor);
Alyssa Rosenzweigc6be9962019-02-23 01:12:10 +0000779 ALU_CASE(fround_even, froundeven);
780 ALU_CASE(ftrunc, ftrunc);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000781 ALU_CASE(fceil, fceil);
782 ALU_CASE(fdot3, fdot3);
783 ALU_CASE(fdot4, fdot4);
784 ALU_CASE(iadd, iadd);
785 ALU_CASE(isub, isub);
786 ALU_CASE(imul, imul);
Alyssa Rosenzweig9f14e202019-06-05 15:18:35 +0000787
788 /* Zero shoved as second-arg */
789 ALU_CASE(iabs, iabsdiff);
790
Jason Ekstrandf2dc0f22019-05-06 11:45:46 -0500791 ALU_CASE(mov, imov);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000792
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000793 ALU_CASE(feq32, feq);
794 ALU_CASE(fne32, fne);
795 ALU_CASE(flt32, flt);
796 ALU_CASE(ieq32, ieq);
797 ALU_CASE(ine32, ine);
798 ALU_CASE(ilt32, ilt);
Alyssa Rosenzweigb8739c22019-03-26 04:00:33 +0000799 ALU_CASE(ult32, ult);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000800
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000801 /* We don't have a native b2f32 instruction. Instead, like many
802 * GPUs, we exploit booleans as 0/~0 for false/true, and
803 * correspondingly AND
804 * by 1.0 to do the type conversion. For the moment, prime us
805 * to emit:
806 *
807 * iand [whatever], #0
808 *
809 * At the end of emit_alu (as MIR), we'll fix-up the constant
810 */
811
812 ALU_CASE(b2f32, iand);
813 ALU_CASE(b2i32, iand);
814
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000815 /* Likewise, we don't have a dedicated f2b32 instruction, but
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000816 * we can do a "not equal to 0.0" test. */
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000817
818 ALU_CASE(f2b32, fne);
Alyssa Rosenzweig5b95fef2019-03-25 00:56:48 +0000819 ALU_CASE(i2b32, ine);
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000820
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000821 ALU_CASE(frcp, frcp);
822 ALU_CASE(frsq, frsqrt);
823 ALU_CASE(fsqrt, fsqrt);
824 ALU_CASE(fexp2, fexp2);
825 ALU_CASE(flog2, flog2);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000826
Alyssa Rosenzweig73bf6692019-06-05 15:03:02 -0700827 ALU_CASE(f2i32, f2i_rtz);
828 ALU_CASE(f2u32, f2u_rtz);
829 ALU_CASE(i2f32, i2f_rtz);
830 ALU_CASE(u2f32, u2f_rtz);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000831
Alyssa Rosenzweigd8c084d2019-07-01 17:41:20 -0700832 ALU_CASE(f2i16, f2i_rtz);
833 ALU_CASE(f2u16, f2u_rtz);
834 ALU_CASE(i2f16, i2f_rtz);
835 ALU_CASE(u2f16, u2f_rtz);
836
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000837 ALU_CASE(fsin, fsin);
838 ALU_CASE(fcos, fcos);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000839
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -0700840 /* We'll set invert */
841 ALU_CASE(inot, imov);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000842 ALU_CASE(iand, iand);
843 ALU_CASE(ior, ior);
844 ALU_CASE(ixor, ixor);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000845 ALU_CASE(ishl, ishl);
846 ALU_CASE(ishr, iasr);
847 ALU_CASE(ushr, ilsr);
848
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700849 ALU_CASE_BCAST(b32all_fequal2, fball_eq, 2);
850 ALU_CASE_BCAST(b32all_fequal3, fball_eq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000851 ALU_CASE(b32all_fequal4, fball_eq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000852
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700853 ALU_CASE_BCAST(b32any_fnequal2, fbany_neq, 2);
854 ALU_CASE_BCAST(b32any_fnequal3, fbany_neq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000855 ALU_CASE(b32any_fnequal4, fbany_neq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000856
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700857 ALU_CASE_BCAST(b32all_iequal2, iball_eq, 2);
858 ALU_CASE_BCAST(b32all_iequal3, iball_eq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000859 ALU_CASE(b32all_iequal4, iball_eq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000860
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700861 ALU_CASE_BCAST(b32any_inequal2, ibany_neq, 2);
862 ALU_CASE_BCAST(b32any_inequal3, ibany_neq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000863 ALU_CASE(b32any_inequal4, ibany_neq);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000864
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +0000865 /* Source mods will be shoved in later */
866 ALU_CASE(fabs, fmov);
867 ALU_CASE(fneg, fmov);
868 ALU_CASE(fsat, fmov);
869
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700870 /* For size conversion, we use a move. Ideally though we would squash
871 * these ops together; maybe that has to happen after in NIR as part of
872 * propagation...? An earlier algebraic pass ensured we step down by
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700873 * only / exactly one size. If stepping down, we use a dest override to
874 * reduce the size; if stepping up, we use a larger-sized move with a
875 * half source and a sign/zero-extension modifier */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700876
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700877 case nir_op_i2i8:
878 case nir_op_i2i16:
879 case nir_op_i2i32:
880 /* If we end up upscale, we'll need a sign-extend on the
881 * operand (the second argument) */
882
883 sext_2 = true;
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700884 case nir_op_u2u8:
885 case nir_op_u2u16:
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700886 case nir_op_u2u32: {
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700887 op = midgard_alu_op_imov;
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700888
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700889 if (dst_bitsize == (src_bitsize * 2)) {
890 /* Converting up */
891 half_2 = true;
892
893 /* Use a greater register mode */
894 reg_mode++;
895 } else if (src_bitsize == (dst_bitsize * 2)) {
896 /* Converting down */
897 dest_override = midgard_dest_override_lower;
898 }
899
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700900 break;
901 }
902
Alyssa Rosenzweig954c6af2019-07-01 17:38:26 -0700903 case nir_op_f2f16: {
904 assert(src_bitsize == 32);
905
906 op = midgard_alu_op_fmov;
907 dest_override = midgard_dest_override_lower;
908 break;
909 }
910
911 case nir_op_f2f32: {
912 assert(src_bitsize == 16);
913
914 op = midgard_alu_op_fmov;
915 half_2 = true;
916 reg_mode++;
917 break;
918 }
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700919
Alyssa Rosenzweig954c6af2019-07-01 17:38:26 -0700920
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +0000921 /* For greater-or-equal, we lower to less-or-equal and flip the
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000922 * arguments */
923
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +0000924 case nir_op_fge:
925 case nir_op_fge32:
926 case nir_op_ige32:
927 case nir_op_uge32: {
928 op =
929 instr->op == nir_op_fge ? midgard_alu_op_fle :
930 instr->op == nir_op_fge32 ? midgard_alu_op_fle :
931 instr->op == nir_op_ige32 ? midgard_alu_op_ile :
932 instr->op == nir_op_uge32 ? midgard_alu_op_ule :
933 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000934
935 /* Swap via temporary */
936 nir_alu_src temp = instr->src[1];
937 instr->src[1] = instr->src[0];
938 instr->src[0] = temp;
939
940 break;
941 }
942
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000943 case nir_op_b32csel: {
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000944 /* Midgard features both fcsel and icsel, depending on
945 * the type of the arguments/output. However, as long
946 * as we're careful we can _always_ use icsel and
947 * _never_ need fcsel, since the latter does additional
948 * floating-point-specific processing whereas the
949 * former just moves bits on the wire. It's not obvious
950 * why these are separate opcodes, save for the ability
951 * to do things like sat/pos/abs/neg for free */
Alyssa Rosenzweig3d7874c2019-05-03 01:54:16 +0000952
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000953 bool mixed = nir_is_non_scalar_swizzle(&instr->src[0], nr_components);
954 op = mixed ? midgard_alu_op_icsel_v : midgard_alu_op_icsel;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000955
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000956 /* csel works as a two-arg in Midgard, since the condition is hardcoded in r31.w */
957 nr_inputs = 2;
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000958
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000959 /* Emit the condition into r31 */
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000960
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000961 if (mixed)
962 emit_condition_mixed(ctx, &instr->src[0], nr_components);
963 else
964 emit_condition(ctx, &instr->src[0].src, false, instr->src[0].swizzle[0]);
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000965
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000966 /* The condition is the first argument; move the other
967 * arguments up one to be a binary instruction for
968 * Midgard */
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000969
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000970 memmove(instr->src, instr->src + 1, 2 * sizeof(nir_alu_src));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000971 break;
972 }
973
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000974 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +0100975 DBG("Unhandled ALU op %s\n", nir_op_infos[instr->op].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000976 assert(0);
977 return;
978 }
979
Alyssa Rosenzweig0a13bab2019-05-15 01:16:51 +0000980 /* Midgard can perform certain modifiers on output of an ALU op */
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700981 unsigned outmod;
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000982
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700983 if (midgard_is_integer_out_op(op)) {
984 outmod = midgard_outmod_int_wrap;
985 } else {
986 bool sat = instr->dest.saturate || instr->op == nir_op_fsat;
987 outmod = sat ? midgard_outmod_sat : midgard_outmod_none;
988 }
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +0000989
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000990 /* fmax(a, 0.0) can turn into a .pos modifier as an optimization */
991
992 if (instr->op == nir_op_fmax) {
993 if (nir_is_fzero_constant(instr->src[0].src)) {
994 op = midgard_alu_op_fmov;
995 nr_inputs = 1;
996 outmod = midgard_outmod_pos;
997 instr->src[0] = instr->src[1];
998 } else if (nir_is_fzero_constant(instr->src[1].src)) {
999 op = midgard_alu_op_fmov;
1000 nr_inputs = 1;
1001 outmod = midgard_outmod_pos;
1002 }
1003 }
1004
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001005 /* Fetch unit, quirks, etc information */
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +00001006 unsigned opcode_props = alu_opcode_props[op].props;
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001007 bool quirk_flipped_r24 = opcode_props & QUIRK_FLIPPED_R24;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001008
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001009 /* src0 will always exist afaik, but src1 will not for 1-argument
1010 * instructions. The latter can only be fetched if the instruction
1011 * needs it, or else we may segfault. */
1012
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001013 unsigned src0 = nir_alu_src_index(ctx, &instr->src[0]);
1014 unsigned src1 = nr_inputs == 2 ? nir_alu_src_index(ctx, &instr->src[1]) : SSA_UNUSED_0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001015
1016 /* Rather than use the instruction generation helpers, we do it
1017 * ourselves here to avoid the mess */
1018
1019 midgard_instruction ins = {
1020 .type = TAG_ALU_4,
1021 .ssa_args = {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001022 .src = {
1023 quirk_flipped_r24 ? SSA_UNUSED_1 : src0,
1024 quirk_flipped_r24 ? src0 : src1,
1025 -1
1026 },
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001027 .dest = dest,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001028 }
1029 };
1030
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001031 nir_alu_src *nirmods[2] = { NULL };
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001032
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001033 if (nr_inputs == 2) {
1034 nirmods[0] = &instr->src[0];
1035 nirmods[1] = &instr->src[1];
1036 } else if (nr_inputs == 1) {
1037 nirmods[quirk_flipped_r24] = &instr->src[0];
1038 } else {
1039 assert(0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001040 }
1041
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001042 /* These were lowered to a move, so apply the corresponding mod */
1043
1044 if (instr->op == nir_op_fneg || instr->op == nir_op_fabs) {
1045 nir_alu_src *s = nirmods[quirk_flipped_r24];
1046
1047 if (instr->op == nir_op_fneg)
1048 s->negate = !s->negate;
1049
1050 if (instr->op == nir_op_fabs)
1051 s->abs = !s->abs;
1052 }
1053
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +00001054 bool is_int = midgard_is_integer_op(op);
1055
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001056 ins.mask = mask_of(nr_components);
1057
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001058 midgard_vector_alu alu = {
1059 .op = op,
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001060 .reg_mode = reg_mode,
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001061 .dest_override = dest_override,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001062 .outmod = outmod,
1063
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001064 .src1 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[0], is_int, broadcast_swizzle, half_1, sext_1)),
1065 .src2 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[1], is_int, broadcast_swizzle, half_2, sext_2)),
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001066 };
1067
1068 /* Apply writemask if non-SSA, keeping in mind that we can't write to components that don't exist */
1069
1070 if (!is_ssa)
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001071 ins.mask &= instr->dest.write_mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001072
1073 ins.alu = alu;
1074
1075 /* Late fixup for emulated instructions */
1076
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001077 if (instr->op == nir_op_b2f32 || instr->op == nir_op_b2i32) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001078 /* Presently, our second argument is an inline #0 constant.
1079 * Switch over to an embedded 1.0 constant (that can't fit
1080 * inline, since we're 32-bit, not 16-bit like the inline
1081 * constants) */
1082
1083 ins.ssa_args.inline_constant = false;
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001084 ins.ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001085 ins.has_constants = true;
Alyssa Rosenzweig9da46032019-03-24 16:07:31 +00001086
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001087 if (instr->op == nir_op_b2f32) {
1088 ins.constants[0] = 1.0f;
1089 } else {
1090 /* Type pun it into place */
1091 uint32_t one = 0x1;
1092 memcpy(&ins.constants[0], &one, sizeof(uint32_t));
1093 }
1094
1095 ins.alu.src2 = vector_alu_srco_unsigned(blank_alu_src_xxxx);
Alyssa Rosenzweig88c59792019-06-05 15:24:51 +00001096 } else if (nr_inputs == 1 && !quirk_flipped_r24) {
1097 /* Lots of instructions need a 0 plonked in */
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001098 ins.ssa_args.inline_constant = false;
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001099 ins.ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001100 ins.has_constants = true;
1101 ins.constants[0] = 0.0f;
Alyssa Rosenzweig9da46032019-03-24 16:07:31 +00001102 ins.alu.src2 = vector_alu_srco_unsigned(blank_alu_src_xxxx);
Alyssa Rosenzweigbcabcfe2019-04-25 04:25:33 +00001103 } else if (instr->op == nir_op_inot) {
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07001104 ins.invert = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001105 }
1106
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001107 if ((opcode_props & UNITS_ALL) == UNIT_VLUT) {
1108 /* To avoid duplicating the lookup tables (probably), true LUT
1109 * instructions can only operate as if they were scalars. Lower
1110 * them here by changing the component. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001111
1112 uint8_t original_swizzle[4];
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001113 memcpy(original_swizzle, nirmods[0]->swizzle, sizeof(nirmods[0]->swizzle));
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001114 unsigned orig_mask = ins.mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001115
1116 for (int i = 0; i < nr_components; ++i) {
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001117 /* Mask the associated component, dropping the
1118 * instruction if needed */
1119
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001120 ins.mask = 1 << i;
1121 ins.mask &= orig_mask;
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001122
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001123 if (!ins.mask)
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001124 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001125
1126 for (int j = 0; j < 4; ++j)
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001127 nirmods[0]->swizzle[j] = original_swizzle[i]; /* Pull from the correct component */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001128
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001129 ins.alu.src1 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[0], is_int, broadcast_swizzle, half_1, false));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001130 emit_mir_instruction(ctx, ins);
1131 }
1132 } else {
1133 emit_mir_instruction(ctx, ins);
1134 }
1135}
1136
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001137#undef ALU_CASE
1138
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001139/* Uniforms and UBOs use a shared code path, as uniforms are just (slightly
1140 * optimized) versions of UBO #0 */
1141
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001142void
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001143emit_ubo_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001144 compiler_context *ctx,
1145 unsigned dest,
1146 unsigned offset,
1147 nir_src *indirect_offset,
1148 unsigned index)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001149{
1150 /* TODO: half-floats */
1151
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001152 midgard_instruction ins = m_ld_uniform_32(dest, offset);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001153
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001154 /* TODO: Don't split */
1155 ins.load_store.varying_parameters = (offset & 7) << 7;
1156 ins.load_store.address = offset >> 3;
1157
1158 if (indirect_offset) {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001159 ins.ssa_args.src[1] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001160 ins.load_store.arg_2 = 0x80;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001161 } else {
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001162 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001163 }
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001164
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001165 ins.load_store.arg_1 = index;
1166
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001167 emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001168}
1169
1170static void
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001171emit_varying_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001172 compiler_context *ctx,
1173 unsigned dest, unsigned offset,
1174 unsigned nr_comp, unsigned component,
1175 nir_src *indirect_offset, nir_alu_type type)
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001176{
1177 /* XXX: Half-floats? */
1178 /* TODO: swizzle, mask */
1179
1180 midgard_instruction ins = m_ld_vary_32(dest, offset);
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001181 ins.mask = mask_of(nr_comp);
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001182 ins.load_store.swizzle = SWIZZLE_XYZW >> (2 * component);
1183
1184 midgard_varying_parameter p = {
1185 .is_varying = 1,
1186 .interpolation = midgard_interp_default,
1187 .flat = /*var->data.interpolation == INTERP_MODE_FLAT*/ 0
1188 };
1189
1190 unsigned u;
1191 memcpy(&u, &p, sizeof(p));
1192 ins.load_store.varying_parameters = u;
1193
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001194 if (indirect_offset)
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001195 ins.ssa_args.src[1] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001196 else
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001197 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001198
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001199 ins.load_store.arg_1 = 0x9E;
1200
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001201 /* Use the type appropriate load */
1202 switch (type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001203 case nir_type_uint:
1204 case nir_type_bool:
1205 ins.load_store.op = midgard_op_ld_vary_32u;
1206 break;
1207 case nir_type_int:
1208 ins.load_store.op = midgard_op_ld_vary_32i;
1209 break;
1210 case nir_type_float:
1211 ins.load_store.op = midgard_op_ld_vary_32;
1212 break;
1213 default:
1214 unreachable("Attempted to load unknown type");
1215 break;
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001216 }
1217
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001218 emit_mir_instruction(ctx, ins);
1219}
1220
1221static void
Boris Brezillonbd49c8f2019-06-14 09:59:20 +02001222emit_sysval_read(compiler_context *ctx, nir_instr *instr)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001223{
Alyssa Rosenzweig6d8490f2019-07-11 15:34:56 -07001224 unsigned dest = 0;
1225
Boris Brezillonbd49c8f2019-06-14 09:59:20 +02001226 /* Figure out which uniform this is */
1227 int sysval = sysval_for_instr(ctx, instr, &dest);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001228 void *val = _mesa_hash_table_u64_search(ctx->sysval_to_id, sysval);
1229
1230 /* Sysvals are prefix uniforms */
1231 unsigned uniform = ((uintptr_t) val) - 1;
1232
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001233 /* Emit the read itself -- this is never indirect */
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001234 emit_ubo_read(ctx, dest, uniform, NULL, 0);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001235}
1236
1237static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001238emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
1239{
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001240 unsigned offset = 0, reg;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001241
1242 switch (instr->intrinsic) {
1243 case nir_intrinsic_discard_if:
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +00001244 emit_condition(ctx, &instr->src[0], true, COMPONENT_X);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001245
1246 /* fallthrough */
1247
1248 case nir_intrinsic_discard: {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001249 bool conditional = instr->intrinsic == nir_intrinsic_discard_if;
1250 struct midgard_instruction discard = v_branch(conditional, false);
1251 discard.branch.target_type = TARGET_DISCARD;
1252 emit_mir_instruction(ctx, discard);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001253 break;
1254 }
1255
1256 case nir_intrinsic_load_uniform:
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001257 case nir_intrinsic_load_ubo:
1258 case nir_intrinsic_load_input: {
1259 bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform;
1260 bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo;
1261
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001262 /* Get the base type of the intrinsic */
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001263 /* TODO: Infer type? Does it matter? */
1264 nir_alu_type t =
1265 is_ubo ? nir_type_uint : nir_intrinsic_type(instr);
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001266 t = nir_alu_type_get_base_type(t);
1267
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001268 if (!is_ubo) {
1269 offset = nir_intrinsic_base(instr);
1270 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001271
Alyssa Rosenzweigc1715b52019-05-22 02:44:12 +00001272 unsigned nr_comp = nir_intrinsic_dest_components(instr);
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001273
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001274 nir_src *src_offset = nir_get_io_offset_src(instr);
1275
1276 bool direct = nir_src_is_const(*src_offset);
1277
1278 if (direct)
1279 offset += nir_src_as_uint(*src_offset);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001280
Alyssa Rosenzweig43568f22019-06-06 08:16:04 -07001281 /* We may need to apply a fractional offset */
1282 int component = instr->intrinsic == nir_intrinsic_load_input ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001283 nir_intrinsic_component(instr) : 0;
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001284 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001285
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001286 if (is_uniform && !ctx->is_blend) {
1287 emit_ubo_read(ctx, reg, ctx->sysval_count + offset, !direct ? &instr->src[0] : NULL, 0);
1288 } else if (is_ubo) {
1289 nir_src index = instr->src[0];
1290
1291 /* We don't yet support indirect UBOs. For indirect
1292 * block numbers (if that's possible), we don't know
1293 * enough about the hardware yet. For indirect sources,
1294 * we know what we need but we need to add some NIR
1295 * support for lowering correctly with respect to
1296 * 128-bit reads */
1297
1298 assert(nir_src_is_const(index));
1299 assert(nir_src_is_const(*src_offset));
1300
1301 /* TODO: Alignment */
1302 assert((offset & 0xF) == 0);
1303
1304 uint32_t uindex = nir_src_as_uint(index) + 1;
1305 emit_ubo_read(ctx, reg, offset / 16, NULL, uindex);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001306 } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) {
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001307 emit_varying_read(ctx, reg, offset, nr_comp, component, !direct ? &instr->src[0] : NULL, t);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001308 } else if (ctx->is_blend) {
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001309 /* For blend shaders, load the input color, which is
1310 * preloaded to r0 */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001311
Alyssa Rosenzweig13f61f22019-07-26 08:15:50 -07001312 midgard_instruction move = v_mov(SSA_FIXED_REGISTER(0), blank_alu_src, reg);
Alyssa Rosenzweig005d9b12019-05-20 00:46:48 +00001313 emit_mir_instruction(ctx, move);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001314 } else if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweig74ab80b2019-05-14 04:11:36 +00001315 midgard_instruction ins = m_ld_attr_32(reg, offset);
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001316 ins.load_store.arg_1 = 0x1E;
1317 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001318 ins.mask = mask_of(nr_comp);
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001319
1320 /* Use the type appropriate load */
1321 switch (t) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001322 case nir_type_uint:
1323 case nir_type_bool:
1324 ins.load_store.op = midgard_op_ld_attr_32u;
1325 break;
1326 case nir_type_int:
1327 ins.load_store.op = midgard_op_ld_attr_32i;
1328 break;
1329 case nir_type_float:
1330 ins.load_store.op = midgard_op_ld_attr_32;
1331 break;
1332 default:
1333 unreachable("Attempted to load unknown type");
1334 break;
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001335 }
1336
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001337 emit_mir_instruction(ctx, ins);
1338 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001339 DBG("Unknown load\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001340 assert(0);
1341 }
1342
1343 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001344 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001345
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001346 /* Reads 128-bit value raw off the tilebuffer during blending, tasty */
1347
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001348 case nir_intrinsic_load_raw_output_pan:
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001349 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001350 assert(ctx->is_blend);
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001351
1352 midgard_instruction ins = m_ld_color_buffer_8(reg, 0);
1353 emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001354 break;
1355
1356 case nir_intrinsic_load_blend_const_color_rgba: {
1357 assert(ctx->is_blend);
1358 reg = nir_dest_index(ctx, &instr->dest);
1359
1360 /* Blend constants are embedded directly in the shader and
1361 * patched in, so we use some magic routing */
1362
Alyssa Rosenzweig565c4462019-06-17 09:40:14 -07001363 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, reg);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001364 ins.has_constants = true;
1365 ins.has_blend_constant = true;
1366 emit_mir_instruction(ctx, ins);
1367 break;
1368 }
1369
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001370 case nir_intrinsic_store_output:
Karol Herbst1aabb792019-03-29 21:40:45 +01001371 assert(nir_src_is_const(instr->src[1]) && "no indirect outputs");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001372
Karol Herbst1aabb792019-03-29 21:40:45 +01001373 offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001374
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001375 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001376
1377 if (ctx->stage == MESA_SHADER_FRAGMENT) {
1378 /* gl_FragColor is not emitted with load/store
1379 * instructions. Instead, it gets plonked into
1380 * r0 at the end of the shader and we do the
1381 * framebuffer writeout dance. TODO: Defer
1382 * writes */
1383
Alyssa Rosenzweig565c4462019-06-17 09:40:14 -07001384 midgard_instruction move = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(0));
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001385 emit_mir_instruction(ctx, move);
1386
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001387 /* Save the index we're writing to for later reference
1388 * in the epilogue */
1389
1390 ctx->fragment_output = reg;
1391 } else if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001392 /* We should have been vectorized, though we don't
1393 * currently check that st_vary is emitted only once
1394 * per slot (this is relevant, since there's not a mask
1395 * parameter available on the store [set to 0 by the
1396 * blob]). We do respect the component by adjusting the
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001397 * swizzle. If this is a constant source, we'll need to
1398 * emit that explicitly. */
1399
1400 emit_explicit_constant(ctx, reg, reg);
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001401
1402 unsigned component = nir_intrinsic_component(instr);
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07001403
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001404 midgard_instruction st = m_st_vary_32(reg, offset);
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001405 st.load_store.arg_1 = 0x9E;
1406 st.load_store.arg_2 = 0x1E;
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001407 st.load_store.swizzle = SWIZZLE_XYZW << (2*component);
Alyssa Rosenzweig4aced182019-06-06 08:21:27 -07001408 emit_mir_instruction(ctx, st);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001409 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001410 DBG("Unknown store\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001411 assert(0);
1412 }
1413
1414 break;
1415
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001416 /* Special case of store_output for lowered blend shaders */
1417 case nir_intrinsic_store_raw_output_pan:
1418 assert (ctx->stage == MESA_SHADER_FRAGMENT);
1419 reg = nir_src_index(ctx, &instr->src[0]);
1420
1421 midgard_instruction move = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(0));
1422 emit_mir_instruction(ctx, move);
1423 ctx->fragment_output = reg;
1424
1425 break;
1426
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001427 case nir_intrinsic_load_alpha_ref_float:
1428 assert(instr->dest.is_ssa);
1429
1430 float ref_value = ctx->alpha_ref;
1431
Alyssa Rosenzweig463164b2019-07-29 08:31:03 -07001432 /* See emit_load_const */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001433 float *v = ralloc_array(NULL, float, 4);
1434 memcpy(v, &ref_value, sizeof(float));
Alyssa Rosenzweig463164b2019-07-29 08:31:03 -07001435 _mesa_hash_table_u64_insert(ctx->ssa_constants, (instr->dest.ssa.index << 1) + 1, v);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001436 break;
1437
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001438 case nir_intrinsic_load_viewport_scale:
1439 case nir_intrinsic_load_viewport_offset:
Boris Brezillonbd49c8f2019-06-14 09:59:20 +02001440 emit_sysval_read(ctx, &instr->instr);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001441 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001442
1443 default:
1444 printf ("Unhandled intrinsic\n");
1445 assert(0);
1446 break;
1447 }
1448}
1449
1450static unsigned
1451midgard_tex_format(enum glsl_sampler_dim dim)
1452{
1453 switch (dim) {
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001454 case GLSL_SAMPLER_DIM_1D:
1455 case GLSL_SAMPLER_DIM_BUF:
1456 return MALI_TEX_1D;
1457
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001458 case GLSL_SAMPLER_DIM_2D:
1459 case GLSL_SAMPLER_DIM_EXTERNAL:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001460 return MALI_TEX_2D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001461
1462 case GLSL_SAMPLER_DIM_3D:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001463 return MALI_TEX_3D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001464
1465 case GLSL_SAMPLER_DIM_CUBE:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001466 return MALI_TEX_CUBE;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001467
1468 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001469 DBG("Unknown sampler dim type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001470 assert(0);
1471 return 0;
1472 }
1473}
1474
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001475/* Tries to attach an explicit LOD / bias as a constant. Returns whether this
1476 * was successful */
1477
1478static bool
1479pan_attach_constant_bias(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001480 compiler_context *ctx,
1481 nir_src lod,
1482 midgard_texture_word *word)
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001483{
1484 /* To attach as constant, it has to *be* constant */
1485
1486 if (!nir_src_is_const(lod))
1487 return false;
1488
1489 float f = nir_src_as_float(lod);
1490
1491 /* Break into fixed-point */
1492 signed lod_int = f;
1493 float lod_frac = f - lod_int;
1494
1495 /* Carry over negative fractions */
1496 if (lod_frac < 0.0) {
1497 lod_int--;
1498 lod_frac += 1.0;
1499 }
1500
1501 /* Encode */
1502 word->bias = float_to_ubyte(lod_frac);
1503 word->bias_int = lod_int;
1504
1505 return true;
1506}
1507
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001508static enum mali_sampler_type
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001509midgard_sampler_type(nir_alu_type t) {
1510 switch (nir_alu_type_get_base_type(t))
1511 {
1512 case nir_type_float:
1513 return MALI_SAMPLER_FLOAT;
1514 case nir_type_int:
1515 return MALI_SAMPLER_SIGNED;
1516 case nir_type_uint:
1517 return MALI_SAMPLER_UNSIGNED;
1518 default:
1519 unreachable("Unknown sampler type");
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001520 }
1521}
1522
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001523static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001524emit_texop_native(compiler_context *ctx, nir_tex_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001525 unsigned midgard_texop)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001526{
1527 /* TODO */
1528 //assert (!instr->sampler);
1529 //assert (!instr->texture_array_size);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001530
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001531 int texture_index = instr->texture_index;
1532 int sampler_index = texture_index;
1533
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001534 /* No helper to build texture words -- we do it all here */
1535 midgard_instruction ins = {
1536 .type = TAG_TEXTURE_4,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001537 .mask = 0xF,
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001538 .ssa_args = {
1539 .dest = nir_dest_index(ctx, &instr->dest),
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001540 .src = { -1, -1, -1 },
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001541 },
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001542 .texture = {
1543 .op = midgard_texop,
1544 .format = midgard_tex_format(instr->sampler_dim),
1545 .texture_handle = texture_index,
1546 .sampler_handle = sampler_index,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001547 .swizzle = SWIZZLE_XYZW,
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001548 .in_reg_swizzle = SWIZZLE_XYZW,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001549
1550 /* TODO: half */
1551 .in_reg_full = 1,
1552 .out_full = 1,
1553
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001554 .sampler_type = midgard_sampler_type(instr->dest_type),
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001555 }
1556 };
Alyssa Rosenzweig8429bee2019-06-14 16:03:39 -07001557
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001558 for (unsigned i = 0; i < instr->num_srcs; ++i) {
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001559 int index = nir_src_index(ctx, &instr->src[i].src);
1560 midgard_vector_alu_src alu_src = blank_alu_src;
1561
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001562 switch (instr->src[i].src_type) {
1563 case nir_tex_src_coord: {
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001564 emit_explicit_constant(ctx, index, index);
1565
1566 /* Texelfetch coordinates uses all four elements
1567 * (xyz/index) regardless of texture dimensionality,
1568 * which means it's necessary to zero the unused
1569 * components to keep everything happy */
1570
1571 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
1572 unsigned old_index = index;
1573
1574 index = make_compiler_temp(ctx);
1575
1576 /* mov index, old_index */
1577 midgard_instruction mov = v_mov(old_index, blank_alu_src, index);
1578 mov.mask = 0x3;
1579 emit_mir_instruction(ctx, mov);
1580
1581 /* mov index.zw, #0 */
1582 mov = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT),
1583 blank_alu_src, index);
1584 mov.has_constants = true;
1585 mov.mask = (1 << COMPONENT_Z) | (1 << COMPONENT_W);
1586 emit_mir_instruction(ctx, mov);
1587 }
1588
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001589 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
Alyssa Rosenzweigfaf8ad42019-06-24 14:39:25 -07001590 /* texelFetch is undefined on samplerCube */
1591 assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH);
1592
Alyssa Rosenzweigbe568402019-07-25 07:09:40 -07001593 /* For cubemaps, we use a special ld/st op to
1594 * select the face and copy the xy into the
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001595 * texture register */
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001596
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001597 unsigned temp = make_compiler_temp(ctx);
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001598 midgard_instruction st = m_st_cubemap_coords(temp, 0);
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001599 st.ssa_args.src[0] = index;
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001600 st.mask = 0x3; /* xy */
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001601 st.load_store.arg_1 = 0x20;
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001602 st.load_store.swizzle = alu_src.swizzle;
1603 emit_mir_instruction(ctx, st);
1604
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001605 ins.ssa_args.src[0] = temp;
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001606 } else {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001607 ins.ssa_args.src[0] = index;
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001608 }
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001609
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001610 if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) {
1611 /* Array component in w but NIR wants it in z */
1612 ins.texture.in_reg_swizzle = SWIZZLE_XYZZ;
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001613 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001614
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001615 break;
1616 }
1617
Alyssa Rosenzweig4012e062019-06-11 09:43:08 -07001618 case nir_tex_src_bias:
1619 case nir_tex_src_lod: {
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001620 /* Try as a constant if we can */
1621
1622 bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH;
1623 if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture))
1624 break;
1625
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001626 ins.texture.lod_register = true;
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001627 ins.ssa_args.src[1] = index;
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001628 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001629
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001630 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001631 };
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001632
Alyssa Rosenzweig5062b612019-06-11 09:55:18 -07001633 default:
1634 unreachable("Unknown texture source type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001635 }
1636 }
1637
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001638 emit_mir_instruction(ctx, ins);
1639
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001640 /* Used for .cont and .last hinting */
1641 ctx->texture_op_count++;
1642}
1643
1644static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001645emit_tex(compiler_context *ctx, nir_tex_instr *instr)
1646{
Alyssa Rosenzweig67299122019-06-24 10:35:03 -07001647 /* Fixup op, since only textureLod is permitted in VS but NIR can give
1648 * generic tex in some cases (which confuses the hardware) */
1649
1650 bool is_vertex = ctx->stage == MESA_SHADER_VERTEX;
1651
1652 if (is_vertex && instr->op == nir_texop_tex)
1653 instr->op = nir_texop_txl;
1654
Boris Brezillon5c17f842019-06-17 21:47:46 +02001655 switch (instr->op) {
1656 case nir_texop_tex:
1657 case nir_texop_txb:
1658 emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL);
1659 break;
1660 case nir_texop_txl:
1661 emit_texop_native(ctx, instr, TEXTURE_OP_LOD);
1662 break;
Alyssa Rosenzweigf4bb7f02019-06-21 16:17:34 -07001663 case nir_texop_txf:
1664 emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH);
1665 break;
Boris Brezillonc3558862019-06-17 22:13:04 +02001666 case nir_texop_txs:
1667 emit_sysval_read(ctx, &instr->instr);
1668 break;
Boris Brezillon5c17f842019-06-17 21:47:46 +02001669 default:
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001670 unreachable("Unhanlded texture op");
Boris Brezillon5c17f842019-06-17 21:47:46 +02001671 }
1672}
1673
1674static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001675emit_jump(compiler_context *ctx, nir_jump_instr *instr)
1676{
1677 switch (instr->type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001678 case nir_jump_break: {
1679 /* Emit a branch out of the loop */
1680 struct midgard_instruction br = v_branch(false, false);
1681 br.branch.target_type = TARGET_BREAK;
1682 br.branch.target_break = ctx->current_loop_depth;
1683 emit_mir_instruction(ctx, br);
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001684 break;
1685 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001686
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001687 default:
1688 DBG("Unknown jump type %d\n", instr->type);
1689 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001690 }
1691}
1692
1693static void
1694emit_instr(compiler_context *ctx, struct nir_instr *instr)
1695{
1696 switch (instr->type) {
1697 case nir_instr_type_load_const:
1698 emit_load_const(ctx, nir_instr_as_load_const(instr));
1699 break;
1700
1701 case nir_instr_type_intrinsic:
1702 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
1703 break;
1704
1705 case nir_instr_type_alu:
1706 emit_alu(ctx, nir_instr_as_alu(instr));
1707 break;
1708
1709 case nir_instr_type_tex:
1710 emit_tex(ctx, nir_instr_as_tex(instr));
1711 break;
1712
1713 case nir_instr_type_jump:
1714 emit_jump(ctx, nir_instr_as_jump(instr));
1715 break;
1716
1717 case nir_instr_type_ssa_undef:
1718 /* Spurious */
1719 break;
1720
1721 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001722 DBG("Unhandled instruction type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001723 break;
1724 }
1725}
1726
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001727
1728/* ALU instructions can inline or embed constants, which decreases register
1729 * pressure and saves space. */
1730
1731#define CONDITIONAL_ATTACH(src) { \
1732 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->ssa_args.src + 1); \
1733\
1734 if (entry) { \
1735 attach_constants(ctx, alu, entry, alu->ssa_args.src + 1); \
1736 alu->ssa_args.src = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \
1737 } \
1738}
1739
1740static void
1741inline_alu_constants(compiler_context *ctx)
1742{
1743 mir_foreach_instr(ctx, alu) {
1744 /* Other instructions cannot inline constants */
1745 if (alu->type != TAG_ALU_4) continue;
1746
1747 /* If there is already a constant here, we can do nothing */
1748 if (alu->has_constants) continue;
1749
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001750 CONDITIONAL_ATTACH(src[0]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001751
1752 if (!alu->has_constants) {
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001753 CONDITIONAL_ATTACH(src[1])
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001754 } else if (!alu->inline_constant) {
1755 /* Corner case: _two_ vec4 constants, for instance with a
1756 * csel. For this case, we can only use a constant
1757 * register for one, we'll have to emit a move for the
1758 * other. Note, if both arguments are constants, then
1759 * necessarily neither argument depends on the value of
1760 * any particular register. As the destination register
1761 * will be wiped, that means we can spill the constant
1762 * to the destination register.
1763 */
1764
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001765 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->ssa_args.src[1] + 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001766 unsigned scratch = alu->ssa_args.dest;
1767
1768 if (entry) {
Alyssa Rosenzweig565c4462019-06-17 09:40:14 -07001769 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), blank_alu_src, scratch);
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001770 attach_constants(ctx, &ins, entry, alu->ssa_args.src[1] + 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001771
1772 /* Force a break XXX Defer r31 writes */
1773 ins.unit = UNIT_VLUT;
1774
1775 /* Set the source */
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001776 alu->ssa_args.src[1] = scratch;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001777
1778 /* Inject us -before- the last instruction which set r31 */
1779 mir_insert_instruction_before(mir_prev_op(alu), ins);
1780 }
1781 }
1782 }
1783}
1784
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001785/* Being a little silly with the names, but returns the op that is the bitwise
1786 * inverse of the op with the argument switched. I.e. (f and g are
1787 * contrapositives):
1788 *
1789 * f(a, b) = ~g(b, a)
1790 *
1791 * Corollary: if g is the contrapositve of f, f is the contrapositive of g:
1792 *
1793 * f(a, b) = ~g(b, a)
1794 * ~f(a, b) = g(b, a)
1795 * ~f(a, b) = ~h(a, b) where h is the contrapositive of g
1796 * f(a, b) = h(a, b)
1797 *
1798 * Thus we define this function in pairs.
1799 */
1800
1801static inline midgard_alu_op
1802mir_contrapositive(midgard_alu_op op)
1803{
1804 switch (op) {
1805 case midgard_alu_op_flt:
1806 return midgard_alu_op_fle;
1807 case midgard_alu_op_fle:
1808 return midgard_alu_op_flt;
1809
1810 case midgard_alu_op_ilt:
1811 return midgard_alu_op_ile;
1812 case midgard_alu_op_ile:
1813 return midgard_alu_op_ilt;
1814
1815 default:
1816 unreachable("No known contrapositive");
1817 }
1818}
1819
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001820/* Midgard supports two types of constants, embedded constants (128-bit) and
1821 * inline constants (16-bit). Sometimes, especially with scalar ops, embedded
1822 * constants can be demoted to inline constants, for space savings and
1823 * sometimes a performance boost */
1824
1825static void
1826embedded_to_inline_constant(compiler_context *ctx)
1827{
1828 mir_foreach_instr(ctx, ins) {
1829 if (!ins->has_constants) continue;
1830
1831 if (ins->ssa_args.inline_constant) continue;
1832
1833 /* Blend constants must not be inlined by definition */
1834 if (ins->has_blend_constant) continue;
1835
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07001836 /* We can inline 32-bit (sometimes) or 16-bit (usually) */
1837 bool is_16 = ins->alu.reg_mode == midgard_reg_mode_16;
1838 bool is_32 = ins->alu.reg_mode == midgard_reg_mode_32;
1839
1840 if (!(is_16 || is_32))
1841 continue;
1842
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001843 /* src1 cannot be an inline constant due to encoding
1844 * restrictions. So, if possible we try to flip the arguments
1845 * in that case */
1846
1847 int op = ins->alu.op;
1848
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001849 if (ins->ssa_args.src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001850 bool flip = alu_opcode_props[op].props & OP_COMMUTES;
1851
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001852 switch (op) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001853 /* Conditionals can be inverted */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001854 case midgard_alu_op_flt:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001855 case midgard_alu_op_ilt:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001856 case midgard_alu_op_fle:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001857 case midgard_alu_op_ile:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001858 ins->alu.op = mir_contrapositive(ins->alu.op);
1859 ins->invert = true;
1860 flip = true;
1861 break;
1862
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001863 case midgard_alu_op_fcsel:
1864 case midgard_alu_op_icsel:
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +00001865 DBG("Missed non-commutative flip (%s)\n", alu_opcode_props[op].name);
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00001866 default:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001867 break;
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00001868 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001869
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07001870 if (flip) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001871 /* Flip the SSA numbers */
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001872 ins->ssa_args.src[0] = ins->ssa_args.src[1];
1873 ins->ssa_args.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001874
1875 /* And flip the modifiers */
1876
1877 unsigned src_temp;
1878
1879 src_temp = ins->alu.src2;
1880 ins->alu.src2 = ins->alu.src1;
1881 ins->alu.src1 = src_temp;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001882 }
1883 }
1884
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001885 if (ins->ssa_args.src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001886 /* Extract the source information */
1887
1888 midgard_vector_alu_src *src;
1889 int q = ins->alu.src2;
1890 midgard_vector_alu_src *m = (midgard_vector_alu_src *) &q;
1891 src = m;
1892
1893 /* Component is from the swizzle, e.g. r26.w -> w component. TODO: What if x is masked out? */
1894 int component = src->swizzle & 3;
1895
1896 /* Scale constant appropriately, if we can legally */
1897 uint16_t scaled_constant = 0;
1898
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07001899 if (midgard_is_integer_op(op) || is_16) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001900 unsigned int *iconstants = (unsigned int *) ins->constants;
1901 scaled_constant = (uint16_t) iconstants[component];
1902
1903 /* Constant overflow after resize */
1904 if (scaled_constant != iconstants[component])
1905 continue;
1906 } else {
Alyssa Rosenzweig39786142019-04-28 15:46:47 +00001907 float original = (float) ins->constants[component];
1908 scaled_constant = _mesa_float_to_half(original);
1909
1910 /* Check for loss of precision. If this is
1911 * mediump, we don't care, but for a highp
1912 * shader, we need to pay attention. NIR
1913 * doesn't yet tell us which mode we're in!
1914 * Practically this prevents most constants
1915 * from being inlined, sadly. */
1916
1917 float fp32 = _mesa_half_to_float(scaled_constant);
1918
1919 if (fp32 != original)
1920 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001921 }
1922
1923 /* We don't know how to handle these with a constant */
1924
Alyssa Rosenzweigc45487b2019-07-26 11:52:30 -07001925 if (mir_nontrivial_source2_mod_simple(ins) || src->rep_low || src->rep_high) {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001926 DBG("Bailing inline constant...\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001927 continue;
1928 }
1929
1930 /* Make sure that the constant is not itself a
1931 * vector by checking if all accessed values
1932 * (by the swizzle) are the same. */
1933
1934 uint32_t *cons = (uint32_t *) ins->constants;
1935 uint32_t value = cons[component];
1936
1937 bool is_vector = false;
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001938 unsigned mask = effective_writemask(&ins->alu, ins->mask);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001939
1940 for (int c = 1; c < 4; ++c) {
1941 /* We only care if this component is actually used */
1942 if (!(mask & (1 << c)))
1943 continue;
1944
1945 uint32_t test = cons[(src->swizzle >> (2 * c)) & 3];
1946
1947 if (test != value) {
1948 is_vector = true;
1949 break;
1950 }
1951 }
1952
1953 if (is_vector)
1954 continue;
1955
1956 /* Get rid of the embedded constant */
1957 ins->has_constants = false;
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07001958 ins->ssa_args.src[1] = -1;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001959 ins->ssa_args.inline_constant = true;
1960 ins->inline_constant = scaled_constant;
1961 }
1962 }
1963}
1964
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07001965/* Dead code elimination for branches at the end of a block - only one branch
1966 * per block is legal semantically */
1967
1968static void
1969midgard_opt_cull_dead_branch(compiler_context *ctx, midgard_block *block)
1970{
1971 bool branched = false;
1972
1973 mir_foreach_instr_in_block_safe(block, ins) {
1974 if (!midgard_is_branch_unit(ins->unit)) continue;
1975
1976 /* We ignore prepacked branches since the fragment epilogue is
1977 * just generally special */
1978 if (ins->prepacked_branch) continue;
1979
Alyssa Rosenzweige9703fb2019-06-10 08:21:24 -07001980 /* Discards are similarly special and may not correspond to the
1981 * end of a block */
1982
1983 if (ins->branch.target_type == TARGET_DISCARD) continue;
1984
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07001985 if (branched) {
1986 /* We already branched, so this is dead */
1987 mir_remove_instruction(ins);
1988 }
1989
1990 branched = true;
1991 }
1992}
1993
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00001994/* fmov.pos is an idiom for fpos. Propoagate the .pos up to the source, so then
1995 * the move can be propagated away entirely */
1996
1997static bool
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07001998mir_compose_float_outmod(midgard_outmod_float *outmod, midgard_outmod_float comp)
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00001999{
2000 /* Nothing to do */
2001 if (comp == midgard_outmod_none)
2002 return true;
2003
2004 if (*outmod == midgard_outmod_none) {
2005 *outmod = comp;
2006 return true;
2007 }
2008
2009 /* TODO: Compose rules */
2010 return false;
2011}
2012
2013static bool
2014midgard_opt_pos_propagate(compiler_context *ctx, midgard_block *block)
2015{
2016 bool progress = false;
2017
2018 mir_foreach_instr_in_block_safe(block, ins) {
2019 if (ins->type != TAG_ALU_4) continue;
2020 if (ins->alu.op != midgard_alu_op_fmov) continue;
2021 if (ins->alu.outmod != midgard_outmod_pos) continue;
2022
2023 /* TODO: Registers? */
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -07002024 unsigned src = ins->ssa_args.src[1];
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -07002025 if (src & IS_REG) continue;
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002026 assert(!mir_has_multiple_writes(ctx, src));
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002027
2028 /* There might be a source modifier, too */
2029 if (mir_nontrivial_source2_mod(ins)) continue;
2030
2031 /* Backpropagate the modifier */
2032 mir_foreach_instr_in_block_from_rev(block, v, mir_prev_op(ins)) {
2033 if (v->type != TAG_ALU_4) continue;
2034 if (v->ssa_args.dest != src) continue;
2035
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002036 /* Can we even take a float outmod? */
2037 if (midgard_is_integer_out_op(v->alu.op)) continue;
2038
2039 midgard_outmod_float temp = v->alu.outmod;
2040 progress |= mir_compose_float_outmod(&temp, ins->alu.outmod);
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002041
2042 /* Throw in the towel.. */
2043 if (!progress) break;
2044
2045 /* Otherwise, transfer the modifier */
2046 v->alu.outmod = temp;
2047 ins->alu.outmod = midgard_outmod_none;
2048
2049 break;
2050 }
2051 }
2052
2053 return progress;
2054}
2055
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002056static void
2057emit_fragment_epilogue(compiler_context *ctx)
2058{
Alyssa Rosenzweige1693012019-07-24 12:52:27 -07002059 emit_explicit_constant(ctx, ctx->fragment_output, SSA_FIXED_REGISTER(0));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002060
2061 /* Perform the actual fragment writeout. We have two writeout/branch
2062 * instructions, forming a loop until writeout is successful as per the
2063 * docs. TODO: gl_FragDepth */
2064
2065 EMIT(alu_br_compact_cond, midgard_jmp_writeout_op_writeout, TAG_ALU_4, 0, midgard_condition_always);
2066 EMIT(alu_br_compact_cond, midgard_jmp_writeout_op_writeout, TAG_ALU_4, -1, midgard_condition_always);
2067}
2068
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002069static midgard_block *
2070emit_block(compiler_context *ctx, nir_block *block)
2071{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002072 midgard_block *this_block = ctx->after_block;
2073 ctx->after_block = NULL;
2074
2075 if (!this_block)
2076 this_block = calloc(sizeof(midgard_block), 1);
2077
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002078 list_addtail(&this_block->link, &ctx->blocks);
2079
2080 this_block->is_scheduled = false;
2081 ++ctx->block_count;
2082
2083 ctx->texture_index[0] = -1;
2084 ctx->texture_index[1] = -1;
2085
2086 /* Set up current block */
2087 list_inithead(&this_block->instructions);
2088 ctx->current_block = this_block;
2089
2090 nir_foreach_instr(instr, block) {
2091 emit_instr(ctx, instr);
2092 ++ctx->instruction_count;
2093 }
2094
2095 inline_alu_constants(ctx);
2096 embedded_to_inline_constant(ctx);
2097
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002098 /* Append fragment shader epilogue (value writeout) */
2099 if (ctx->stage == MESA_SHADER_FRAGMENT) {
2100 if (block == nir_impl_last_block(ctx->func->impl)) {
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07002101 emit_fragment_epilogue(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002102 }
2103 }
2104
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002105 /* Allow the next control flow to access us retroactively, for
2106 * branching etc */
2107 ctx->current_block = this_block;
2108
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002109 return this_block;
2110}
2111
2112static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list);
2113
2114static void
2115emit_if(struct compiler_context *ctx, nir_if *nif)
2116{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002117 midgard_block *before_block = ctx->current_block;
2118
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002119 /* Conditional branches expect the condition in r31.w; emit a move for
2120 * that in the _previous_ block (which is the current block). */
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +00002121 emit_condition(ctx, &nif->condition, true, COMPONENT_X);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002122
2123 /* Speculatively emit the branch, but we can't fill it in until later */
2124 EMIT(branch, true, true);
2125 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block);
2126
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002127 /* Emit the two subblocks. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002128 midgard_block *then_block = emit_cf_list(ctx, &nif->then_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002129 midgard_block *end_then_block = ctx->current_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002130
2131 /* Emit a jump from the end of the then block to the end of the else */
2132 EMIT(branch, false, false);
2133 midgard_instruction *then_exit = mir_last_in_block(ctx->current_block);
2134
2135 /* Emit second block, and check if it's empty */
2136
2137 int else_idx = ctx->block_count;
2138 int count_in = ctx->instruction_count;
2139 midgard_block *else_block = emit_cf_list(ctx, &nif->else_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002140 midgard_block *end_else_block = ctx->current_block;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002141 int after_else_idx = ctx->block_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002142
2143 /* Now that we have the subblocks emitted, fix up the branches */
2144
2145 assert(then_block);
2146 assert(else_block);
2147
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002148 if (ctx->instruction_count == count_in) {
2149 /* The else block is empty, so don't emit an exit jump */
2150 mir_remove_instruction(then_exit);
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002151 then_branch->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002152 } else {
2153 then_branch->branch.target_block = else_idx;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002154 then_exit->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002155 }
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002156
2157 /* Wire up the successors */
2158
2159 ctx->after_block = calloc(sizeof(midgard_block), 1);
2160
2161 midgard_block_add_successor(before_block, then_block);
2162 midgard_block_add_successor(before_block, else_block);
2163
2164 midgard_block_add_successor(end_then_block, ctx->after_block);
2165 midgard_block_add_successor(end_else_block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002166}
2167
2168static void
2169emit_loop(struct compiler_context *ctx, nir_loop *nloop)
2170{
2171 /* Remember where we are */
2172 midgard_block *start_block = ctx->current_block;
2173
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002174 /* Allocate a loop number, growing the current inner loop depth */
2175 int loop_idx = ++ctx->current_loop_depth;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002176
2177 /* Get index from before the body so we can loop back later */
2178 int start_idx = ctx->block_count;
2179
2180 /* Emit the body itself */
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002181 midgard_block *loop_block = emit_cf_list(ctx, &nloop->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002182
2183 /* Branch back to loop back */
2184 struct midgard_instruction br_back = v_branch(false, false);
2185 br_back.branch.target_block = start_idx;
2186 emit_mir_instruction(ctx, br_back);
2187
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002188 /* Mark down that branch in the graph. */
2189 midgard_block_add_successor(start_block, loop_block);
2190 midgard_block_add_successor(ctx->current_block, loop_block);
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +00002191
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002192 /* Find the index of the block about to follow us (note: we don't add
2193 * one; blocks are 0-indexed so we get a fencepost problem) */
2194 int break_block_idx = ctx->block_count;
2195
2196 /* Fix up the break statements we emitted to point to the right place,
2197 * now that we can allocate a block number for them */
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002198 ctx->after_block = calloc(sizeof(midgard_block), 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002199
2200 list_for_each_entry_from(struct midgard_block, block, start_block, &ctx->blocks, link) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002201 mir_foreach_instr_in_block(block, ins) {
2202 if (ins->type != TAG_ALU_4) continue;
2203 if (!ins->compact_branch) continue;
2204 if (ins->prepacked_branch) continue;
2205
2206 /* We found a branch -- check the type to see if we need to do anything */
2207 if (ins->branch.target_type != TARGET_BREAK) continue;
2208
2209 /* It's a break! Check if it's our break */
2210 if (ins->branch.target_break != loop_idx) continue;
2211
2212 /* Okay, cool, we're breaking out of this loop.
2213 * Rewrite from a break to a goto */
2214
2215 ins->branch.target_type = TARGET_GOTO;
2216 ins->branch.target_block = break_block_idx;
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002217
2218 midgard_block_add_successor(block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002219 }
2220 }
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002221
2222 /* Now that we've finished emitting the loop, free up the depth again
2223 * so we play nice with recursion amid nested loops */
2224 --ctx->current_loop_depth;
Alyssa Rosenzweig7ad65162019-07-09 11:10:49 -07002225
2226 /* Dump loop stats */
2227 ++ctx->loop_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002228}
2229
2230static midgard_block *
2231emit_cf_list(struct compiler_context *ctx, struct exec_list *list)
2232{
2233 midgard_block *start_block = NULL;
2234
2235 foreach_list_typed(nir_cf_node, node, node, list) {
2236 switch (node->type) {
2237 case nir_cf_node_block: {
2238 midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node));
2239
2240 if (!start_block)
2241 start_block = block;
2242
2243 break;
2244 }
2245
2246 case nir_cf_node_if:
2247 emit_if(ctx, nir_cf_node_as_if(node));
2248 break;
2249
2250 case nir_cf_node_loop:
2251 emit_loop(ctx, nir_cf_node_as_loop(node));
2252 break;
2253
2254 case nir_cf_node_function:
2255 assert(0);
2256 break;
2257 }
2258 }
2259
2260 return start_block;
2261}
2262
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002263/* Due to lookahead, we need to report the first tag executed in the command
2264 * stream and in branch targets. An initial block might be empty, so iterate
2265 * until we find one that 'works' */
2266
2267static unsigned
2268midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx)
2269{
2270 midgard_block *initial_block = mir_get_block(ctx, block_idx);
2271
2272 unsigned first_tag = 0;
2273
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002274 mir_foreach_block_from(ctx, initial_block, v) {
2275 midgard_bundle *initial_bundle =
2276 util_dynarray_element(&v->bundles, midgard_bundle, 0);
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002277
2278 if (initial_bundle) {
2279 first_tag = initial_bundle->tag;
2280 break;
2281 }
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002282 }
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002283
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002284 return first_tag;
2285}
2286
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002287int
Alyssa Rosenzweig840b8062019-07-23 07:59:00 -07002288midgard_compile_shader_nir(struct midgard_screen *screen, nir_shader *nir, midgard_program *program, bool is_blend)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002289{
2290 struct util_dynarray *compiled = &program->compiled;
2291
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002292 midgard_debug = debug_get_option_midgard_debug();
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002293
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002294 compiler_context ictx = {
2295 .nir = nir,
Alyssa Rosenzweig840b8062019-07-23 07:59:00 -07002296 .screen = screen,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002297 .stage = nir->info.stage,
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07002298 .temp_alloc = 0,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002299
2300 .is_blend = is_blend,
Alyssa Rosenzweigc9af7702019-07-05 16:51:30 -07002301 .blend_constant_offset = 0,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002302
2303 .alpha_ref = program->alpha_ref
2304 };
2305
2306 compiler_context *ctx = &ictx;
2307
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07002308 /* Start off with a safe cutoff, allowing usage of all 16 work
2309 * registers. Later, we'll promote uniform reads to uniform registers
2310 * if we determine it is beneficial to do so */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002311 ctx->uniform_cutoff = 8;
2312
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002313 /* Initialize at a global (not block) level hash tables */
2314
2315 ctx->ssa_constants = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002316 ctx->hash_to_temp = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002317 ctx->sysval_to_id = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002318
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002319 /* Record the varying mapping for the command stream's bookkeeping */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002320
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002321 struct exec_list *varyings =
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002322 ctx->stage == MESA_SHADER_VERTEX ? &nir->outputs : &nir->inputs;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002323
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002324 unsigned max_varying = 0;
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002325 nir_foreach_variable(var, varyings) {
2326 unsigned loc = var->data.driver_location;
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002327 unsigned sz = glsl_type_size(var->type, FALSE);
2328
Boris Brezillon749c5442019-06-13 14:56:02 +02002329 for (int c = 0; c < sz; ++c) {
2330 program->varyings[loc + c] = var->data.location + c;
2331 max_varying = MAX2(max_varying, loc + c);
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002332 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002333 }
2334
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002335 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
2336 * (so we don't accidentally duplicate the epilogue since mesa/st has
2337 * messed with our I/O quite a bit already) */
2338
2339 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002340
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002341 if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002342 NIR_PASS_V(nir, nir_lower_viewport_transform);
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002343 NIR_PASS_V(nir, nir_clamp_psiz, 1.0, 1024.0);
2344 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002345
2346 NIR_PASS_V(nir, nir_lower_var_copies);
2347 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2348 NIR_PASS_V(nir, nir_split_var_copies);
2349 NIR_PASS_V(nir, nir_lower_var_copies);
2350 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
2351 NIR_PASS_V(nir, nir_lower_var_copies);
2352 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002353
Eric Anholt771adff2019-04-08 16:32:01 -07002354 NIR_PASS_V(nir, nir_lower_io, nir_var_all, glsl_type_size, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002355
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002356 /* Optimisation passes */
2357
2358 optimise_nir(nir);
2359
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002360 if (midgard_debug & MIDGARD_DBG_SHADERS) {
2361 nir_print_shader(nir, stdout);
2362 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002363
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002364 /* Assign sysvals and counts, now that we're sure
2365 * (post-optimisation) */
2366
2367 midgard_nir_assign_sysvals(ctx, nir);
2368
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002369 program->uniform_count = nir->num_uniforms;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002370 program->sysval_count = ctx->sysval_count;
2371 memcpy(program->sysvals, ctx->sysvals, sizeof(ctx->sysvals[0]) * ctx->sysval_count);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002372
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002373 nir_foreach_function(func, nir) {
2374 if (!func->impl)
2375 continue;
2376
2377 list_inithead(&ctx->blocks);
2378 ctx->block_count = 0;
2379 ctx->func = func;
2380
2381 emit_cf_list(ctx, &func->impl->body);
2382 emit_block(ctx, func->impl->end_block);
2383
2384 break; /* TODO: Multi-function shaders */
2385 }
2386
2387 util_dynarray_init(compiled, NULL);
2388
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002389 /* MIR-level optimizations */
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002390
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002391 bool progress = false;
2392
2393 do {
2394 progress = false;
2395
2396 mir_foreach_block(ctx, block) {
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002397 progress |= midgard_opt_pos_propagate(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002398 progress |= midgard_opt_copy_prop(ctx, block);
2399 progress |= midgard_opt_dead_code_eliminate(ctx, block);
Alyssa Rosenzweig9ce75822019-07-24 15:37:24 -07002400 progress |= midgard_opt_combine_projection(ctx, block);
2401 progress |= midgard_opt_varying_projection(ctx, block);
Alyssa Rosenzweig620c2712019-07-26 13:14:55 -07002402 progress |= midgard_opt_not_propagate(ctx, block);
Alyssa Rosenzweigd066ca352019-07-26 13:32:54 -07002403 progress |= midgard_opt_fuse_src_invert(ctx, block);
Alyssa Rosenzweigb821e1b2019-07-26 13:08:54 -07002404 progress |= midgard_opt_fuse_dest_invert(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002405 }
2406 } while (progress);
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002407
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002408 mir_foreach_block(ctx, block) {
2409 midgard_lower_invert(ctx, block);
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -07002410 midgard_lower_derivatives(ctx, block);
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002411 }
2412
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002413 /* Nested control-flow can result in dead branches at the end of the
2414 * block. This messes with our analysis and is just dead code, so cull
2415 * them */
2416 mir_foreach_block(ctx, block) {
2417 midgard_opt_cull_dead_branch(ctx, block);
2418 }
2419
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002420 /* Ensure we were lowered */
2421 mir_foreach_instr_global(ctx, ins) {
2422 assert(!ins->invert);
2423 }
2424
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002425 /* Schedule! */
2426 schedule_program(ctx);
2427
2428 /* Now that all the bundles are scheduled and we can calculate block
2429 * sizes, emit actual branch instructions rather than placeholders */
2430
2431 int br_block_idx = 0;
2432
2433 mir_foreach_block(ctx, block) {
2434 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2435 for (int c = 0; c < bundle->instruction_count; ++c) {
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002436 midgard_instruction *ins = bundle->instructions[c];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002437
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002438 if (!midgard_is_branch_unit(ins->unit)) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002439
2440 if (ins->prepacked_branch) continue;
2441
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002442 /* Parse some basic branch info */
2443 bool is_compact = ins->unit == ALU_ENAB_BR_COMPACT;
2444 bool is_conditional = ins->branch.conditional;
2445 bool is_inverted = ins->branch.invert_conditional;
2446 bool is_discard = ins->branch.target_type == TARGET_DISCARD;
2447
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002448 /* Determine the block we're jumping to */
2449 int target_number = ins->branch.target_block;
2450
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002451 /* Report the destination tag */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002452 int dest_tag = is_discard ? 0 : midgard_get_first_tag_from_block(ctx, target_number);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002453
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002454 /* Count up the number of quadwords we're
2455 * jumping over = number of quadwords until
2456 * (br_block_idx, target_number) */
2457
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002458 int quadword_offset = 0;
2459
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002460 if (is_discard) {
Alyssa Rosenzweig7f75b2b2019-07-30 17:07:25 -07002461 /* Ignored */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002462 } else if (target_number > br_block_idx) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002463 /* Jump forward */
2464
2465 for (int idx = br_block_idx + 1; idx < target_number; ++idx) {
2466 midgard_block *blk = mir_get_block(ctx, idx);
2467 assert(blk);
2468
2469 quadword_offset += blk->quadword_count;
2470 }
2471 } else {
2472 /* Jump backwards */
2473
2474 for (int idx = br_block_idx; idx >= target_number; --idx) {
2475 midgard_block *blk = mir_get_block(ctx, idx);
2476 assert(blk);
2477
2478 quadword_offset -= blk->quadword_count;
2479 }
2480 }
2481
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002482 /* Unconditional extended branches (far jumps)
2483 * have issues, so we always use a conditional
2484 * branch, setting the condition to always for
2485 * unconditional. For compact unconditional
2486 * branches, cond isn't used so it doesn't
2487 * matter what we pick. */
2488
2489 midgard_condition cond =
2490 !is_conditional ? midgard_condition_always :
2491 is_inverted ? midgard_condition_false :
2492 midgard_condition_true;
2493
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002494 midgard_jmp_writeout_op op =
2495 is_discard ? midgard_jmp_writeout_op_discard :
2496 (is_compact && !is_conditional) ? midgard_jmp_writeout_op_branch_uncond :
2497 midgard_jmp_writeout_op_branch_cond;
2498
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002499 if (!is_compact) {
2500 midgard_branch_extended branch =
2501 midgard_create_branch_extended(
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002502 cond, op,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002503 dest_tag,
2504 quadword_offset);
2505
2506 memcpy(&ins->branch_extended, &branch, sizeof(branch));
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002507 } else if (is_conditional || is_discard) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002508 midgard_branch_cond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002509 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002510 .dest_tag = dest_tag,
2511 .offset = quadword_offset,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002512 .cond = cond
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002513 };
2514
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002515 assert(branch.offset == quadword_offset);
2516
2517 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002518 } else {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002519 assert(op == midgard_jmp_writeout_op_branch_uncond);
2520
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002521 midgard_branch_uncond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002522 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002523 .dest_tag = dest_tag,
2524 .offset = quadword_offset,
2525 .unknown = 1
2526 };
2527
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002528 assert(branch.offset == quadword_offset);
2529
2530 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002531 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002532 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002533 }
2534
2535 ++br_block_idx;
2536 }
2537
2538 /* Emit flat binary from the instruction arrays. Iterate each block in
2539 * sequence. Save instruction boundaries such that lookahead tags can
2540 * be assigned easily */
2541
2542 /* Cache _all_ bundles in source order for lookahead across failed branches */
2543
2544 int bundle_count = 0;
2545 mir_foreach_block(ctx, block) {
2546 bundle_count += block->bundles.size / sizeof(midgard_bundle);
2547 }
2548 midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count);
2549 int bundle_idx = 0;
2550 mir_foreach_block(ctx, block) {
2551 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2552 source_order_bundles[bundle_idx++] = bundle;
2553 }
2554 }
2555
2556 int current_bundle = 0;
2557
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00002558 /* Midgard prefetches instruction types, so during emission we
2559 * need to lookahead. Unless this is the last instruction, in
2560 * which we return 1. Or if this is the second to last and the
2561 * last is an ALU, then it's also 1... */
2562
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002563 mir_foreach_block(ctx, block) {
Alyssa Rosenzweigd3ad8d62019-06-06 11:19:44 -07002564 mir_foreach_bundle_in_block(block, bundle) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002565 int lookahead = 1;
2566
2567 if (current_bundle + 1 < bundle_count) {
2568 uint8_t next = source_order_bundles[current_bundle + 1]->tag;
2569
2570 if (!(current_bundle + 2 < bundle_count) && IS_ALU(next)) {
2571 lookahead = 1;
2572 } else {
2573 lookahead = next;
2574 }
2575 }
2576
2577 emit_binary_bundle(ctx, bundle, compiled, lookahead);
2578 ++current_bundle;
2579 }
2580
2581 /* TODO: Free deeper */
2582 //util_dynarray_fini(&block->instructions);
2583 }
2584
2585 free(source_order_bundles);
2586
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002587 /* Report the very first tag executed */
2588 program->first_tag = midgard_get_first_tag_from_block(ctx, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002589
2590 /* Deal with off-by-one related to the fencepost problem */
2591 program->work_register_count = ctx->work_registers + 1;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002592 program->uniform_cutoff = ctx->uniform_cutoff;
2593
2594 program->blend_patch_offset = ctx->blend_constant_offset;
Alyssa Rosenzweigf0d00612019-07-19 16:23:52 -07002595 program->tls_size = ctx->tls_size;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002596
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002597 if (midgard_debug & MIDGARD_DBG_SHADERS)
2598 disassemble_midgard(program->compiled.data, program->compiled.size);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002599
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002600 if (midgard_debug & MIDGARD_DBG_SHADERDB) {
Alyssa Rosenzweig2d739f62019-07-09 11:16:57 -07002601 unsigned nr_bundles = 0, nr_ins = 0, nr_quadwords = 0;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002602
2603 /* Count instructions and bundles */
2604
2605 mir_foreach_instr_global(ctx, ins) {
2606 nr_ins++;
2607 }
2608
2609 mir_foreach_block(ctx, block) {
2610 nr_bundles += util_dynarray_num_elements(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002611 &block->bundles, midgard_bundle);
Alyssa Rosenzweig2d739f62019-07-09 11:16:57 -07002612
2613 nr_quadwords += block->quadword_count;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002614 }
2615
2616 /* Calculate thread count. There are certain cutoffs by
2617 * register count for thread count */
2618
2619 unsigned nr_registers = program->work_register_count;
2620
2621 unsigned nr_threads =
2622 (nr_registers <= 4) ? 4 :
2623 (nr_registers <= 8) ? 2 :
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002624 1;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002625
2626 /* Dump stats */
2627
2628 fprintf(stderr, "shader%d - %s shader: "
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002629 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002630 "%u registers, %u threads, %u loops, "
2631 "%d:%d spills:fills\n",
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002632 SHADER_DB_COUNT++,
2633 gl_shader_stage_name(ctx->stage),
2634 nr_ins, nr_bundles, nr_quadwords,
2635 nr_registers, nr_threads,
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002636 ctx->loop_count,
2637 ctx->spills, ctx->fills);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002638 }
2639
2640
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002641 return 0;
2642}