blob: 413c8d3f2c84764db524f3b37aca493f789fdb1d [file] [log] [blame]
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001/*
2 * Copyright (C) 2020 Collabora Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27#include "main/mtypes.h"
28#include "compiler/glsl/glsl_to_nir.h"
29#include "compiler/nir_types.h"
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -050030#include "compiler/nir/nir_builder.h"
Tomeu Vizoso07b31f32020-04-30 09:29:10 +020031#include "util/u_debug.h"
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -050032
33#include "disassemble.h"
34#include "bifrost_compile.h"
Alyssa Rosenzweig3a1baaf2020-03-10 08:20:59 -040035#include "bifrost_nir.h"
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -050036#include "compiler.h"
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -050037#include "bi_quirks.h"
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -050038#include "bi_print.h"
39
Tomeu Vizoso07b31f32020-04-30 09:29:10 +020040static const struct debug_named_value debug_options[] = {
41 {"msgs", BIFROST_DBG_MSGS, "Print debug messages"},
42 {"shaders", BIFROST_DBG_SHADERS, "Dump shaders in NIR and MIR"},
43 DEBUG_NAMED_VALUE_END
44};
45
46DEBUG_GET_ONCE_FLAGS_OPTION(bifrost_debug, "BIFROST_MESA_DEBUG", debug_options, 0)
47
48int bifrost_debug = 0;
49
50#define DBG(fmt, ...) \
51 do { if (bifrost_debug & BIFROST_DBG_MSGS) \
52 fprintf(stderr, "%s:%d: "fmt, \
53 __FUNCTION__, __LINE__, ##__VA_ARGS__); } while (0)
54
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -050055static bi_block *emit_cf_list(bi_context *ctx, struct exec_list *list);
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -050056static bi_instruction *bi_emit_branch(bi_context *ctx);
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -050057
58static void
59emit_jump(bi_context *ctx, nir_jump_instr *instr)
60{
61 bi_instruction *branch = bi_emit_branch(ctx);
62
63 switch (instr->type) {
64 case nir_jump_break:
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -040065 branch->branch_target = ctx->break_block;
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -050066 break;
67 case nir_jump_continue:
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -040068 branch->branch_target = ctx->continue_block;
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -050069 break;
70 default:
71 unreachable("Unhandled jump type");
72 }
73
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -040074 pan_block_add_successor(&ctx->current_block->base, &branch->branch_target->base);
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -050075}
76
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040077static bi_instruction
78bi_load(enum bi_class T, nir_intrinsic_instr *instr)
Alyssa Rosenzweig07671822020-03-05 17:50:18 -050079{
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040080 bi_instruction load = {
81 .type = T,
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -040082 .vector_channels = instr->num_components,
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040083 .src = { BIR_INDEX_CONSTANT },
Alyssa Rosenzweigdf693042020-04-14 20:09:00 -040084 .src_types = { nir_type_uint32 },
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040085 .constant = { .u64 = nir_intrinsic_base(instr) },
Alyssa Rosenzweig07671822020-03-05 17:50:18 -050086 };
87
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040088 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic];
89
90 if (info->has_dest)
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -040091 load.dest = pan_dest_index(&instr->dest);
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040092
Rhys Perry85b74032020-08-20 14:01:58 +010093 if (info->has_dest && nir_intrinsic_has_type(instr))
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040094 load.dest_type = nir_intrinsic_type(instr);
95
Alyssa Rosenzweig07671822020-03-05 17:50:18 -050096 nir_src *offset = nir_get_io_offset_src(instr);
97
98 if (nir_src_is_const(*offset))
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -040099 load.constant.u64 += nir_src_as_uint(*offset);
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500100 else
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400101 load.src[0] = pan_src_index(offset);
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500102
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -0400103 return load;
104}
105
106static void
107bi_emit_ld_vary(bi_context *ctx, nir_intrinsic_instr *instr)
108{
109 bi_instruction ins = bi_load(BI_LOAD_VAR, instr);
110 ins.load_vary.interp_mode = BIFROST_INTERP_DEFAULT; /* TODO */
111 ins.load_vary.reuse = false; /* TODO */
112 ins.load_vary.flat = instr->intrinsic != nir_intrinsic_load_interpolated_input;
Alyssa Rosenzweig37f14c92020-03-18 11:55:10 -0400113 ins.dest_type = nir_type_float | nir_dest_bit_size(instr->dest);
114
115 if (nir_src_is_const(*nir_get_io_offset_src(instr))) {
116 /* Zero it out for direct */
117 ins.src[1] = BIR_INDEX_ZERO;
118 } else {
119 /* R61 contains sample mask stuff, TODO RA XXX */
120 ins.src[1] = BIR_INDEX_REGISTER | 61;
121 }
122
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500123 bi_emit(ctx, ins);
124}
125
126static void
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500127bi_emit_frag_out(bi_context *ctx, nir_intrinsic_instr *instr)
128{
129 if (!ctx->emitted_atest) {
130 bi_instruction ins = {
Alyssa Rosenzweigb18d0ef2020-03-18 23:02:12 -0400131 .type = BI_ATEST,
132 .src = {
133 BIR_INDEX_REGISTER | 60 /* TODO: RA */,
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400134 pan_src_index(&instr->src[0])
Alyssa Rosenzweigb18d0ef2020-03-18 23:02:12 -0400135 },
136 .src_types = {
137 nir_type_uint32,
Alyssa Rosenzweig5f953b82020-04-23 19:03:44 -0400138 nir_intrinsic_type(instr)
Alyssa Rosenzweigb18d0ef2020-03-18 23:02:12 -0400139 },
140 .swizzle = {
141 { 0 },
142 { 3, 0 } /* swizzle out the alpha */
143 },
144 .dest = BIR_INDEX_REGISTER | 60 /* TODO: RA */,
145 .dest_type = nir_type_uint32,
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500146 };
147
148 bi_emit(ctx, ins);
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500149 ctx->emitted_atest = true;
150 }
151
152 bi_instruction blend = {
153 .type = BI_BLEND,
154 .blend_location = nir_intrinsic_base(instr),
155 .src = {
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400156 pan_src_index(&instr->src[0]),
Alyssa Rosenzweiga4fb8872020-03-18 23:12:23 -0400157 BIR_INDEX_REGISTER | 60 /* Can this be arbitrary? */,
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400158 },
Alyssa Rosenzweig116c5412020-03-11 21:45:32 -0400159 .src_types = {
Alyssa Rosenzweig5f953b82020-04-23 19:03:44 -0400160 nir_intrinsic_type(instr),
Alyssa Rosenzweig3439c242020-04-09 23:04:41 -0400161 nir_type_uint32
Alyssa Rosenzweig116c5412020-03-11 21:45:32 -0400162 },
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400163 .swizzle = {
Alyssa Rosenzweig3439c242020-04-09 23:04:41 -0400164 { 0, 1, 2, 3 },
165 { 0 }
Alyssa Rosenzweiga4fb8872020-03-18 23:12:23 -0400166 },
167 .dest = BIR_INDEX_REGISTER | 48 /* Looks like magic */,
168 .dest_type = nir_type_uint32,
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400169 .vector_channels = 4
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500170 };
171
Alyssa Rosenzweig5a3088e2020-08-05 18:10:41 -0400172 assert(blend.blend_location < 8);
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -0400173 assert(ctx->blend_types);
Tomeu Vizoso3c98c452020-04-24 08:40:51 +0200174 assert(blend.src_types[0]);
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -0400175 ctx->blend_types[blend.blend_location] = blend.src_types[0];
176
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500177 bi_emit(ctx, blend);
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500178}
179
Alyssa Rosenzweig1097c692020-03-21 15:25:54 -0400180static bi_instruction
181bi_load_with_r61(enum bi_class T, nir_intrinsic_instr *instr)
182{
183 bi_instruction ld = bi_load(T, instr);
184 ld.src[1] = BIR_INDEX_REGISTER | 61; /* TODO: RA */
185 ld.src[2] = BIR_INDEX_REGISTER | 62;
186 ld.src[3] = 0;
187 ld.src_types[1] = nir_type_uint32;
188 ld.src_types[2] = nir_type_uint32;
189 ld.src_types[3] = nir_intrinsic_type(instr);
190 return ld;
191}
192
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500193static void
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500194bi_emit_st_vary(bi_context *ctx, nir_intrinsic_instr *instr)
195{
Alyssa Rosenzweig1097c692020-03-21 15:25:54 -0400196 bi_instruction address = bi_load_with_r61(BI_LOAD_VAR_ADDRESS, instr);
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -0400197 address.dest = bi_make_temp(ctx);
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400198 address.dest_type = nir_type_uint32;
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400199 address.vector_channels = 3;
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500200
Alyssa Rosenzweigaba7f092020-04-14 20:20:37 -0400201 unsigned nr = nir_intrinsic_src_components(instr, 0);
202 assert(nir_intrinsic_write_mask(instr) == ((1 << nr) - 1));
203
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500204 bi_instruction st = {
205 .type = BI_STORE_VAR,
206 .src = {
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400207 pan_src_index(&instr->src[0]),
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400208 address.dest, address.dest, address.dest,
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400209 },
Alyssa Rosenzweig116c5412020-03-11 21:45:32 -0400210 .src_types = {
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400211 nir_type_uint32,
212 nir_type_uint32, nir_type_uint32, nir_type_uint32,
Alyssa Rosenzweig116c5412020-03-11 21:45:32 -0400213 },
Alyssa Rosenzweig795646d2020-03-09 14:09:04 -0400214 .swizzle = {
Alyssa Rosenzweigaba7f092020-04-14 20:20:37 -0400215 { 0 },
Alyssa Rosenzweig9458b012020-03-20 12:25:08 -0400216 { 0 }, { 1 }, { 2}
Alyssa Rosenzweig9213b252020-03-20 12:38:53 -0400217 },
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400218 .vector_channels = nr,
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500219 };
220
Alyssa Rosenzweigaba7f092020-04-14 20:20:37 -0400221 for (unsigned i = 0; i < nr; ++i)
222 st.swizzle[0][i] = i;
223
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500224 bi_emit(ctx, address);
225 bi_emit(ctx, st);
226}
227
228static void
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -0500229bi_emit_ld_uniform(bi_context *ctx, nir_intrinsic_instr *instr)
230{
Alyssa Rosenzweig69c66ff2020-03-09 19:52:56 -0400231 bi_instruction ld = bi_load(BI_LOAD_UNIFORM, instr);
232 ld.src[1] = BIR_INDEX_ZERO; /* TODO: UBO index */
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400233
234 /* TODO: Indirect access, since we need to multiply by the element
235 * size. I believe we can get this lowering automatically via
236 * nir_lower_io (as mul instructions) with the proper options, but this
237 * is TODO */
238 assert(ld.src[0] & BIR_INDEX_CONSTANT);
239 ld.constant.u64 += ctx->sysvals.sysval_count;
240 ld.constant.u64 *= 16;
241
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -0500242 bi_emit(ctx, ld);
243}
244
245static void
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400246bi_emit_sysval(bi_context *ctx, nir_instr *instr,
247 unsigned nr_components, unsigned offset)
248{
249 nir_dest nir_dest;
250
251 /* Figure out which uniform this is */
252 int sysval = panfrost_sysval_for_instr(instr, &nir_dest);
253 void *val = _mesa_hash_table_u64_search(ctx->sysvals.sysval_to_id, sysval);
254
255 /* Sysvals are prefix uniforms */
256 unsigned uniform = ((uintptr_t) val) - 1;
257
258 /* Emit the read itself -- this is never indirect */
259
260 bi_instruction load = {
261 .type = BI_LOAD_UNIFORM,
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400262 .vector_channels = nr_components,
Alyssa Rosenzweig8bb16132020-03-20 11:38:21 -0400263 .src = { BIR_INDEX_CONSTANT, BIR_INDEX_ZERO },
Alyssa Rosenzweigdf693042020-04-14 20:09:00 -0400264 .src_types = { nir_type_uint32, nir_type_uint32 },
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400265 .constant = { (uniform * 16) + offset },
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400266 .dest = pan_dest_index(&nir_dest),
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400267 .dest_type = nir_type_uint32, /* TODO */
268 };
269
270 bi_emit(ctx, load);
271}
272
Alyssa Rosenzweig47c84ee2020-05-01 14:55:04 -0400273/* gl_FragCoord.xy = u16_to_f32(R59.xy) + 0.5
274 * gl_FragCoord.z = ld_vary(fragz)
275 * gl_FragCoord.w = ld_vary(fragw)
276 */
277
278static void
279bi_emit_ld_frag_coord(bi_context *ctx, nir_intrinsic_instr *instr)
280{
281 /* Future proofing for mediump fragcoord at some point.. */
282 nir_alu_type T = nir_type_float32;
283
284 /* First, sketch a combine */
285 bi_instruction combine = {
286 .type = BI_COMBINE,
287 .dest_type = nir_type_uint32,
288 .dest = pan_dest_index(&instr->dest),
289 .src_types = { T, T, T, T },
290 };
291
292 /* Second, handle xy */
293 for (unsigned i = 0; i < 2; ++i) {
294 bi_instruction conv = {
295 .type = BI_CONVERT,
296 .dest_type = T,
297 .dest = bi_make_temp(ctx),
298 .src = {
299 /* TODO: RA XXX */
300 BIR_INDEX_REGISTER | 59
301 },
302 .src_types = { nir_type_uint16 },
303 .swizzle = { { i } }
304 };
305
306 bi_instruction add = {
307 .type = BI_ADD,
308 .dest_type = T,
309 .dest = bi_make_temp(ctx),
310 .src = { conv.dest, BIR_INDEX_CONSTANT },
311 .src_types = { T, T },
312 };
313
314 float half = 0.5;
315 memcpy(&add.constant.u32, &half, sizeof(float));
316
317 bi_emit(ctx, conv);
318 bi_emit(ctx, add);
319
320 combine.src[i] = add.dest;
321 }
322
323 /* Third, zw */
324 for (unsigned i = 0; i < 2; ++i) {
325 bi_instruction load = {
326 .type = BI_LOAD_VAR,
327 .load_vary = {
328 .interp_mode = BIFROST_INTERP_DEFAULT,
329 .reuse = false,
330 .flat = true
331 },
332 .vector_channels = 1,
333 .dest_type = nir_type_float32,
334 .dest = bi_make_temp(ctx),
335 .src = { BIR_INDEX_CONSTANT, BIR_INDEX_ZERO },
336 .src_types = { nir_type_uint32, nir_type_uint32 },
337 .constant = {
338 .u32 = (i == 0) ? BIFROST_FRAGZ : BIFROST_FRAGW
339 }
340 };
341
342 bi_emit(ctx, load);
343
344 combine.src[i + 2] = load.dest;
345 }
346
347 /* Finally, emit the combine */
348 bi_emit(ctx, combine);
349}
350
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400351static void
Alyssa Rosenzweig7d867f72020-05-01 18:26:18 -0400352bi_emit_discard(bi_context *ctx, nir_intrinsic_instr *instr)
353{
354 /* Goofy lowering */
355 bi_instruction discard = {
356 .type = BI_DISCARD,
357 .cond = BI_COND_EQ,
358 .src_types = { nir_type_uint32, nir_type_uint32 },
359 .src = { BIR_INDEX_ZERO, BIR_INDEX_ZERO },
360 };
361
362 bi_emit(ctx, discard);
363}
364
365static void
Alyssa Rosenzweig8ab5c972020-05-01 18:36:42 -0400366bi_fuse_cond(bi_instruction *csel, nir_alu_src cond,
367 unsigned *constants_left, unsigned *constant_shift,
368 unsigned comps, bool float_only);
369
370static void
Alyssa Rosenzweigc9ab7322020-05-01 18:24:11 -0400371bi_emit_discard_if(bi_context *ctx, nir_intrinsic_instr *instr)
372{
373 nir_src cond = instr->src[0];
374 nir_alu_type T = nir_type_uint | nir_src_bit_size(cond);
375
376 bi_instruction discard = {
377 .type = BI_DISCARD,
378 .cond = BI_COND_NE,
379 .src_types = { T, T },
380 .src = {
381 pan_src_index(&cond),
382 BIR_INDEX_ZERO
383 },
384 };
385
Alyssa Rosenzweig8ab5c972020-05-01 18:36:42 -0400386 /* Try to fuse in the condition */
387 unsigned constants_left = 1, constant_shift = 0;
388
389 /* Scalar so no swizzle */
390 nir_alu_src wrap = {
391 .src = instr->src[0]
392 };
393
394 /* May or may not succeed but we're optimistic */
395 bi_fuse_cond(&discard, wrap, &constants_left, &constant_shift, 1, true);
396
Alyssa Rosenzweigc9ab7322020-05-01 18:24:11 -0400397 bi_emit(ctx, discard);
398}
399
400static void
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500401emit_intrinsic(bi_context *ctx, nir_intrinsic_instr *instr)
402{
403
404 switch (instr->intrinsic) {
405 case nir_intrinsic_load_barycentric_pixel:
406 /* stub */
407 break;
408 case nir_intrinsic_load_interpolated_input:
Alyssa Rosenzweig59b476e2020-03-06 09:33:52 -0500409 case nir_intrinsic_load_input:
410 if (ctx->stage == MESA_SHADER_FRAGMENT)
411 bi_emit_ld_vary(ctx, instr);
412 else if (ctx->stage == MESA_SHADER_VERTEX)
Alyssa Rosenzweig1097c692020-03-21 15:25:54 -0400413 bi_emit(ctx, bi_load_with_r61(BI_LOAD_ATTR, instr));
Alyssa Rosenzweig59b476e2020-03-06 09:33:52 -0500414 else {
415 unreachable("Unsupported shader stage");
416 }
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500417 break;
Alyssa Rosenzweig59b476e2020-03-06 09:33:52 -0500418
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500419 case nir_intrinsic_store_output:
420 if (ctx->stage == MESA_SHADER_FRAGMENT)
421 bi_emit_frag_out(ctx, instr);
Alyssa Rosenzweig48910e82020-03-06 09:44:19 -0500422 else if (ctx->stage == MESA_SHADER_VERTEX)
423 bi_emit_st_vary(ctx, instr);
424 else
425 unreachable("Unsupported shader stage");
Alyssa Rosenzweigdabb6c62020-03-06 09:26:44 -0500426 break;
Alyssa Rosenzweig1ead0d32020-03-06 09:52:09 -0500427
428 case nir_intrinsic_load_uniform:
429 bi_emit_ld_uniform(ctx, instr);
430 break;
431
Alyssa Rosenzweig47c84ee2020-05-01 14:55:04 -0400432 case nir_intrinsic_load_frag_coord:
433 bi_emit_ld_frag_coord(ctx, instr);
434 break;
435
Alyssa Rosenzweig7d867f72020-05-01 18:26:18 -0400436 case nir_intrinsic_discard:
437 bi_emit_discard(ctx, instr);
438 break;
439
Alyssa Rosenzweigc9ab7322020-05-01 18:24:11 -0400440 case nir_intrinsic_discard_if:
441 bi_emit_discard_if(ctx, instr);
442 break;
443
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -0400444 case nir_intrinsic_load_ssbo_address:
445 bi_emit_sysval(ctx, &instr->instr, 1, 0);
446 break;
447
448 case nir_intrinsic_get_buffer_size:
449 bi_emit_sysval(ctx, &instr->instr, 1, 8);
450 break;
451
452 case nir_intrinsic_load_viewport_scale:
453 case nir_intrinsic_load_viewport_offset:
454 case nir_intrinsic_load_num_work_groups:
455 case nir_intrinsic_load_sampler_lod_parameters_pan:
456 bi_emit_sysval(ctx, &instr->instr, 3, 0);
457 break;
458
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500459 default:
Alyssa Rosenzweigc4883902020-05-01 14:13:10 -0400460 unreachable("Unknown intrinsic");
Alyssa Rosenzweig07671822020-03-05 17:50:18 -0500461 break;
462 }
463}
464
465static void
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -0500466emit_load_const(bi_context *ctx, nir_load_const_instr *instr)
467{
468 /* Make sure we've been lowered */
Alyssa Rosenzweig0e73d872020-06-02 19:30:56 -0400469 assert(instr->def.num_components <= (32 / instr->def.bit_size));
470
471 /* Accumulate all the channels of the constant, as if we did an
472 * implicit SEL over them */
473 uint32_t acc = 0;
474
475 for (unsigned i = 0; i < instr->def.num_components; ++i) {
476 unsigned v = nir_const_value_as_uint(instr->value[i], instr->def.bit_size);
477 acc |= (v << (i * instr->def.bit_size));
478 }
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -0500479
480 bi_instruction move = {
481 .type = BI_MOV,
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400482 .dest = pan_ssa_index(&instr->def),
Alyssa Rosenzweig0e73d872020-06-02 19:30:56 -0400483 .dest_type = nir_type_uint32,
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -0500484 .src = {
485 BIR_INDEX_CONSTANT
486 },
Alyssa Rosenzweig02ad1472020-03-30 20:54:51 -0400487 .src_types = {
Alyssa Rosenzweig0e73d872020-06-02 19:30:56 -0400488 nir_type_uint32,
Alyssa Rosenzweig02ad1472020-03-30 20:54:51 -0400489 },
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -0500490 .constant = {
Alyssa Rosenzweig0e73d872020-06-02 19:30:56 -0400491 .u32 = acc
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -0500492 }
493 };
494
495 bi_emit(ctx, move);
496}
497
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400498#define BI_CASE_CMP(op) \
499 case op##8: \
500 case op##16: \
501 case op##32: \
502
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400503static enum bi_class
504bi_class_for_nir_alu(nir_op op)
505{
506 switch (op) {
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400507 case nir_op_fadd:
Alyssa Rosenzweigacab7882020-03-10 07:56:14 -0400508 case nir_op_fsub:
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400509 return BI_ADD;
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400510
511 case nir_op_iadd:
Alyssa Rosenzweig55f0d812020-03-10 08:03:20 -0400512 case nir_op_isub:
Alyssa Rosenzweig1a94dae2020-05-04 14:00:13 -0400513 return BI_IMATH;
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400514
Chris Forbesa0a70872020-07-26 15:54:14 -0700515 case nir_op_imul:
516 return BI_IMUL;
517
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400518 case nir_op_iand:
519 case nir_op_ior:
520 case nir_op_ixor:
Chris Forbes539ea082020-07-26 11:37:42 -0700521 case nir_op_inot:
Chris Forbes946ff9b2020-07-26 12:18:54 -0700522 case nir_op_ishl:
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400523 return BI_BITWISE;
524
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400525 BI_CASE_CMP(nir_op_flt)
526 BI_CASE_CMP(nir_op_fge)
527 BI_CASE_CMP(nir_op_feq)
Karol Herbste5899c12020-08-18 19:51:57 +0200528 BI_CASE_CMP(nir_op_fneu)
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400529 BI_CASE_CMP(nir_op_ilt)
530 BI_CASE_CMP(nir_op_ige)
531 BI_CASE_CMP(nir_op_ieq)
532 BI_CASE_CMP(nir_op_ine)
Chris Forbes718d4442020-07-26 12:41:17 -0700533 BI_CASE_CMP(nir_op_uge)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400534 return BI_CMP;
535
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400536 case nir_op_b8csel:
537 case nir_op_b16csel:
538 case nir_op_b32csel:
Alyssa Rosenzweigd3823552020-03-10 08:32:56 -0400539 return BI_CSEL;
540
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400541 case nir_op_i2i8:
542 case nir_op_i2i16:
543 case nir_op_i2i32:
544 case nir_op_i2i64:
545 case nir_op_u2u8:
546 case nir_op_u2u16:
547 case nir_op_u2u32:
548 case nir_op_u2u64:
549 case nir_op_f2i16:
550 case nir_op_f2i32:
551 case nir_op_f2i64:
552 case nir_op_f2u16:
553 case nir_op_f2u32:
554 case nir_op_f2u64:
555 case nir_op_i2f16:
556 case nir_op_i2f32:
557 case nir_op_i2f64:
558 case nir_op_u2f16:
559 case nir_op_u2f32:
560 case nir_op_u2f64:
Alyssa Rosenzweigaa77d812020-03-27 14:40:04 -0400561 case nir_op_f2f16:
562 case nir_op_f2f32:
563 case nir_op_f2f64:
564 case nir_op_f2fmp:
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400565 return BI_CONVERT;
566
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400567 case nir_op_vec2:
568 case nir_op_vec3:
569 case nir_op_vec4:
570 return BI_COMBINE;
571
572 case nir_op_vec8:
573 case nir_op_vec16:
574 unreachable("should've been lowered");
575
Alyssa Rosenzweigf6d96aa2020-03-11 15:15:41 -0400576 case nir_op_ffma:
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400577 case nir_op_fmul:
578 return BI_FMA;
579
580 case nir_op_imin:
581 case nir_op_imax:
582 case nir_op_umin:
583 case nir_op_umax:
584 case nir_op_fmin:
585 case nir_op_fmax:
586 return BI_MINMAX;
587
Alyssa Rosenzweig5a5896c2020-03-09 21:02:51 -0400588 case nir_op_fsat:
Alyssa Rosenzweig1216a632020-03-10 07:52:24 -0400589 case nir_op_fneg:
590 case nir_op_fabs:
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -0400591 return BI_FMOV;
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400592 case nir_op_mov:
593 return BI_MOV;
594
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400595 case nir_op_fround_even:
596 case nir_op_fceil:
597 case nir_op_ffloor:
598 case nir_op_ftrunc:
599 return BI_ROUND;
600
Alyssa Rosenzweig8ed79c92020-03-09 21:20:20 -0400601 case nir_op_frcp:
602 case nir_op_frsq:
Chris Forbes1882b1e2020-07-27 11:51:31 -0700603 case nir_op_iabs:
Alyssa Rosenzweig8ed79c92020-03-09 21:20:20 -0400604 return BI_SPECIAL;
605
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400606 default:
607 unreachable("Unknown ALU op");
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400608 }
609}
610
Alyssa Rosenzweig5a02c8712020-03-21 18:12:31 -0400611/* Gets a bi_cond for a given NIR comparison opcode. In soft mode, it will
612 * return BI_COND_ALWAYS as a sentinel if it fails to do so (when used for
613 * optimizations). Otherwise it will bail (when used for primary code
614 * generation). */
615
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400616static enum bi_cond
Alyssa Rosenzweig5a02c8712020-03-21 18:12:31 -0400617bi_cond_for_nir(nir_op op, bool soft)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400618{
619 switch (op) {
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400620 BI_CASE_CMP(nir_op_flt)
621 BI_CASE_CMP(nir_op_ilt)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400622 return BI_COND_LT;
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400623
624 BI_CASE_CMP(nir_op_fge)
625 BI_CASE_CMP(nir_op_ige)
Chris Forbes718d4442020-07-26 12:41:17 -0700626 BI_CASE_CMP(nir_op_uge)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400627 return BI_COND_GE;
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400628
629 BI_CASE_CMP(nir_op_feq)
630 BI_CASE_CMP(nir_op_ieq)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400631 return BI_COND_EQ;
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400632
Karol Herbste5899c12020-08-18 19:51:57 +0200633 BI_CASE_CMP(nir_op_fneu)
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400634 BI_CASE_CMP(nir_op_ine)
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400635 return BI_COND_NE;
636 default:
Alyssa Rosenzweig5a02c8712020-03-21 18:12:31 -0400637 if (soft)
638 return BI_COND_ALWAYS;
639 else
640 unreachable("Invalid compare");
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400641 }
642}
643
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400644static void
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400645bi_copy_src(bi_instruction *alu, nir_alu_instr *instr, unsigned i, unsigned to,
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400646 unsigned *constants_left, unsigned *constant_shift, unsigned comps)
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400647{
648 unsigned bits = nir_src_bit_size(instr->src[i].src);
649 unsigned dest_bits = nir_dest_bit_size(instr->dest.dest);
650
651 alu->src_types[to] = nir_op_infos[instr->op].input_types[i]
652 | bits;
653
654 /* Try to inline a constant */
655 if (nir_src_is_const(instr->src[i].src) && *constants_left && (dest_bits == bits)) {
Alyssa Rosenzweigd772bf02020-04-15 10:39:42 -0400656 uint64_t mask = (1ull << dest_bits) - 1;
657 uint64_t cons = nir_src_as_uint(instr->src[i].src);
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400658
Alyssa Rosenzweigd772bf02020-04-15 10:39:42 -0400659 /* Try to reuse a constant */
660 for (unsigned i = 0; i < (*constant_shift); i += dest_bits) {
661 if (((alu->constant.u64 >> i) & mask) == cons) {
662 alu->src[to] = BIR_INDEX_CONSTANT | i;
663 return;
664 }
665 }
666
667 alu->constant.u64 |= cons << *constant_shift;
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400668 alu->src[to] = BIR_INDEX_CONSTANT | (*constant_shift);
669 --(*constants_left);
Alyssa Rosenzweig4d0f9412020-04-17 15:52:03 -0400670 (*constant_shift) += MAX2(dest_bits, 32); /* lo/hi */
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400671 return;
672 }
673
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400674 alu->src[to] = pan_src_index(&instr->src[i].src);
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400675
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400676 /* Copy swizzle for all vectored components, replicating last component
677 * to fill undersized */
678
679 unsigned vec = alu->type == BI_COMBINE ? 1 :
680 MAX2(1, 32 / dest_bits);
681
682 for (unsigned j = 0; j < vec; ++j)
683 alu->swizzle[to][j] = instr->src[i].swizzle[MIN2(j, comps - 1)];
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400684}
685
686static void
Alyssa Rosenzweig201a11a2020-05-01 18:31:22 -0400687bi_fuse_cond(bi_instruction *csel, nir_alu_src cond,
688 unsigned *constants_left, unsigned *constant_shift,
689 unsigned comps, bool float_only)
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400690{
691 /* Bail for vector weirdness */
692 if (cond.swizzle[0] != 0)
693 return;
694
695 if (!cond.src.is_ssa)
696 return;
697
698 nir_ssa_def *def = cond.src.ssa;
699 nir_instr *parent = def->parent_instr;
700
701 if (parent->type != nir_instr_type_alu)
702 return;
703
704 nir_alu_instr *alu = nir_instr_as_alu(parent);
705
706 /* Try to match a condition */
707 enum bi_cond bcond = bi_cond_for_nir(alu->op, true);
708
709 if (bcond == BI_COND_ALWAYS)
710 return;
711
Alyssa Rosenzweig201a11a2020-05-01 18:31:22 -0400712 /* Some instructions can't compare ints */
713 if (float_only) {
714 nir_alu_type T = nir_op_infos[alu->op].input_types[0];
715 T = nir_alu_type_get_base_type(T);
716
717 if (T != nir_type_float)
718 return;
719 }
720
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400721 /* We found one, let's fuse it in */
Alyssa Rosenzweig95fc71e2020-04-27 14:15:57 -0400722 csel->cond = bcond;
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400723 bi_copy_src(csel, alu, 0, 0, constants_left, constant_shift, comps);
724 bi_copy_src(csel, alu, 1, 1, constants_left, constant_shift, comps);
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400725}
726
727static void
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400728emit_alu(bi_context *ctx, nir_alu_instr *instr)
729{
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400730 /* Try some special functions */
731 switch (instr->op) {
732 case nir_op_fexp2:
733 bi_emit_fexp2(ctx, instr);
734 return;
Alyssa Rosenzweig031ad0e2020-04-14 19:50:24 -0400735 case nir_op_flog2:
736 bi_emit_flog2(ctx, instr);
737 return;
Alyssa Rosenzweig8e522062020-04-14 18:52:21 -0400738 default:
739 break;
740 }
741
742 /* Otherwise, assume it's something we can handle normally */
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400743 bi_instruction alu = {
744 .type = bi_class_for_nir_alu(instr->op),
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400745 .dest = pan_dest_index(&instr->dest.dest),
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400746 .dest_type = nir_op_infos[instr->op].output_type
747 | nir_dest_bit_size(instr->dest.dest),
748 };
749
Alyssa Rosenzweig8ed79c92020-03-09 21:20:20 -0400750 /* TODO: Implement lowering of special functions for older Bifrost */
751 assert((alu.type != BI_SPECIAL) || !(ctx->quirks & BIFROST_NO_FAST_OP));
752
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400753 unsigned comps = nir_dest_num_components(instr->dest.dest);
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400754
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400755 if (alu.type != BI_COMBINE)
756 assert(comps <= MAX2(1, 32 / comps));
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -0400757
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400758 if (!instr->dest.dest.is_ssa) {
759 for (unsigned i = 0; i < comps; ++i)
760 assert(instr->dest.write_mask);
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400761 }
762
Alyssa Rosenzweig48e50ef2020-03-09 20:32:00 -0400763 /* We inline constants as we go. This tracks how many constants have
764 * been inlined, since we're limited to 64-bits of constants per
765 * instruction */
766
767 unsigned dest_bits = nir_dest_bit_size(instr->dest.dest);
768 unsigned constants_left = (64 / dest_bits);
769 unsigned constant_shift = 0;
770
Alyssa Rosenzweig02ad1472020-03-30 20:54:51 -0400771 if (alu.type == BI_COMBINE)
772 constants_left = 0;
773
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400774 /* Copy sources */
775
776 unsigned num_inputs = nir_op_infos[instr->op].num_inputs;
777 assert(num_inputs <= ARRAY_SIZE(alu.src));
778
Alyssa Rosenzweig8eefb272020-04-05 19:22:01 -0400779 for (unsigned i = 0; i < num_inputs; ++i) {
780 unsigned f = 0;
781
782 if (i && alu.type == BI_CSEL)
783 f++;
784
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400785 bi_copy_src(&alu, instr, i, i + f, &constants_left, &constant_shift, comps);
Alyssa Rosenzweig8eefb272020-04-05 19:22:01 -0400786 }
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400787
788 /* Op-specific fixup */
789 switch (instr->op) {
790 case nir_op_fmul:
791 alu.src[2] = BIR_INDEX_ZERO; /* FMA */
Alyssa Rosenzweigb5148b62020-03-27 15:53:12 -0400792 alu.src_types[2] = alu.src_types[1];
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400793 break;
Alyssa Rosenzweig5a5896c2020-03-09 21:02:51 -0400794 case nir_op_fsat:
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -0400795 alu.outmod = BIFROST_SAT; /* FMOV */
Alyssa Rosenzweig5a5896c2020-03-09 21:02:51 -0400796 break;
Alyssa Rosenzweig1216a632020-03-10 07:52:24 -0400797 case nir_op_fneg:
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -0400798 alu.src_neg[0] = true; /* FMOV */
Alyssa Rosenzweig1216a632020-03-10 07:52:24 -0400799 break;
800 case nir_op_fabs:
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -0400801 alu.src_abs[0] = true; /* FMOV */
Alyssa Rosenzweig1216a632020-03-10 07:52:24 -0400802 break;
Alyssa Rosenzweigacab7882020-03-10 07:56:14 -0400803 case nir_op_fsub:
Alyssa Rosenzweig6b7077e2020-03-19 16:58:48 -0400804 alu.src_neg[1] = true; /* FADD */
Alyssa Rosenzweigacab7882020-03-10 07:56:14 -0400805 break;
Alyssa Rosenzweigcf3c3562020-05-04 14:04:35 -0400806 case nir_op_iadd:
807 alu.op.imath = BI_IMATH_ADD;
808 break;
809 case nir_op_isub:
810 alu.op.imath = BI_IMATH_SUB;
811 break;
Chris Forbes1882b1e2020-07-27 11:51:31 -0700812 case nir_op_iabs:
813 alu.op.special = BI_SPECIAL_IABS;
814 break;
Chris Forbes539ea082020-07-26 11:37:42 -0700815 case nir_op_inot:
816 /* no dedicated bitwise not, but we can invert sources. convert to ~a | 0 */
817 alu.op.bitwise = BI_BITWISE_OR;
818 alu.bitwise.src_invert[0] = true;
819 alu.src[1] = BIR_INDEX_ZERO;
Chris Forbes946ff9b2020-07-26 12:18:54 -0700820 /* zero shift */
821 alu.src[2] = BIR_INDEX_ZERO;
822 alu.src_types[2] = alu.src_types[1];
823 break;
824 case nir_op_ishl:
825 alu.op.bitwise = BI_BITWISE_OR;
826 /* move src1 to src2 and replace with zero. underlying op is (src0 << src2) | src1 */
827 alu.src[2] = alu.src[1];
828 alu.src_types[2] = alu.src_types[1];
829 alu.src[1] = BIR_INDEX_ZERO;
Chris Forbes539ea082020-07-26 11:37:42 -0700830 break;
Chris Forbesa0a70872020-07-26 15:54:14 -0700831 case nir_op_imul:
832 alu.op.imul = BI_IMUL_IMUL;
833 break;
Alyssa Rosenzweigc8622342020-03-09 21:10:41 -0400834 case nir_op_fmax:
835 case nir_op_imax:
836 case nir_op_umax:
837 alu.op.minmax = BI_MINMAX_MAX; /* MINMAX */
838 break;
Alyssa Rosenzweig8ed79c92020-03-09 21:20:20 -0400839 case nir_op_frcp:
840 alu.op.special = BI_SPECIAL_FRCP;
841 break;
842 case nir_op_frsq:
843 alu.op.special = BI_SPECIAL_FRSQ;
844 break;
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400845 BI_CASE_CMP(nir_op_flt)
846 BI_CASE_CMP(nir_op_ilt)
847 BI_CASE_CMP(nir_op_fge)
848 BI_CASE_CMP(nir_op_ige)
849 BI_CASE_CMP(nir_op_feq)
850 BI_CASE_CMP(nir_op_ieq)
Karol Herbste5899c12020-08-18 19:51:57 +0200851 BI_CASE_CMP(nir_op_fneu)
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -0400852 BI_CASE_CMP(nir_op_ine)
Chris Forbes718d4442020-07-26 12:41:17 -0700853 BI_CASE_CMP(nir_op_uge)
Alyssa Rosenzweig95fc71e2020-04-27 14:15:57 -0400854 alu.cond = bi_cond_for_nir(instr->op, false);
Alyssa Rosenzweig05413502020-03-10 08:21:35 -0400855 break;
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400856 case nir_op_fround_even:
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400857 alu.roundmode = BIFROST_RTE;
858 break;
859 case nir_op_fceil:
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400860 alu.roundmode = BIFROST_RTP;
861 break;
862 case nir_op_ffloor:
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400863 alu.roundmode = BIFROST_RTN;
864 break;
865 case nir_op_ftrunc:
Alyssa Rosenzweigf81b67b2020-03-27 20:28:09 -0400866 alu.roundmode = BIFROST_RTZ;
867 break;
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400868 case nir_op_iand:
869 alu.op.bitwise = BI_BITWISE_AND;
Chris Forbes946ff9b2020-07-26 12:18:54 -0700870 /* zero shift */
871 alu.src[2] = BIR_INDEX_ZERO;
872 alu.src_types[2] = alu.src_types[1];
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400873 break;
874 case nir_op_ior:
875 alu.op.bitwise = BI_BITWISE_OR;
Chris Forbes946ff9b2020-07-26 12:18:54 -0700876 /* zero shift */
877 alu.src[2] = BIR_INDEX_ZERO;
878 alu.src_types[2] = alu.src_types[1];
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400879 break;
880 case nir_op_ixor:
881 alu.op.bitwise = BI_BITWISE_XOR;
Chris Forbes946ff9b2020-07-26 12:18:54 -0700882 /* zero shift */
883 alu.src[2] = BIR_INDEX_ZERO;
884 alu.src_types[2] = alu.src_types[1];
Alyssa Rosenzweiga077da62020-04-28 14:36:17 -0400885 break;
Chris Forbesf6aa0712020-07-04 15:26:42 -0700886 case nir_op_f2i32:
887 alu.roundmode = BIFROST_RTZ;
888 break;
Alyssa Rosenzweig1b09c692020-06-02 19:29:25 -0400889
890 case nir_op_f2f16:
891 case nir_op_i2i16:
892 case nir_op_u2u16: {
893 if (nir_src_bit_size(instr->src[0].src) != 32)
894 break;
895
896 /* Should have been const folded */
897 assert(!nir_src_is_const(instr->src[0].src));
898
899 alu.src_types[1] = alu.src_types[0];
900 alu.src[1] = alu.src[0];
901
902 unsigned last = nir_dest_num_components(instr->dest.dest) - 1;
903 assert(last <= 1);
904
905 alu.swizzle[1][0] = instr->src[0].swizzle[last];
906 break;
907 }
908
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400909 default:
910 break;
911 }
912
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400913 if (alu.type == BI_CSEL) {
Alyssa Rosenzweig5cdc31a2020-03-21 21:19:14 -0400914 /* Default to csel3 */
Alyssa Rosenzweig95fc71e2020-04-27 14:15:57 -0400915 alu.cond = BI_COND_NE;
Alyssa Rosenzweig8eefb272020-04-05 19:22:01 -0400916 alu.src[1] = BIR_INDEX_ZERO;
917 alu.src_types[1] = alu.src_types[0];
Alyssa Rosenzweig5cdc31a2020-03-21 21:19:14 -0400918
Alyssa Rosenzweig31a41bb2020-05-01 17:34:47 -0400919 /* TODO: Reenable cond fusing when we can split up registers
920 * when scheduling */
921#if 0
Alyssa Rosenzweig201a11a2020-05-01 18:31:22 -0400922 bi_fuse_cond(&alu, instr->src[0],
923 &constants_left, &constant_shift, comps, false);
Alyssa Rosenzweig31a41bb2020-05-01 17:34:47 -0400924#endif
Alyssa Rosenzweig3f786ed2020-03-21 18:13:49 -0400925 }
926
Alyssa Rosenzweig929baf32020-03-09 20:19:51 -0400927 bi_emit(ctx, alu);
928}
929
Alyssa Rosenzweig0769036a2020-04-21 12:15:29 -0400930/* TEX_COMPACT instructions assume normal 2D f32 operation but are more
931 * space-efficient and with simpler RA/scheduling requirements*/
932
933static void
934emit_tex_compact(bi_context *ctx, nir_tex_instr *instr)
935{
Alyssa Rosenzweigcd5fe3b2020-04-21 13:00:44 -0400936 bi_instruction tex = {
937 .type = BI_TEX,
938 .op = { .texture = BI_TEX_COMPACT },
Alyssa Rosenzweig5f35cda2020-04-30 16:10:55 -0400939 .texture = {
940 .texture_index = instr->texture_index,
941 .sampler_index = instr->sampler_index,
942 },
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400943 .dest = pan_dest_index(&instr->dest),
Alyssa Rosenzweigcd5fe3b2020-04-21 13:00:44 -0400944 .dest_type = instr->dest_type,
945 .src_types = { nir_type_float32, nir_type_float32 },
Alyssa Rosenzweigb2c6cf22020-04-24 17:20:28 -0400946 .vector_channels = 4
Alyssa Rosenzweigcd5fe3b2020-04-21 13:00:44 -0400947 };
948
949 for (unsigned i = 0; i < instr->num_srcs; ++i) {
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -0400950 int index = pan_src_index(&instr->src[i].src);
Alyssa Rosenzweig6650fa22020-05-27 11:43:37 -0400951
952 /* We were checked ahead-of-time */
953 if (instr->src[i].src_type == nir_tex_src_lod)
954 continue;
955
Alyssa Rosenzweigcd5fe3b2020-04-21 13:00:44 -0400956 assert (instr->src[i].src_type == nir_tex_src_coord);
957
958 tex.src[0] = index;
959 tex.src[1] = index;
960 tex.swizzle[0][0] = 0;
961 tex.swizzle[1][0] = 1;
962 }
963
964 bi_emit(ctx, tex);
Alyssa Rosenzweig0769036a2020-04-21 12:15:29 -0400965}
966
967static void
968emit_tex_full(bi_context *ctx, nir_tex_instr *instr)
969{
970 unreachable("stub");
971}
972
Alyssa Rosenzweig731dfc62020-05-27 11:41:42 -0400973/* Normal textures ops are tex for frag shaders and txl for vertex shaders with
974 * lod a constant 0. Anything else needs a full texture op. */
975
976static bool
977bi_is_normal_tex(gl_shader_stage stage, nir_tex_instr *instr)
978{
979 if (stage == MESA_SHADER_FRAGMENT)
980 return instr->op == nir_texop_tex;
981
982 if (instr->op != nir_texop_txl)
983 return false;
984
985 for (unsigned i = 0; i < instr->num_srcs; ++i) {
986 if (instr->src[i].src_type != nir_tex_src_lod)
987 continue;
988
989 nir_src src = instr->src[i].src;
990
991 if (!nir_src_is_const(src))
992 continue;
993
994 if (nir_src_as_uint(src) != 0)
995 continue;
996 }
997
998 return true;
999}
1000
Alyssa Rosenzweig0769036a2020-04-21 12:15:29 -04001001static void
1002emit_tex(bi_context *ctx, nir_tex_instr *instr)
1003{
1004 nir_alu_type base = nir_alu_type_get_base_type(instr->dest_type);
1005 unsigned sz = nir_dest_bit_size(instr->dest);
1006 instr->dest_type = base | sz;
1007
Alyssa Rosenzweig731dfc62020-05-27 11:41:42 -04001008 bool is_normal = bi_is_normal_tex(ctx->stage, instr);
Alyssa Rosenzweig0769036a2020-04-21 12:15:29 -04001009 bool is_2d = instr->sampler_dim == GLSL_SAMPLER_DIM_2D ||
1010 instr->sampler_dim == GLSL_SAMPLER_DIM_EXTERNAL;
1011 bool is_f = base == nir_type_float && (sz == 16 || sz == 32);
1012
1013 bool is_compact = is_normal && is_2d && is_f && !instr->is_shadow;
1014
1015 if (is_compact)
1016 emit_tex_compact(ctx, instr);
1017 else
1018 emit_tex_full(ctx, instr);
1019}
1020
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -05001021static void
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -05001022emit_instr(bi_context *ctx, struct nir_instr *instr)
1023{
1024 switch (instr->type) {
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -05001025 case nir_instr_type_load_const:
1026 emit_load_const(ctx, nir_instr_as_load_const(instr));
1027 break;
1028
1029 case nir_instr_type_intrinsic:
1030 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
1031 break;
1032
1033 case nir_instr_type_alu:
1034 emit_alu(ctx, nir_instr_as_alu(instr));
1035 break;
1036
1037 case nir_instr_type_tex:
1038 emit_tex(ctx, nir_instr_as_tex(instr));
1039 break;
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -05001040
1041 case nir_instr_type_jump:
1042 emit_jump(ctx, nir_instr_as_jump(instr));
1043 break;
1044
1045 case nir_instr_type_ssa_undef:
1046 /* Spurious */
1047 break;
1048
1049 default:
Alyssa Rosenzweig0769036a2020-04-21 12:15:29 -04001050 unreachable("Unhandled instruction type");
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -05001051 break;
1052 }
1053}
1054
1055
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001056
1057static bi_block *
1058create_empty_block(bi_context *ctx)
1059{
1060 bi_block *blk = rzalloc(ctx, bi_block);
1061
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -04001062 blk->base.predecessors = _mesa_set_create(blk,
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001063 _mesa_hash_pointer,
1064 _mesa_key_pointer_equal);
1065
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001066 return blk;
1067}
1068
1069static bi_block *
1070emit_block(bi_context *ctx, nir_block *block)
1071{
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001072 if (ctx->after_block) {
1073 ctx->current_block = ctx->after_block;
1074 ctx->after_block = NULL;
1075 } else {
1076 ctx->current_block = create_empty_block(ctx);
1077 }
1078
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -04001079 list_addtail(&ctx->current_block->base.link, &ctx->blocks);
1080 list_inithead(&ctx->current_block->base.instructions);
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001081
1082 nir_foreach_instr(instr, block) {
Alyssa Rosenzweig65c8dcc2020-03-05 17:10:46 -05001083 emit_instr(ctx, instr);
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001084 ++ctx->instruction_count;
1085 }
1086
1087 return ctx->current_block;
1088}
1089
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001090/* Emits an unconditional branch to the end of the current block, returning a
1091 * pointer so the user can fill in details */
1092
1093static bi_instruction *
1094bi_emit_branch(bi_context *ctx)
1095{
1096 bi_instruction branch = {
1097 .type = BI_BRANCH,
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001098 .cond = BI_COND_ALWAYS
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001099 };
1100
1101 return bi_emit(ctx, branch);
1102}
1103
1104/* Sets a condition for a branch by examing the NIR condition. If we're
1105 * familiar with the condition, we unwrap it to fold it into the branch
1106 * instruction. Otherwise, we consume the condition directly. We
1107 * generally use 1-bit booleans which allows us to use small types for
1108 * the conditions.
1109 */
1110
1111static void
1112bi_set_branch_cond(bi_instruction *branch, nir_src *cond, bool invert)
1113{
1114 /* TODO: Try to unwrap instead of always bailing */
Alyssa Rosenzweigfbbe3d42020-04-27 16:04:05 -04001115 branch->src[0] = pan_src_index(cond);
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001116 branch->src[1] = BIR_INDEX_ZERO;
Alyssa Rosenzweigd619ff02020-05-28 12:39:14 -04001117 branch->src_types[0] = branch->src_types[1] = nir_type_uint |
1118 nir_src_bit_size(*cond);
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001119 branch->cond = invert ? BI_COND_EQ : BI_COND_NE;
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001120}
1121
1122static void
1123emit_if(bi_context *ctx, nir_if *nif)
1124{
1125 bi_block *before_block = ctx->current_block;
1126
1127 /* Speculatively emit the branch, but we can't fill it in until later */
1128 bi_instruction *then_branch = bi_emit_branch(ctx);
1129 bi_set_branch_cond(then_branch, &nif->condition, true);
1130
1131 /* Emit the two subblocks. */
1132 bi_block *then_block = emit_cf_list(ctx, &nif->then_list);
1133 bi_block *end_then_block = ctx->current_block;
1134
1135 /* Emit a jump from the end of the then block to the end of the else */
1136 bi_instruction *then_exit = bi_emit_branch(ctx);
1137
1138 /* Emit second block, and check if it's empty */
1139
1140 int count_in = ctx->instruction_count;
1141 bi_block *else_block = emit_cf_list(ctx, &nif->else_list);
1142 bi_block *end_else_block = ctx->current_block;
1143 ctx->after_block = create_empty_block(ctx);
1144
1145 /* Now that we have the subblocks emitted, fix up the branches */
1146
1147 assert(then_block);
1148 assert(else_block);
1149
1150 if (ctx->instruction_count == count_in) {
1151 /* The else block is empty, so don't emit an exit jump */
1152 bi_remove_instruction(then_exit);
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001153 then_branch->branch_target = ctx->after_block;
Alyssa Rosenzweige42a5df2020-05-27 18:27:08 -04001154 pan_block_add_successor(&end_then_block->base, &ctx->after_block->base); /* fallthrough */
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001155 } else {
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001156 then_branch->branch_target = else_block;
1157 then_exit->branch_target = ctx->after_block;
1158 pan_block_add_successor(&end_then_block->base, &then_exit->branch_target->base);
Alyssa Rosenzweige42a5df2020-05-27 18:27:08 -04001159 pan_block_add_successor(&end_else_block->base, &ctx->after_block->base); /* fallthrough */
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001160 }
1161
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001162 pan_block_add_successor(&before_block->base, &then_branch->branch_target->base); /* then_branch */
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -04001163 pan_block_add_successor(&before_block->base, &then_block->base); /* fallthrough */
Alyssa Rosenzweig9a00cf32020-03-05 16:45:16 -05001164}
1165
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -05001166static void
1167emit_loop(bi_context *ctx, nir_loop *nloop)
1168{
1169 /* Remember where we are */
1170 bi_block *start_block = ctx->current_block;
1171
1172 bi_block *saved_break = ctx->break_block;
1173 bi_block *saved_continue = ctx->continue_block;
1174
1175 ctx->continue_block = create_empty_block(ctx);
1176 ctx->break_block = create_empty_block(ctx);
1177 ctx->after_block = ctx->continue_block;
1178
1179 /* Emit the body itself */
1180 emit_cf_list(ctx, &nloop->body);
1181
1182 /* Branch back to loop back */
1183 bi_instruction *br_back = bi_emit_branch(ctx);
Alyssa Rosenzweig6627b202020-05-01 18:13:54 -04001184 br_back->branch_target = ctx->continue_block;
Alyssa Rosenzweig9b75f412020-03-11 14:35:38 -04001185 pan_block_add_successor(&start_block->base, &ctx->continue_block->base);
1186 pan_block_add_successor(&ctx->current_block->base, &ctx->continue_block->base);
Alyssa Rosenzweig987aea12020-03-05 17:03:53 -05001187
1188 ctx->after_block = ctx->break_block;
1189
1190 /* Pop off */
1191 ctx->break_block = saved_break;
1192 ctx->continue_block = saved_continue;
1193 ++ctx->loop_count;
1194}
1195
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001196static bi_block *
1197emit_cf_list(bi_context *ctx, struct exec_list *list)
1198{
1199 bi_block *start_block = NULL;
1200
1201 foreach_list_typed(nir_cf_node, node, node, list) {
1202 switch (node->type) {
1203 case nir_cf_node_block: {
1204 bi_block *block = emit_block(ctx, nir_cf_node_as_block(node));
1205
1206 if (!start_block)
1207 start_block = block;
1208
1209 break;
1210 }
1211
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001212 case nir_cf_node_if:
1213 emit_if(ctx, nir_cf_node_as_if(node));
1214 break;
1215
1216 case nir_cf_node_loop:
1217 emit_loop(ctx, nir_cf_node_as_loop(node));
1218 break;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001219
1220 default:
1221 unreachable("Unknown control flow");
1222 }
1223 }
1224
1225 return start_block;
1226}
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001227
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001228static int
1229glsl_type_size(const struct glsl_type *type, bool bindless)
1230{
1231 return glsl_count_attribute_slots(type, false);
1232}
1233
1234static void
1235bi_optimize_nir(nir_shader *nir)
1236{
1237 bool progress;
1238 unsigned lower_flrp = 16 | 32 | 64;
1239
1240 NIR_PASS(progress, nir, nir_lower_regs_to_ssa);
1241 NIR_PASS(progress, nir, nir_lower_idiv, nir_lower_idiv_fast);
1242
1243 nir_lower_tex_options lower_tex_options = {
1244 .lower_txs_lod = true,
1245 .lower_txp = ~0,
1246 .lower_tex_without_implicit_lod = true,
1247 .lower_txd = true,
1248 };
1249
1250 NIR_PASS(progress, nir, nir_lower_tex, &lower_tex_options);
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -05001251 NIR_PASS(progress, nir, nir_lower_alu_to_scalar, NULL, NULL);
1252 NIR_PASS(progress, nir, nir_lower_load_const_to_scalar);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001253
1254 do {
1255 progress = false;
1256
1257 NIR_PASS(progress, nir, nir_lower_var_copies);
1258 NIR_PASS(progress, nir, nir_lower_vars_to_ssa);
1259
1260 NIR_PASS(progress, nir, nir_copy_prop);
1261 NIR_PASS(progress, nir, nir_opt_remove_phis);
1262 NIR_PASS(progress, nir, nir_opt_dce);
1263 NIR_PASS(progress, nir, nir_opt_dead_cf);
1264 NIR_PASS(progress, nir, nir_opt_cse);
1265 NIR_PASS(progress, nir, nir_opt_peephole_select, 64, false, true);
1266 NIR_PASS(progress, nir, nir_opt_algebraic);
1267 NIR_PASS(progress, nir, nir_opt_constant_folding);
1268
1269 if (lower_flrp != 0) {
1270 bool lower_flrp_progress = false;
1271 NIR_PASS(lower_flrp_progress,
1272 nir,
1273 nir_lower_flrp,
1274 lower_flrp,
Marek Olšákac55b1a2020-07-22 22:13:16 -04001275 false /* always_precise */);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001276 if (lower_flrp_progress) {
1277 NIR_PASS(progress, nir,
1278 nir_opt_constant_folding);
1279 progress = true;
1280 }
1281
1282 /* Nothing should rematerialize any flrps, so we only
1283 * need to do this lowering once.
1284 */
1285 lower_flrp = 0;
1286 }
1287
1288 NIR_PASS(progress, nir, nir_opt_undef);
1289 NIR_PASS(progress, nir, nir_opt_loop_unroll,
1290 nir_var_shader_in |
1291 nir_var_shader_out |
1292 nir_var_function_temp);
1293 } while (progress);
1294
1295 NIR_PASS(progress, nir, nir_opt_algebraic_late);
Alyssa Rosenzweig12299de2020-03-21 17:37:47 -04001296 NIR_PASS(progress, nir, nir_lower_bool_to_int32);
Alyssa Rosenzweig3a1baaf2020-03-10 08:20:59 -04001297 NIR_PASS(progress, nir, bifrost_nir_lower_algebraic_late);
Alyssa Rosenzweig51e537c2020-03-06 16:29:35 -05001298 NIR_PASS(progress, nir, nir_lower_alu_to_scalar, NULL, NULL);
1299 NIR_PASS(progress, nir, nir_lower_load_const_to_scalar);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001300
1301 /* Take us out of SSA */
1302 NIR_PASS(progress, nir, nir_lower_locals_to_regs);
Alyssa Rosenzweig330e9a62020-03-09 19:56:35 -04001303 NIR_PASS(progress, nir, nir_move_vec_src_uses_to_dest);
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -04001304 NIR_PASS(progress, nir, nir_convert_from_ssa, true);
Alyssa Rosenzweig50d3f4d2020-03-19 17:21:49 -04001305}
1306
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001307void
Alyssa Rosenzweige6f5ae82020-03-10 16:09:44 -04001308bifrost_compile_shader_nir(nir_shader *nir, panfrost_program *program, unsigned product_id)
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001309{
Tomeu Vizoso07b31f32020-04-30 09:29:10 +02001310 bifrost_debug = debug_get_option_bifrost_debug();
1311
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001312 bi_context *ctx = rzalloc(NULL, bi_context);
1313 ctx->nir = nir;
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001314 ctx->stage = nir->info.stage;
Alyssa Rosenzweig0b26cb12020-03-03 14:27:05 -05001315 ctx->quirks = bifrost_get_quirks(product_id);
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001316 list_inithead(&ctx->blocks);
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001317
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001318 /* Lower gl_Position pre-optimisation, but after lowering vars to ssa
1319 * (so we don't accidentally duplicate the epilogue since mesa/st has
1320 * messed with our I/O quite a bit already) */
1321
1322 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
1323
1324 if (ctx->stage == MESA_SHADER_VERTEX) {
1325 NIR_PASS_V(nir, nir_lower_viewport_transform);
1326 NIR_PASS_V(nir, nir_lower_point_size, 1.0, 1024.0);
1327 }
1328
1329 NIR_PASS_V(nir, nir_split_var_copies);
1330 NIR_PASS_V(nir, nir_lower_global_vars_to_local);
1331 NIR_PASS_V(nir, nir_lower_var_copies);
1332 NIR_PASS_V(nir, nir_lower_vars_to_ssa);
Jason Ekstrandb019b222020-06-10 17:54:25 -05001333 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in | nir_var_shader_out,
1334 glsl_type_size, 0);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001335 NIR_PASS_V(nir, nir_lower_ssbo);
Alyssa Rosenzweig9c7d30f2020-04-30 09:27:36 +02001336 NIR_PASS_V(nir, nir_lower_mediump_outputs);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001337
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001338 bi_optimize_nir(nir);
Tomeu Vizoso07b31f32020-04-30 09:29:10 +02001339
1340 if (bifrost_debug & BIFROST_DBG_SHADERS) {
1341 nir_print_shader(nir, stdout);
1342 }
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001343
Alyssa Rosenzweig680fb052020-08-18 08:31:42 -04001344 panfrost_nir_assign_sysvals(&ctx->sysvals, ctx, nir);
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -04001345 program->sysval_count = ctx->sysvals.sysval_count;
1346 memcpy(program->sysvals, ctx->sysvals.sysvals, sizeof(ctx->sysvals.sysvals[0]) * ctx->sysvals.sysval_count);
Alyssa Rosenzweig1a8f1a32020-04-23 19:26:01 -04001347 ctx->blend_types = program->blend_types;
Alyssa Rosenzweig218785c2020-03-10 16:20:18 -04001348
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001349 nir_foreach_function(func, nir) {
1350 if (!func->impl)
1351 continue;
1352
Alyssa Rosenzweigd86659c2020-03-06 09:43:43 -05001353 ctx->impl = func->impl;
Alyssa Rosenzweig83c45622020-03-05 10:25:19 -05001354 emit_cf_list(ctx, &func->impl->body);
1355 break; /* TODO: Multi-function shaders */
1356 }
1357
Alyssa Rosenzweigc6979922020-05-28 14:44:33 -04001358 unsigned block_source_count = 0;
1359
Alyssa Rosenzweig50d3f4d2020-03-19 17:21:49 -04001360 bi_foreach_block(ctx, _block) {
1361 bi_block *block = (bi_block *) _block;
Alyssa Rosenzweigc6979922020-05-28 14:44:33 -04001362
1363 /* Name blocks now that we're done emitting so the order is
1364 * consistent */
1365 block->base.name = block_source_count++;
1366
Alyssa Rosenzweige0a51d52020-03-22 17:31:23 -04001367 bi_lower_combine(ctx, block);
Alyssa Rosenzweig50d3f4d2020-03-19 17:21:49 -04001368 }
1369
Alyssa Rosenzweig58f91712020-03-11 15:10:32 -04001370 bool progress = false;
1371
1372 do {
1373 progress = false;
1374
1375 bi_foreach_block(ctx, _block) {
1376 bi_block *block = (bi_block *) _block;
1377 progress |= bi_opt_dead_code_eliminate(ctx, block);
1378 }
1379 } while(progress);
1380
Tomeu Vizoso07b31f32020-04-30 09:29:10 +02001381 if (bifrost_debug & BIFROST_DBG_SHADERS)
1382 bi_print_shader(ctx, stdout);
Alyssa Rosenzweigb329f8c2020-03-06 19:25:00 -05001383 bi_schedule(ctx);
Alyssa Rosenzweige8139ef2020-03-11 20:39:36 -04001384 bi_register_allocate(ctx);
Tomeu Vizoso07b31f32020-04-30 09:29:10 +02001385 if (bifrost_debug & BIFROST_DBG_SHADERS)
1386 bi_print_shader(ctx, stdout);
Alyssa Rosenzweig9269c852020-03-12 14:16:22 -04001387 bi_pack(ctx, &program->compiled);
Tomeu Vizoso07b31f32020-04-30 09:29:10 +02001388
1389 if (bifrost_debug & BIFROST_DBG_SHADERS)
1390 disassemble_bifrost(stdout, program->compiled.data, program->compiled.size, true);
Alyssa Rosenzweig0d291842020-03-05 10:11:39 -05001391
Alyssa Rosenzweigeceaea42020-03-02 19:47:11 -05001392 ralloc_free(ctx);
1393}