blob: 604b7bf5f2a0699cbd53114130dfaaa1c3a034cf [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 Rosenzweigfcf144d2019-11-19 20:55:42 -050051#include "midgard_quirks.h"
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +000052
53#include "disassemble.h"
54
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010055static const struct debug_named_value debug_options[] = {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070056 {"msgs", MIDGARD_DBG_MSGS, "Print debug messages"},
57 {"shaders", MIDGARD_DBG_SHADERS, "Dump shaders in NIR and MIR"},
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070058 {"shaderdb", MIDGARD_DBG_SHADERDB, "Prints shader-db statistics"},
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -070059 DEBUG_NAMED_VALUE_END
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010060};
61
62DEBUG_GET_ONCE_FLAGS_OPTION(midgard_debug, "MIDGARD_MESA_DEBUG", debug_options, 0)
63
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -070064unsigned SHADER_DB_COUNT = 0;
65
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +010066int midgard_debug = 0;
67
68#define DBG(fmt, ...) \
69 do { if (midgard_debug & MIDGARD_DBG_MSGS) \
70 fprintf(stderr, "%s:%d: "fmt, \
71 __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0)
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -070072static midgard_block *
73create_empty_block(compiler_context *ctx)
74{
75 midgard_block *blk = rzalloc(ctx, midgard_block);
76
77 blk->predecessors = _mesa_set_create(blk,
78 _mesa_hash_pointer,
79 _mesa_key_pointer_equal);
80
81 blk->source_id = ctx->block_source_count++;
82
83 return blk;
84}
85
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +000086static void
87midgard_block_add_successor(midgard_block *block, midgard_block *successor)
88{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -070089 assert(block);
90 assert(successor);
91
92 /* Deduplicate */
93 for (unsigned i = 0; i < block->nr_successors; ++i) {
94 if (block->successors[i] == successor)
95 return;
96 }
97
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +000098 block->successors[block->nr_successors++] = successor;
99 assert(block->nr_successors <= ARRAY_SIZE(block->successors));
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -0700100
101 /* Note the predecessor in the other direction */
102 _mesa_set_add(successor->predecessors, block);
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +0000103}
104
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -0700105static void
106schedule_barrier(compiler_context *ctx)
107{
108 midgard_block *temp = ctx->after_block;
109 ctx->after_block = create_empty_block(ctx);
110 ctx->block_count++;
111 list_addtail(&ctx->after_block->link, &ctx->blocks);
112 list_inithead(&ctx->after_block->instructions);
113 midgard_block_add_successor(ctx->current_block, ctx->after_block);
114 ctx->current_block = ctx->after_block;
115 ctx->after_block = temp;
116}
117
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000118/* Helpers to generate midgard_instruction's using macro magic, since every
119 * driver seems to do it that way */
120
121#define EMIT(op, ...) emit_mir_instruction(ctx, v_##op(__VA_ARGS__));
Alyssa Rosenzweig56f9b472019-06-14 16:03:01 -0700122
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700123#define M_LOAD_STORE(name, store) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000124 static midgard_instruction m_##name(unsigned ssa, unsigned address) { \
125 midgard_instruction i = { \
126 .type = TAG_LOAD_STORE_4, \
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -0700127 .mask = 0xF, \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700128 .dest = ~0, \
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -0500129 .src = { ~0, ~0, ~0, ~0 }, \
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -0400130 .swizzle = SWIZZLE_IDENTITY_4, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000131 .load_store = { \
132 .op = midgard_op_##name, \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000133 .address = address \
134 } \
135 }; \
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700136 \
137 if (store) \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700138 i.src[0] = ssa; \
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700139 else \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700140 i.dest = ssa; \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000141 \
142 return i; \
143 }
144
Alyssa Rosenzweigd4bcca12019-08-02 15:25:02 -0700145#define M_LOAD(name) M_LOAD_STORE(name, false)
146#define M_STORE(name) M_LOAD_STORE(name, true)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000147
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000148/* Inputs a NIR ALU source, with modifiers attached if necessary, and outputs
149 * the corresponding Midgard source */
150
151static midgard_vector_alu_src
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700152vector_alu_modifiers(nir_alu_src *src, bool is_int, unsigned broadcast_count,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700153 bool half, bool sext)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000154{
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -0400155 /* Figure out how many components there are so we can adjust.
156 * Specifically we want to broadcast the last channel so things like
157 * ball2/3 work.
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700158 */
159
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -0400160 if (broadcast_count && src) {
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700161 uint8_t last_component = src->swizzle[broadcast_count - 1];
162
163 for (unsigned c = broadcast_count; c < NIR_MAX_VEC_COMPONENTS; ++c) {
164 src->swizzle[c] = last_component;
165 }
166 }
167
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000168 midgard_vector_alu_src alu_src = {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000169 .rep_low = 0,
170 .rep_high = 0,
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -0400171 .half = half
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000172 };
173
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000174 if (is_int) {
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000175 alu_src.mod = midgard_int_normal;
176
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700177 /* Sign/zero-extend if needed */
178
179 if (half) {
180 alu_src.mod = sext ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700181 midgard_int_sign_extend
182 : midgard_int_zero_extend;
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700183 }
184
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000185 /* These should have been lowered away */
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -0400186 if (src)
187 assert(!(src->abs || src->negate));
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000188 } else {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -0400189 if (src)
190 alu_src.mod = (src->abs << 0) | (src->negate << 1);
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +0000191 }
192
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000193 return alu_src;
194}
195
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000196/* load/store instructions have both 32-bit and 16-bit variants, depending on
197 * whether we are using vectors composed of highp or mediump. At the moment, we
198 * don't support half-floats -- this requires changes in other parts of the
199 * compiler -- therefore the 16-bit versions are commented out. */
200
Alyssa Rosenzweig74ab80b2019-05-14 04:11:36 +0000201//M_LOAD(ld_attr_16);
202M_LOAD(ld_attr_32);
203//M_LOAD(ld_vary_16);
204M_LOAD(ld_vary_32);
Alyssa Rosenzweigec2f0b52019-08-13 08:51:40 -0700205M_LOAD(ld_ubo_int4);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700206M_LOAD(ld_int4);
207M_STORE(st_int4);
Alyssa Rosenzweig2d1e18e2020-01-02 12:28:54 -0500208M_LOAD(ld_color_buffer_32u);
Alyssa Rosenzweig74ab80b2019-05-14 04:11:36 +0000209//M_STORE(st_vary_16);
210M_STORE(st_vary_32);
Alyssa Rosenzweig9ae4d362019-08-16 07:50:12 -0700211M_LOAD(ld_cubemap_coords);
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -0700212M_LOAD(ld_compute_id);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000213
214static midgard_instruction
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000215v_branch(bool conditional, bool invert)
216{
217 midgard_instruction ins = {
218 .type = TAG_ALU_4,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000219 .unit = ALU_ENAB_BRANCH,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000220 .compact_branch = true,
221 .branch = {
222 .conditional = conditional,
223 .invert_conditional = invert
Alyssa Rosenzweig29416a82019-07-30 12:20:24 -0700224 },
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700225 .dest = ~0,
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -0500226 .src = { ~0, ~0, ~0, ~0 },
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000227 };
228
229 return ins;
230}
231
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000232static midgard_branch_extended
233midgard_create_branch_extended( midgard_condition cond,
234 midgard_jmp_writeout_op op,
235 unsigned dest_tag,
236 signed quadword_offset)
237{
Alyssa Rosenzweig13ee87c2019-07-29 09:15:32 -0700238 /* The condition code is actually a LUT describing a function to
239 * combine multiple condition codes. However, we only support a single
240 * condition code at the moment, so we just duplicate over a bunch of
241 * times. */
242
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000243 uint16_t duplicated_cond =
244 (cond << 14) |
245 (cond << 12) |
246 (cond << 10) |
247 (cond << 8) |
248 (cond << 6) |
249 (cond << 4) |
250 (cond << 2) |
251 (cond << 0);
252
253 midgard_branch_extended branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +0000254 .op = op,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +0000255 .dest_tag = dest_tag,
256 .offset = quadword_offset,
257 .cond = duplicated_cond
258 };
259
260 return branch;
261}
262
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000263static void
264attach_constants(compiler_context *ctx, midgard_instruction *ins, void *constants, int name)
265{
266 ins->has_constants = true;
267 memcpy(&ins->constants, constants, 16);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000268}
269
270static int
Timothy Arceri035759b2019-03-29 12:39:48 +1100271glsl_type_size(const struct glsl_type *type, bool bindless)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000272{
273 return glsl_count_attribute_slots(type, false);
274}
275
276/* Lower fdot2 to a vector multiplication followed by channel addition */
277static void
278midgard_nir_lower_fdot2_body(nir_builder *b, nir_alu_instr *alu)
279{
280 if (alu->op != nir_op_fdot2)
281 return;
282
283 b->cursor = nir_before_instr(&alu->instr);
284
285 nir_ssa_def *src0 = nir_ssa_for_alu_src(b, alu, 0);
286 nir_ssa_def *src1 = nir_ssa_for_alu_src(b, alu, 1);
287
288 nir_ssa_def *product = nir_fmul(b, src0, src1);
289
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700290 nir_ssa_def *sum = nir_fadd(b,
291 nir_channel(b, product, 0),
292 nir_channel(b, product, 1));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000293
294 /* Replace the fdot2 with this sum */
295 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(sum));
296}
297
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000298static int
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700299midgard_sysval_for_ssbo(nir_intrinsic_instr *instr)
300{
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700301 /* This is way too meta */
302 bool is_store = instr->intrinsic == nir_intrinsic_store_ssbo;
303 unsigned idx_idx = is_store ? 1 : 0;
304
305 nir_src index = instr->src[idx_idx];
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700306 assert(nir_src_is_const(index));
307 uint32_t uindex = nir_src_as_uint(index);
308
309 return PAN_SYSVAL(SSBO, uindex);
310}
311
312static int
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -0500313midgard_sysval_for_sampler(nir_intrinsic_instr *instr)
314{
315 /* TODO: indirect samplers !!! */
316 nir_src index = instr->src[0];
317 assert(nir_src_is_const(index));
318 uint32_t uindex = nir_src_as_uint(index);
319
320 return PAN_SYSVAL(SAMPLER, uindex);
321}
322
323static int
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000324midgard_nir_sysval_for_intrinsic(nir_intrinsic_instr *instr)
325{
326 switch (instr->intrinsic) {
327 case nir_intrinsic_load_viewport_scale:
328 return PAN_SYSVAL_VIEWPORT_SCALE;
329 case nir_intrinsic_load_viewport_offset:
330 return PAN_SYSVAL_VIEWPORT_OFFSET;
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -0700331 case nir_intrinsic_load_num_work_groups:
332 return PAN_SYSVAL_NUM_WORK_GROUPS;
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700333 case nir_intrinsic_load_ssbo:
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700334 case nir_intrinsic_store_ssbo:
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700335 return midgard_sysval_for_ssbo(instr);
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -0500336 case nir_intrinsic_load_sampler_lod_parameters_pan:
337 return midgard_sysval_for_sampler(instr);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000338 default:
Alyssa Rosenzweig61892742019-08-21 09:15:56 -0700339 return ~0;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000340 }
341}
342
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200343static int sysval_for_instr(compiler_context *ctx, nir_instr *instr,
344 unsigned *dest)
345{
346 nir_intrinsic_instr *intr;
347 nir_dest *dst = NULL;
Boris Brezillonc3558862019-06-17 22:13:04 +0200348 nir_tex_instr *tex;
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200349 int sysval = -1;
350
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700351 bool is_store = false;
352
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200353 switch (instr->type) {
354 case nir_instr_type_intrinsic:
355 intr = nir_instr_as_intrinsic(instr);
356 sysval = midgard_nir_sysval_for_intrinsic(intr);
357 dst = &intr->dest;
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700358 is_store |= intr->intrinsic == nir_intrinsic_store_ssbo;
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200359 break;
Boris Brezillonc3558862019-06-17 22:13:04 +0200360 case nir_instr_type_tex:
361 tex = nir_instr_as_tex(instr);
362 if (tex->op != nir_texop_txs)
363 break;
364
365 sysval = PAN_SYSVAL(TEXTURE_SIZE,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700366 PAN_TXS_SYSVAL_ID(tex->texture_index,
367 nir_tex_instr_dest_size(tex) -
368 (tex->is_array ? 1 : 0),
369 tex->is_array));
Boris Brezillonc3558862019-06-17 22:13:04 +0200370 dst = &tex->dest;
371 break;
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200372 default:
373 break;
374 }
375
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -0700376 if (dest && dst && !is_store)
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200377 *dest = nir_dest_index(ctx, dst);
378
379 return sysval;
380}
381
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000382static void
383midgard_nir_assign_sysval_body(compiler_context *ctx, nir_instr *instr)
384{
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200385 int sysval;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000386
Boris Brezillonbd49c8f2019-06-14 09:59:20 +0200387 sysval = sysval_for_instr(ctx, instr, NULL);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000388 if (sysval < 0)
389 return;
390
391 /* We have a sysval load; check if it's already been assigned */
392
393 if (_mesa_hash_table_u64_search(ctx->sysval_to_id, sysval))
394 return;
395
396 /* It hasn't -- so assign it now! */
397
398 unsigned id = ctx->sysval_count++;
399 _mesa_hash_table_u64_insert(ctx->sysval_to_id, sysval, (void *) ((uintptr_t) id + 1));
400 ctx->sysvals[id] = sysval;
401}
402
403static void
404midgard_nir_assign_sysvals(compiler_context *ctx, nir_shader *shader)
405{
406 ctx->sysval_count = 0;
407
408 nir_foreach_function(function, shader) {
409 if (!function->impl) continue;
410
411 nir_foreach_block(block, function->impl) {
412 nir_foreach_instr_safe(instr, block) {
413 midgard_nir_assign_sysval_body(ctx, instr);
414 }
415 }
416 }
417}
418
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000419static bool
420midgard_nir_lower_fdot2(nir_shader *shader)
421{
422 bool progress = false;
423
424 nir_foreach_function(function, shader) {
425 if (!function->impl) continue;
426
427 nir_builder _b;
428 nir_builder *b = &_b;
429 nir_builder_init(b, function->impl);
430
431 nir_foreach_block(block, function->impl) {
432 nir_foreach_instr_safe(instr, block) {
433 if (instr->type != nir_instr_type_alu) continue;
434
435 nir_alu_instr *alu = nir_instr_as_alu(instr);
436 midgard_nir_lower_fdot2_body(b, alu);
437
438 progress |= true;
439 }
440 }
441
442 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
443
444 }
445
446 return progress;
447}
448
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700449/* Flushes undefined values to zero */
450
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000451static void
Alyssa Rosenzweigbda2bb32019-11-21 08:45:27 -0500452optimise_nir(nir_shader *nir, unsigned quirks)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000453{
454 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700455 unsigned lower_flrp =
456 (nir->options->lower_flrp16 ? 16 : 0) |
457 (nir->options->lower_flrp32 ? 32 : 0) |
458 (nir->options->lower_flrp64 ? 64 : 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000459
460 NIR_PASS(progress, nir, nir_lower_regs_to_ssa);
Rhys Perry8b98d092019-02-05 15:56:24 +0000461 NIR_PASS(progress, nir, nir_lower_idiv, nir_lower_idiv_fast);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000462
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -0700463 nir_lower_tex_options lower_tex_options = {
464 .lower_txs_lod = true,
Alyssa Rosenzweig4c43b352019-11-21 13:40:00 -0500465 .lower_txp = ~0,
466 .lower_tex_without_implicit_lod =
467 (quirks & MIDGARD_EXPLICIT_LOD),
Alyssa Rosenzweigc57337b2019-12-19 11:12:50 -0500468
469 /* TODO: we have native gradient.. */
470 .lower_txd = true,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000471 };
472
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -0700473 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_options);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000474
Alyssa Rosenzweigc57337b2019-12-19 11:12:50 -0500475 /* Must lower fdot2 after tex is lowered */
476 NIR_PASS(progress, nir, midgard_nir_lower_fdot2);
477
Alyssa Rosenzweigbda2bb32019-11-21 08:45:27 -0500478 /* T720 is broken. */
479
480 if (quirks & MIDGARD_BROKEN_LOD)
481 NIR_PASS_V(nir, midgard_nir_lod_errata);
482
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000483 do {
484 progress = false;
485
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000486 NIR_PASS(progress, nir, nir_lower_var_copies);
487 NIR_PASS(progress, nir, nir_lower_vars_to_ssa);
488
489 NIR_PASS(progress, nir, nir_copy_prop);
Boris Brezillon440b0d62020-01-06 14:31:38 +0100490 NIR_PASS(progress, nir, nir_opt_remove_phis);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000491 NIR_PASS(progress, nir, nir_opt_dce);
492 NIR_PASS(progress, nir, nir_opt_dead_cf);
493 NIR_PASS(progress, nir, nir_opt_cse);
494 NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true);
495 NIR_PASS(progress, nir, nir_opt_algebraic);
496 NIR_PASS(progress, nir, nir_opt_constant_folding);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700497
498 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700499 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700500 NIR_PASS(lower_flrp_progress,
501 nir,
502 nir_lower_flrp,
503 lower_flrp,
504 false /* always_precise */,
505 nir->options->lower_ffma);
506 if (lower_flrp_progress) {
507 NIR_PASS(progress, nir,
508 nir_opt_constant_folding);
509 progress = true;
510 }
511
512 /* Nothing should rematerialize any flrps, so we only
513 * need to do this lowering once.
514 */
515 lower_flrp = 0;
516 }
517
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000518 NIR_PASS(progress, nir, nir_opt_undef);
Alyssa Rosenzweiga2f1a062019-07-08 12:40:34 -0700519 NIR_PASS(progress, nir, nir_undef_to_zero);
520
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000521 NIR_PASS(progress, nir, nir_opt_loop_unroll,
522 nir_var_shader_in |
523 nir_var_shader_out |
524 nir_var_function_temp);
525
Alyssa Rosenzweig94029702019-06-17 11:12:51 -0700526 NIR_PASS(progress, nir, nir_opt_vectorize);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000527 } while (progress);
528
529 /* Must be run at the end to prevent creation of fsin/fcos ops */
530 NIR_PASS(progress, nir, midgard_nir_scale_trig);
531
532 do {
533 progress = false;
534
535 NIR_PASS(progress, nir, nir_opt_dce);
536 NIR_PASS(progress, nir, nir_opt_algebraic);
537 NIR_PASS(progress, nir, nir_opt_constant_folding);
538 NIR_PASS(progress, nir, nir_copy_prop);
539 } while (progress);
540
541 NIR_PASS(progress, nir, nir_opt_algebraic_late);
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000542
543 /* We implement booleans as 32-bit 0/~0 */
544 NIR_PASS(progress, nir, nir_lower_bool_to_int32);
545
546 /* Now that booleans are lowered, we can run out late opts */
Alyssa Rosenzweigeffe6fb02019-03-25 02:49:04 +0000547 NIR_PASS(progress, nir, midgard_nir_lower_algebraic_late);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000548
Alyssa Rosenzweigeffe6fb02019-03-25 02:49:04 +0000549 /* Lower mods for float ops only. Integer ops don't support modifiers
550 * (saturate doesn't make sense on integers, neg/abs require dedicated
551 * instructions) */
552
553 NIR_PASS(progress, nir, nir_lower_to_source_mods, nir_lower_float_source_mods);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000554 NIR_PASS(progress, nir, nir_copy_prop);
555 NIR_PASS(progress, nir, nir_opt_dce);
556
557 /* Take us out of SSA */
558 NIR_PASS(progress, nir, nir_lower_locals_to_regs);
559 NIR_PASS(progress, nir, nir_convert_from_ssa, true);
560
561 /* We are a vector architecture; write combine where possible */
562 NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest);
563 NIR_PASS(progress, nir, nir_lower_vec_to_movs);
564
565 NIR_PASS(progress, nir, nir_opt_dce);
566}
567
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000568/* Do not actually emit a load; instead, cache the constant for inlining */
569
570static void
571emit_load_const(compiler_context *ctx, nir_load_const_instr *instr)
572{
573 nir_ssa_def def = instr->def;
574
Boris Brezillon15c92d12020-01-20 15:00:57 +0100575 midgard_constants *consts = rzalloc(NULL, midgard_constants);
576
577 assert(instr->def.num_components * instr->def.bit_size <= sizeof(*consts) * 8);
578
579#define RAW_CONST_COPY(bits) \
580 nir_const_value_to_array(consts->u##bits, instr->value, \
581 instr->def.num_components, u##bits)
582
583 switch (instr->def.bit_size) {
584 case 64:
585 RAW_CONST_COPY(64);
586 break;
587 case 32:
588 RAW_CONST_COPY(32);
589 break;
590 case 16:
591 RAW_CONST_COPY(16);
592 break;
593 case 8:
594 RAW_CONST_COPY(8);
595 break;
596 default:
597 unreachable("Invalid bit_size for load_const instruction\n");
598 }
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -0700599
600 /* Shifted for SSA, +1 for off-by-one */
Boris Brezillon15c92d12020-01-20 15:00:57 +0100601 _mesa_hash_table_u64_insert(ctx->ssa_constants, (def.index << 1) + 1, consts);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000602}
603
Alyssa Rosenzweige1693012019-07-24 12:52:27 -0700604/* Normally constants are embedded implicitly, but for I/O and such we have to
605 * explicitly emit a move with the constant source */
606
607static void
608emit_explicit_constant(compiler_context *ctx, unsigned node, unsigned to)
609{
610 void *constant_value = _mesa_hash_table_u64_search(ctx->ssa_constants, node + 1);
611
612 if (constant_value) {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -0400613 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), to);
Alyssa Rosenzweige1693012019-07-24 12:52:27 -0700614 attach_constants(ctx, &ins, constant_value, node + 1);
615 emit_mir_instruction(ctx, ins);
616 }
617}
618
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000619static bool
620nir_is_non_scalar_swizzle(nir_alu_src *src, unsigned nr_components)
621{
622 unsigned comp = src->swizzle[0];
623
624 for (unsigned c = 1; c < nr_components; ++c) {
625 if (src->swizzle[c] != comp)
626 return true;
627 }
628
629 return false;
630}
631
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000632#define ALU_CASE(nir, _op) \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000633 case nir_op_##nir: \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000634 op = midgard_alu_op_##_op; \
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700635 assert(src_bitsize == dst_bitsize); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000636 break;
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700637
638#define ALU_CASE_BCAST(nir, _op, count) \
639 case nir_op_##nir: \
640 op = midgard_alu_op_##_op; \
641 broadcast_swizzle = count; \
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700642 assert(src_bitsize == dst_bitsize); \
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700643 break;
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000644static bool
645nir_is_fzero_constant(nir_src src)
646{
647 if (!nir_src_is_const(src))
648 return false;
649
650 for (unsigned c = 0; c < nir_src_num_components(src); ++c) {
651 if (nir_src_comp_as_float(src, c) != 0.0)
652 return false;
653 }
654
655 return true;
656}
657
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700658/* Analyze the sizes of the inputs to determine which reg mode. Ops needed
659 * special treatment override this anyway. */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700660
661static midgard_reg_mode
662reg_mode_for_nir(nir_alu_instr *instr)
663{
664 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
665
666 switch (src_bitsize) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -0700667 case 8:
668 return midgard_reg_mode_8;
669 case 16:
670 return midgard_reg_mode_16;
671 case 32:
672 return midgard_reg_mode_32;
673 case 64:
674 return midgard_reg_mode_64;
675 default:
676 unreachable("Invalid bit size");
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700677 }
678}
679
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000680static void
681emit_alu(compiler_context *ctx, nir_alu_instr *instr)
682{
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -0700683 /* Derivatives end up emitted on the texture pipe, not the ALUs. This
684 * is handled elsewhere */
685
686 if (instr->op == nir_op_fddx || instr->op == nir_op_fddy) {
687 midgard_emit_derivatives(ctx, instr);
688 return;
689 }
690
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000691 bool is_ssa = instr->dest.dest.is_ssa;
692
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +0000693 unsigned dest = nir_dest_index(ctx, &instr->dest.dest);
Alyssa Rosenzweigf42e5be2019-07-01 15:28:37 -0700694 unsigned nr_components = nir_dest_num_components(instr->dest.dest);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000695 unsigned nr_inputs = nir_op_infos[instr->op].num_inputs;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000696
697 /* Most Midgard ALU ops have a 1:1 correspondance to NIR ops; these are
698 * supported. A few do not and are commented for now. Also, there are a
699 * number of NIR ops which Midgard does not support and need to be
700 * lowered, also TODO. This switch block emits the opcode and calling
701 * convention of the Midgard instruction; actual packing is done in
702 * emit_alu below */
703
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000704 unsigned op;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000705
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700706 /* Number of components valid to check for the instruction (the rest
707 * will be forced to the last), or 0 to use as-is. Relevant as
708 * ball-type instructions have a channel count in NIR but are all vec4
709 * in Midgard */
710
711 unsigned broadcast_swizzle = 0;
712
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700713 /* What register mode should we operate in? */
714 midgard_reg_mode reg_mode =
715 reg_mode_for_nir(instr);
716
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700717 /* Do we need a destination override? Used for inline
718 * type conversion */
719
720 midgard_dest_override dest_override =
721 midgard_dest_override_none;
722
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700723 /* Should we use a smaller respective source and sign-extend? */
724
725 bool half_1 = false, sext_1 = false;
726 bool half_2 = false, sext_2 = false;
727
Alyssa Rosenzweig0ed8cca2019-07-01 17:35:25 -0700728 unsigned src_bitsize = nir_src_bit_size(instr->src[0].src);
729 unsigned dst_bitsize = nir_dest_bit_size(instr->dest.dest);
730
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000731 switch (instr->op) {
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000732 ALU_CASE(fadd, fadd);
733 ALU_CASE(fmul, fmul);
734 ALU_CASE(fmin, fmin);
735 ALU_CASE(fmax, fmax);
736 ALU_CASE(imin, imin);
737 ALU_CASE(imax, imax);
Alyssa Rosenzweig2e7555b2019-04-05 05:16:54 +0000738 ALU_CASE(umin, umin);
739 ALU_CASE(umax, umax);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000740 ALU_CASE(ffloor, ffloor);
Alyssa Rosenzweigc6be9962019-02-23 01:12:10 +0000741 ALU_CASE(fround_even, froundeven);
742 ALU_CASE(ftrunc, ftrunc);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000743 ALU_CASE(fceil, fceil);
744 ALU_CASE(fdot3, fdot3);
745 ALU_CASE(fdot4, fdot4);
746 ALU_CASE(iadd, iadd);
747 ALU_CASE(isub, isub);
748 ALU_CASE(imul, imul);
Alyssa Rosenzweig9f14e202019-06-05 15:18:35 +0000749
750 /* Zero shoved as second-arg */
751 ALU_CASE(iabs, iabsdiff);
752
Jason Ekstrandf2dc0f22019-05-06 11:45:46 -0500753 ALU_CASE(mov, imov);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000754
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000755 ALU_CASE(feq32, feq);
756 ALU_CASE(fne32, fne);
757 ALU_CASE(flt32, flt);
758 ALU_CASE(ieq32, ieq);
759 ALU_CASE(ine32, ine);
760 ALU_CASE(ilt32, ilt);
Alyssa Rosenzweigb8739c22019-03-26 04:00:33 +0000761 ALU_CASE(ult32, ult);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000762
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000763 /* We don't have a native b2f32 instruction. Instead, like many
764 * GPUs, we exploit booleans as 0/~0 for false/true, and
765 * correspondingly AND
766 * by 1.0 to do the type conversion. For the moment, prime us
767 * to emit:
768 *
769 * iand [whatever], #0
770 *
771 * At the end of emit_alu (as MIR), we'll fix-up the constant
772 */
773
774 ALU_CASE(b2f32, iand);
775 ALU_CASE(b2i32, iand);
776
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000777 /* Likewise, we don't have a dedicated f2b32 instruction, but
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +0000778 * we can do a "not equal to 0.0" test. */
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000779
780 ALU_CASE(f2b32, fne);
Alyssa Rosenzweig5b95fef2019-03-25 00:56:48 +0000781 ALU_CASE(i2b32, ine);
Alyssa Rosenzweigae43b8f2019-03-25 00:53:46 +0000782
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000783 ALU_CASE(frcp, frcp);
784 ALU_CASE(frsq, frsqrt);
785 ALU_CASE(fsqrt, fsqrt);
786 ALU_CASE(fexp2, fexp2);
787 ALU_CASE(flog2, flog2);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000788
Boris Brezillonfcceeaf2020-01-20 22:05:14 +0100789 ALU_CASE(f2i64, f2i_rtz);
790 ALU_CASE(f2u64, f2u_rtz);
791 ALU_CASE(i2f64, i2f_rtz);
792 ALU_CASE(u2f64, u2f_rtz);
793
Alyssa Rosenzweig73bf6692019-06-05 15:03:02 -0700794 ALU_CASE(f2i32, f2i_rtz);
795 ALU_CASE(f2u32, f2u_rtz);
796 ALU_CASE(i2f32, i2f_rtz);
797 ALU_CASE(u2f32, u2f_rtz);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000798
Alyssa Rosenzweigd8c084d2019-07-01 17:41:20 -0700799 ALU_CASE(f2i16, f2i_rtz);
800 ALU_CASE(f2u16, f2u_rtz);
801 ALU_CASE(i2f16, i2f_rtz);
802 ALU_CASE(u2f16, u2f_rtz);
803
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000804 ALU_CASE(fsin, fsin);
805 ALU_CASE(fcos, fcos);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000806
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -0700807 /* We'll set invert */
808 ALU_CASE(inot, imov);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000809 ALU_CASE(iand, iand);
810 ALU_CASE(ior, ior);
811 ALU_CASE(ixor, ixor);
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000812 ALU_CASE(ishl, ishl);
813 ALU_CASE(ishr, iasr);
814 ALU_CASE(ushr, ilsr);
815
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700816 ALU_CASE_BCAST(b32all_fequal2, fball_eq, 2);
817 ALU_CASE_BCAST(b32all_fequal3, fball_eq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000818 ALU_CASE(b32all_fequal4, fball_eq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000819
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700820 ALU_CASE_BCAST(b32any_fnequal2, fbany_neq, 2);
821 ALU_CASE_BCAST(b32any_fnequal3, fbany_neq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000822 ALU_CASE(b32any_fnequal4, fbany_neq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000823
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700824 ALU_CASE_BCAST(b32all_iequal2, iball_eq, 2);
825 ALU_CASE_BCAST(b32all_iequal3, iball_eq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000826 ALU_CASE(b32all_iequal4, iball_eq);
Alyssa Rosenzweig53664102019-03-25 00:12:06 +0000827
Alyssa Rosenzweig195e2972019-06-19 07:23:27 -0700828 ALU_CASE_BCAST(b32any_inequal2, ibany_neq, 2);
829 ALU_CASE_BCAST(b32any_inequal3, ibany_neq, 3);
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000830 ALU_CASE(b32any_inequal4, ibany_neq);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000831
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +0000832 /* Source mods will be shoved in later */
833 ALU_CASE(fabs, fmov);
834 ALU_CASE(fneg, fmov);
835 ALU_CASE(fsat, fmov);
836
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700837 /* For size conversion, we use a move. Ideally though we would squash
838 * these ops together; maybe that has to happen after in NIR as part of
839 * propagation...? An earlier algebraic pass ensured we step down by
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700840 * only / exactly one size. If stepping down, we use a dest override to
841 * reduce the size; if stepping up, we use a larger-sized move with a
842 * half source and a sign/zero-extension modifier */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700843
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700844 case nir_op_i2i8:
845 case nir_op_i2i16:
846 case nir_op_i2i32:
Alyssa Rosenzweig2655a302019-11-04 22:21:20 -0500847 case nir_op_i2i64:
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700848 /* If we end up upscale, we'll need a sign-extend on the
849 * operand (the second argument) */
850
851 sext_2 = true;
Alyssa Rosenzweig14a2032f2019-08-21 09:20:17 -0700852 /* fallthrough */
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700853 case nir_op_u2u8:
854 case nir_op_u2u16:
Alyssa Rosenzweig2655a302019-11-04 22:21:20 -0500855 case nir_op_u2u32:
Boris Brezillonf53a0792020-01-20 16:03:52 +0100856 case nir_op_u2u64:
857 case nir_op_f2f16:
Boris Brezillone1f9e8d2020-01-20 16:05:31 +0100858 case nir_op_f2f32:
859 case nir_op_f2f64: {
860 if (instr->op == nir_op_f2f16 || instr->op == nir_op_f2f32 ||
861 instr->op == nir_op_f2f64)
Boris Brezillonf53a0792020-01-20 16:03:52 +0100862 op = midgard_alu_op_fmov;
863 else
864 op = midgard_alu_op_imov;
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700865
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -0700866 if (dst_bitsize == (src_bitsize * 2)) {
867 /* Converting up */
868 half_2 = true;
869
870 /* Use a greater register mode */
871 reg_mode++;
872 } else if (src_bitsize == (dst_bitsize * 2)) {
873 /* Converting down */
874 dest_override = midgard_dest_override_lower;
875 }
876
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -0700877 break;
878 }
879
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +0000880 /* For greater-or-equal, we lower to less-or-equal and flip the
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000881 * arguments */
882
Alyssa Rosenzweig7b78af82019-03-26 04:01:33 +0000883 case nir_op_fge:
884 case nir_op_fge32:
885 case nir_op_ige32:
886 case nir_op_uge32: {
887 op =
888 instr->op == nir_op_fge ? midgard_alu_op_fle :
889 instr->op == nir_op_fge32 ? midgard_alu_op_fle :
890 instr->op == nir_op_ige32 ? midgard_alu_op_ile :
891 instr->op == nir_op_uge32 ? midgard_alu_op_ule :
892 0;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000893
894 /* Swap via temporary */
895 nir_alu_src temp = instr->src[1];
896 instr->src[1] = instr->src[0];
897 instr->src[0] = temp;
898
899 break;
900 }
901
Alyssa Rosenzweig3fb88422019-03-25 00:25:01 +0000902 case nir_op_b32csel: {
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000903 /* Midgard features both fcsel and icsel, depending on
904 * the type of the arguments/output. However, as long
905 * as we're careful we can _always_ use icsel and
906 * _never_ need fcsel, since the latter does additional
907 * floating-point-specific processing whereas the
908 * former just moves bits on the wire. It's not obvious
909 * why these are separate opcodes, save for the ability
910 * to do things like sat/pos/abs/neg for free */
Alyssa Rosenzweig3d7874c2019-05-03 01:54:16 +0000911
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000912 bool mixed = nir_is_non_scalar_swizzle(&instr->src[0], nr_components);
913 op = mixed ? midgard_alu_op_icsel_v : midgard_alu_op_icsel;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000914
Alyssa Rosenzweig726f0262019-05-07 02:52:08 +0000915 /* The condition is the first argument; move the other
916 * arguments up one to be a binary instruction for
Alyssa Rosenzweigd3b3daa2019-09-23 08:00:51 -0400917 * Midgard with the condition last */
Alyssa Rosenzweig8b15f8a2019-04-21 00:09:13 +0000918
Alyssa Rosenzweigd3b3daa2019-09-23 08:00:51 -0400919 nir_alu_src temp = instr->src[2];
920
921 instr->src[2] = instr->src[0];
922 instr->src[0] = instr->src[1];
923 instr->src[1] = temp;
924
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000925 break;
926 }
927
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000928 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +0100929 DBG("Unhandled ALU op %s\n", nir_op_infos[instr->op].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000930 assert(0);
931 return;
932 }
933
Alyssa Rosenzweig0a13bab2019-05-15 01:16:51 +0000934 /* Midgard can perform certain modifiers on output of an ALU op */
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700935 unsigned outmod;
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000936
Alyssa Rosenzweig67804812019-06-05 15:17:45 -0700937 if (midgard_is_integer_out_op(op)) {
938 outmod = midgard_outmod_int_wrap;
939 } else {
940 bool sat = instr->dest.saturate || instr->op == nir_op_fsat;
941 outmod = sat ? midgard_outmod_sat : midgard_outmod_none;
942 }
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +0000943
Alyssa Rosenzweig7bc91b42019-04-24 23:42:30 +0000944 /* fmax(a, 0.0) can turn into a .pos modifier as an optimization */
945
946 if (instr->op == nir_op_fmax) {
947 if (nir_is_fzero_constant(instr->src[0].src)) {
948 op = midgard_alu_op_fmov;
949 nr_inputs = 1;
950 outmod = midgard_outmod_pos;
951 instr->src[0] = instr->src[1];
952 } else if (nir_is_fzero_constant(instr->src[1].src)) {
953 op = midgard_alu_op_fmov;
954 nr_inputs = 1;
955 outmod = midgard_outmod_pos;
956 }
957 }
958
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000959 /* Fetch unit, quirks, etc information */
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +0000960 unsigned opcode_props = alu_opcode_props[op].props;
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000961 bool quirk_flipped_r24 = opcode_props & QUIRK_FLIPPED_R24;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000962
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000963 /* src0 will always exist afaik, but src1 will not for 1-argument
964 * instructions. The latter can only be fetched if the instruction
965 * needs it, or else we may segfault. */
966
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +0000967 unsigned src0 = nir_alu_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweig8e369962019-08-30 10:42:05 -0700968 unsigned src1 = nr_inputs >= 2 ? nir_alu_src_index(ctx, &instr->src[1]) : ~0;
969 unsigned src2 = nr_inputs == 3 ? nir_alu_src_index(ctx, &instr->src[2]) : ~0;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -0400970 assert(nr_inputs <= 3);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000971
972 /* Rather than use the instruction generation helpers, we do it
973 * ourselves here to avoid the mess */
974
975 midgard_instruction ins = {
976 .type = TAG_ALU_4,
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700977 .src = {
978 quirk_flipped_r24 ? ~0 : src0,
979 quirk_flipped_r24 ? src0 : src1,
Alyssa Rosenzweig8e369962019-08-30 10:42:05 -0700980 src2,
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -0500981 ~0
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -0700982 },
983 .dest = dest,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000984 };
985
Alyssa Rosenzweig8e369962019-08-30 10:42:05 -0700986 nir_alu_src *nirmods[3] = { NULL };
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000987
Alyssa Rosenzweig8e369962019-08-30 10:42:05 -0700988 if (nr_inputs >= 2) {
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +0000989 nirmods[0] = &instr->src[0];
990 nirmods[1] = &instr->src[1];
991 } else if (nr_inputs == 1) {
992 nirmods[quirk_flipped_r24] = &instr->src[0];
993 } else {
994 assert(0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +0000995 }
996
Alyssa Rosenzweig8e369962019-08-30 10:42:05 -0700997 if (nr_inputs == 3)
998 nirmods[2] = &instr->src[2];
999
Alyssa Rosenzweig659aa3d2019-05-26 03:16:37 +00001000 /* These were lowered to a move, so apply the corresponding mod */
1001
1002 if (instr->op == nir_op_fneg || instr->op == nir_op_fabs) {
1003 nir_alu_src *s = nirmods[quirk_flipped_r24];
1004
1005 if (instr->op == nir_op_fneg)
1006 s->negate = !s->negate;
1007
1008 if (instr->op == nir_op_fabs)
1009 s->abs = !s->abs;
1010 }
1011
Alyssa Rosenzweigfcdfb672019-04-22 03:25:42 +00001012 bool is_int = midgard_is_integer_op(op);
1013
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001014 ins.mask = mask_of(nr_components);
1015
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001016 midgard_vector_alu alu = {
1017 .op = op,
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001018 .reg_mode = reg_mode,
Alyssa Rosenzweig4df80ca2019-07-01 15:26:22 -07001019 .dest_override = dest_override,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001020 .outmod = outmod,
1021
Alyssa Rosenzweig7f807ef2019-07-01 16:44:00 -07001022 .src1 = vector_alu_srco_unsigned(vector_alu_modifiers(nirmods[0], is_int, broadcast_swizzle, half_1, sext_1)),
1023 .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 +00001024 };
1025
1026 /* Apply writemask if non-SSA, keeping in mind that we can't write to components that don't exist */
1027
1028 if (!is_ssa)
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001029 ins.mask &= instr->dest.write_mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001030
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001031 for (unsigned m = 0; m < 3; ++m) {
1032 if (!nirmods[m])
1033 continue;
1034
1035 for (unsigned c = 0; c < NIR_MAX_VEC_COMPONENTS; ++c)
1036 ins.swizzle[m][c] = nirmods[m]->swizzle[c];
1037
1038 /* Replicate. TODO: remove when vec16 lands */
1039 for (unsigned c = NIR_MAX_VEC_COMPONENTS; c < MIR_VEC_COMPONENTS; ++c)
1040 ins.swizzle[m][c] = nirmods[m]->swizzle[NIR_MAX_VEC_COMPONENTS - 1];
1041 }
1042
1043 if (nr_inputs == 3) {
1044 /* Conditions can't have mods */
1045 assert(!nirmods[2]->abs);
1046 assert(!nirmods[2]->negate);
1047 }
1048
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001049 ins.alu = alu;
1050
1051 /* Late fixup for emulated instructions */
1052
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001053 if (instr->op == nir_op_b2f32 || instr->op == nir_op_b2i32) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001054 /* Presently, our second argument is an inline #0 constant.
1055 * Switch over to an embedded 1.0 constant (that can't fit
1056 * inline, since we're 32-bit, not 16-bit like the inline
1057 * constants) */
1058
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001059 ins.has_inline_constant = false;
1060 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001061 ins.has_constants = true;
Alyssa Rosenzweig9da46032019-03-24 16:07:31 +00001062
Boris Brezillon15c92d12020-01-20 15:00:57 +01001063 if (instr->op == nir_op_b2f32)
1064 ins.constants.f32[0] = 1.0f;
1065 else
1066 ins.constants.i32[0] = 1;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001067
1068 for (unsigned c = 0; c < 16; ++c)
1069 ins.swizzle[1][c] = 0;
Alyssa Rosenzweig88c59792019-06-05 15:24:51 +00001070 } else if (nr_inputs == 1 && !quirk_flipped_r24) {
1071 /* Lots of instructions need a 0 plonked in */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001072 ins.has_inline_constant = false;
1073 ins.src[1] = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
Alyssa Rosenzweig3208c9d2019-03-25 01:13:12 +00001074 ins.has_constants = true;
Boris Brezillon15c92d12020-01-20 15:00:57 +01001075 ins.constants.u32[0] = 0;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001076
1077 for (unsigned c = 0; c < 16; ++c)
1078 ins.swizzle[1][c] = 0;
Alyssa Rosenzweigbcabcfe2019-04-25 04:25:33 +00001079 } else if (instr->op == nir_op_inot) {
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07001080 ins.invert = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001081 }
1082
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001083 if ((opcode_props & UNITS_ALL) == UNIT_VLUT) {
1084 /* To avoid duplicating the lookup tables (probably), true LUT
1085 * instructions can only operate as if they were scalars. Lower
1086 * them here by changing the component. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001087
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001088 unsigned orig_mask = ins.mask;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001089
1090 for (int i = 0; i < nr_components; ++i) {
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001091 /* Mask the associated component, dropping the
1092 * instruction if needed */
1093
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001094 ins.mask = 1 << i;
1095 ins.mask &= orig_mask;
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001096
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001097 if (!ins.mask)
Alyssa Rosenzweig2c9e1242019-06-17 11:49:44 -07001098 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001099
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001100 for (unsigned j = 0; j < MIR_VEC_COMPONENTS; ++j)
1101 ins.swizzle[0][j] = nirmods[0]->swizzle[i]; /* Pull from the correct component */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001102
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001103 emit_mir_instruction(ctx, ins);
1104 }
1105 } else {
1106 emit_mir_instruction(ctx, ins);
1107 }
1108}
1109
Alyssa Rosenzweig97dcad82019-02-07 03:39:25 +00001110#undef ALU_CASE
1111
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001112static void
1113mir_set_intr_mask(nir_instr *instr, midgard_instruction *ins, bool is_read)
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001114{
1115 nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001116 unsigned nir_mask = 0;
1117 unsigned dsize = 0;
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001118
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001119 if (is_read) {
1120 nir_mask = mask_of(nir_intrinsic_dest_components(intr));
1121 dsize = nir_dest_bit_size(intr->dest);
1122 } else {
1123 nir_mask = nir_intrinsic_write_mask(intr);
1124 dsize = 32;
1125 }
1126
1127 /* Once we have the NIR mask, we need to normalize to work in 32-bit space */
1128 unsigned bytemask = mir_to_bytemask(mir_mode_for_destsize(dsize), nir_mask);
1129 mir_set_bytemask(ins, bytemask);
1130
1131 if (dsize == 64)
1132 ins->load_64 = true;
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001133}
1134
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001135/* Uniforms and UBOs use a shared code path, as uniforms are just (slightly
1136 * optimized) versions of UBO #0 */
1137
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001138static midgard_instruction *
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001139emit_ubo_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001140 compiler_context *ctx,
Alyssa Rosenzweig65e6cb42019-08-13 09:11:48 -07001141 nir_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001142 unsigned dest,
1143 unsigned offset,
1144 nir_src *indirect_offset,
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001145 unsigned indirect_shift,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001146 unsigned index)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001147{
1148 /* TODO: half-floats */
1149
Alyssa Rosenzweigbc9a7d02019-11-15 14:19:34 -05001150 midgard_instruction ins = m_ld_ubo_int4(dest, 0);
Boris Brezillon15c92d12020-01-20 15:00:57 +01001151 ins.constants.u32[0] = offset;
Alyssa Rosenzweigda736512019-12-19 11:12:25 -05001152
1153 if (instr->type == nir_instr_type_intrinsic)
1154 mir_set_intr_mask(instr, &ins, true);
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001155
1156 if (indirect_offset) {
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001157 ins.src[2] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001158 ins.load_store.arg_2 = (indirect_shift << 5);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001159 } else {
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001160 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001161 }
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07001162
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001163 ins.load_store.arg_1 = index;
1164
Alyssa Rosenzweige7ac46b2019-08-02 17:09:54 -07001165 return emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001166}
1167
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001168/* SSBO reads are like UBO reads if you squint */
1169
1170static void
1171emit_ssbo_access(
1172 compiler_context *ctx,
1173 nir_instr *instr,
1174 bool is_read,
1175 unsigned srcdest,
1176 unsigned offset,
1177 nir_src *indirect_offset,
1178 unsigned index)
1179{
1180 /* TODO: types */
1181
1182 midgard_instruction ins;
1183
1184 if (is_read)
1185 ins = m_ld_int4(srcdest, offset);
1186 else
1187 ins = m_st_int4(srcdest, offset);
1188
1189 /* SSBO reads use a generic memory read interface, so we need the
1190 * address of the SSBO as the first argument. This is a sysval. */
1191
1192 unsigned addr = make_compiler_temp(ctx);
1193 emit_sysval_read(ctx, instr, addr, 2);
1194
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001195 /* The source array:
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001196 *
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001197 * src[0] = store ? value : unused
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001198 * src[1] = arg_1
1199 * src[2] = arg_2
1200 *
1201 * We would like arg_1 = the address and
1202 * arg_2 = the offset.
1203 */
1204
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001205 ins.src[1] = addr;
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001206
1207 /* TODO: What is this? It looks superficially like a shift << 5, but
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001208 * arg_1 doesn't take a shift Should it be E0 or A0? We also need the
1209 * indirect offset. */
1210
1211 if (indirect_offset) {
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001212 ins.load_store.arg_1 |= 0xE0;
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001213 ins.src[2] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001214 } else {
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001215 ins.load_store.arg_2 = 0x7E;
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001216 }
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001217
1218 /* TODO: Bounds check */
1219
1220 /* Finally, we emit the direct offset */
1221
1222 ins.load_store.varying_parameters = (offset & 0x1FF) << 1;
1223 ins.load_store.address = (offset >> 9);
Alyssa Rosenzweig1798f6b2019-11-15 15:16:53 -05001224 mir_set_intr_mask(instr, &ins, is_read);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001225
1226 emit_mir_instruction(ctx, ins);
1227}
1228
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001229static void
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001230emit_varying_read(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001231 compiler_context *ctx,
1232 unsigned dest, unsigned offset,
1233 unsigned nr_comp, unsigned component,
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001234 nir_src *indirect_offset, nir_alu_type type, bool flat)
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001235{
1236 /* XXX: Half-floats? */
1237 /* TODO: swizzle, mask */
1238
1239 midgard_instruction ins = m_ld_vary_32(dest, offset);
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001240 ins.mask = mask_of(nr_comp);
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001241
1242 for (unsigned i = 0; i < ARRAY_SIZE(ins.swizzle[0]); ++i)
1243 ins.swizzle[0][i] = MIN2(i + component, COMPONENT_W);
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001244
1245 midgard_varying_parameter p = {
1246 .is_varying = 1,
1247 .interpolation = midgard_interp_default,
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001248 .flat = flat,
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001249 };
1250
1251 unsigned u;
1252 memcpy(&u, &p, sizeof(p));
1253 ins.load_store.varying_parameters = u;
1254
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001255 if (indirect_offset)
Alyssa Rosenzweige7fd14c2019-10-26 15:50:38 -04001256 ins.src[2] = nir_src_index(ctx, indirect_offset);
Alyssa Rosenzweig513d02c2019-08-01 14:28:34 -07001257 else
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001258 ins.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001259
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001260 ins.load_store.arg_1 = 0x9E;
1261
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001262 /* Use the type appropriate load */
1263 switch (type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001264 case nir_type_uint:
1265 case nir_type_bool:
1266 ins.load_store.op = midgard_op_ld_vary_32u;
1267 break;
1268 case nir_type_int:
1269 ins.load_store.op = midgard_op_ld_vary_32i;
1270 break;
1271 case nir_type_float:
1272 ins.load_store.op = midgard_op_ld_vary_32;
1273 break;
1274 default:
1275 unreachable("Attempted to load unknown type");
1276 break;
Alyssa Rosenzweig9b97ed12019-06-28 09:30:59 -07001277 }
1278
Alyssa Rosenzweig15fae1e2019-06-04 23:26:09 +00001279 emit_mir_instruction(ctx, ins);
1280}
1281
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001282static void
1283emit_attr_read(
1284 compiler_context *ctx,
1285 unsigned dest, unsigned offset,
1286 unsigned nr_comp, nir_alu_type t)
1287{
1288 midgard_instruction ins = m_ld_attr_32(dest, offset);
1289 ins.load_store.arg_1 = 0x1E;
1290 ins.load_store.arg_2 = 0x1E;
1291 ins.mask = mask_of(nr_comp);
1292
1293 /* Use the type appropriate load */
1294 switch (t) {
1295 case nir_type_uint:
1296 case nir_type_bool:
1297 ins.load_store.op = midgard_op_ld_attr_32u;
1298 break;
1299 case nir_type_int:
1300 ins.load_store.op = midgard_op_ld_attr_32i;
1301 break;
1302 case nir_type_float:
1303 ins.load_store.op = midgard_op_ld_attr_32;
1304 break;
1305 default:
1306 unreachable("Attempted to load unknown type");
1307 break;
1308 }
1309
1310 emit_mir_instruction(ctx, ins);
1311}
1312
Alyssa Rosenzweigfa687402019-08-02 11:06:21 -07001313void
Alyssa Rosenzweig63e240d2019-08-02 17:10:18 -07001314emit_sysval_read(compiler_context *ctx, nir_instr *instr, signed dest_override,
1315 unsigned nr_components)
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001316{
Alyssa Rosenzweig6d8490f2019-07-11 15:34:56 -07001317 unsigned dest = 0;
1318
Boris Brezillonbd49c8f2019-06-14 09:59:20 +02001319 /* Figure out which uniform this is */
1320 int sysval = sysval_for_instr(ctx, instr, &dest);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001321 void *val = _mesa_hash_table_u64_search(ctx->sysval_to_id, sysval);
1322
Alyssa Rosenzweigfa687402019-08-02 11:06:21 -07001323 if (dest_override >= 0)
1324 dest = dest_override;
1325
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001326 /* Sysvals are prefix uniforms */
1327 unsigned uniform = ((uintptr_t) val) - 1;
1328
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001329 /* Emit the read itself -- this is never indirect */
Alyssa Rosenzweig63e240d2019-08-02 17:10:18 -07001330 midgard_instruction *ins =
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001331 emit_ubo_read(ctx, instr, dest, uniform * 16, NULL, 0, 0);
Alyssa Rosenzweig63e240d2019-08-02 17:10:18 -07001332
1333 ins->mask = mask_of(nr_components);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001334}
1335
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001336static unsigned
1337compute_builtin_arg(nir_op op)
1338{
1339 switch (op) {
1340 case nir_intrinsic_load_work_group_id:
1341 return 0x14;
1342 case nir_intrinsic_load_local_invocation_id:
1343 return 0x10;
1344 default:
1345 unreachable("Invalid compute paramater loaded");
1346 }
1347}
1348
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001349static void
1350emit_fragment_store(compiler_context *ctx, unsigned src, unsigned rt)
1351{
Alyssa Rosenzweig5e06d902019-08-30 11:06:33 -07001352 emit_explicit_constant(ctx, src, src);
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001353
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001354 struct midgard_instruction ins =
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05001355 v_branch(false, false);
1356
1357 ins.writeout = true;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001358
1359 /* Add dependencies */
Alyssa Rosenzweig76529832019-08-30 11:01:15 -07001360 ins.src[0] = src;
Boris Brezillon15c92d12020-01-20 15:00:57 +01001361 ins.constants.u32[0] = rt * 0x100;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001362
1363 /* Emit the branch */
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05001364 midgard_instruction *br = emit_mir_instruction(ctx, ins);
Alyssa Rosenzweig281cc6f2019-11-23 12:43:55 -05001365 schedule_barrier(ctx);
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05001366
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05001367 assert(rt < ARRAY_SIZE(ctx->writeout_branch));
1368 assert(!ctx->writeout_branch[rt]);
1369 ctx->writeout_branch[rt] = br;
1370
1371 /* Push our current location = current block count - 1 = where we'll
1372 * jump to. Maybe a bit too clever for my own good */
1373
1374 br->branch.target_block = ctx->block_count - 1;
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001375}
1376
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001377static void
1378emit_compute_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1379{
1380 unsigned reg = nir_dest_index(ctx, &instr->dest);
1381 midgard_instruction ins = m_ld_compute_id(reg, 0);
1382 ins.mask = mask_of(3);
1383 ins.load_store.arg_1 = compute_builtin_arg(instr->intrinsic);
1384 emit_mir_instruction(ctx, ins);
1385}
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05001386
1387static unsigned
1388vertex_builtin_arg(nir_op op)
1389{
1390 switch (op) {
1391 case nir_intrinsic_load_vertex_id:
1392 return PAN_VERTEX_ID;
1393 case nir_intrinsic_load_instance_id:
1394 return PAN_INSTANCE_ID;
1395 default:
1396 unreachable("Invalid vertex builtin");
1397 }
1398}
1399
1400static void
1401emit_vertex_builtin(compiler_context *ctx, nir_intrinsic_instr *instr)
1402{
1403 unsigned reg = nir_dest_index(ctx, &instr->dest);
1404 emit_attr_read(ctx, reg, vertex_builtin_arg(instr->intrinsic), 1, nir_type_int);
1405}
1406
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001407static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001408emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
1409{
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001410 unsigned offset = 0, reg;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001411
1412 switch (instr->intrinsic) {
1413 case nir_intrinsic_discard_if:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001414 case nir_intrinsic_discard: {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001415 bool conditional = instr->intrinsic == nir_intrinsic_discard_if;
1416 struct midgard_instruction discard = v_branch(conditional, false);
1417 discard.branch.target_type = TARGET_DISCARD;
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07001418
1419 if (conditional)
1420 discard.src[0] = nir_src_index(ctx, &instr->src[0]);
1421
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001422 emit_mir_instruction(ctx, discard);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07001423 schedule_barrier(ctx);
1424
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001425 break;
1426 }
1427
1428 case nir_intrinsic_load_uniform:
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001429 case nir_intrinsic_load_ubo:
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001430 case nir_intrinsic_load_ssbo:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001431 case nir_intrinsic_load_input:
1432 case nir_intrinsic_load_interpolated_input: {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001433 bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform;
1434 bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo;
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001435 bool is_ssbo = instr->intrinsic == nir_intrinsic_load_ssbo;
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001436 bool is_flat = instr->intrinsic == nir_intrinsic_load_input;
1437 bool is_interp = instr->intrinsic == nir_intrinsic_load_interpolated_input;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001438
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001439 /* Get the base type of the intrinsic */
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001440 /* TODO: Infer type? Does it matter? */
1441 nir_alu_type t =
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001442 (is_ubo || is_ssbo) ? nir_type_uint :
1443 (is_interp) ? nir_type_float :
1444 nir_intrinsic_type(instr);
1445
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001446 t = nir_alu_type_get_base_type(t);
1447
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001448 if (!(is_ubo || is_ssbo)) {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001449 offset = nir_intrinsic_base(instr);
1450 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001451
Alyssa Rosenzweigc1715b52019-05-22 02:44:12 +00001452 unsigned nr_comp = nir_intrinsic_dest_components(instr);
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001453
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001454 nir_src *src_offset = nir_get_io_offset_src(instr);
1455
1456 bool direct = nir_src_is_const(*src_offset);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001457 nir_src *indirect_offset = direct ? NULL : src_offset;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001458
1459 if (direct)
1460 offset += nir_src_as_uint(*src_offset);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001461
Alyssa Rosenzweig43568f22019-06-06 08:16:04 -07001462 /* We may need to apply a fractional offset */
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001463 int component = (is_flat || is_interp) ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001464 nir_intrinsic_component(instr) : 0;
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001465 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001466
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001467 if (is_uniform && !ctx->is_blend) {
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001468 emit_ubo_read(ctx, &instr->instr, reg, (ctx->sysval_count + offset) * 16, indirect_offset, 4, 0);
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001469 } else if (is_ubo) {
1470 nir_src index = instr->src[0];
1471
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001472 /* TODO: Is indirect block number possible? */
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001473 assert(nir_src_is_const(index));
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001474
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001475 uint32_t uindex = nir_src_as_uint(index) + 1;
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001476 emit_ubo_read(ctx, &instr->instr, reg, offset, indirect_offset, 0, uindex);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001477 } else if (is_ssbo) {
1478 nir_src index = instr->src[0];
1479 assert(nir_src_is_const(index));
1480 uint32_t uindex = nir_src_as_uint(index);
1481
1482 emit_ssbo_access(ctx, &instr->instr, true, reg, offset, indirect_offset, uindex);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001483 } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) {
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001484 emit_varying_read(ctx, reg, offset, nr_comp, component, indirect_offset, t, is_flat);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001485 } else if (ctx->is_blend) {
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001486 /* For blend shaders, load the input color, which is
1487 * preloaded to r0 */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001488
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04001489 midgard_instruction move = v_mov(SSA_FIXED_REGISTER(0), reg);
Alyssa Rosenzweig005d9b12019-05-20 00:46:48 +00001490 emit_mir_instruction(ctx, move);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07001491 schedule_barrier(ctx);
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001492 } else if (ctx->stage == MESA_SHADER_VERTEX) {
1493 emit_attr_read(ctx, reg, offset, nr_comp, t);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001494 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001495 DBG("Unknown load\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001496 assert(0);
1497 }
1498
1499 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001500 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001501
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001502 /* Artefact of load_interpolated_input. TODO: other barycentric modes */
1503 case nir_intrinsic_load_barycentric_pixel:
Tomeu Vizoso25042062020-01-03 09:42:11 +01001504 case nir_intrinsic_load_barycentric_centroid:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001505 break;
1506
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001507 /* Reads 128-bit value raw off the tilebuffer during blending, tasty */
1508
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001509 case nir_intrinsic_load_raw_output_pan:
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001510 case nir_intrinsic_load_output_u8_as_fp16_pan:
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001511 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001512 assert(ctx->is_blend);
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001513
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001514 /* T720 and below use different blend opcodes with slightly
1515 * different semantics than T760 and up */
1516
Alyssa Rosenzweig2d1e18e2020-01-02 12:28:54 -05001517 midgard_instruction ld = m_ld_color_buffer_32u(reg, 0);
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -05001518 bool old_blend = ctx->quirks & MIDGARD_OLD_BLEND;
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001519
1520 if (instr->intrinsic == nir_intrinsic_load_output_u8_as_fp16_pan) {
1521 ld.load_store.op = old_blend ?
1522 midgard_op_ld_color_buffer_u8_as_fp16_old :
1523 midgard_op_ld_color_buffer_u8_as_fp16;
1524
1525 if (old_blend) {
1526 ld.load_store.address = 1;
1527 ld.load_store.arg_2 = 0x1E;
1528 }
1529
1530 for (unsigned c = 2; c < 16; ++c)
1531 ld.swizzle[0][c] = 0;
1532 }
1533
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001534 emit_mir_instruction(ctx, ld);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001535 break;
1536
1537 case nir_intrinsic_load_blend_const_color_rgba: {
1538 assert(ctx->is_blend);
1539 reg = nir_dest_index(ctx, &instr->dest);
1540
1541 /* Blend constants are embedded directly in the shader and
1542 * patched in, so we use some magic routing */
1543
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04001544 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), reg);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001545 ins.has_constants = true;
1546 ins.has_blend_constant = true;
1547 emit_mir_instruction(ctx, ins);
1548 break;
1549 }
1550
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001551 case nir_intrinsic_store_output:
Karol Herbst1aabb792019-03-29 21:40:45 +01001552 assert(nir_src_is_const(instr->src[1]) && "no indirect outputs");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001553
Karol Herbst1aabb792019-03-29 21:40:45 +01001554 offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001555
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001556 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001557
1558 if (ctx->stage == MESA_SHADER_FRAGMENT) {
Alyssa Rosenzweigdff49862019-08-12 12:36:46 -07001559 emit_fragment_store(ctx, reg, offset);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001560 } else if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001561 /* We should have been vectorized, though we don't
1562 * currently check that st_vary is emitted only once
1563 * per slot (this is relevant, since there's not a mask
1564 * parameter available on the store [set to 0 by the
1565 * blob]). We do respect the component by adjusting the
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001566 * swizzle. If this is a constant source, we'll need to
1567 * emit that explicitly. */
1568
1569 emit_explicit_constant(ctx, reg, reg);
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001570
Boris Brezillon6af63c92020-01-16 11:20:06 +01001571 unsigned dst_component = nir_intrinsic_component(instr);
Alyssa Rosenzweig27887212019-08-15 16:53:03 -07001572 unsigned nr_comp = nir_src_num_components(instr->src[0]);
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07001573
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001574 midgard_instruction st = m_st_vary_32(reg, offset);
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001575 st.load_store.arg_1 = 0x9E;
1576 st.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001577
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001578 switch (nir_alu_type_get_base_type(nir_intrinsic_type(instr))) {
1579 case nir_type_uint:
1580 case nir_type_bool:
1581 st.load_store.op = midgard_op_st_vary_32u;
1582 break;
1583 case nir_type_int:
1584 st.load_store.op = midgard_op_st_vary_32i;
1585 break;
1586 case nir_type_float:
1587 st.load_store.op = midgard_op_st_vary_32;
1588 break;
1589 default:
1590 unreachable("Attempted to store unknown type");
1591 break;
1592 }
1593
Boris Brezillon6af63c92020-01-16 11:20:06 +01001594 /* nir_intrinsic_component(store_intr) encodes the
1595 * destination component start. Source component offset
1596 * adjustment is taken care of in
1597 * install_registers_instr(), when offset_swizzle() is
1598 * called.
1599 */
1600 unsigned src_component = COMPONENT_X;
1601
1602 assert(nr_comp > 0);
1603 for (unsigned i = 0; i < ARRAY_SIZE(st.swizzle); ++i) {
1604 st.swizzle[0][i] = src_component;
1605 if (i >= dst_component && i < dst_component + nr_comp - 1)
1606 src_component++;
1607 }
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001608
Alyssa Rosenzweig4aced182019-06-06 08:21:27 -07001609 emit_mir_instruction(ctx, st);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001610 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001611 DBG("Unknown store\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001612 assert(0);
1613 }
1614
1615 break;
1616
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001617 /* Special case of store_output for lowered blend shaders */
1618 case nir_intrinsic_store_raw_output_pan:
1619 assert (ctx->stage == MESA_SHADER_FRAGMENT);
1620 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweig8555bff2019-11-26 08:48:33 -05001621
1622 if (ctx->quirks & MIDGARD_OLD_BLEND) {
1623 /* Suppose reg = qr0.xyzw. That means 4 8-bit ---> 1 32-bit. So
1624 * reg = r0.x. We want to splatter. So we can do a 32-bit move
1625 * of:
1626 *
1627 * imov r0.xyzw, r0.xxxx
1628 */
1629
1630 unsigned expanded = make_compiler_temp(ctx);
1631
1632 midgard_instruction splatter = v_mov(reg, expanded);
1633
1634 for (unsigned c = 0; c < 16; ++c)
1635 splatter.swizzle[1][c] = 0;
1636
1637 emit_mir_instruction(ctx, splatter);
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05001638 emit_fragment_store(ctx, expanded, ctx->blend_rt);
Alyssa Rosenzweig8555bff2019-11-26 08:48:33 -05001639 } else
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05001640 emit_fragment_store(ctx, reg, ctx->blend_rt);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001641
1642 break;
1643
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001644 case nir_intrinsic_store_ssbo:
1645 assert(nir_src_is_const(instr->src[1]));
1646
1647 bool direct_offset = nir_src_is_const(instr->src[2]);
1648 offset = direct_offset ? nir_src_as_uint(instr->src[2]) : 0;
1649 nir_src *indirect_offset = direct_offset ? NULL : &instr->src[2];
1650 reg = nir_src_index(ctx, &instr->src[0]);
1651
1652 uint32_t uindex = nir_src_as_uint(instr->src[1]);
1653
1654 emit_explicit_constant(ctx, reg, reg);
1655 emit_ssbo_access(ctx, &instr->instr, false, reg, offset, indirect_offset, uindex);
1656 break;
1657
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001658 case nir_intrinsic_load_viewport_scale:
1659 case nir_intrinsic_load_viewport_offset:
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -07001660 case nir_intrinsic_load_num_work_groups:
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -05001661 case nir_intrinsic_load_sampler_lod_parameters_pan:
Alyssa Rosenzweig61892742019-08-21 09:15:56 -07001662 emit_sysval_read(ctx, &instr->instr, ~0, 3);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001663 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001664
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001665 case nir_intrinsic_load_work_group_id:
1666 case nir_intrinsic_load_local_invocation_id:
1667 emit_compute_builtin(ctx, instr);
1668 break;
1669
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05001670 case nir_intrinsic_load_vertex_id:
1671 case nir_intrinsic_load_instance_id:
1672 emit_vertex_builtin(ctx, instr);
1673 break;
1674
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001675 default:
Tomeu Vizoso25042062020-01-03 09:42:11 +01001676 printf ("Unhandled intrinsic %s\n", nir_intrinsic_infos[instr->intrinsic].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001677 assert(0);
1678 break;
1679 }
1680}
1681
1682static unsigned
1683midgard_tex_format(enum glsl_sampler_dim dim)
1684{
1685 switch (dim) {
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001686 case GLSL_SAMPLER_DIM_1D:
1687 case GLSL_SAMPLER_DIM_BUF:
1688 return MALI_TEX_1D;
1689
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001690 case GLSL_SAMPLER_DIM_2D:
1691 case GLSL_SAMPLER_DIM_EXTERNAL:
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -07001692 case GLSL_SAMPLER_DIM_RECT:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001693 return MALI_TEX_2D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001694
1695 case GLSL_SAMPLER_DIM_3D:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001696 return MALI_TEX_3D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001697
1698 case GLSL_SAMPLER_DIM_CUBE:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001699 return MALI_TEX_CUBE;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001700
1701 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001702 DBG("Unknown sampler dim type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001703 assert(0);
1704 return 0;
1705 }
1706}
1707
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001708/* Tries to attach an explicit LOD / bias as a constant. Returns whether this
1709 * was successful */
1710
1711static bool
1712pan_attach_constant_bias(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001713 compiler_context *ctx,
1714 nir_src lod,
1715 midgard_texture_word *word)
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001716{
1717 /* To attach as constant, it has to *be* constant */
1718
1719 if (!nir_src_is_const(lod))
1720 return false;
1721
1722 float f = nir_src_as_float(lod);
1723
1724 /* Break into fixed-point */
1725 signed lod_int = f;
1726 float lod_frac = f - lod_int;
1727
1728 /* Carry over negative fractions */
1729 if (lod_frac < 0.0) {
1730 lod_int--;
1731 lod_frac += 1.0;
1732 }
1733
1734 /* Encode */
1735 word->bias = float_to_ubyte(lod_frac);
1736 word->bias_int = lod_int;
1737
1738 return true;
1739}
1740
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001741static enum mali_sampler_type
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001742midgard_sampler_type(nir_alu_type t) {
1743 switch (nir_alu_type_get_base_type(t))
1744 {
1745 case nir_type_float:
1746 return MALI_SAMPLER_FLOAT;
1747 case nir_type_int:
1748 return MALI_SAMPLER_SIGNED;
1749 case nir_type_uint:
1750 return MALI_SAMPLER_UNSIGNED;
1751 default:
1752 unreachable("Unknown sampler type");
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001753 }
1754}
1755
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001756static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001757emit_texop_native(compiler_context *ctx, nir_tex_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001758 unsigned midgard_texop)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001759{
1760 /* TODO */
1761 //assert (!instr->sampler);
1762 //assert (!instr->texture_array_size);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001763
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001764 int texture_index = instr->texture_index;
1765 int sampler_index = texture_index;
1766
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001767 /* No helper to build texture words -- we do it all here */
1768 midgard_instruction ins = {
1769 .type = TAG_TEXTURE_4,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001770 .mask = 0xF,
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001771 .dest = nir_dest_index(ctx, &instr->dest),
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001772 .src = { ~0, ~0, ~0, ~0 },
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001773 .swizzle = SWIZZLE_IDENTITY_4,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001774 .texture = {
1775 .op = midgard_texop,
1776 .format = midgard_tex_format(instr->sampler_dim),
1777 .texture_handle = texture_index,
1778 .sampler_handle = sampler_index,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001779
1780 /* TODO: half */
1781 .in_reg_full = 1,
1782 .out_full = 1,
1783
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001784 .sampler_type = midgard_sampler_type(instr->dest_type),
Alyssa Rosenzweig1a53bed2019-12-16 17:13:46 -05001785 .shadow = instr->is_shadow,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001786 }
1787 };
Alyssa Rosenzweig8429bee2019-06-14 16:03:39 -07001788
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001789 /* We may need a temporary for the coordinate */
1790
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001791 bool needs_temp_coord =
1792 (midgard_texop == TEXTURE_OP_TEXEL_FETCH) ||
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001793 (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) ||
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001794 (instr->is_shadow);
1795
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001796 unsigned coords = needs_temp_coord ? make_compiler_temp_reg(ctx) : 0;
1797
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001798 for (unsigned i = 0; i < instr->num_srcs; ++i) {
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001799 int index = nir_src_index(ctx, &instr->src[i].src);
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07001800 unsigned nr_components = nir_src_num_components(instr->src[i].src);
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001801
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001802 switch (instr->src[i].src_type) {
1803 case nir_tex_src_coord: {
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001804 emit_explicit_constant(ctx, index, index);
1805
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001806 unsigned coord_mask = mask_of(instr->coord_components);
1807
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05001808 bool flip_zw = (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) && (coord_mask & (1 << COMPONENT_Z));
1809
1810 if (flip_zw)
1811 coord_mask ^= ((1 << COMPONENT_Z) | (1 << COMPONENT_W));
1812
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001813 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
1814 /* texelFetch is undefined on samplerCube */
1815 assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH);
1816
1817 /* For cubemaps, we use a special ld/st op to
1818 * select the face and copy the xy into the
1819 * texture register */
1820
1821 midgard_instruction ld = m_ld_cubemap_coords(coords, 0);
1822 ld.src[1] = index;
1823 ld.mask = 0x3; /* xy */
1824 ld.load_store.arg_1 = 0x20;
1825 ld.swizzle[1][3] = COMPONENT_X;
1826 emit_mir_instruction(ctx, ld);
1827
1828 /* xyzw -> xyxx */
1829 ins.swizzle[1][2] = instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
1830 ins.swizzle[1][3] = COMPONENT_X;
1831 } else if (needs_temp_coord) {
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001832 /* mov coord_temp, coords */
1833 midgard_instruction mov = v_mov(index, coords);
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001834 mov.mask = coord_mask;
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05001835
1836 if (flip_zw)
1837 mov.swizzle[1][COMPONENT_W] = COMPONENT_Z;
1838
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001839 emit_mir_instruction(ctx, mov);
1840 } else {
1841 coords = index;
1842 }
1843
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001844 ins.src[1] = coords;
1845
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001846 /* Texelfetch coordinates uses all four elements
1847 * (xyz/index) regardless of texture dimensionality,
1848 * which means it's necessary to zero the unused
1849 * components to keep everything happy */
1850
1851 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001852 /* mov index.zw, #0, or generalized */
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001853 midgard_instruction mov =
1854 v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), coords);
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001855 mov.has_constants = true;
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001856 mov.mask = coord_mask ^ 0xF;
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001857 emit_mir_instruction(ctx, mov);
1858 }
1859
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001860 if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) {
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05001861 /* Array component in w but NIR wants it in z,
1862 * but if we have a temp coord we already fixed
1863 * that up */
1864
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001865 if (nr_components == 3) {
1866 ins.swizzle[1][2] = COMPONENT_Z;
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05001867 ins.swizzle[1][3] = needs_temp_coord ? COMPONENT_W : COMPONENT_Z;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001868 } else if (nr_components == 2) {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001869 ins.swizzle[1][2] =
1870 instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001871 ins.swizzle[1][3] = COMPONENT_X;
1872 } else
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07001873 unreachable("Invalid texture 2D components");
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001874 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001875
Alyssa Rosenzweig64b2fe92019-12-20 12:38:24 -05001876 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
1877 /* We zeroed */
1878 ins.swizzle[1][2] = COMPONENT_Z;
1879 ins.swizzle[1][3] = COMPONENT_W;
1880 }
1881
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001882 break;
1883 }
1884
Alyssa Rosenzweig4012e062019-06-11 09:43:08 -07001885 case nir_tex_src_bias:
1886 case nir_tex_src_lod: {
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001887 /* Try as a constant if we can */
1888
1889 bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH;
1890 if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture))
1891 break;
1892
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001893 ins.texture.lod_register = true;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001894 ins.src[2] = index;
Alyssa Rosenzweig72e57492019-12-20 12:34:20 -05001895
1896 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1897 ins.swizzle[2][c] = COMPONENT_X;
1898
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001899 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001900
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001901 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001902 };
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001903
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001904 case nir_tex_src_offset: {
1905 ins.texture.offset_register = true;
1906 ins.src[3] = index;
1907
1908 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1909 ins.swizzle[3][c] = (c > COMPONENT_Z) ? 0 : c;
1910
1911 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweig4ec1f952019-12-20 12:58:10 -05001912 break;
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001913 };
1914
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001915 case nir_tex_src_comparator: {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001916 unsigned comp = COMPONENT_Z;
1917
1918 /* mov coord_temp.foo, coords */
1919 midgard_instruction mov = v_mov(index, coords);
1920 mov.mask = 1 << comp;
1921
1922 for (unsigned i = 0; i < MIR_VEC_COMPONENTS; ++i)
1923 mov.swizzle[1][i] = COMPONENT_X;
1924
1925 emit_mir_instruction(ctx, mov);
1926 break;
1927 }
1928
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01001929 default: {
1930 printf ("Unknown texture source type: %d\n", instr->src[i].src_type);
1931 assert(0);
1932 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001933 }
1934 }
1935
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001936 emit_mir_instruction(ctx, ins);
1937
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001938 /* Used for .cont and .last hinting */
1939 ctx->texture_op_count++;
1940}
1941
1942static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001943emit_tex(compiler_context *ctx, nir_tex_instr *instr)
1944{
1945 switch (instr->op) {
1946 case nir_texop_tex:
1947 case nir_texop_txb:
1948 emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL);
1949 break;
1950 case nir_texop_txl:
1951 emit_texop_native(ctx, instr, TEXTURE_OP_LOD);
1952 break;
Alyssa Rosenzweigf4bb7f02019-06-21 16:17:34 -07001953 case nir_texop_txf:
1954 emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH);
1955 break;
Boris Brezillonc3558862019-06-17 22:13:04 +02001956 case nir_texop_txs:
Alyssa Rosenzweig61892742019-08-21 09:15:56 -07001957 emit_sysval_read(ctx, &instr->instr, ~0, 4);
Boris Brezillonc3558862019-06-17 22:13:04 +02001958 break;
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01001959 default: {
1960 printf ("Unhandled texture op: %d\n", instr->op);
1961 assert(0);
1962 }
Boris Brezillon5c17f842019-06-17 21:47:46 +02001963 }
1964}
1965
1966static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001967emit_jump(compiler_context *ctx, nir_jump_instr *instr)
1968{
1969 switch (instr->type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001970 case nir_jump_break: {
1971 /* Emit a branch out of the loop */
1972 struct midgard_instruction br = v_branch(false, false);
1973 br.branch.target_type = TARGET_BREAK;
1974 br.branch.target_break = ctx->current_loop_depth;
1975 emit_mir_instruction(ctx, br);
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001976 break;
1977 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001978
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001979 default:
1980 DBG("Unknown jump type %d\n", instr->type);
1981 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001982 }
1983}
1984
1985static void
1986emit_instr(compiler_context *ctx, struct nir_instr *instr)
1987{
1988 switch (instr->type) {
1989 case nir_instr_type_load_const:
1990 emit_load_const(ctx, nir_instr_as_load_const(instr));
1991 break;
1992
1993 case nir_instr_type_intrinsic:
1994 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
1995 break;
1996
1997 case nir_instr_type_alu:
1998 emit_alu(ctx, nir_instr_as_alu(instr));
1999 break;
2000
2001 case nir_instr_type_tex:
2002 emit_tex(ctx, nir_instr_as_tex(instr));
2003 break;
2004
2005 case nir_instr_type_jump:
2006 emit_jump(ctx, nir_instr_as_jump(instr));
2007 break;
2008
2009 case nir_instr_type_ssa_undef:
2010 /* Spurious */
2011 break;
2012
2013 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002014 DBG("Unhandled instruction type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002015 break;
2016 }
2017}
2018
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002019
2020/* ALU instructions can inline or embed constants, which decreases register
2021 * pressure and saves space. */
2022
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002023#define CONDITIONAL_ATTACH(idx) { \
2024 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[idx] + 1); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002025\
2026 if (entry) { \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002027 attach_constants(ctx, alu, entry, alu->src[idx] + 1); \
2028 alu->src[idx] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002029 } \
2030}
2031
2032static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002033inline_alu_constants(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002034{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002035 mir_foreach_instr_in_block(block, alu) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002036 /* Other instructions cannot inline constants */
2037 if (alu->type != TAG_ALU_4) continue;
Alyssa Rosenzweig5e06d902019-08-30 11:06:33 -07002038 if (alu->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002039
2040 /* If there is already a constant here, we can do nothing */
2041 if (alu->has_constants) continue;
2042
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002043 CONDITIONAL_ATTACH(0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002044
2045 if (!alu->has_constants) {
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002046 CONDITIONAL_ATTACH(1)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002047 } else if (!alu->inline_constant) {
2048 /* Corner case: _two_ vec4 constants, for instance with a
2049 * csel. For this case, we can only use a constant
2050 * register for one, we'll have to emit a move for the
2051 * other. Note, if both arguments are constants, then
2052 * necessarily neither argument depends on the value of
2053 * any particular register. As the destination register
2054 * will be wiped, that means we can spill the constant
2055 * to the destination register.
2056 */
2057
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002058 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[1] + 1);
2059 unsigned scratch = alu->dest;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002060
2061 if (entry) {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04002062 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), scratch);
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002063 attach_constants(ctx, &ins, entry, alu->src[1] + 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002064
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002065 /* Set the source */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002066 alu->src[1] = scratch;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002067
2068 /* Inject us -before- the last instruction which set r31 */
Boris Brezillon938c5b02019-08-28 09:17:21 +02002069 mir_insert_instruction_before(ctx, mir_prev_op(alu), ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002070 }
2071 }
2072 }
2073}
2074
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002075/* Being a little silly with the names, but returns the op that is the bitwise
2076 * inverse of the op with the argument switched. I.e. (f and g are
2077 * contrapositives):
2078 *
2079 * f(a, b) = ~g(b, a)
2080 *
2081 * Corollary: if g is the contrapositve of f, f is the contrapositive of g:
2082 *
2083 * f(a, b) = ~g(b, a)
2084 * ~f(a, b) = g(b, a)
2085 * ~f(a, b) = ~h(a, b) where h is the contrapositive of g
2086 * f(a, b) = h(a, b)
2087 *
2088 * Thus we define this function in pairs.
2089 */
2090
2091static inline midgard_alu_op
2092mir_contrapositive(midgard_alu_op op)
2093{
2094 switch (op) {
2095 case midgard_alu_op_flt:
2096 return midgard_alu_op_fle;
2097 case midgard_alu_op_fle:
2098 return midgard_alu_op_flt;
2099
2100 case midgard_alu_op_ilt:
2101 return midgard_alu_op_ile;
2102 case midgard_alu_op_ile:
2103 return midgard_alu_op_ilt;
2104
2105 default:
2106 unreachable("No known contrapositive");
2107 }
2108}
2109
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002110/* Midgard supports two types of constants, embedded constants (128-bit) and
2111 * inline constants (16-bit). Sometimes, especially with scalar ops, embedded
2112 * constants can be demoted to inline constants, for space savings and
2113 * sometimes a performance boost */
2114
2115static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002116embedded_to_inline_constant(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002117{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002118 mir_foreach_instr_in_block(block, ins) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002119 if (!ins->has_constants) continue;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002120 if (ins->has_inline_constant) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002121
2122 /* Blend constants must not be inlined by definition */
2123 if (ins->has_blend_constant) continue;
2124
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07002125 /* We can inline 32-bit (sometimes) or 16-bit (usually) */
2126 bool is_16 = ins->alu.reg_mode == midgard_reg_mode_16;
2127 bool is_32 = ins->alu.reg_mode == midgard_reg_mode_32;
2128
2129 if (!(is_16 || is_32))
2130 continue;
2131
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002132 /* src1 cannot be an inline constant due to encoding
2133 * restrictions. So, if possible we try to flip the arguments
2134 * in that case */
2135
2136 int op = ins->alu.op;
2137
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002138 if (ins->src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002139 bool flip = alu_opcode_props[op].props & OP_COMMUTES;
2140
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002141 switch (op) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002142 /* Conditionals can be inverted */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002143 case midgard_alu_op_flt:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002144 case midgard_alu_op_ilt:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002145 case midgard_alu_op_fle:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002146 case midgard_alu_op_ile:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002147 ins->alu.op = mir_contrapositive(ins->alu.op);
2148 ins->invert = true;
2149 flip = true;
2150 break;
2151
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002152 case midgard_alu_op_fcsel:
2153 case midgard_alu_op_icsel:
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +00002154 DBG("Missed non-commutative flip (%s)\n", alu_opcode_props[op].name);
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00002155 default:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002156 break;
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00002157 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002158
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002159 if (flip)
2160 mir_flip(ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002161 }
2162
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002163 if (ins->src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002164 /* Extract the source information */
2165
2166 midgard_vector_alu_src *src;
2167 int q = ins->alu.src2;
2168 midgard_vector_alu_src *m = (midgard_vector_alu_src *) &q;
2169 src = m;
2170
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002171 /* Component is from the swizzle. Take a nonzero component */
2172 assert(ins->mask);
2173 unsigned first_comp = ffs(ins->mask) - 1;
2174 unsigned component = ins->swizzle[1][first_comp];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002175
2176 /* Scale constant appropriately, if we can legally */
2177 uint16_t scaled_constant = 0;
2178
Boris Brezillon15c92d12020-01-20 15:00:57 +01002179 if (is_16) {
2180 scaled_constant = ins->constants.u16[component];
2181 } else if (midgard_is_integer_op(op)) {
2182 scaled_constant = ins->constants.u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002183
2184 /* Constant overflow after resize */
Boris Brezillon15c92d12020-01-20 15:00:57 +01002185 if (scaled_constant != ins->constants.u32[component])
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002186 continue;
2187 } else {
Boris Brezillon15c92d12020-01-20 15:00:57 +01002188 float original = ins->constants.f32[component];
Alyssa Rosenzweig39786142019-04-28 15:46:47 +00002189 scaled_constant = _mesa_float_to_half(original);
2190
2191 /* Check for loss of precision. If this is
2192 * mediump, we don't care, but for a highp
2193 * shader, we need to pay attention. NIR
2194 * doesn't yet tell us which mode we're in!
2195 * Practically this prevents most constants
2196 * from being inlined, sadly. */
2197
2198 float fp32 = _mesa_half_to_float(scaled_constant);
2199
2200 if (fp32 != original)
2201 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002202 }
2203
2204 /* We don't know how to handle these with a constant */
2205
Alyssa Rosenzweigc45487b2019-07-26 11:52:30 -07002206 if (mir_nontrivial_source2_mod_simple(ins) || src->rep_low || src->rep_high) {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002207 DBG("Bailing inline constant...\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002208 continue;
2209 }
2210
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002211 /* Make sure that the constant is not itself a vector
2212 * by checking if all accessed values are the same. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002213
Boris Brezillon15c92d12020-01-20 15:00:57 +01002214 const midgard_constants *cons = &ins->constants;
2215 uint32_t value = is_16 ? cons->u16[component] : cons->u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002216
2217 bool is_vector = false;
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07002218 unsigned mask = effective_writemask(&ins->alu, ins->mask);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002219
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002220 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002221 /* We only care if this component is actually used */
2222 if (!(mask & (1 << c)))
2223 continue;
2224
Boris Brezillon15c92d12020-01-20 15:00:57 +01002225 uint32_t test = is_16 ?
2226 cons->u16[ins->swizzle[1][c]] :
2227 cons->u32[ins->swizzle[1][c]];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002228
2229 if (test != value) {
2230 is_vector = true;
2231 break;
2232 }
2233 }
2234
2235 if (is_vector)
2236 continue;
2237
2238 /* Get rid of the embedded constant */
2239 ins->has_constants = false;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002240 ins->src[1] = ~0;
2241 ins->has_inline_constant = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002242 ins->inline_constant = scaled_constant;
2243 }
2244 }
2245}
2246
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002247/* Dead code elimination for branches at the end of a block - only one branch
2248 * per block is legal semantically */
2249
2250static void
2251midgard_opt_cull_dead_branch(compiler_context *ctx, midgard_block *block)
2252{
2253 bool branched = false;
2254
2255 mir_foreach_instr_in_block_safe(block, ins) {
2256 if (!midgard_is_branch_unit(ins->unit)) continue;
2257
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002258 if (branched)
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002259 mir_remove_instruction(ins);
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002260
2261 branched = true;
2262 }
2263}
2264
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002265/* fmov.pos is an idiom for fpos. Propoagate the .pos up to the source, so then
2266 * the move can be propagated away entirely */
2267
2268static bool
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002269mir_compose_float_outmod(midgard_outmod_float *outmod, midgard_outmod_float comp)
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002270{
2271 /* Nothing to do */
2272 if (comp == midgard_outmod_none)
2273 return true;
2274
2275 if (*outmod == midgard_outmod_none) {
2276 *outmod = comp;
2277 return true;
2278 }
2279
2280 /* TODO: Compose rules */
2281 return false;
2282}
2283
2284static bool
2285midgard_opt_pos_propagate(compiler_context *ctx, midgard_block *block)
2286{
2287 bool progress = false;
2288
2289 mir_foreach_instr_in_block_safe(block, ins) {
2290 if (ins->type != TAG_ALU_4) continue;
2291 if (ins->alu.op != midgard_alu_op_fmov) continue;
2292 if (ins->alu.outmod != midgard_outmod_pos) continue;
2293
2294 /* TODO: Registers? */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002295 unsigned src = ins->src[1];
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -07002296 if (src & IS_REG) continue;
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002297
2298 /* There might be a source modifier, too */
2299 if (mir_nontrivial_source2_mod(ins)) continue;
2300
2301 /* Backpropagate the modifier */
2302 mir_foreach_instr_in_block_from_rev(block, v, mir_prev_op(ins)) {
2303 if (v->type != TAG_ALU_4) continue;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002304 if (v->dest != src) continue;
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002305
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002306 /* Can we even take a float outmod? */
2307 if (midgard_is_integer_out_op(v->alu.op)) continue;
2308
2309 midgard_outmod_float temp = v->alu.outmod;
2310 progress |= mir_compose_float_outmod(&temp, ins->alu.outmod);
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002311
2312 /* Throw in the towel.. */
2313 if (!progress) break;
2314
2315 /* Otherwise, transfer the modifier */
2316 v->alu.outmod = temp;
2317 ins->alu.outmod = midgard_outmod_none;
2318
2319 break;
2320 }
2321 }
2322
2323 return progress;
2324}
2325
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002326static unsigned
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002327emit_fragment_epilogue(compiler_context *ctx, unsigned rt)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002328{
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002329 /* Loop to ourselves */
2330
2331 struct midgard_instruction ins = v_branch(false, false);
2332 ins.writeout = true;
2333 ins.branch.target_block = ctx->block_count - 1;
Boris Brezillon15c92d12020-01-20 15:00:57 +01002334 ins.constants.u32[0] = rt * 0x100;
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002335 emit_mir_instruction(ctx, ins);
2336
Alyssa Rosenzweig3448b262019-12-03 10:37:01 -05002337 ctx->current_block->epilogue = true;
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002338 schedule_barrier(ctx);
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002339 return ins.branch.target_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002340}
2341
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002342static midgard_block *
2343emit_block(compiler_context *ctx, nir_block *block)
2344{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002345 midgard_block *this_block = ctx->after_block;
2346 ctx->after_block = NULL;
2347
2348 if (!this_block)
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002349 this_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002350
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002351 list_addtail(&this_block->link, &ctx->blocks);
2352
2353 this_block->is_scheduled = false;
2354 ++ctx->block_count;
2355
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002356 /* Set up current block */
2357 list_inithead(&this_block->instructions);
2358 ctx->current_block = this_block;
2359
2360 nir_foreach_instr(instr, block) {
2361 emit_instr(ctx, instr);
2362 ++ctx->instruction_count;
2363 }
2364
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002365 return this_block;
2366}
2367
2368static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list);
2369
2370static void
2371emit_if(struct compiler_context *ctx, nir_if *nif)
2372{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002373 midgard_block *before_block = ctx->current_block;
2374
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002375 /* Speculatively emit the branch, but we can't fill it in until later */
2376 EMIT(branch, true, true);
2377 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block);
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07002378 then_branch->src[0] = nir_src_index(ctx, &nif->condition);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002379
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002380 /* Emit the two subblocks. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002381 midgard_block *then_block = emit_cf_list(ctx, &nif->then_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002382 midgard_block *end_then_block = ctx->current_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002383
2384 /* Emit a jump from the end of the then block to the end of the else */
2385 EMIT(branch, false, false);
2386 midgard_instruction *then_exit = mir_last_in_block(ctx->current_block);
2387
2388 /* Emit second block, and check if it's empty */
2389
2390 int else_idx = ctx->block_count;
2391 int count_in = ctx->instruction_count;
2392 midgard_block *else_block = emit_cf_list(ctx, &nif->else_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002393 midgard_block *end_else_block = ctx->current_block;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002394 int after_else_idx = ctx->block_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002395
2396 /* Now that we have the subblocks emitted, fix up the branches */
2397
2398 assert(then_block);
2399 assert(else_block);
2400
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002401 if (ctx->instruction_count == count_in) {
2402 /* The else block is empty, so don't emit an exit jump */
2403 mir_remove_instruction(then_exit);
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002404 then_branch->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002405 } else {
2406 then_branch->branch.target_block = else_idx;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002407 then_exit->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002408 }
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002409
2410 /* Wire up the successors */
2411
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002412 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002413
2414 midgard_block_add_successor(before_block, then_block);
2415 midgard_block_add_successor(before_block, else_block);
2416
2417 midgard_block_add_successor(end_then_block, ctx->after_block);
2418 midgard_block_add_successor(end_else_block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002419}
2420
2421static void
2422emit_loop(struct compiler_context *ctx, nir_loop *nloop)
2423{
2424 /* Remember where we are */
2425 midgard_block *start_block = ctx->current_block;
2426
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002427 /* Allocate a loop number, growing the current inner loop depth */
2428 int loop_idx = ++ctx->current_loop_depth;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002429
2430 /* Get index from before the body so we can loop back later */
2431 int start_idx = ctx->block_count;
2432
2433 /* Emit the body itself */
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002434 midgard_block *loop_block = emit_cf_list(ctx, &nloop->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002435
2436 /* Branch back to loop back */
2437 struct midgard_instruction br_back = v_branch(false, false);
2438 br_back.branch.target_block = start_idx;
2439 emit_mir_instruction(ctx, br_back);
2440
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002441 /* Mark down that branch in the graph. */
2442 midgard_block_add_successor(start_block, loop_block);
2443 midgard_block_add_successor(ctx->current_block, loop_block);
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +00002444
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002445 /* Find the index of the block about to follow us (note: we don't add
2446 * one; blocks are 0-indexed so we get a fencepost problem) */
2447 int break_block_idx = ctx->block_count;
2448
2449 /* Fix up the break statements we emitted to point to the right place,
2450 * now that we can allocate a block number for them */
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002451 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002452
2453 list_for_each_entry_from(struct midgard_block, block, start_block, &ctx->blocks, link) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002454 mir_foreach_instr_in_block(block, ins) {
2455 if (ins->type != TAG_ALU_4) continue;
2456 if (!ins->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002457
2458 /* We found a branch -- check the type to see if we need to do anything */
2459 if (ins->branch.target_type != TARGET_BREAK) continue;
2460
2461 /* It's a break! Check if it's our break */
2462 if (ins->branch.target_break != loop_idx) continue;
2463
2464 /* Okay, cool, we're breaking out of this loop.
2465 * Rewrite from a break to a goto */
2466
2467 ins->branch.target_type = TARGET_GOTO;
2468 ins->branch.target_block = break_block_idx;
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002469
2470 midgard_block_add_successor(block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002471 }
2472 }
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002473
2474 /* Now that we've finished emitting the loop, free up the depth again
2475 * so we play nice with recursion amid nested loops */
2476 --ctx->current_loop_depth;
Alyssa Rosenzweig7ad65162019-07-09 11:10:49 -07002477
2478 /* Dump loop stats */
2479 ++ctx->loop_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002480}
2481
2482static midgard_block *
2483emit_cf_list(struct compiler_context *ctx, struct exec_list *list)
2484{
2485 midgard_block *start_block = NULL;
2486
2487 foreach_list_typed(nir_cf_node, node, node, list) {
2488 switch (node->type) {
2489 case nir_cf_node_block: {
2490 midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node));
2491
2492 if (!start_block)
2493 start_block = block;
2494
2495 break;
2496 }
2497
2498 case nir_cf_node_if:
2499 emit_if(ctx, nir_cf_node_as_if(node));
2500 break;
2501
2502 case nir_cf_node_loop:
2503 emit_loop(ctx, nir_cf_node_as_loop(node));
2504 break;
2505
2506 case nir_cf_node_function:
2507 assert(0);
2508 break;
2509 }
2510 }
2511
2512 return start_block;
2513}
2514
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002515/* Due to lookahead, we need to report the first tag executed in the command
2516 * stream and in branch targets. An initial block might be empty, so iterate
2517 * until we find one that 'works' */
2518
2519static unsigned
2520midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx)
2521{
2522 midgard_block *initial_block = mir_get_block(ctx, block_idx);
2523
2524 unsigned first_tag = 0;
2525
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002526 mir_foreach_block_from(ctx, initial_block, v) {
Alyssa Rosenzweig45ac8ea2019-11-04 10:32:49 -05002527 if (v->quadword_count) {
2528 midgard_bundle *initial_bundle =
2529 util_dynarray_element(&v->bundles, midgard_bundle, 0);
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002530
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002531 first_tag = initial_bundle->tag;
2532 break;
2533 }
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002534 }
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002535
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002536 return first_tag;
2537}
2538
Alyssa Rosenzweig67fe2af2019-12-27 16:01:34 -05002539static unsigned
2540pan_format_from_nir_base(nir_alu_type base)
2541{
2542 switch (base) {
2543 case nir_type_int:
2544 return MALI_FORMAT_SINT;
2545 case nir_type_uint:
2546 case nir_type_bool:
2547 return MALI_FORMAT_UINT;
2548 case nir_type_float:
2549 return MALI_CHANNEL_FLOAT;
2550 default:
2551 unreachable("Invalid base");
2552 }
2553}
2554
2555static unsigned
2556pan_format_from_nir_size(nir_alu_type base, unsigned size)
2557{
2558 if (base == nir_type_float) {
2559 switch (size) {
2560 case 16: return MALI_FORMAT_SINT;
2561 case 32: return MALI_FORMAT_UNORM;
2562 default:
2563 unreachable("Invalid float size for format");
2564 }
2565 } else {
2566 switch (size) {
2567 case 1:
2568 case 8: return MALI_CHANNEL_8;
2569 case 16: return MALI_CHANNEL_16;
2570 case 32: return MALI_CHANNEL_32;
2571 default:
2572 unreachable("Invalid int size for format");
2573 }
2574 }
2575}
2576
2577static enum mali_format
2578pan_format_from_glsl(const struct glsl_type *type)
2579{
2580 enum glsl_base_type glsl_base = glsl_get_base_type(glsl_without_array(type));
2581 nir_alu_type t = nir_get_nir_type_for_glsl_base_type(glsl_base);
2582
2583 unsigned base = nir_alu_type_get_base_type(t);
2584 unsigned size = nir_alu_type_get_type_size(t);
2585
2586 return pan_format_from_nir_base(base) |
2587 pan_format_from_nir_size(base, size) |
2588 MALI_NR_CHANNELS(4);
2589}
2590
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002591/* For each fragment writeout instruction, generate a writeout loop to
2592 * associate with it */
2593
2594static void
2595mir_add_writeout_loops(compiler_context *ctx)
2596{
2597 for (unsigned rt = 0; rt < ARRAY_SIZE(ctx->writeout_branch); ++rt) {
2598 midgard_instruction *br = ctx->writeout_branch[rt];
2599 if (!br) continue;
2600
2601 unsigned popped = br->branch.target_block;
2602 midgard_block_add_successor(mir_get_block(ctx, popped - 1), ctx->current_block);
2603 br->branch.target_block = emit_fragment_epilogue(ctx, rt);
2604
2605 /* If we have more RTs, we'll need to restore back after our
2606 * loop terminates */
2607
2608 if ((rt + 1) < ARRAY_SIZE(ctx->writeout_branch) && ctx->writeout_branch[rt + 1]) {
2609 midgard_instruction uncond = v_branch(false, false);
2610 uncond.branch.target_block = popped;
2611 emit_mir_instruction(ctx, uncond);
2612 midgard_block_add_successor(ctx->current_block, mir_get_block(ctx, popped));
2613 schedule_barrier(ctx);
2614 } else {
2615 /* We're last, so we can terminate here */
2616 br->last_writeout = true;
2617 }
2618 }
2619}
2620
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002621int
Alyssa Rosenzweig35418f62019-12-16 18:05:21 -05002622midgard_compile_shader_nir(nir_shader *nir, midgard_program *program, bool is_blend, unsigned blend_rt, unsigned gpu_id, bool shaderdb)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002623{
2624 struct util_dynarray *compiled = &program->compiled;
2625
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002626 midgard_debug = debug_get_option_midgard_debug();
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002627
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002628 /* TODO: Bound against what? */
2629 compiler_context *ctx = rzalloc(NULL, compiler_context);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002630
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002631 ctx->nir = nir;
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002632 ctx->stage = nir->info.stage;
2633 ctx->is_blend = is_blend;
2634 ctx->alpha_ref = program->alpha_ref;
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05002635 ctx->blend_rt = blend_rt;
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -05002636 ctx->quirks = midgard_get_quirks(gpu_id);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002637
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07002638 /* Start off with a safe cutoff, allowing usage of all 16 work
2639 * registers. Later, we'll promote uniform reads to uniform registers
2640 * if we determine it is beneficial to do so */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002641 ctx->uniform_cutoff = 8;
2642
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002643 /* Initialize at a global (not block) level hash tables */
2644
2645 ctx->ssa_constants = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002646 ctx->hash_to_temp = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002647 ctx->sysval_to_id = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002648
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002649 /* Record the varying mapping for the command stream's bookkeeping */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002650
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002651 struct exec_list *varyings =
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002652 ctx->stage == MESA_SHADER_VERTEX ? &nir->outputs : &nir->inputs;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002653
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002654 unsigned max_varying = 0;
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002655 nir_foreach_variable(var, varyings) {
2656 unsigned loc = var->data.driver_location;
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002657 unsigned sz = glsl_type_size(var->type, FALSE);
2658
Boris Brezillon749c5442019-06-13 14:56:02 +02002659 for (int c = 0; c < sz; ++c) {
2660 program->varyings[loc + c] = var->data.location + c;
Alyssa Rosenzweig67fe2af2019-12-27 16:01:34 -05002661 program->varying_type[loc + c] = pan_format_from_glsl(var->type);
Boris Brezillon749c5442019-06-13 14:56:02 +02002662 max_varying = MAX2(max_varying, loc + c);
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002663 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002664 }
2665
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002666 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
2667 * (so we don't accidentally duplicate the epilogue since mesa/st has
2668 * messed with our I/O quite a bit already) */
2669
2670 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002671
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002672 if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002673 NIR_PASS_V(nir, nir_lower_viewport_transform);
Alyssa Rosenzweig20237162019-08-26 12:14:11 -07002674 NIR_PASS_V(nir, nir_lower_point_size, 1.0, 1024.0);
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002675 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002676
2677 NIR_PASS_V(nir, nir_lower_var_copies);
2678 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2679 NIR_PASS_V(nir, nir_split_var_copies);
2680 NIR_PASS_V(nir, nir_lower_var_copies);
2681 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
2682 NIR_PASS_V(nir, nir_lower_var_copies);
2683 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002684
Eric Anholt771adff2019-04-08 16:32:01 -07002685 NIR_PASS_V(nir, nir_lower_io, nir_var_all, glsl_type_size, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002686
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002687 /* Optimisation passes */
2688
Alyssa Rosenzweigbda2bb32019-11-21 08:45:27 -05002689 optimise_nir(nir, ctx->quirks);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002690
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002691 if (midgard_debug & MIDGARD_DBG_SHADERS) {
2692 nir_print_shader(nir, stdout);
2693 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002694
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002695 /* Assign sysvals and counts, now that we're sure
2696 * (post-optimisation) */
2697
2698 midgard_nir_assign_sysvals(ctx, nir);
2699
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002700 program->uniform_count = nir->num_uniforms;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002701 program->sysval_count = ctx->sysval_count;
2702 memcpy(program->sysvals, ctx->sysvals, sizeof(ctx->sysvals[0]) * ctx->sysval_count);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002703
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002704 nir_foreach_function(func, nir) {
2705 if (!func->impl)
2706 continue;
2707
2708 list_inithead(&ctx->blocks);
2709 ctx->block_count = 0;
2710 ctx->func = func;
2711
2712 emit_cf_list(ctx, &func->impl->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002713 break; /* TODO: Multi-function shaders */
2714 }
2715
2716 util_dynarray_init(compiled, NULL);
2717
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002718 /* Per-block lowering before opts */
2719
2720 mir_foreach_block(ctx, block) {
2721 inline_alu_constants(ctx, block);
2722 midgard_opt_promote_fmov(ctx, block);
2723 embedded_to_inline_constant(ctx, block);
2724 }
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002725 /* MIR-level optimizations */
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002726
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002727 bool progress = false;
2728
2729 do {
2730 progress = false;
2731
2732 mir_foreach_block(ctx, block) {
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002733 progress |= midgard_opt_pos_propagate(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002734 progress |= midgard_opt_copy_prop(ctx, block);
2735 progress |= midgard_opt_dead_code_eliminate(ctx, block);
Alyssa Rosenzweig9ce75822019-07-24 15:37:24 -07002736 progress |= midgard_opt_combine_projection(ctx, block);
2737 progress |= midgard_opt_varying_projection(ctx, block);
Alyssa Rosenzweig620c2712019-07-26 13:14:55 -07002738 progress |= midgard_opt_not_propagate(ctx, block);
Alyssa Rosenzweigd066ca352019-07-26 13:32:54 -07002739 progress |= midgard_opt_fuse_src_invert(ctx, block);
Alyssa Rosenzweigb821e1b2019-07-26 13:08:54 -07002740 progress |= midgard_opt_fuse_dest_invert(ctx, block);
Alyssa Rosenzweigc20063a2019-09-28 12:39:15 -04002741 progress |= midgard_opt_csel_invert(ctx, block);
Afonso Bordado3e1e4ad2019-12-10 13:18:00 +00002742 progress |= midgard_opt_drop_cmp_invert(ctx, block);
Afonso Bordado525cbe82019-12-27 17:09:51 +00002743 progress |= midgard_opt_invert_branch(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002744 }
2745 } while (progress);
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002746
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002747 mir_foreach_block(ctx, block) {
2748 midgard_lower_invert(ctx, block);
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -07002749 midgard_lower_derivatives(ctx, block);
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002750 }
2751
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002752 /* Nested control-flow can result in dead branches at the end of the
2753 * block. This messes with our analysis and is just dead code, so cull
2754 * them */
2755 mir_foreach_block(ctx, block) {
2756 midgard_opt_cull_dead_branch(ctx, block);
2757 }
2758
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002759 /* Ensure we were lowered */
2760 mir_foreach_instr_global(ctx, ins) {
2761 assert(!ins->invert);
2762 }
2763
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002764 if (ctx->stage == MESA_SHADER_FRAGMENT)
2765 mir_add_writeout_loops(ctx);
2766
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002767 /* Schedule! */
Robert Foss62adb652020-01-15 01:14:16 +01002768 midgard_schedule_program(ctx);
Alyssa Rosenzweig9dc3b182019-12-06 09:32:38 -05002769 mir_ra(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002770
2771 /* Now that all the bundles are scheduled and we can calculate block
2772 * sizes, emit actual branch instructions rather than placeholders */
2773
2774 int br_block_idx = 0;
2775
2776 mir_foreach_block(ctx, block) {
2777 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2778 for (int c = 0; c < bundle->instruction_count; ++c) {
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002779 midgard_instruction *ins = bundle->instructions[c];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002780
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002781 if (!midgard_is_branch_unit(ins->unit)) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002782
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002783 /* Parse some basic branch info */
2784 bool is_compact = ins->unit == ALU_ENAB_BR_COMPACT;
2785 bool is_conditional = ins->branch.conditional;
2786 bool is_inverted = ins->branch.invert_conditional;
2787 bool is_discard = ins->branch.target_type == TARGET_DISCARD;
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002788 bool is_writeout = ins->writeout;
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002789
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002790 /* Determine the block we're jumping to */
2791 int target_number = ins->branch.target_block;
2792
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002793 /* Report the destination tag */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002794 int dest_tag = is_discard ? 0 : midgard_get_first_tag_from_block(ctx, target_number);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002795
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002796 /* Count up the number of quadwords we're
2797 * jumping over = number of quadwords until
2798 * (br_block_idx, target_number) */
2799
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002800 int quadword_offset = 0;
2801
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002802 if (is_discard) {
Alyssa Rosenzweig7f75b2b2019-07-30 17:07:25 -07002803 /* Ignored */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002804 } else if (target_number > br_block_idx) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002805 /* Jump forward */
2806
2807 for (int idx = br_block_idx + 1; idx < target_number; ++idx) {
2808 midgard_block *blk = mir_get_block(ctx, idx);
2809 assert(blk);
2810
2811 quadword_offset += blk->quadword_count;
2812 }
2813 } else {
2814 /* Jump backwards */
2815
2816 for (int idx = br_block_idx; idx >= target_number; --idx) {
2817 midgard_block *blk = mir_get_block(ctx, idx);
2818 assert(blk);
2819
2820 quadword_offset -= blk->quadword_count;
2821 }
2822 }
2823
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002824 /* Unconditional extended branches (far jumps)
2825 * have issues, so we always use a conditional
2826 * branch, setting the condition to always for
2827 * unconditional. For compact unconditional
2828 * branches, cond isn't used so it doesn't
2829 * matter what we pick. */
2830
2831 midgard_condition cond =
2832 !is_conditional ? midgard_condition_always :
2833 is_inverted ? midgard_condition_false :
2834 midgard_condition_true;
2835
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002836 midgard_jmp_writeout_op op =
2837 is_discard ? midgard_jmp_writeout_op_discard :
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002838 is_writeout ? midgard_jmp_writeout_op_writeout :
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002839 (is_compact && !is_conditional) ? midgard_jmp_writeout_op_branch_uncond :
2840 midgard_jmp_writeout_op_branch_cond;
2841
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002842 if (!is_compact) {
2843 midgard_branch_extended branch =
2844 midgard_create_branch_extended(
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002845 cond, op,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002846 dest_tag,
2847 quadword_offset);
2848
2849 memcpy(&ins->branch_extended, &branch, sizeof(branch));
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002850 } else if (is_conditional || is_discard) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002851 midgard_branch_cond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002852 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002853 .dest_tag = dest_tag,
2854 .offset = quadword_offset,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002855 .cond = cond
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002856 };
2857
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002858 assert(branch.offset == quadword_offset);
2859
2860 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002861 } else {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002862 assert(op == midgard_jmp_writeout_op_branch_uncond);
2863
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002864 midgard_branch_uncond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002865 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002866 .dest_tag = dest_tag,
2867 .offset = quadword_offset,
2868 .unknown = 1
2869 };
2870
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002871 assert(branch.offset == quadword_offset);
2872
2873 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002874 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002875 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002876 }
2877
2878 ++br_block_idx;
2879 }
2880
2881 /* Emit flat binary from the instruction arrays. Iterate each block in
2882 * sequence. Save instruction boundaries such that lookahead tags can
2883 * be assigned easily */
2884
2885 /* Cache _all_ bundles in source order for lookahead across failed branches */
2886
2887 int bundle_count = 0;
2888 mir_foreach_block(ctx, block) {
2889 bundle_count += block->bundles.size / sizeof(midgard_bundle);
2890 }
2891 midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count);
2892 int bundle_idx = 0;
2893 mir_foreach_block(ctx, block) {
2894 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2895 source_order_bundles[bundle_idx++] = bundle;
2896 }
2897 }
2898
2899 int current_bundle = 0;
2900
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00002901 /* Midgard prefetches instruction types, so during emission we
2902 * need to lookahead. Unless this is the last instruction, in
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002903 * which we return 1. */
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00002904
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002905 mir_foreach_block(ctx, block) {
Alyssa Rosenzweigd3ad8d62019-06-06 11:19:44 -07002906 mir_foreach_bundle_in_block(block, bundle) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002907 int lookahead = 1;
2908
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002909 if (!bundle->last_writeout && (current_bundle + 1 < bundle_count))
2910 lookahead = source_order_bundles[current_bundle + 1]->tag;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002911
2912 emit_binary_bundle(ctx, bundle, compiled, lookahead);
2913 ++current_bundle;
2914 }
2915
2916 /* TODO: Free deeper */
2917 //util_dynarray_fini(&block->instructions);
2918 }
2919
2920 free(source_order_bundles);
2921
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002922 /* Report the very first tag executed */
2923 program->first_tag = midgard_get_first_tag_from_block(ctx, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002924
2925 /* Deal with off-by-one related to the fencepost problem */
2926 program->work_register_count = ctx->work_registers + 1;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002927 program->uniform_cutoff = ctx->uniform_cutoff;
2928
2929 program->blend_patch_offset = ctx->blend_constant_offset;
Alyssa Rosenzweigf0d00612019-07-19 16:23:52 -07002930 program->tls_size = ctx->tls_size;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002931
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002932 if (midgard_debug & MIDGARD_DBG_SHADERS)
Icecream95968f36d2020-01-23 09:42:12 +13002933 disassemble_midgard(stdout, program->compiled.data, program->compiled.size, gpu_id, ctx->stage);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002934
Alyssa Rosenzweig35418f62019-12-16 18:05:21 -05002935 if (midgard_debug & MIDGARD_DBG_SHADERDB || shaderdb) {
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07002936 unsigned nr_bundles = 0, nr_ins = 0;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002937
2938 /* Count instructions and bundles */
2939
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002940 mir_foreach_block(ctx, block) {
2941 nr_bundles += util_dynarray_num_elements(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002942 &block->bundles, midgard_bundle);
Alyssa Rosenzweig2d739f62019-07-09 11:16:57 -07002943
Alyssa Rosenzweig67909c82019-08-30 13:08:16 -07002944 mir_foreach_bundle_in_block(block, bun)
2945 nr_ins += bun->instruction_count;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002946 }
2947
2948 /* Calculate thread count. There are certain cutoffs by
2949 * register count for thread count */
2950
2951 unsigned nr_registers = program->work_register_count;
2952
2953 unsigned nr_threads =
2954 (nr_registers <= 4) ? 4 :
2955 (nr_registers <= 8) ? 2 :
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002956 1;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002957
2958 /* Dump stats */
2959
2960 fprintf(stderr, "shader%d - %s shader: "
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002961 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002962 "%u registers, %u threads, %u loops, "
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07002963 "%u:%u spills:fills\n",
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002964 SHADER_DB_COUNT++,
2965 gl_shader_stage_name(ctx->stage),
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07002966 nr_ins, nr_bundles, ctx->quadword_count,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002967 nr_registers, nr_threads,
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002968 ctx->loop_count,
2969 ctx->spills, ctx->fills);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002970 }
2971
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002972 ralloc_free(ctx);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002973
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002974 return 0;
2975}