blob: 76294c4c81aa9bd5db55c6f4090156d4ed053dc6 [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
Boris Brezillonc68cd392020-01-31 09:22:50 +01001407static const nir_variable *
1408search_var(struct exec_list *vars, unsigned driver_loc)
1409{
1410 nir_foreach_variable(var, vars) {
1411 if (var->data.driver_location == driver_loc)
1412 return var;
1413 }
1414
1415 return NULL;
1416}
1417
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001418static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001419emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
1420{
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001421 unsigned offset = 0, reg;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001422
1423 switch (instr->intrinsic) {
1424 case nir_intrinsic_discard_if:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001425 case nir_intrinsic_discard: {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001426 bool conditional = instr->intrinsic == nir_intrinsic_discard_if;
1427 struct midgard_instruction discard = v_branch(conditional, false);
1428 discard.branch.target_type = TARGET_DISCARD;
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07001429
1430 if (conditional)
1431 discard.src[0] = nir_src_index(ctx, &instr->src[0]);
1432
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00001433 emit_mir_instruction(ctx, discard);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07001434 schedule_barrier(ctx);
1435
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001436 break;
1437 }
1438
1439 case nir_intrinsic_load_uniform:
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001440 case nir_intrinsic_load_ubo:
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001441 case nir_intrinsic_load_ssbo:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001442 case nir_intrinsic_load_input:
1443 case nir_intrinsic_load_interpolated_input: {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001444 bool is_uniform = instr->intrinsic == nir_intrinsic_load_uniform;
1445 bool is_ubo = instr->intrinsic == nir_intrinsic_load_ubo;
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001446 bool is_ssbo = instr->intrinsic == nir_intrinsic_load_ssbo;
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001447 bool is_flat = instr->intrinsic == nir_intrinsic_load_input;
1448 bool is_interp = instr->intrinsic == nir_intrinsic_load_interpolated_input;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001449
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001450 /* Get the base type of the intrinsic */
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001451 /* TODO: Infer type? Does it matter? */
1452 nir_alu_type t =
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001453 (is_ubo || is_ssbo) ? nir_type_uint :
1454 (is_interp) ? nir_type_float :
1455 nir_intrinsic_type(instr);
1456
Alyssa Rosenzweigbbc050b2019-06-27 15:33:07 -07001457 t = nir_alu_type_get_base_type(t);
1458
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001459 if (!(is_ubo || is_ssbo)) {
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001460 offset = nir_intrinsic_base(instr);
1461 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001462
Alyssa Rosenzweigc1715b52019-05-22 02:44:12 +00001463 unsigned nr_comp = nir_intrinsic_dest_components(instr);
Alyssa Rosenzweig6a466c02019-04-20 23:52:42 +00001464
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001465 nir_src *src_offset = nir_get_io_offset_src(instr);
1466
1467 bool direct = nir_src_is_const(*src_offset);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001468 nir_src *indirect_offset = direct ? NULL : src_offset;
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001469
1470 if (direct)
1471 offset += nir_src_as_uint(*src_offset);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001472
Alyssa Rosenzweig43568f22019-06-06 08:16:04 -07001473 /* We may need to apply a fractional offset */
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001474 int component = (is_flat || is_interp) ?
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001475 nir_intrinsic_component(instr) : 0;
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001476 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001477
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001478 if (is_uniform && !ctx->is_blend) {
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001479 emit_ubo_read(ctx, &instr->instr, reg, (ctx->sysval_count + offset) * 16, indirect_offset, 4, 0);
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001480 } else if (is_ubo) {
1481 nir_src index = instr->src[0];
1482
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001483 /* TODO: Is indirect block number possible? */
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001484 assert(nir_src_is_const(index));
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001485
Alyssa Rosenzweig5e2c3d42019-06-20 15:51:31 -07001486 uint32_t uindex = nir_src_as_uint(index) + 1;
Alyssa Rosenzweig59d30fd2020-01-10 17:47:57 -05001487 emit_ubo_read(ctx, &instr->instr, reg, offset, indirect_offset, 0, uindex);
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001488 } else if (is_ssbo) {
1489 nir_src index = instr->src[0];
1490 assert(nir_src_is_const(index));
1491 uint32_t uindex = nir_src_as_uint(index);
1492
1493 emit_ssbo_access(ctx, &instr->instr, true, reg, offset, indirect_offset, uindex);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001494 } else if (ctx->stage == MESA_SHADER_FRAGMENT && !ctx->is_blend) {
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001495 emit_varying_read(ctx, reg, offset, nr_comp, component, indirect_offset, t, is_flat);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001496 } else if (ctx->is_blend) {
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001497 /* For blend shaders, load the input color, which is
1498 * preloaded to r0 */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001499
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04001500 midgard_instruction move = v_mov(SSA_FIXED_REGISTER(0), reg);
Alyssa Rosenzweig005d9b12019-05-20 00:46:48 +00001501 emit_mir_instruction(ctx, move);
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07001502 schedule_barrier(ctx);
Alyssa Rosenzweig6e688902019-12-19 13:24:17 -05001503 } else if (ctx->stage == MESA_SHADER_VERTEX) {
1504 emit_attr_read(ctx, reg, offset, nr_comp, t);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001505 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001506 DBG("Unknown load\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001507 assert(0);
1508 }
1509
1510 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001511 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001512
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001513 /* Artefact of load_interpolated_input. TODO: other barycentric modes */
1514 case nir_intrinsic_load_barycentric_pixel:
Tomeu Vizoso25042062020-01-03 09:42:11 +01001515 case nir_intrinsic_load_barycentric_centroid:
Alyssa Rosenzweigc17a4412019-12-27 15:32:50 -05001516 break;
1517
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001518 /* Reads 128-bit value raw off the tilebuffer during blending, tasty */
1519
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001520 case nir_intrinsic_load_raw_output_pan:
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001521 case nir_intrinsic_load_output_u8_as_fp16_pan:
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001522 reg = nir_dest_index(ctx, &instr->dest);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001523 assert(ctx->is_blend);
Alyssa Rosenzweig1686ef82019-07-01 17:23:58 -07001524
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001525 /* T720 and below use different blend opcodes with slightly
1526 * different semantics than T760 and up */
1527
Alyssa Rosenzweig2d1e18e2020-01-02 12:28:54 -05001528 midgard_instruction ld = m_ld_color_buffer_32u(reg, 0);
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -05001529 bool old_blend = ctx->quirks & MIDGARD_OLD_BLEND;
Alyssa Rosenzweig843874c2019-11-06 21:50:32 -05001530
1531 if (instr->intrinsic == nir_intrinsic_load_output_u8_as_fp16_pan) {
1532 ld.load_store.op = old_blend ?
1533 midgard_op_ld_color_buffer_u8_as_fp16_old :
1534 midgard_op_ld_color_buffer_u8_as_fp16;
1535
1536 if (old_blend) {
1537 ld.load_store.address = 1;
1538 ld.load_store.arg_2 = 0x1E;
1539 }
1540
1541 for (unsigned c = 2; c < 16; ++c)
1542 ld.swizzle[0][c] = 0;
1543 }
1544
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07001545 emit_mir_instruction(ctx, ld);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001546 break;
1547
1548 case nir_intrinsic_load_blend_const_color_rgba: {
1549 assert(ctx->is_blend);
1550 reg = nir_dest_index(ctx, &instr->dest);
1551
1552 /* Blend constants are embedded directly in the shader and
1553 * patched in, so we use some magic routing */
1554
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04001555 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), reg);
Alyssa Rosenzweig39104222019-05-06 02:12:41 +00001556 ins.has_constants = true;
1557 ins.has_blend_constant = true;
1558 emit_mir_instruction(ctx, ins);
1559 break;
1560 }
1561
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001562 case nir_intrinsic_store_output:
Karol Herbst1aabb792019-03-29 21:40:45 +01001563 assert(nir_src_is_const(instr->src[1]) && "no indirect outputs");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001564
Karol Herbst1aabb792019-03-29 21:40:45 +01001565 offset = nir_intrinsic_base(instr) + nir_src_as_uint(instr->src[1]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001566
Alyssa Rosenzweig4ed23b12019-02-07 04:56:13 +00001567 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001568
1569 if (ctx->stage == MESA_SHADER_FRAGMENT) {
Boris Brezillonc68cd392020-01-31 09:22:50 +01001570 const nir_variable *var;
1571 enum midgard_rt_id rt;
1572
1573 var = search_var(&ctx->nir->outputs,
1574 nir_intrinsic_base(instr));
1575 assert(var);
1576 if (var->data.location == FRAG_RESULT_COLOR)
1577 rt = MIDGARD_COLOR_RT0;
1578 else if (var->data.location >= FRAG_RESULT_DATA0)
1579 rt = MIDGARD_COLOR_RT0 + var->data.location -
1580 FRAG_RESULT_DATA0;
1581 else
1582 assert(0);
1583
1584 emit_fragment_store(ctx, reg, rt);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001585 } else if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001586 /* We should have been vectorized, though we don't
1587 * currently check that st_vary is emitted only once
1588 * per slot (this is relevant, since there's not a mask
1589 * parameter available on the store [set to 0 by the
1590 * blob]). We do respect the component by adjusting the
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001591 * swizzle. If this is a constant source, we'll need to
1592 * emit that explicitly. */
1593
1594 emit_explicit_constant(ctx, reg, reg);
Alyssa Rosenzweiga3ae3cb2019-06-17 12:35:57 -07001595
Boris Brezillon6af63c92020-01-16 11:20:06 +01001596 unsigned dst_component = nir_intrinsic_component(instr);
Alyssa Rosenzweig27887212019-08-15 16:53:03 -07001597 unsigned nr_comp = nir_src_num_components(instr->src[0]);
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07001598
Alyssa Rosenzweig233c0fa2019-07-24 12:54:59 -07001599 midgard_instruction st = m_st_vary_32(reg, offset);
Alyssa Rosenzweigc9087722019-08-01 13:29:01 -07001600 st.load_store.arg_1 = 0x9E;
1601 st.load_store.arg_2 = 0x1E;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001602
Alyssa Rosenzweig66c26962019-12-27 14:25:00 -05001603 switch (nir_alu_type_get_base_type(nir_intrinsic_type(instr))) {
1604 case nir_type_uint:
1605 case nir_type_bool:
1606 st.load_store.op = midgard_op_st_vary_32u;
1607 break;
1608 case nir_type_int:
1609 st.load_store.op = midgard_op_st_vary_32i;
1610 break;
1611 case nir_type_float:
1612 st.load_store.op = midgard_op_st_vary_32;
1613 break;
1614 default:
1615 unreachable("Attempted to store unknown type");
1616 break;
1617 }
1618
Boris Brezillon6af63c92020-01-16 11:20:06 +01001619 /* nir_intrinsic_component(store_intr) encodes the
1620 * destination component start. Source component offset
1621 * adjustment is taken care of in
1622 * install_registers_instr(), when offset_swizzle() is
1623 * called.
1624 */
1625 unsigned src_component = COMPONENT_X;
1626
1627 assert(nr_comp > 0);
1628 for (unsigned i = 0; i < ARRAY_SIZE(st.swizzle); ++i) {
1629 st.swizzle[0][i] = src_component;
1630 if (i >= dst_component && i < dst_component + nr_comp - 1)
1631 src_component++;
1632 }
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001633
Alyssa Rosenzweig4aced182019-06-06 08:21:27 -07001634 emit_mir_instruction(ctx, st);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001635 } else {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001636 DBG("Unknown store\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001637 assert(0);
1638 }
1639
1640 break;
1641
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001642 /* Special case of store_output for lowered blend shaders */
1643 case nir_intrinsic_store_raw_output_pan:
1644 assert (ctx->stage == MESA_SHADER_FRAGMENT);
1645 reg = nir_src_index(ctx, &instr->src[0]);
Alyssa Rosenzweig8555bff2019-11-26 08:48:33 -05001646
1647 if (ctx->quirks & MIDGARD_OLD_BLEND) {
1648 /* Suppose reg = qr0.xyzw. That means 4 8-bit ---> 1 32-bit. So
1649 * reg = r0.x. We want to splatter. So we can do a 32-bit move
1650 * of:
1651 *
1652 * imov r0.xyzw, r0.xxxx
1653 */
1654
1655 unsigned expanded = make_compiler_temp(ctx);
1656
1657 midgard_instruction splatter = v_mov(reg, expanded);
1658
1659 for (unsigned c = 0; c < 16; ++c)
1660 splatter.swizzle[1][c] = 0;
1661
1662 emit_mir_instruction(ctx, splatter);
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05001663 emit_fragment_store(ctx, expanded, ctx->blend_rt);
Alyssa Rosenzweig8555bff2019-11-26 08:48:33 -05001664 } else
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05001665 emit_fragment_store(ctx, reg, ctx->blend_rt);
Alyssa Rosenzweig541b3292019-07-01 15:02:40 -07001666
1667 break;
1668
Alyssa Rosenzweig419ddd62019-08-01 10:03:02 -07001669 case nir_intrinsic_store_ssbo:
1670 assert(nir_src_is_const(instr->src[1]));
1671
1672 bool direct_offset = nir_src_is_const(instr->src[2]);
1673 offset = direct_offset ? nir_src_as_uint(instr->src[2]) : 0;
1674 nir_src *indirect_offset = direct_offset ? NULL : &instr->src[2];
1675 reg = nir_src_index(ctx, &instr->src[0]);
1676
1677 uint32_t uindex = nir_src_as_uint(instr->src[1]);
1678
1679 emit_explicit_constant(ctx, reg, reg);
1680 emit_ssbo_access(ctx, &instr->instr, false, reg, offset, indirect_offset, uindex);
1681 break;
1682
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001683 case nir_intrinsic_load_viewport_scale:
1684 case nir_intrinsic_load_viewport_offset:
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -07001685 case nir_intrinsic_load_num_work_groups:
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -05001686 case nir_intrinsic_load_sampler_lod_parameters_pan:
Alyssa Rosenzweig61892742019-08-21 09:15:56 -07001687 emit_sysval_read(ctx, &instr->instr, ~0, 3);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001688 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001689
Alyssa Rosenzweig7229af72019-08-06 13:47:17 -07001690 case nir_intrinsic_load_work_group_id:
1691 case nir_intrinsic_load_local_invocation_id:
1692 emit_compute_builtin(ctx, instr);
1693 break;
1694
Alyssa Rosenzweig306800d2019-12-19 13:31:21 -05001695 case nir_intrinsic_load_vertex_id:
1696 case nir_intrinsic_load_instance_id:
1697 emit_vertex_builtin(ctx, instr);
1698 break;
1699
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001700 default:
Tomeu Vizoso25042062020-01-03 09:42:11 +01001701 printf ("Unhandled intrinsic %s\n", nir_intrinsic_infos[instr->intrinsic].name);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001702 assert(0);
1703 break;
1704 }
1705}
1706
1707static unsigned
1708midgard_tex_format(enum glsl_sampler_dim dim)
1709{
1710 switch (dim) {
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001711 case GLSL_SAMPLER_DIM_1D:
1712 case GLSL_SAMPLER_DIM_BUF:
1713 return MALI_TEX_1D;
1714
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001715 case GLSL_SAMPLER_DIM_2D:
1716 case GLSL_SAMPLER_DIM_EXTERNAL:
Alyssa Rosenzweig44a6c382019-08-14 08:44:40 -07001717 case GLSL_SAMPLER_DIM_RECT:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001718 return MALI_TEX_2D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001719
1720 case GLSL_SAMPLER_DIM_3D:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001721 return MALI_TEX_3D;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001722
1723 case GLSL_SAMPLER_DIM_CUBE:
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07001724 return MALI_TEX_CUBE;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001725
1726 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01001727 DBG("Unknown sampler dim type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001728 assert(0);
1729 return 0;
1730 }
1731}
1732
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001733/* Tries to attach an explicit LOD / bias as a constant. Returns whether this
1734 * was successful */
1735
1736static bool
1737pan_attach_constant_bias(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001738 compiler_context *ctx,
1739 nir_src lod,
1740 midgard_texture_word *word)
Alyssa Rosenzweig213b6282019-06-18 09:02:20 -07001741{
1742 /* To attach as constant, it has to *be* constant */
1743
1744 if (!nir_src_is_const(lod))
1745 return false;
1746
1747 float f = nir_src_as_float(lod);
1748
1749 /* Break into fixed-point */
1750 signed lod_int = f;
1751 float lod_frac = f - lod_int;
1752
1753 /* Carry over negative fractions */
1754 if (lod_frac < 0.0) {
1755 lod_int--;
1756 lod_frac += 1.0;
1757 }
1758
1759 /* Encode */
1760 word->bias = float_to_ubyte(lod_frac);
1761 word->bias_int = lod_int;
1762
1763 return true;
1764}
1765
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001766static enum mali_sampler_type
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001767midgard_sampler_type(nir_alu_type t) {
1768 switch (nir_alu_type_get_base_type(t))
1769 {
1770 case nir_type_float:
1771 return MALI_SAMPLER_FLOAT;
1772 case nir_type_int:
1773 return MALI_SAMPLER_SIGNED;
1774 case nir_type_uint:
1775 return MALI_SAMPLER_UNSIGNED;
1776 default:
1777 unreachable("Unknown sampler type");
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001778 }
1779}
1780
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001781static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001782emit_texop_native(compiler_context *ctx, nir_tex_instr *instr,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001783 unsigned midgard_texop)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001784{
1785 /* TODO */
1786 //assert (!instr->sampler);
1787 //assert (!instr->texture_array_size);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001788
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001789 int texture_index = instr->texture_index;
1790 int sampler_index = texture_index;
1791
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001792 /* No helper to build texture words -- we do it all here */
1793 midgard_instruction ins = {
1794 .type = TAG_TEXTURE_4,
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07001795 .mask = 0xF,
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07001796 .dest = nir_dest_index(ctx, &instr->dest),
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001797 .src = { ~0, ~0, ~0, ~0 },
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001798 .swizzle = SWIZZLE_IDENTITY_4,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001799 .texture = {
1800 .op = midgard_texop,
1801 .format = midgard_tex_format(instr->sampler_dim),
1802 .texture_handle = texture_index,
1803 .sampler_handle = sampler_index,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001804
1805 /* TODO: half */
1806 .in_reg_full = 1,
1807 .out_full = 1,
1808
Alyssa Rosenzweige32af4b2019-06-26 16:12:28 -07001809 .sampler_type = midgard_sampler_type(instr->dest_type),
Alyssa Rosenzweig1a53bed2019-12-16 17:13:46 -05001810 .shadow = instr->is_shadow,
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001811 }
1812 };
Alyssa Rosenzweig8429bee2019-06-14 16:03:39 -07001813
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001814 /* We may need a temporary for the coordinate */
1815
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001816 bool needs_temp_coord =
1817 (midgard_texop == TEXTURE_OP_TEXEL_FETCH) ||
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001818 (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) ||
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001819 (instr->is_shadow);
1820
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001821 unsigned coords = needs_temp_coord ? make_compiler_temp_reg(ctx) : 0;
1822
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001823 for (unsigned i = 0; i < instr->num_srcs; ++i) {
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001824 int index = nir_src_index(ctx, &instr->src[i].src);
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07001825 unsigned nr_components = nir_src_num_components(instr->src[i].src);
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001826
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001827 switch (instr->src[i].src_type) {
1828 case nir_tex_src_coord: {
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001829 emit_explicit_constant(ctx, index, index);
1830
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001831 unsigned coord_mask = mask_of(instr->coord_components);
1832
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05001833 bool flip_zw = (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) && (coord_mask & (1 << COMPONENT_Z));
1834
1835 if (flip_zw)
1836 coord_mask ^= ((1 << COMPONENT_Z) | (1 << COMPONENT_W));
1837
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001838 if (instr->sampler_dim == GLSL_SAMPLER_DIM_CUBE) {
1839 /* texelFetch is undefined on samplerCube */
1840 assert(midgard_texop != TEXTURE_OP_TEXEL_FETCH);
1841
1842 /* For cubemaps, we use a special ld/st op to
1843 * select the face and copy the xy into the
1844 * texture register */
1845
1846 midgard_instruction ld = m_ld_cubemap_coords(coords, 0);
1847 ld.src[1] = index;
1848 ld.mask = 0x3; /* xy */
1849 ld.load_store.arg_1 = 0x20;
1850 ld.swizzle[1][3] = COMPONENT_X;
1851 emit_mir_instruction(ctx, ld);
1852
1853 /* xyzw -> xyxx */
1854 ins.swizzle[1][2] = instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
1855 ins.swizzle[1][3] = COMPONENT_X;
1856 } else if (needs_temp_coord) {
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001857 /* mov coord_temp, coords */
1858 midgard_instruction mov = v_mov(index, coords);
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001859 mov.mask = coord_mask;
Alyssa Rosenzweigbc4c8532020-01-06 21:31:46 -05001860
1861 if (flip_zw)
1862 mov.swizzle[1][COMPONENT_W] = COMPONENT_Z;
1863
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001864 emit_mir_instruction(ctx, mov);
1865 } else {
1866 coords = index;
1867 }
1868
Alyssa Rosenzweig6b7243f2019-12-20 17:25:05 -05001869 ins.src[1] = coords;
1870
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001871 /* Texelfetch coordinates uses all four elements
1872 * (xyz/index) regardless of texture dimensionality,
1873 * which means it's necessary to zero the unused
1874 * components to keep everything happy */
1875
1876 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001877 /* mov index.zw, #0, or generalized */
Alyssa Rosenzweigd183f842019-12-16 17:02:36 -05001878 midgard_instruction mov =
1879 v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), coords);
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001880 mov.has_constants = true;
Alyssa Rosenzweig9e5a1412019-12-20 17:01:29 -05001881 mov.mask = coord_mask ^ 0xF;
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001882 emit_mir_instruction(ctx, mov);
1883 }
1884
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001885 if (instr->sampler_dim == GLSL_SAMPLER_DIM_2D) {
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05001886 /* Array component in w but NIR wants it in z,
1887 * but if we have a temp coord we already fixed
1888 * that up */
1889
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001890 if (nr_components == 3) {
1891 ins.swizzle[1][2] = COMPONENT_Z;
Alyssa Rosenzweig4cd3dc92020-01-06 21:36:20 -05001892 ins.swizzle[1][3] = needs_temp_coord ? COMPONENT_W : COMPONENT_Z;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001893 } else if (nr_components == 2) {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001894 ins.swizzle[1][2] =
1895 instr->is_shadow ? COMPONENT_Z : COMPONENT_X;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001896 ins.swizzle[1][3] = COMPONENT_X;
1897 } else
Alyssa Rosenzweigedc8e412019-08-15 16:41:53 -07001898 unreachable("Invalid texture 2D components");
Alyssa Rosenzweig70b3e5d2019-03-28 04:27:13 +00001899 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001900
Alyssa Rosenzweig64b2fe92019-12-20 12:38:24 -05001901 if (midgard_texop == TEXTURE_OP_TEXEL_FETCH) {
1902 /* We zeroed */
1903 ins.swizzle[1][2] = COMPONENT_Z;
1904 ins.swizzle[1][3] = COMPONENT_W;
1905 }
1906
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001907 break;
1908 }
1909
Alyssa Rosenzweig4012e062019-06-11 09:43:08 -07001910 case nir_tex_src_bias:
1911 case nir_tex_src_lod: {
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001912 /* Try as a constant if we can */
1913
1914 bool is_txf = midgard_texop == TEXTURE_OP_TEXEL_FETCH;
1915 if (!is_txf && pan_attach_constant_bias(ctx, instr->src[i].src, &ins.texture))
1916 break;
1917
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001918 ins.texture.lod_register = true;
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04001919 ins.src[2] = index;
Alyssa Rosenzweig72e57492019-12-20 12:34:20 -05001920
1921 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1922 ins.swizzle[2][c] = COMPONENT_X;
1923
Alyssa Rosenzweigb6946d32019-07-25 08:44:53 -07001924 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweigb0e89412019-06-18 09:02:35 -07001925
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001926 break;
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001927 };
Alyssa Rosenzweiga19ca342019-06-11 09:23:05 -07001928
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001929 case nir_tex_src_offset: {
1930 ins.texture.offset_register = true;
1931 ins.src[3] = index;
1932
1933 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c)
1934 ins.swizzle[3][c] = (c > COMPONENT_Z) ? 0 : c;
1935
1936 emit_explicit_constant(ctx, index, index);
Alyssa Rosenzweig4ec1f952019-12-20 12:58:10 -05001937 break;
Alyssa Rosenzweigccbc9a42019-12-19 10:35:18 -05001938 };
1939
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001940 case nir_tex_src_comparator: {
Alyssa Rosenzweig66013cb2019-12-16 17:14:04 -05001941 unsigned comp = COMPONENT_Z;
1942
1943 /* mov coord_temp.foo, coords */
1944 midgard_instruction mov = v_mov(index, coords);
1945 mov.mask = 1 << comp;
1946
1947 for (unsigned i = 0; i < MIR_VEC_COMPONENTS; ++i)
1948 mov.swizzle[1][i] = COMPONENT_X;
1949
1950 emit_mir_instruction(ctx, mov);
1951 break;
1952 }
1953
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01001954 default: {
1955 printf ("Unknown texture source type: %d\n", instr->src[i].src_type);
1956 assert(0);
1957 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001958 }
1959 }
1960
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001961 emit_mir_instruction(ctx, ins);
1962
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001963 /* Used for .cont and .last hinting */
1964 ctx->texture_op_count++;
1965}
1966
1967static void
Boris Brezillon5c17f842019-06-17 21:47:46 +02001968emit_tex(compiler_context *ctx, nir_tex_instr *instr)
1969{
1970 switch (instr->op) {
1971 case nir_texop_tex:
1972 case nir_texop_txb:
1973 emit_texop_native(ctx, instr, TEXTURE_OP_NORMAL);
1974 break;
1975 case nir_texop_txl:
1976 emit_texop_native(ctx, instr, TEXTURE_OP_LOD);
1977 break;
Alyssa Rosenzweigf4bb7f02019-06-21 16:17:34 -07001978 case nir_texop_txf:
1979 emit_texop_native(ctx, instr, TEXTURE_OP_TEXEL_FETCH);
1980 break;
Boris Brezillonc3558862019-06-17 22:13:04 +02001981 case nir_texop_txs:
Alyssa Rosenzweig61892742019-08-21 09:15:56 -07001982 emit_sysval_read(ctx, &instr->instr, ~0, 4);
Boris Brezillonc3558862019-06-17 22:13:04 +02001983 break;
Tomeu Vizoso226c1ef2019-12-19 15:07:39 +01001984 default: {
1985 printf ("Unhandled texture op: %d\n", instr->op);
1986 assert(0);
1987 }
Boris Brezillon5c17f842019-06-17 21:47:46 +02001988 }
1989}
1990
1991static void
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00001992emit_jump(compiler_context *ctx, nir_jump_instr *instr)
1993{
1994 switch (instr->type) {
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07001995 case nir_jump_break: {
1996 /* Emit a branch out of the loop */
1997 struct midgard_instruction br = v_branch(false, false);
1998 br.branch.target_type = TARGET_BREAK;
1999 br.branch.target_break = ctx->current_loop_depth;
2000 emit_mir_instruction(ctx, br);
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002001 break;
2002 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002003
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002004 default:
2005 DBG("Unknown jump type %d\n", instr->type);
2006 break;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002007 }
2008}
2009
2010static void
2011emit_instr(compiler_context *ctx, struct nir_instr *instr)
2012{
2013 switch (instr->type) {
2014 case nir_instr_type_load_const:
2015 emit_load_const(ctx, nir_instr_as_load_const(instr));
2016 break;
2017
2018 case nir_instr_type_intrinsic:
2019 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
2020 break;
2021
2022 case nir_instr_type_alu:
2023 emit_alu(ctx, nir_instr_as_alu(instr));
2024 break;
2025
2026 case nir_instr_type_tex:
2027 emit_tex(ctx, nir_instr_as_tex(instr));
2028 break;
2029
2030 case nir_instr_type_jump:
2031 emit_jump(ctx, nir_instr_as_jump(instr));
2032 break;
2033
2034 case nir_instr_type_ssa_undef:
2035 /* Spurious */
2036 break;
2037
2038 default:
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002039 DBG("Unhandled instruction type\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002040 break;
2041 }
2042}
2043
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002044
2045/* ALU instructions can inline or embed constants, which decreases register
2046 * pressure and saves space. */
2047
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002048#define CONDITIONAL_ATTACH(idx) { \
2049 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[idx] + 1); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002050\
2051 if (entry) { \
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002052 attach_constants(ctx, alu, entry, alu->src[idx] + 1); \
2053 alu->src[idx] = SSA_FIXED_REGISTER(REGISTER_CONSTANT); \
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002054 } \
2055}
2056
2057static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002058inline_alu_constants(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002059{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002060 mir_foreach_instr_in_block(block, alu) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002061 /* Other instructions cannot inline constants */
2062 if (alu->type != TAG_ALU_4) continue;
Alyssa Rosenzweig5e06d902019-08-30 11:06:33 -07002063 if (alu->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002064
2065 /* If there is already a constant here, we can do nothing */
2066 if (alu->has_constants) continue;
2067
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002068 CONDITIONAL_ATTACH(0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002069
2070 if (!alu->has_constants) {
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002071 CONDITIONAL_ATTACH(1)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002072 } else if (!alu->inline_constant) {
2073 /* Corner case: _two_ vec4 constants, for instance with a
2074 * csel. For this case, we can only use a constant
2075 * register for one, we'll have to emit a move for the
2076 * other. Note, if both arguments are constants, then
2077 * necessarily neither argument depends on the value of
2078 * any particular register. As the destination register
2079 * will be wiped, that means we can spill the constant
2080 * to the destination register.
2081 */
2082
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002083 void *entry = _mesa_hash_table_u64_search(ctx->ssa_constants, alu->src[1] + 1);
2084 unsigned scratch = alu->dest;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002085
2086 if (entry) {
Alyssa Rosenzweigc3a46e72019-10-30 16:29:28 -04002087 midgard_instruction ins = v_mov(SSA_FIXED_REGISTER(REGISTER_CONSTANT), scratch);
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002088 attach_constants(ctx, &ins, entry, alu->src[1] + 1);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002089
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002090 /* Set the source */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002091 alu->src[1] = scratch;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002092
2093 /* Inject us -before- the last instruction which set r31 */
Boris Brezillon938c5b02019-08-28 09:17:21 +02002094 mir_insert_instruction_before(ctx, mir_prev_op(alu), ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002095 }
2096 }
2097 }
2098}
2099
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002100/* Being a little silly with the names, but returns the op that is the bitwise
2101 * inverse of the op with the argument switched. I.e. (f and g are
2102 * contrapositives):
2103 *
2104 * f(a, b) = ~g(b, a)
2105 *
2106 * Corollary: if g is the contrapositve of f, f is the contrapositive of g:
2107 *
2108 * f(a, b) = ~g(b, a)
2109 * ~f(a, b) = g(b, a)
2110 * ~f(a, b) = ~h(a, b) where h is the contrapositive of g
2111 * f(a, b) = h(a, b)
2112 *
2113 * Thus we define this function in pairs.
2114 */
2115
2116static inline midgard_alu_op
2117mir_contrapositive(midgard_alu_op op)
2118{
2119 switch (op) {
2120 case midgard_alu_op_flt:
2121 return midgard_alu_op_fle;
2122 case midgard_alu_op_fle:
2123 return midgard_alu_op_flt;
2124
2125 case midgard_alu_op_ilt:
2126 return midgard_alu_op_ile;
2127 case midgard_alu_op_ile:
2128 return midgard_alu_op_ilt;
2129
2130 default:
2131 unreachable("No known contrapositive");
2132 }
2133}
2134
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002135/* Midgard supports two types of constants, embedded constants (128-bit) and
2136 * inline constants (16-bit). Sometimes, especially with scalar ops, embedded
2137 * constants can be demoted to inline constants, for space savings and
2138 * sometimes a performance boost */
2139
2140static void
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002141embedded_to_inline_constant(compiler_context *ctx, midgard_block *block)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002142{
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002143 mir_foreach_instr_in_block(block, ins) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002144 if (!ins->has_constants) continue;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002145 if (ins->has_inline_constant) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002146
2147 /* Blend constants must not be inlined by definition */
2148 if (ins->has_blend_constant) continue;
2149
Alyssa Rosenzweige92caad2019-07-01 20:02:57 -07002150 /* We can inline 32-bit (sometimes) or 16-bit (usually) */
2151 bool is_16 = ins->alu.reg_mode == midgard_reg_mode_16;
2152 bool is_32 = ins->alu.reg_mode == midgard_reg_mode_32;
2153
2154 if (!(is_16 || is_32))
2155 continue;
2156
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002157 /* src1 cannot be an inline constant due to encoding
2158 * restrictions. So, if possible we try to flip the arguments
2159 * in that case */
2160
2161 int op = ins->alu.op;
2162
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002163 if (ins->src[0] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002164 bool flip = alu_opcode_props[op].props & OP_COMMUTES;
2165
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002166 switch (op) {
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002167 /* Conditionals can be inverted */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002168 case midgard_alu_op_flt:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002169 case midgard_alu_op_ilt:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002170 case midgard_alu_op_fle:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002171 case midgard_alu_op_ile:
Alyssa Rosenzweig62a5ee32019-07-26 14:25:25 -07002172 ins->alu.op = mir_contrapositive(ins->alu.op);
2173 ins->invert = true;
2174 flip = true;
2175 break;
2176
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002177 case midgard_alu_op_fcsel:
2178 case midgard_alu_op_icsel:
Alyssa Rosenzweig1f345bc2019-04-24 01:15:15 +00002179 DBG("Missed non-commutative flip (%s)\n", alu_opcode_props[op].name);
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00002180 default:
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002181 break;
Alyssa Rosenzweigbb1aff32019-04-24 02:18:28 +00002182 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002183
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002184 if (flip)
2185 mir_flip(ins);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002186 }
2187
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002188 if (ins->src[1] == SSA_FIXED_REGISTER(REGISTER_CONSTANT)) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002189 /* Extract the source information */
2190
2191 midgard_vector_alu_src *src;
2192 int q = ins->alu.src2;
2193 midgard_vector_alu_src *m = (midgard_vector_alu_src *) &q;
2194 src = m;
2195
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002196 /* Component is from the swizzle. Take a nonzero component */
2197 assert(ins->mask);
2198 unsigned first_comp = ffs(ins->mask) - 1;
2199 unsigned component = ins->swizzle[1][first_comp];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002200
2201 /* Scale constant appropriately, if we can legally */
2202 uint16_t scaled_constant = 0;
2203
Boris Brezillon15c92d12020-01-20 15:00:57 +01002204 if (is_16) {
2205 scaled_constant = ins->constants.u16[component];
2206 } else if (midgard_is_integer_op(op)) {
2207 scaled_constant = ins->constants.u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002208
2209 /* Constant overflow after resize */
Boris Brezillon15c92d12020-01-20 15:00:57 +01002210 if (scaled_constant != ins->constants.u32[component])
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002211 continue;
2212 } else {
Boris Brezillon15c92d12020-01-20 15:00:57 +01002213 float original = ins->constants.f32[component];
Alyssa Rosenzweig39786142019-04-28 15:46:47 +00002214 scaled_constant = _mesa_float_to_half(original);
2215
2216 /* Check for loss of precision. If this is
2217 * mediump, we don't care, but for a highp
2218 * shader, we need to pay attention. NIR
2219 * doesn't yet tell us which mode we're in!
2220 * Practically this prevents most constants
2221 * from being inlined, sadly. */
2222
2223 float fp32 = _mesa_half_to_float(scaled_constant);
2224
2225 if (fp32 != original)
2226 continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002227 }
2228
2229 /* We don't know how to handle these with a constant */
2230
Alyssa Rosenzweigc45487b2019-07-26 11:52:30 -07002231 if (mir_nontrivial_source2_mod_simple(ins) || src->rep_low || src->rep_high) {
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002232 DBG("Bailing inline constant...\n");
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002233 continue;
2234 }
2235
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002236 /* Make sure that the constant is not itself a vector
2237 * by checking if all accessed values are the same. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002238
Boris Brezillon15c92d12020-01-20 15:00:57 +01002239 const midgard_constants *cons = &ins->constants;
2240 uint32_t value = is_16 ? cons->u16[component] : cons->u32[component];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002241
2242 bool is_vector = false;
Alyssa Rosenzweigf8b18a42019-07-01 18:51:48 -07002243 unsigned mask = effective_writemask(&ins->alu, ins->mask);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002244
Alyssa Rosenzweig70072a22019-10-26 14:06:17 -04002245 for (unsigned c = 0; c < MIR_VEC_COMPONENTS; ++c) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002246 /* We only care if this component is actually used */
2247 if (!(mask & (1 << c)))
2248 continue;
2249
Boris Brezillon15c92d12020-01-20 15:00:57 +01002250 uint32_t test = is_16 ?
2251 cons->u16[ins->swizzle[1][c]] :
2252 cons->u32[ins->swizzle[1][c]];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002253
2254 if (test != value) {
2255 is_vector = true;
2256 break;
2257 }
2258 }
2259
2260 if (is_vector)
2261 continue;
2262
2263 /* Get rid of the embedded constant */
2264 ins->has_constants = false;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002265 ins->src[1] = ~0;
2266 ins->has_inline_constant = true;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002267 ins->inline_constant = scaled_constant;
2268 }
2269 }
2270}
2271
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002272/* Dead code elimination for branches at the end of a block - only one branch
2273 * per block is legal semantically */
2274
2275static void
2276midgard_opt_cull_dead_branch(compiler_context *ctx, midgard_block *block)
2277{
2278 bool branched = false;
2279
2280 mir_foreach_instr_in_block_safe(block, ins) {
2281 if (!midgard_is_branch_unit(ins->unit)) continue;
2282
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002283 if (branched)
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002284 mir_remove_instruction(ins);
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002285
2286 branched = true;
2287 }
2288}
2289
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002290/* fmov.pos is an idiom for fpos. Propoagate the .pos up to the source, so then
2291 * the move can be propagated away entirely */
2292
2293static bool
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002294mir_compose_float_outmod(midgard_outmod_float *outmod, midgard_outmod_float comp)
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002295{
2296 /* Nothing to do */
2297 if (comp == midgard_outmod_none)
2298 return true;
2299
2300 if (*outmod == midgard_outmod_none) {
2301 *outmod = comp;
2302 return true;
2303 }
2304
2305 /* TODO: Compose rules */
2306 return false;
2307}
2308
2309static bool
2310midgard_opt_pos_propagate(compiler_context *ctx, midgard_block *block)
2311{
2312 bool progress = false;
2313
2314 mir_foreach_instr_in_block_safe(block, ins) {
2315 if (ins->type != TAG_ALU_4) continue;
2316 if (ins->alu.op != midgard_alu_op_fmov) continue;
2317 if (ins->alu.outmod != midgard_outmod_pos) continue;
2318
2319 /* TODO: Registers? */
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002320 unsigned src = ins->src[1];
Alyssa Rosenzweig9beb3392019-07-26 11:30:06 -07002321 if (src & IS_REG) continue;
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002322
2323 /* There might be a source modifier, too */
2324 if (mir_nontrivial_source2_mod(ins)) continue;
2325
2326 /* Backpropagate the modifier */
2327 mir_foreach_instr_in_block_from_rev(block, v, mir_prev_op(ins)) {
2328 if (v->type != TAG_ALU_4) continue;
Alyssa Rosenzweig75b6be22019-08-26 11:58:27 -07002329 if (v->dest != src) continue;
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002330
Alyssa Rosenzweig67804812019-06-05 15:17:45 -07002331 /* Can we even take a float outmod? */
2332 if (midgard_is_integer_out_op(v->alu.op)) continue;
2333
2334 midgard_outmod_float temp = v->alu.outmod;
2335 progress |= mir_compose_float_outmod(&temp, ins->alu.outmod);
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002336
2337 /* Throw in the towel.. */
2338 if (!progress) break;
2339
2340 /* Otherwise, transfer the modifier */
2341 v->alu.outmod = temp;
2342 ins->alu.outmod = midgard_outmod_none;
2343
2344 break;
2345 }
2346 }
2347
2348 return progress;
2349}
2350
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002351static unsigned
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002352emit_fragment_epilogue(compiler_context *ctx, unsigned rt)
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002353{
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002354 /* Loop to ourselves */
2355
2356 struct midgard_instruction ins = v_branch(false, false);
2357 ins.writeout = true;
2358 ins.branch.target_block = ctx->block_count - 1;
Boris Brezillon15c92d12020-01-20 15:00:57 +01002359 ins.constants.u32[0] = rt * 0x100;
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002360 emit_mir_instruction(ctx, ins);
2361
Alyssa Rosenzweig3448b262019-12-03 10:37:01 -05002362 ctx->current_block->epilogue = true;
Alyssa Rosenzweig60396342019-11-23 16:08:02 -05002363 schedule_barrier(ctx);
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002364 return ins.branch.target_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002365}
2366
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002367static midgard_block *
2368emit_block(compiler_context *ctx, nir_block *block)
2369{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002370 midgard_block *this_block = ctx->after_block;
2371 ctx->after_block = NULL;
2372
2373 if (!this_block)
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002374 this_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002375
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002376 list_addtail(&this_block->link, &ctx->blocks);
2377
2378 this_block->is_scheduled = false;
2379 ++ctx->block_count;
2380
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002381 /* Set up current block */
2382 list_inithead(&this_block->instructions);
2383 ctx->current_block = this_block;
2384
2385 nir_foreach_instr(instr, block) {
2386 emit_instr(ctx, instr);
2387 ++ctx->instruction_count;
2388 }
2389
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002390 return this_block;
2391}
2392
2393static midgard_block *emit_cf_list(struct compiler_context *ctx, struct exec_list *list);
2394
2395static void
2396emit_if(struct compiler_context *ctx, nir_if *nif)
2397{
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002398 midgard_block *before_block = ctx->current_block;
2399
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002400 /* Speculatively emit the branch, but we can't fill it in until later */
2401 EMIT(branch, true, true);
2402 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block);
Alyssa Rosenzweigd6e4e362019-08-26 13:59:29 -07002403 then_branch->src[0] = nir_src_index(ctx, &nif->condition);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002404
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002405 /* Emit the two subblocks. */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002406 midgard_block *then_block = emit_cf_list(ctx, &nif->then_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002407 midgard_block *end_then_block = ctx->current_block;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002408
2409 /* Emit a jump from the end of the then block to the end of the else */
2410 EMIT(branch, false, false);
2411 midgard_instruction *then_exit = mir_last_in_block(ctx->current_block);
2412
2413 /* Emit second block, and check if it's empty */
2414
2415 int else_idx = ctx->block_count;
2416 int count_in = ctx->instruction_count;
2417 midgard_block *else_block = emit_cf_list(ctx, &nif->else_list);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002418 midgard_block *end_else_block = ctx->current_block;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002419 int after_else_idx = ctx->block_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002420
2421 /* Now that we have the subblocks emitted, fix up the branches */
2422
2423 assert(then_block);
2424 assert(else_block);
2425
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002426 if (ctx->instruction_count == count_in) {
2427 /* The else block is empty, so don't emit an exit jump */
2428 mir_remove_instruction(then_exit);
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002429 then_branch->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002430 } else {
2431 then_branch->branch.target_block = else_idx;
Alyssa Rosenzweig2c747092019-02-17 05:14:24 +00002432 then_exit->branch.target_block = after_else_idx;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002433 }
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002434
2435 /* Wire up the successors */
2436
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002437 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002438
2439 midgard_block_add_successor(before_block, then_block);
2440 midgard_block_add_successor(before_block, else_block);
2441
2442 midgard_block_add_successor(end_then_block, ctx->after_block);
2443 midgard_block_add_successor(end_else_block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002444}
2445
2446static void
2447emit_loop(struct compiler_context *ctx, nir_loop *nloop)
2448{
2449 /* Remember where we are */
2450 midgard_block *start_block = ctx->current_block;
2451
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002452 /* Allocate a loop number, growing the current inner loop depth */
2453 int loop_idx = ++ctx->current_loop_depth;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002454
2455 /* Get index from before the body so we can loop back later */
2456 int start_idx = ctx->block_count;
2457
2458 /* Emit the body itself */
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002459 midgard_block *loop_block = emit_cf_list(ctx, &nloop->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002460
2461 /* Branch back to loop back */
2462 struct midgard_instruction br_back = v_branch(false, false);
2463 br_back.branch.target_block = start_idx;
2464 emit_mir_instruction(ctx, br_back);
2465
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002466 /* Mark down that branch in the graph. */
2467 midgard_block_add_successor(start_block, loop_block);
2468 midgard_block_add_successor(ctx->current_block, loop_block);
Alyssa Rosenzweigc0fb2602019-04-21 03:29:47 +00002469
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002470 /* Find the index of the block about to follow us (note: we don't add
2471 * one; blocks are 0-indexed so we get a fencepost problem) */
2472 int break_block_idx = ctx->block_count;
2473
2474 /* Fix up the break statements we emitted to point to the right place,
2475 * now that we can allocate a block number for them */
Alyssa Rosenzweigaeeeef12019-08-15 08:11:10 -07002476 ctx->after_block = create_empty_block(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002477
2478 list_for_each_entry_from(struct midgard_block, block, start_block, &ctx->blocks, link) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002479 mir_foreach_instr_in_block(block, ins) {
2480 if (ins->type != TAG_ALU_4) continue;
2481 if (!ins->compact_branch) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002482
2483 /* We found a branch -- check the type to see if we need to do anything */
2484 if (ins->branch.target_type != TARGET_BREAK) continue;
2485
2486 /* It's a break! Check if it's our break */
2487 if (ins->branch.target_break != loop_idx) continue;
2488
2489 /* Okay, cool, we're breaking out of this loop.
2490 * Rewrite from a break to a goto */
2491
2492 ins->branch.target_type = TARGET_GOTO;
2493 ins->branch.target_block = break_block_idx;
Alyssa Rosenzweig9aeb7262019-08-02 13:48:27 -07002494
2495 midgard_block_add_successor(block, ctx->after_block);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002496 }
2497 }
Alyssa Rosenzweig521ac6e2019-04-21 16:22:44 +00002498
2499 /* Now that we've finished emitting the loop, free up the depth again
2500 * so we play nice with recursion amid nested loops */
2501 --ctx->current_loop_depth;
Alyssa Rosenzweig7ad65162019-07-09 11:10:49 -07002502
2503 /* Dump loop stats */
2504 ++ctx->loop_count;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002505}
2506
2507static midgard_block *
2508emit_cf_list(struct compiler_context *ctx, struct exec_list *list)
2509{
2510 midgard_block *start_block = NULL;
2511
2512 foreach_list_typed(nir_cf_node, node, node, list) {
2513 switch (node->type) {
2514 case nir_cf_node_block: {
2515 midgard_block *block = emit_block(ctx, nir_cf_node_as_block(node));
2516
2517 if (!start_block)
2518 start_block = block;
2519
2520 break;
2521 }
2522
2523 case nir_cf_node_if:
2524 emit_if(ctx, nir_cf_node_as_if(node));
2525 break;
2526
2527 case nir_cf_node_loop:
2528 emit_loop(ctx, nir_cf_node_as_loop(node));
2529 break;
2530
2531 case nir_cf_node_function:
2532 assert(0);
2533 break;
2534 }
2535 }
2536
2537 return start_block;
2538}
2539
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002540/* Due to lookahead, we need to report the first tag executed in the command
2541 * stream and in branch targets. An initial block might be empty, so iterate
2542 * until we find one that 'works' */
2543
2544static unsigned
2545midgard_get_first_tag_from_block(compiler_context *ctx, unsigned block_idx)
2546{
2547 midgard_block *initial_block = mir_get_block(ctx, block_idx);
2548
2549 unsigned first_tag = 0;
2550
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002551 mir_foreach_block_from(ctx, initial_block, v) {
Alyssa Rosenzweig45ac8ea2019-11-04 10:32:49 -05002552 if (v->quadword_count) {
2553 midgard_bundle *initial_bundle =
2554 util_dynarray_element(&v->bundles, midgard_bundle, 0);
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002555
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002556 first_tag = initial_bundle->tag;
2557 break;
2558 }
Alyssa Rosenzweig73c40d62019-07-31 15:49:30 -07002559 }
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002560
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002561 return first_tag;
2562}
2563
Alyssa Rosenzweig67fe2af2019-12-27 16:01:34 -05002564static unsigned
2565pan_format_from_nir_base(nir_alu_type base)
2566{
2567 switch (base) {
2568 case nir_type_int:
2569 return MALI_FORMAT_SINT;
2570 case nir_type_uint:
2571 case nir_type_bool:
2572 return MALI_FORMAT_UINT;
2573 case nir_type_float:
2574 return MALI_CHANNEL_FLOAT;
2575 default:
2576 unreachable("Invalid base");
2577 }
2578}
2579
2580static unsigned
2581pan_format_from_nir_size(nir_alu_type base, unsigned size)
2582{
2583 if (base == nir_type_float) {
2584 switch (size) {
2585 case 16: return MALI_FORMAT_SINT;
2586 case 32: return MALI_FORMAT_UNORM;
2587 default:
2588 unreachable("Invalid float size for format");
2589 }
2590 } else {
2591 switch (size) {
2592 case 1:
2593 case 8: return MALI_CHANNEL_8;
2594 case 16: return MALI_CHANNEL_16;
2595 case 32: return MALI_CHANNEL_32;
2596 default:
2597 unreachable("Invalid int size for format");
2598 }
2599 }
2600}
2601
2602static enum mali_format
2603pan_format_from_glsl(const struct glsl_type *type)
2604{
2605 enum glsl_base_type glsl_base = glsl_get_base_type(glsl_without_array(type));
2606 nir_alu_type t = nir_get_nir_type_for_glsl_base_type(glsl_base);
2607
2608 unsigned base = nir_alu_type_get_base_type(t);
2609 unsigned size = nir_alu_type_get_type_size(t);
2610
2611 return pan_format_from_nir_base(base) |
2612 pan_format_from_nir_size(base, size) |
2613 MALI_NR_CHANNELS(4);
2614}
2615
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002616/* For each fragment writeout instruction, generate a writeout loop to
2617 * associate with it */
2618
2619static void
2620mir_add_writeout_loops(compiler_context *ctx)
2621{
2622 for (unsigned rt = 0; rt < ARRAY_SIZE(ctx->writeout_branch); ++rt) {
2623 midgard_instruction *br = ctx->writeout_branch[rt];
2624 if (!br) continue;
2625
2626 unsigned popped = br->branch.target_block;
2627 midgard_block_add_successor(mir_get_block(ctx, popped - 1), ctx->current_block);
2628 br->branch.target_block = emit_fragment_epilogue(ctx, rt);
2629
2630 /* If we have more RTs, we'll need to restore back after our
2631 * loop terminates */
2632
2633 if ((rt + 1) < ARRAY_SIZE(ctx->writeout_branch) && ctx->writeout_branch[rt + 1]) {
2634 midgard_instruction uncond = v_branch(false, false);
2635 uncond.branch.target_block = popped;
2636 emit_mir_instruction(ctx, uncond);
2637 midgard_block_add_successor(ctx->current_block, mir_get_block(ctx, popped));
2638 schedule_barrier(ctx);
2639 } else {
2640 /* We're last, so we can terminate here */
2641 br->last_writeout = true;
2642 }
2643 }
2644}
2645
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002646int
Alyssa Rosenzweig35418f62019-12-16 18:05:21 -05002647midgard_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 +00002648{
2649 struct util_dynarray *compiled = &program->compiled;
2650
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002651 midgard_debug = debug_get_option_midgard_debug();
Tomeu Vizosof0b1bbe2019-03-08 15:04:50 +01002652
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002653 /* TODO: Bound against what? */
2654 compiler_context *ctx = rzalloc(NULL, compiler_context);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002655
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002656 ctx->nir = nir;
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002657 ctx->stage = nir->info.stage;
2658 ctx->is_blend = is_blend;
2659 ctx->alpha_ref = program->alpha_ref;
Alyssa Rosenzweiga2d55032019-11-23 21:44:16 -05002660 ctx->blend_rt = blend_rt;
Alyssa Rosenzweigfcf144d2019-11-19 20:55:42 -05002661 ctx->quirks = midgard_get_quirks(gpu_id);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002662
Alyssa Rosenzweig3174bc92019-07-16 14:10:08 -07002663 /* Start off with a safe cutoff, allowing usage of all 16 work
2664 * registers. Later, we'll promote uniform reads to uniform registers
2665 * if we determine it is beneficial to do so */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002666 ctx->uniform_cutoff = 8;
2667
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002668 /* Initialize at a global (not block) level hash tables */
2669
2670 ctx->ssa_constants = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002671 ctx->hash_to_temp = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002672 ctx->sysval_to_id = _mesa_hash_table_u64_create(NULL);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002673
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002674 /* Record the varying mapping for the command stream's bookkeeping */
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002675
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002676 struct exec_list *varyings =
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002677 ctx->stage == MESA_SHADER_VERTEX ? &nir->outputs : &nir->inputs;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002678
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002679 unsigned max_varying = 0;
Alyssa Rosenzweigb98955e2019-03-15 23:25:55 +00002680 nir_foreach_variable(var, varyings) {
2681 unsigned loc = var->data.driver_location;
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002682 unsigned sz = glsl_type_size(var->type, FALSE);
2683
Boris Brezillon749c5442019-06-13 14:56:02 +02002684 for (int c = 0; c < sz; ++c) {
2685 program->varyings[loc + c] = var->data.location + c;
Alyssa Rosenzweig67fe2af2019-12-27 16:01:34 -05002686 program->varying_type[loc + c] = pan_format_from_glsl(var->type);
Boris Brezillon749c5442019-06-13 14:56:02 +02002687 max_varying = MAX2(max_varying, loc + c);
Alyssa Rosenzweig1f7b3882019-04-20 23:39:29 +00002688 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002689 }
2690
Alyssa Rosenzweigde8d49a2019-06-06 09:15:26 -07002691 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
2692 * (so we don't accidentally duplicate the epilogue since mesa/st has
2693 * messed with our I/O quite a bit already) */
2694
2695 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002696
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002697 if (ctx->stage == MESA_SHADER_VERTEX) {
Alyssa Rosenzweig1e2cb3e2019-04-07 16:37:28 +00002698 NIR_PASS_V(nir, nir_lower_viewport_transform);
Alyssa Rosenzweig20237162019-08-26 12:14:11 -07002699 NIR_PASS_V(nir, nir_lower_point_size, 1.0, 1024.0);
Alyssa Rosenzweigbb483a92019-07-10 11:30:00 -07002700 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002701
2702 NIR_PASS_V(nir, nir_lower_var_copies);
2703 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
2704 NIR_PASS_V(nir, nir_split_var_copies);
2705 NIR_PASS_V(nir, nir_lower_var_copies);
2706 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
2707 NIR_PASS_V(nir, nir_lower_var_copies);
2708 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002709
Eric Anholt771adff2019-04-08 16:32:01 -07002710 NIR_PASS_V(nir, nir_lower_io, nir_var_all, glsl_type_size, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002711
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002712 /* Optimisation passes */
2713
Alyssa Rosenzweigbda2bb32019-11-21 08:45:27 -05002714 optimise_nir(nir, ctx->quirks);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002715
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002716 if (midgard_debug & MIDGARD_DBG_SHADERS) {
2717 nir_print_shader(nir, stdout);
2718 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002719
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002720 /* Assign sysvals and counts, now that we're sure
2721 * (post-optimisation) */
2722
2723 midgard_nir_assign_sysvals(ctx, nir);
2724
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002725 program->uniform_count = nir->num_uniforms;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00002726 program->sysval_count = ctx->sysval_count;
2727 memcpy(program->sysvals, ctx->sysvals, sizeof(ctx->sysvals[0]) * ctx->sysval_count);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002728
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002729 nir_foreach_function(func, nir) {
2730 if (!func->impl)
2731 continue;
2732
2733 list_inithead(&ctx->blocks);
2734 ctx->block_count = 0;
2735 ctx->func = func;
2736
2737 emit_cf_list(ctx, &func->impl->body);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002738 break; /* TODO: Multi-function shaders */
2739 }
2740
2741 util_dynarray_init(compiled, NULL);
2742
Alyssa Rosenzweigcc2ba8e2019-08-30 10:53:13 -07002743 /* Per-block lowering before opts */
2744
2745 mir_foreach_block(ctx, block) {
2746 inline_alu_constants(ctx, block);
2747 midgard_opt_promote_fmov(ctx, block);
2748 embedded_to_inline_constant(ctx, block);
2749 }
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002750 /* MIR-level optimizations */
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002751
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002752 bool progress = false;
2753
2754 do {
2755 progress = false;
2756
2757 mir_foreach_block(ctx, block) {
Alyssa Rosenzweig4a03d372019-05-23 03:01:32 +00002758 progress |= midgard_opt_pos_propagate(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002759 progress |= midgard_opt_copy_prop(ctx, block);
2760 progress |= midgard_opt_dead_code_eliminate(ctx, block);
Alyssa Rosenzweig9ce75822019-07-24 15:37:24 -07002761 progress |= midgard_opt_combine_projection(ctx, block);
2762 progress |= midgard_opt_varying_projection(ctx, block);
Alyssa Rosenzweig620c2712019-07-26 13:14:55 -07002763 progress |= midgard_opt_not_propagate(ctx, block);
Alyssa Rosenzweigd066ca352019-07-26 13:32:54 -07002764 progress |= midgard_opt_fuse_src_invert(ctx, block);
Alyssa Rosenzweigb821e1b2019-07-26 13:08:54 -07002765 progress |= midgard_opt_fuse_dest_invert(ctx, block);
Alyssa Rosenzweigc20063a2019-09-28 12:39:15 -04002766 progress |= midgard_opt_csel_invert(ctx, block);
Afonso Bordado3e1e4ad2019-12-10 13:18:00 +00002767 progress |= midgard_opt_drop_cmp_invert(ctx, block);
Afonso Bordado525cbe82019-12-27 17:09:51 +00002768 progress |= midgard_opt_invert_branch(ctx, block);
Alyssa Rosenzweig4d995e02019-04-22 04:58:53 +00002769 }
2770 } while (progress);
Alyssa Rosenzweig84f09ff2019-04-21 16:11:11 +00002771
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002772 mir_foreach_block(ctx, block) {
2773 midgard_lower_invert(ctx, block);
Alyssa Rosenzweig8f887322019-07-29 15:11:12 -07002774 midgard_lower_derivatives(ctx, block);
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002775 }
2776
Alyssa Rosenzweigae20bee2019-06-06 11:19:13 -07002777 /* Nested control-flow can result in dead branches at the end of the
2778 * block. This messes with our analysis and is just dead code, so cull
2779 * them */
2780 mir_foreach_block(ctx, block) {
2781 midgard_opt_cull_dead_branch(ctx, block);
2782 }
2783
Alyssa Rosenzweig159abd52019-07-26 11:15:31 -07002784 /* Ensure we were lowered */
2785 mir_foreach_instr_global(ctx, ins) {
2786 assert(!ins->invert);
2787 }
2788
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002789 if (ctx->stage == MESA_SHADER_FRAGMENT)
2790 mir_add_writeout_loops(ctx);
2791
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002792 /* Schedule! */
Robert Foss62adb652020-01-15 01:14:16 +01002793 midgard_schedule_program(ctx);
Alyssa Rosenzweig9dc3b182019-12-06 09:32:38 -05002794 mir_ra(ctx);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002795
2796 /* Now that all the bundles are scheduled and we can calculate block
2797 * sizes, emit actual branch instructions rather than placeholders */
2798
2799 int br_block_idx = 0;
2800
2801 mir_foreach_block(ctx, block) {
2802 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2803 for (int c = 0; c < bundle->instruction_count; ++c) {
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002804 midgard_instruction *ins = bundle->instructions[c];
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002805
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002806 if (!midgard_is_branch_unit(ins->unit)) continue;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002807
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002808 /* Parse some basic branch info */
2809 bool is_compact = ins->unit == ALU_ENAB_BR_COMPACT;
2810 bool is_conditional = ins->branch.conditional;
2811 bool is_inverted = ins->branch.invert_conditional;
2812 bool is_discard = ins->branch.target_type == TARGET_DISCARD;
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002813 bool is_writeout = ins->writeout;
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002814
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002815 /* Determine the block we're jumping to */
2816 int target_number = ins->branch.target_block;
2817
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002818 /* Report the destination tag */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002819 int dest_tag = is_discard ? 0 : midgard_get_first_tag_from_block(ctx, target_number);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002820
Alyssa Rosenzweig3c7abbf2019-05-22 04:33:21 +00002821 /* Count up the number of quadwords we're
2822 * jumping over = number of quadwords until
2823 * (br_block_idx, target_number) */
2824
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002825 int quadword_offset = 0;
2826
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002827 if (is_discard) {
Alyssa Rosenzweig7f75b2b2019-07-30 17:07:25 -07002828 /* Ignored */
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002829 } else if (target_number > br_block_idx) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002830 /* Jump forward */
2831
2832 for (int idx = br_block_idx + 1; idx < target_number; ++idx) {
2833 midgard_block *blk = mir_get_block(ctx, idx);
2834 assert(blk);
2835
2836 quadword_offset += blk->quadword_count;
2837 }
2838 } else {
2839 /* Jump backwards */
2840
2841 for (int idx = br_block_idx; idx >= target_number; --idx) {
2842 midgard_block *blk = mir_get_block(ctx, idx);
2843 assert(blk);
2844
2845 quadword_offset -= blk->quadword_count;
2846 }
2847 }
2848
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002849 /* Unconditional extended branches (far jumps)
2850 * have issues, so we always use a conditional
2851 * branch, setting the condition to always for
2852 * unconditional. For compact unconditional
2853 * branches, cond isn't used so it doesn't
2854 * matter what we pick. */
2855
2856 midgard_condition cond =
2857 !is_conditional ? midgard_condition_always :
2858 is_inverted ? midgard_condition_false :
2859 midgard_condition_true;
2860
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002861 midgard_jmp_writeout_op op =
2862 is_discard ? midgard_jmp_writeout_op_discard :
Alyssa Rosenzweig02f503e2019-12-30 18:53:04 -05002863 is_writeout ? midgard_jmp_writeout_op_writeout :
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002864 (is_compact && !is_conditional) ? midgard_jmp_writeout_op_branch_uncond :
2865 midgard_jmp_writeout_op_branch_cond;
2866
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002867 if (!is_compact) {
2868 midgard_branch_extended branch =
2869 midgard_create_branch_extended(
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002870 cond, op,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002871 dest_tag,
2872 quadword_offset);
2873
2874 memcpy(&ins->branch_extended, &branch, sizeof(branch));
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002875 } else if (is_conditional || is_discard) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002876 midgard_branch_cond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002877 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002878 .dest_tag = dest_tag,
2879 .offset = quadword_offset,
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002880 .cond = cond
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002881 };
2882
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002883 assert(branch.offset == quadword_offset);
2884
2885 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002886 } else {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002887 assert(op == midgard_jmp_writeout_op_branch_uncond);
2888
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002889 midgard_branch_uncond branch = {
Alyssa Rosenzweig779e1402019-02-17 23:24:39 +00002890 .op = op,
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002891 .dest_tag = dest_tag,
2892 .offset = quadword_offset,
2893 .unknown = 1
2894 };
2895
Alyssa Rosenzweig5abb7b52019-02-17 22:09:09 +00002896 assert(branch.offset == quadword_offset);
2897
2898 memcpy(&ins->br_compact, &branch, sizeof(branch));
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002899 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002900 }
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002901 }
2902
2903 ++br_block_idx;
2904 }
2905
2906 /* Emit flat binary from the instruction arrays. Iterate each block in
2907 * sequence. Save instruction boundaries such that lookahead tags can
2908 * be assigned easily */
2909
2910 /* Cache _all_ bundles in source order for lookahead across failed branches */
2911
2912 int bundle_count = 0;
2913 mir_foreach_block(ctx, block) {
2914 bundle_count += block->bundles.size / sizeof(midgard_bundle);
2915 }
2916 midgard_bundle **source_order_bundles = malloc(sizeof(midgard_bundle *) * bundle_count);
2917 int bundle_idx = 0;
2918 mir_foreach_block(ctx, block) {
2919 util_dynarray_foreach(&block->bundles, midgard_bundle, bundle) {
2920 source_order_bundles[bundle_idx++] = bundle;
2921 }
2922 }
2923
2924 int current_bundle = 0;
2925
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00002926 /* Midgard prefetches instruction types, so during emission we
2927 * need to lookahead. Unless this is the last instruction, in
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002928 * which we return 1. */
Alyssa Rosenzweig2a79afc2019-05-23 01:56:03 +00002929
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002930 mir_foreach_block(ctx, block) {
Alyssa Rosenzweigd3ad8d62019-06-06 11:19:44 -07002931 mir_foreach_bundle_in_block(block, bundle) {
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002932 int lookahead = 1;
2933
Alyssa Rosenzweig5bc62af2020-01-02 12:27:59 -05002934 if (!bundle->last_writeout && (current_bundle + 1 < bundle_count))
2935 lookahead = source_order_bundles[current_bundle + 1]->tag;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002936
2937 emit_binary_bundle(ctx, bundle, compiled, lookahead);
2938 ++current_bundle;
2939 }
2940
2941 /* TODO: Free deeper */
2942 //util_dynarray_fini(&block->instructions);
2943 }
2944
2945 free(source_order_bundles);
2946
Alyssa Rosenzweig5e55c112019-02-17 03:35:03 +00002947 /* Report the very first tag executed */
2948 program->first_tag = midgard_get_first_tag_from_block(ctx, 0);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002949
2950 /* Deal with off-by-one related to the fencepost problem */
2951 program->work_register_count = ctx->work_registers + 1;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002952 program->uniform_cutoff = ctx->uniform_cutoff;
2953
2954 program->blend_patch_offset = ctx->blend_constant_offset;
Alyssa Rosenzweigf0d00612019-07-19 16:23:52 -07002955 program->tls_size = ctx->tls_size;
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002956
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002957 if (midgard_debug & MIDGARD_DBG_SHADERS)
Icecream95968f36d2020-01-23 09:42:12 +13002958 disassemble_midgard(stdout, program->compiled.data, program->compiled.size, gpu_id, ctx->stage);
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002959
Alyssa Rosenzweig35418f62019-12-16 18:05:21 -05002960 if (midgard_debug & MIDGARD_DBG_SHADERDB || shaderdb) {
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07002961 unsigned nr_bundles = 0, nr_ins = 0;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002962
2963 /* Count instructions and bundles */
2964
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002965 mir_foreach_block(ctx, block) {
2966 nr_bundles += util_dynarray_num_elements(
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002967 &block->bundles, midgard_bundle);
Alyssa Rosenzweig2d739f62019-07-09 11:16:57 -07002968
Alyssa Rosenzweig67909c82019-08-30 13:08:16 -07002969 mir_foreach_bundle_in_block(block, bun)
2970 nr_ins += bun->instruction_count;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002971 }
2972
2973 /* Calculate thread count. There are certain cutoffs by
2974 * register count for thread count */
2975
2976 unsigned nr_registers = program->work_register_count;
2977
2978 unsigned nr_threads =
2979 (nr_registers <= 4) ? 4 :
2980 (nr_registers <= 8) ? 2 :
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002981 1;
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002982
2983 /* Dump stats */
2984
2985 fprintf(stderr, "shader%d - %s shader: "
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002986 "%u inst, %u bundles, %u quadwords, "
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002987 "%u registers, %u threads, %u loops, "
Alyssa Rosenzweig1a4153b2019-08-30 17:29:17 -07002988 "%u:%u spills:fills\n",
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002989 SHADER_DB_COUNT++,
2990 gl_shader_stage_name(ctx->stage),
Alyssa Rosenzweig19bceb52019-08-30 13:57:20 -07002991 nr_ins, nr_bundles, ctx->quadword_count,
Alyssa Rosenzweige4bd6fb2019-07-10 10:00:50 -07002992 nr_registers, nr_threads,
Alyssa Rosenzweige8dca7e2019-07-22 06:32:48 -07002993 ctx->loop_count,
2994 ctx->spills, ctx->fills);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002995 }
2996
Alyssa Rosenzweig4fa09322019-08-15 08:10:46 -07002997 ralloc_free(ctx);
Alyssa Rosenzweig138e40d2019-07-08 16:42:29 -07002998
Alyssa Rosenzweige67e0722019-01-30 01:11:31 +00002999 return 0;
3000}