197196383b098e83865bc81bbb119a30fc48755f
[mesa.git] / src / gallium / drivers / freedreno / ir3 / ir3_compiler_nir.c
1 /*
2 * Copyright (C) 2015 Rob Clark <robclark@freedesktop.org>
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:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #include <stdarg.h>
28
29 #include "pipe/p_state.h"
30 #include "util/u_string.h"
31 #include "util/u_memory.h"
32 #include "util/u_inlines.h"
33
34 #include "freedreno_util.h"
35
36 #include "ir3_compiler.h"
37 #include "ir3_shader.h"
38 #include "ir3_nir.h"
39
40 #include "instr-a3xx.h"
41 #include "ir3.h"
42
43
44 struct ir3_context {
45 struct ir3_compiler *compiler;
46
47 struct nir_shader *s;
48
49 struct nir_instr *cur_instr; /* current instruction, just for debug */
50
51 struct ir3 *ir;
52 struct ir3_shader_variant *so;
53
54 struct ir3_block *block; /* the current block */
55 struct ir3_block *in_block; /* block created for shader inputs */
56
57 nir_function_impl *impl;
58
59 /* For fragment shaders, varyings are not actual shader inputs,
60 * instead the hw passes a varying-coord which is used with
61 * bary.f.
62 *
63 * But NIR doesn't know that, it still declares varyings as
64 * inputs. So we do all the input tracking normally and fix
65 * things up after compile_instructions()
66 *
67 * NOTE that frag_vcoord is the hardware position (possibly it
68 * is actually an index or tag or some such.. it is *not*
69 * values that can be directly used for gl_FragCoord..)
70 */
71 struct ir3_instruction *frag_vcoord;
72
73 /* for fragment shaders, for gl_FrontFacing and gl_FragCoord: */
74 struct ir3_instruction *frag_face, *frag_coord;
75
76 /* For vertex shaders, keep track of the system values sources */
77 struct ir3_instruction *vertex_id, *basevertex, *instance_id;
78
79 /* For fragment shaders: */
80 struct ir3_instruction *samp_id, *samp_mask_in;
81
82 /* Compute shader inputs: */
83 struct ir3_instruction *local_invocation_id, *work_group_id;
84
85 /* mapping from nir_register to defining instruction: */
86 struct hash_table *def_ht;
87
88 unsigned num_arrays;
89
90 /* a common pattern for indirect addressing is to request the
91 * same address register multiple times. To avoid generating
92 * duplicate instruction sequences (which our backend does not
93 * try to clean up, since that should be done as the NIR stage)
94 * we cache the address value generated for a given src value:
95 *
96 * Note that we have to cache these per alignment, since same
97 * src used for an array of vec1 cannot be also used for an
98 * array of vec4.
99 */
100 struct hash_table *addr_ht[4];
101
102 /* last dst array, for indirect we need to insert a var-store.
103 */
104 struct ir3_instruction **last_dst;
105 unsigned last_dst_n;
106
107 /* maps nir_block to ir3_block, mostly for the purposes of
108 * figuring out the blocks successors
109 */
110 struct hash_table *block_ht;
111
112 /* on a4xx, bitmask of samplers which need astc+srgb workaround: */
113 unsigned astc_srgb;
114
115 unsigned samples; /* bitmask of x,y sample shifts */
116
117 unsigned max_texture_index;
118
119 /* set if we encounter something we can't handle yet, so we
120 * can bail cleanly and fallback to TGSI compiler f/e
121 */
122 bool error;
123 };
124
125 /* gpu pointer size in units of 32bit registers/slots */
126 static unsigned pointer_size(struct ir3_context *ctx)
127 {
128 return (ctx->compiler->gpu_id >= 500) ? 2 : 1;
129 }
130
131 static struct ir3_instruction * create_immed(struct ir3_block *block, uint32_t val);
132 static struct ir3_block * get_block(struct ir3_context *ctx, const nir_block *nblock);
133
134
135 static struct ir3_context *
136 compile_init(struct ir3_compiler *compiler,
137 struct ir3_shader_variant *so)
138 {
139 struct ir3_context *ctx = rzalloc(NULL, struct ir3_context);
140
141 if (compiler->gpu_id >= 400) {
142 if (so->type == SHADER_VERTEX) {
143 ctx->astc_srgb = so->key.vastc_srgb;
144 } else if (so->type == SHADER_FRAGMENT) {
145 ctx->astc_srgb = so->key.fastc_srgb;
146 }
147
148 } else {
149 if (so->type == SHADER_VERTEX) {
150 ctx->samples = so->key.vsamples;
151 } else if (so->type == SHADER_FRAGMENT) {
152 ctx->samples = so->key.fsamples;
153 }
154 }
155
156 ctx->compiler = compiler;
157 ctx->so = so;
158 ctx->def_ht = _mesa_hash_table_create(ctx,
159 _mesa_hash_pointer, _mesa_key_pointer_equal);
160 ctx->block_ht = _mesa_hash_table_create(ctx,
161 _mesa_hash_pointer, _mesa_key_pointer_equal);
162
163 /* TODO: maybe generate some sort of bitmask of what key
164 * lowers vs what shader has (ie. no need to lower
165 * texture clamp lowering if no texture sample instrs)..
166 * although should be done further up the stack to avoid
167 * creating duplicate variants..
168 */
169
170 if (ir3_key_lowers_nir(&so->key)) {
171 nir_shader *s = nir_shader_clone(ctx, so->shader->nir);
172 ctx->s = ir3_optimize_nir(so->shader, s, &so->key);
173 } else {
174 /* fast-path for shader key that lowers nothing in NIR: */
175 ctx->s = so->shader->nir;
176 }
177
178 /* this needs to be the last pass run, so do this here instead of
179 * in ir3_optimize_nir():
180 */
181 NIR_PASS_V(ctx->s, nir_lower_locals_to_regs);
182 NIR_PASS_V(ctx->s, nir_convert_from_ssa, true);
183
184 if (fd_mesa_debug & FD_DBG_DISASM) {
185 DBG("dump nir%dv%d: type=%d, k={cts=%u,hp=%u}",
186 so->shader->id, so->id, so->type,
187 so->key.color_two_side, so->key.half_precision);
188 nir_print_shader(ctx->s, stdout);
189 }
190
191 if (shader_debug_enabled(so->type)) {
192 fprintf(stderr, "NIR (final form) for %s shader:\n",
193 shader_stage_name(so->type));
194 nir_print_shader(ctx->s, stderr);
195 }
196
197 ir3_nir_scan_driver_consts(ctx->s, &so->const_layout);
198
199 so->num_uniforms = ctx->s->num_uniforms;
200 so->num_ubos = ctx->s->info.num_ubos;
201
202 /* Layout of constant registers, each section aligned to vec4. Note
203 * that pointer size (ubo, etc) changes depending on generation.
204 *
205 * user consts
206 * UBO addresses
207 * SSBO sizes
208 * if (vertex shader) {
209 * driver params (IR3_DP_*)
210 * if (stream_output.num_outputs > 0)
211 * stream-out addresses
212 * }
213 * immediates
214 *
215 * Immediates go last mostly because they are inserted in the CP pass
216 * after the nir -> ir3 frontend.
217 */
218 unsigned constoff = align(ctx->s->num_uniforms, 4);
219 unsigned ptrsz = pointer_size(ctx);
220
221 memset(&so->constbase, ~0, sizeof(so->constbase));
222
223 if (so->num_ubos > 0) {
224 so->constbase.ubo = constoff;
225 constoff += align(ctx->s->info.num_ubos * ptrsz, 4) / 4;
226 }
227
228 if (so->const_layout.ssbo_size.count > 0) {
229 unsigned cnt = so->const_layout.ssbo_size.count;
230 so->constbase.ssbo_sizes = constoff;
231 constoff += align(cnt, 4) / 4;
232 }
233
234 if (so->const_layout.image_dims.count > 0) {
235 unsigned cnt = so->const_layout.image_dims.count;
236 so->constbase.image_dims = constoff;
237 constoff += align(cnt, 4) / 4;
238 }
239
240 unsigned num_driver_params = 0;
241 if (so->type == SHADER_VERTEX) {
242 num_driver_params = IR3_DP_VS_COUNT;
243 } else if (so->type == SHADER_COMPUTE) {
244 num_driver_params = IR3_DP_CS_COUNT;
245 }
246
247 so->constbase.driver_param = constoff;
248 constoff += align(num_driver_params, 4) / 4;
249
250 if ((so->type == SHADER_VERTEX) &&
251 (compiler->gpu_id < 500) &&
252 so->shader->stream_output.num_outputs > 0) {
253 so->constbase.tfbo = constoff;
254 constoff += align(PIPE_MAX_SO_BUFFERS * ptrsz, 4) / 4;
255 }
256
257 so->constbase.immediate = constoff;
258
259 return ctx;
260 }
261
262 static void
263 compile_error(struct ir3_context *ctx, const char *format, ...)
264 {
265 struct hash_table *errors = NULL;
266 va_list ap;
267 va_start(ap, format);
268 if (ctx->cur_instr) {
269 errors = _mesa_hash_table_create(NULL,
270 _mesa_hash_pointer,
271 _mesa_key_pointer_equal);
272 char *msg = ralloc_vasprintf(errors, format, ap);
273 _mesa_hash_table_insert(errors, ctx->cur_instr, msg);
274 } else {
275 _debug_vprintf(format, ap);
276 }
277 va_end(ap);
278 nir_print_shader_annotated(ctx->s, stdout, errors);
279 ralloc_free(errors);
280 ctx->error = true;
281 debug_assert(0);
282 }
283
284 #define compile_assert(ctx, cond) do { \
285 if (!(cond)) compile_error((ctx), "failed assert: "#cond"\n"); \
286 } while (0)
287
288 static void
289 compile_free(struct ir3_context *ctx)
290 {
291 ralloc_free(ctx);
292 }
293
294 static void
295 declare_array(struct ir3_context *ctx, nir_register *reg)
296 {
297 struct ir3_array *arr = rzalloc(ctx, struct ir3_array);
298 arr->id = ++ctx->num_arrays;
299 /* NOTE: sometimes we get non array regs, for example for arrays of
300 * length 1. See fs-const-array-of-struct-of-array.shader_test. So
301 * treat a non-array as if it was an array of length 1.
302 *
303 * It would be nice if there was a nir pass to convert arrays of
304 * length 1 to ssa.
305 */
306 arr->length = reg->num_components * MAX2(1, reg->num_array_elems);
307 compile_assert(ctx, arr->length > 0);
308 arr->r = reg;
309 list_addtail(&arr->node, &ctx->ir->array_list);
310 }
311
312 static struct ir3_array *
313 get_array(struct ir3_context *ctx, nir_register *reg)
314 {
315 list_for_each_entry (struct ir3_array, arr, &ctx->ir->array_list, node) {
316 if (arr->r == reg)
317 return arr;
318 }
319 compile_error(ctx, "bogus reg: %s\n", reg->name);
320 return NULL;
321 }
322
323 /* relative (indirect) if address!=NULL */
324 static struct ir3_instruction *
325 create_array_load(struct ir3_context *ctx, struct ir3_array *arr, int n,
326 struct ir3_instruction *address)
327 {
328 struct ir3_block *block = ctx->block;
329 struct ir3_instruction *mov;
330 struct ir3_register *src;
331
332 mov = ir3_instr_create(block, OPC_MOV);
333 mov->cat1.src_type = TYPE_U32;
334 mov->cat1.dst_type = TYPE_U32;
335 mov->barrier_class = IR3_BARRIER_ARRAY_R;
336 mov->barrier_conflict = IR3_BARRIER_ARRAY_W;
337 ir3_reg_create(mov, 0, 0);
338 src = ir3_reg_create(mov, 0, IR3_REG_ARRAY |
339 COND(address, IR3_REG_RELATIV));
340 src->instr = arr->last_write;
341 src->size = arr->length;
342 src->array.id = arr->id;
343 src->array.offset = n;
344
345 if (address)
346 ir3_instr_set_address(mov, address);
347
348 return mov;
349 }
350
351 /* relative (indirect) if address!=NULL */
352 static void
353 create_array_store(struct ir3_context *ctx, struct ir3_array *arr, int n,
354 struct ir3_instruction *src, struct ir3_instruction *address)
355 {
356 struct ir3_block *block = ctx->block;
357 struct ir3_instruction *mov;
358 struct ir3_register *dst;
359
360 /* if not relative store, don't create an extra mov, since that
361 * ends up being difficult for cp to remove.
362 */
363 if (!address) {
364 dst = src->regs[0];
365
366 src->barrier_class |= IR3_BARRIER_ARRAY_W;
367 src->barrier_conflict |= IR3_BARRIER_ARRAY_R | IR3_BARRIER_ARRAY_W;
368
369 dst->flags |= IR3_REG_ARRAY;
370 dst->instr = arr->last_write;
371 dst->size = arr->length;
372 dst->array.id = arr->id;
373 dst->array.offset = n;
374
375 arr->last_write = src;
376
377 array_insert(block, block->keeps, src);
378
379 return;
380 }
381
382 mov = ir3_instr_create(block, OPC_MOV);
383 mov->cat1.src_type = TYPE_U32;
384 mov->cat1.dst_type = TYPE_U32;
385 mov->barrier_class = IR3_BARRIER_ARRAY_W;
386 mov->barrier_conflict = IR3_BARRIER_ARRAY_R | IR3_BARRIER_ARRAY_W;
387 dst = ir3_reg_create(mov, 0, IR3_REG_ARRAY |
388 COND(address, IR3_REG_RELATIV));
389 dst->instr = arr->last_write;
390 dst->size = arr->length;
391 dst->array.id = arr->id;
392 dst->array.offset = n;
393 ir3_reg_create(mov, 0, IR3_REG_SSA)->instr = src;
394
395 if (address)
396 ir3_instr_set_address(mov, address);
397
398 arr->last_write = mov;
399
400 /* the array store may only matter to something in an earlier
401 * block (ie. loops), but since arrays are not in SSA, depth
402 * pass won't know this.. so keep all array stores:
403 */
404 array_insert(block, block->keeps, mov);
405 }
406
407 static inline type_t utype_for_size(unsigned bit_size)
408 {
409 switch (bit_size) {
410 case 32: return TYPE_U32;
411 case 16: return TYPE_U16;
412 case 8: return TYPE_U8;
413 default: unreachable("bad bitsize"); return ~0;
414 }
415 }
416
417 static inline type_t utype_src(nir_src src)
418 { return utype_for_size(nir_src_bit_size(src)); }
419
420 static inline type_t utype_dst(nir_dest dst)
421 { return utype_for_size(nir_dest_bit_size(dst)); }
422
423 /* allocate a n element value array (to be populated by caller) and
424 * insert in def_ht
425 */
426 static struct ir3_instruction **
427 get_dst_ssa(struct ir3_context *ctx, nir_ssa_def *dst, unsigned n)
428 {
429 struct ir3_instruction **value =
430 ralloc_array(ctx->def_ht, struct ir3_instruction *, n);
431 _mesa_hash_table_insert(ctx->def_ht, dst, value);
432 return value;
433 }
434
435 static struct ir3_instruction **
436 get_dst(struct ir3_context *ctx, nir_dest *dst, unsigned n)
437 {
438 struct ir3_instruction **value;
439
440 if (dst->is_ssa) {
441 value = get_dst_ssa(ctx, &dst->ssa, n);
442 } else {
443 value = ralloc_array(ctx, struct ir3_instruction *, n);
444 }
445
446 /* NOTE: in non-ssa case, we don't really need to store last_dst
447 * but this helps us catch cases where put_dst() call is forgotten
448 */
449 compile_assert(ctx, !ctx->last_dst);
450 ctx->last_dst = value;
451 ctx->last_dst_n = n;
452
453 return value;
454 }
455
456 static struct ir3_instruction * get_addr(struct ir3_context *ctx, struct ir3_instruction *src, int align);
457
458 static struct ir3_instruction * const *
459 get_src(struct ir3_context *ctx, nir_src *src)
460 {
461 if (src->is_ssa) {
462 struct hash_entry *entry;
463 entry = _mesa_hash_table_search(ctx->def_ht, src->ssa);
464 compile_assert(ctx, entry);
465 return entry->data;
466 } else {
467 nir_register *reg = src->reg.reg;
468 struct ir3_array *arr = get_array(ctx, reg);
469 unsigned num_components = arr->r->num_components;
470 struct ir3_instruction *addr = NULL;
471 struct ir3_instruction **value =
472 ralloc_array(ctx, struct ir3_instruction *, num_components);
473
474 if (src->reg.indirect)
475 addr = get_addr(ctx, get_src(ctx, src->reg.indirect)[0],
476 reg->num_components);
477
478 for (unsigned i = 0; i < num_components; i++) {
479 unsigned n = src->reg.base_offset * reg->num_components + i;
480 compile_assert(ctx, n < arr->length);
481 value[i] = create_array_load(ctx, arr, n, addr);
482 }
483
484 return value;
485 }
486 }
487
488 static void
489 put_dst(struct ir3_context *ctx, nir_dest *dst)
490 {
491 unsigned bit_size = nir_dest_bit_size(*dst);
492
493 if (bit_size < 32) {
494 for (unsigned i = 0; i < ctx->last_dst_n; i++) {
495 struct ir3_instruction *dst = ctx->last_dst[i];
496 dst->regs[0]->flags |= IR3_REG_HALF;
497 if (ctx->last_dst[i]->opc == OPC_META_FO)
498 dst->regs[1]->instr->regs[0]->flags |= IR3_REG_HALF;
499 }
500 }
501
502 if (!dst->is_ssa) {
503 nir_register *reg = dst->reg.reg;
504 struct ir3_array *arr = get_array(ctx, reg);
505 unsigned num_components = ctx->last_dst_n;
506 struct ir3_instruction *addr = NULL;
507
508 if (dst->reg.indirect)
509 addr = get_addr(ctx, get_src(ctx, dst->reg.indirect)[0],
510 reg->num_components);
511
512 for (unsigned i = 0; i < num_components; i++) {
513 unsigned n = dst->reg.base_offset * reg->num_components + i;
514 compile_assert(ctx, n < arr->length);
515 if (!ctx->last_dst[i])
516 continue;
517 create_array_store(ctx, arr, n, ctx->last_dst[i], addr);
518 }
519
520 ralloc_free(ctx->last_dst);
521 }
522 ctx->last_dst = NULL;
523 ctx->last_dst_n = 0;
524 }
525
526 static struct ir3_instruction *
527 create_immed_typed(struct ir3_block *block, uint32_t val, type_t type)
528 {
529 struct ir3_instruction *mov;
530 unsigned flags = (type_size(type) < 32) ? IR3_REG_HALF : 0;
531
532 mov = ir3_instr_create(block, OPC_MOV);
533 mov->cat1.src_type = type;
534 mov->cat1.dst_type = type;
535 ir3_reg_create(mov, 0, flags);
536 ir3_reg_create(mov, 0, IR3_REG_IMMED)->uim_val = val;
537
538 return mov;
539 }
540
541 static struct ir3_instruction *
542 create_immed(struct ir3_block *block, uint32_t val)
543 {
544 return create_immed_typed(block, val, TYPE_U32);
545 }
546
547 static struct ir3_instruction *
548 create_addr(struct ir3_block *block, struct ir3_instruction *src, int align)
549 {
550 struct ir3_instruction *instr, *immed;
551
552 /* TODO in at least some cases, the backend could probably be
553 * made clever enough to propagate IR3_REG_HALF..
554 */
555 instr = ir3_COV(block, src, TYPE_U32, TYPE_S16);
556 instr->regs[0]->flags |= IR3_REG_HALF;
557
558 switch(align){
559 case 1:
560 /* src *= 1: */
561 break;
562 case 2:
563 /* src *= 2 => src <<= 1: */
564 immed = create_immed(block, 1);
565 immed->regs[0]->flags |= IR3_REG_HALF;
566
567 instr = ir3_SHL_B(block, instr, 0, immed, 0);
568 instr->regs[0]->flags |= IR3_REG_HALF;
569 instr->regs[1]->flags |= IR3_REG_HALF;
570 break;
571 case 3:
572 /* src *= 3: */
573 immed = create_immed(block, 3);
574 immed->regs[0]->flags |= IR3_REG_HALF;
575
576 instr = ir3_MULL_U(block, instr, 0, immed, 0);
577 instr->regs[0]->flags |= IR3_REG_HALF;
578 instr->regs[1]->flags |= IR3_REG_HALF;
579 break;
580 case 4:
581 /* src *= 4 => src <<= 2: */
582 immed = create_immed(block, 2);
583 immed->regs[0]->flags |= IR3_REG_HALF;
584
585 instr = ir3_SHL_B(block, instr, 0, immed, 0);
586 instr->regs[0]->flags |= IR3_REG_HALF;
587 instr->regs[1]->flags |= IR3_REG_HALF;
588 break;
589 default:
590 unreachable("bad align");
591 return NULL;
592 }
593
594 instr = ir3_MOV(block, instr, TYPE_S16);
595 instr->regs[0]->num = regid(REG_A0, 0);
596 instr->regs[0]->flags |= IR3_REG_HALF;
597 instr->regs[1]->flags |= IR3_REG_HALF;
598
599 return instr;
600 }
601
602 /* caches addr values to avoid generating multiple cov/shl/mova
603 * sequences for each use of a given NIR level src as address
604 */
605 static struct ir3_instruction *
606 get_addr(struct ir3_context *ctx, struct ir3_instruction *src, int align)
607 {
608 struct ir3_instruction *addr;
609 unsigned idx = align - 1;
610
611 compile_assert(ctx, idx < ARRAY_SIZE(ctx->addr_ht));
612
613 if (!ctx->addr_ht[idx]) {
614 ctx->addr_ht[idx] = _mesa_hash_table_create(ctx,
615 _mesa_hash_pointer, _mesa_key_pointer_equal);
616 } else {
617 struct hash_entry *entry;
618 entry = _mesa_hash_table_search(ctx->addr_ht[idx], src);
619 if (entry)
620 return entry->data;
621 }
622
623 addr = create_addr(ctx->block, src, align);
624 _mesa_hash_table_insert(ctx->addr_ht[idx], src, addr);
625
626 return addr;
627 }
628
629 static struct ir3_instruction *
630 get_predicate(struct ir3_context *ctx, struct ir3_instruction *src)
631 {
632 struct ir3_block *b = ctx->block;
633 struct ir3_instruction *cond;
634
635 /* NOTE: only cmps.*.* can write p0.x: */
636 cond = ir3_CMPS_S(b, src, 0, create_immed(b, 0), 0);
637 cond->cat2.condition = IR3_COND_NE;
638
639 /* condition always goes in predicate register: */
640 cond->regs[0]->num = regid(REG_P0, 0);
641
642 return cond;
643 }
644
645 static struct ir3_instruction *
646 create_uniform(struct ir3_context *ctx, unsigned n)
647 {
648 struct ir3_instruction *mov;
649
650 mov = ir3_instr_create(ctx->block, OPC_MOV);
651 /* TODO get types right? */
652 mov->cat1.src_type = TYPE_F32;
653 mov->cat1.dst_type = TYPE_F32;
654 ir3_reg_create(mov, 0, 0);
655 ir3_reg_create(mov, n, IR3_REG_CONST);
656
657 return mov;
658 }
659
660 static struct ir3_instruction *
661 create_uniform_indirect(struct ir3_context *ctx, int n,
662 struct ir3_instruction *address)
663 {
664 struct ir3_instruction *mov;
665
666 mov = ir3_instr_create(ctx->block, OPC_MOV);
667 mov->cat1.src_type = TYPE_U32;
668 mov->cat1.dst_type = TYPE_U32;
669 ir3_reg_create(mov, 0, 0);
670 ir3_reg_create(mov, 0, IR3_REG_CONST | IR3_REG_RELATIV)->array.offset = n;
671
672 ir3_instr_set_address(mov, address);
673
674 return mov;
675 }
676
677 static struct ir3_instruction *
678 create_collect(struct ir3_context *ctx, struct ir3_instruction *const *arr,
679 unsigned arrsz)
680 {
681 struct ir3_block *block = ctx->block;
682 struct ir3_instruction *collect;
683
684 if (arrsz == 0)
685 return NULL;
686
687 unsigned flags = arr[0]->regs[0]->flags & IR3_REG_HALF;
688
689 collect = ir3_instr_create2(block, OPC_META_FI, 1 + arrsz);
690 ir3_reg_create(collect, 0, flags); /* dst */
691 for (unsigned i = 0; i < arrsz; i++) {
692 struct ir3_instruction *elem = arr[i];
693
694 /* Since arrays are pre-colored in RA, we can't assume that
695 * things will end up in the right place. (Ie. if a collect
696 * joins elements from two different arrays.) So insert an
697 * extra mov.
698 *
699 * We could possibly skip this if all the collected elements
700 * are contiguous elements in a single array.. not sure how
701 * likely that is to happen.
702 *
703 * Fixes a problem with glamor shaders, that in effect do
704 * something like:
705 *
706 * if (foo)
707 * texcoord = ..
708 * else
709 * texcoord = ..
710 * color = texture2D(tex, texcoord);
711 *
712 * In this case, texcoord will end up as nir registers (which
713 * translate to ir3 array's of length 1. And we can't assume
714 * the two (or more) arrays will get allocated in consecutive
715 * scalar registers.
716 *
717 */
718 if (elem->regs[0]->flags & IR3_REG_ARRAY) {
719 type_t type = (flags & IR3_REG_HALF) ? TYPE_U16 : TYPE_U32;
720 elem = ir3_MOV(block, elem, type);
721 }
722
723 compile_assert(ctx, (elem->regs[0]->flags & IR3_REG_HALF) == flags);
724 ir3_reg_create(collect, 0, IR3_REG_SSA | flags)->instr = elem;
725 }
726
727 return collect;
728 }
729
730 static struct ir3_instruction *
731 create_indirect_load(struct ir3_context *ctx, unsigned arrsz, int n,
732 struct ir3_instruction *address, struct ir3_instruction *collect)
733 {
734 struct ir3_block *block = ctx->block;
735 struct ir3_instruction *mov;
736 struct ir3_register *src;
737
738 mov = ir3_instr_create(block, OPC_MOV);
739 mov->cat1.src_type = TYPE_U32;
740 mov->cat1.dst_type = TYPE_U32;
741 ir3_reg_create(mov, 0, 0);
742 src = ir3_reg_create(mov, 0, IR3_REG_SSA | IR3_REG_RELATIV);
743 src->instr = collect;
744 src->size = arrsz;
745 src->array.offset = n;
746
747 ir3_instr_set_address(mov, address);
748
749 return mov;
750 }
751
752 static struct ir3_instruction *
753 create_input_compmask(struct ir3_context *ctx, unsigned n, unsigned compmask)
754 {
755 struct ir3_instruction *in;
756
757 in = ir3_instr_create(ctx->in_block, OPC_META_INPUT);
758 in->inout.block = ctx->in_block;
759 ir3_reg_create(in, n, 0);
760
761 in->regs[0]->wrmask = compmask;
762
763 return in;
764 }
765
766 static struct ir3_instruction *
767 create_input(struct ir3_context *ctx, unsigned n)
768 {
769 return create_input_compmask(ctx, n, 0x1);
770 }
771
772 static struct ir3_instruction *
773 create_frag_input(struct ir3_context *ctx, bool use_ldlv)
774 {
775 struct ir3_block *block = ctx->block;
776 struct ir3_instruction *instr;
777 /* actual inloc is assigned and fixed up later: */
778 struct ir3_instruction *inloc = create_immed(block, 0);
779
780 if (use_ldlv) {
781 instr = ir3_LDLV(block, inloc, 0, create_immed(block, 1), 0);
782 instr->cat6.type = TYPE_U32;
783 instr->cat6.iim_val = 1;
784 } else {
785 instr = ir3_BARY_F(block, inloc, 0, ctx->frag_vcoord, 0);
786 instr->regs[2]->wrmask = 0x3;
787 }
788
789 return instr;
790 }
791
792 static struct ir3_instruction *
793 create_driver_param(struct ir3_context *ctx, enum ir3_driver_param dp)
794 {
795 /* first four vec4 sysval's reserved for UBOs: */
796 /* NOTE: dp is in scalar, but there can be >4 dp components: */
797 unsigned n = ctx->so->constbase.driver_param;
798 unsigned r = regid(n + dp / 4, dp % 4);
799 return create_uniform(ctx, r);
800 }
801
802 /* helper for instructions that produce multiple consecutive scalar
803 * outputs which need to have a split/fanout meta instruction inserted
804 */
805 static void
806 split_dest(struct ir3_block *block, struct ir3_instruction **dst,
807 struct ir3_instruction *src, unsigned base, unsigned n)
808 {
809 struct ir3_instruction *prev = NULL;
810
811 if ((n == 1) && (src->regs[0]->wrmask == 0x1)) {
812 dst[0] = src;
813 return;
814 }
815
816 for (int i = 0, j = 0; i < n; i++) {
817 struct ir3_instruction *split = ir3_instr_create(block, OPC_META_FO);
818 ir3_reg_create(split, 0, IR3_REG_SSA);
819 ir3_reg_create(split, 0, IR3_REG_SSA)->instr = src;
820 split->fo.off = i + base;
821
822 if (prev) {
823 split->cp.left = prev;
824 split->cp.left_cnt++;
825 prev->cp.right = split;
826 prev->cp.right_cnt++;
827 }
828 prev = split;
829
830 if (src->regs[0]->wrmask & (1 << (i + base)))
831 dst[j++] = split;
832 }
833 }
834
835 /*
836 * Adreno uses uint rather than having dedicated bool type,
837 * which (potentially) requires some conversion, in particular
838 * when using output of an bool instr to int input, or visa
839 * versa.
840 *
841 * | Adreno | NIR |
842 * -------+---------+-------+-
843 * true | 1 | ~0 |
844 * false | 0 | 0 |
845 *
846 * To convert from an adreno bool (uint) to nir, use:
847 *
848 * absneg.s dst, (neg)src
849 *
850 * To convert back in the other direction:
851 *
852 * absneg.s dst, (abs)arc
853 *
854 * The CP step can clean up the absneg.s that cancel each other
855 * out, and with a slight bit of extra cleverness (to recognize
856 * the instructions which produce either a 0 or 1) can eliminate
857 * the absneg.s's completely when an instruction that wants
858 * 0/1 consumes the result. For example, when a nir 'bcsel'
859 * consumes the result of 'feq'. So we should be able to get by
860 * without a boolean resolve step, and without incuring any
861 * extra penalty in instruction count.
862 */
863
864 /* NIR bool -> native (adreno): */
865 static struct ir3_instruction *
866 ir3_b2n(struct ir3_block *block, struct ir3_instruction *instr)
867 {
868 return ir3_ABSNEG_S(block, instr, IR3_REG_SABS);
869 }
870
871 /* native (adreno) -> NIR bool: */
872 static struct ir3_instruction *
873 ir3_n2b(struct ir3_block *block, struct ir3_instruction *instr)
874 {
875 return ir3_ABSNEG_S(block, instr, IR3_REG_SNEG);
876 }
877
878 /*
879 * alu/sfu instructions:
880 */
881
882 static struct ir3_instruction *
883 create_cov(struct ir3_context *ctx, struct ir3_instruction *src,
884 unsigned src_bitsize, nir_op op)
885 {
886 type_t src_type, dst_type;
887
888 switch (op) {
889 case nir_op_f2f32:
890 case nir_op_f2f16_rtne:
891 case nir_op_f2f16_rtz:
892 case nir_op_f2f16:
893 case nir_op_f2i32:
894 case nir_op_f2i16:
895 case nir_op_f2i8:
896 case nir_op_f2u32:
897 case nir_op_f2u16:
898 case nir_op_f2u8:
899 switch (src_bitsize) {
900 case 32:
901 src_type = TYPE_F32;
902 break;
903 case 16:
904 src_type = TYPE_F16;
905 break;
906 default:
907 compile_error(ctx, "invalid src bit size: %u", src_bitsize);
908 }
909 break;
910
911 case nir_op_i2f32:
912 case nir_op_i2f16:
913 case nir_op_i2i32:
914 case nir_op_i2i16:
915 case nir_op_i2i8:
916 switch (src_bitsize) {
917 case 32:
918 src_type = TYPE_S32;
919 break;
920 case 16:
921 src_type = TYPE_S16;
922 break;
923 case 8:
924 src_type = TYPE_S8;
925 break;
926 default:
927 compile_error(ctx, "invalid src bit size: %u", src_bitsize);
928 }
929 break;
930
931 case nir_op_u2f32:
932 case nir_op_u2f16:
933 case nir_op_u2u32:
934 case nir_op_u2u16:
935 case nir_op_u2u8:
936 switch (src_bitsize) {
937 case 32:
938 src_type = TYPE_U32;
939 break;
940 case 16:
941 src_type = TYPE_U16;
942 break;
943 case 8:
944 src_type = TYPE_U8;
945 break;
946 default:
947 compile_error(ctx, "invalid src bit size: %u", src_bitsize);
948 }
949 break;
950
951 default:
952 compile_error(ctx, "invalid conversion op: %u", op);
953 }
954
955 switch (op) {
956 case nir_op_f2f32:
957 case nir_op_i2f32:
958 case nir_op_u2f32:
959 dst_type = TYPE_F32;
960 break;
961
962 case nir_op_f2f16_rtne:
963 case nir_op_f2f16_rtz:
964 case nir_op_f2f16:
965 /* TODO how to handle rounding mode? */
966 case nir_op_i2f16:
967 case nir_op_u2f16:
968 dst_type = TYPE_F16;
969 break;
970
971 case nir_op_f2i32:
972 case nir_op_i2i32:
973 dst_type = TYPE_S32;
974 break;
975
976 case nir_op_f2i16:
977 case nir_op_i2i16:
978 dst_type = TYPE_S16;
979 break;
980
981 case nir_op_f2i8:
982 case nir_op_i2i8:
983 dst_type = TYPE_S8;
984 break;
985
986 case nir_op_f2u32:
987 case nir_op_u2u32:
988 dst_type = TYPE_U32;
989 break;
990
991 case nir_op_f2u16:
992 case nir_op_u2u16:
993 dst_type = TYPE_U16;
994 break;
995
996 case nir_op_f2u8:
997 case nir_op_u2u8:
998 dst_type = TYPE_U8;
999 break;
1000
1001 default:
1002 compile_error(ctx, "invalid conversion op: %u", op);
1003 }
1004
1005 return ir3_COV(ctx->block, src, src_type, dst_type);
1006 }
1007
1008 static void
1009 emit_alu(struct ir3_context *ctx, nir_alu_instr *alu)
1010 {
1011 const nir_op_info *info = &nir_op_infos[alu->op];
1012 struct ir3_instruction **dst, *src[info->num_inputs];
1013 unsigned bs[info->num_inputs]; /* bit size */
1014 struct ir3_block *b = ctx->block;
1015 unsigned dst_sz, wrmask;
1016
1017 if (alu->dest.dest.is_ssa) {
1018 dst_sz = alu->dest.dest.ssa.num_components;
1019 wrmask = (1 << dst_sz) - 1;
1020 } else {
1021 dst_sz = alu->dest.dest.reg.reg->num_components;
1022 wrmask = alu->dest.write_mask;
1023 }
1024
1025 dst = get_dst(ctx, &alu->dest.dest, dst_sz);
1026
1027 /* Vectors are special in that they have non-scalarized writemasks,
1028 * and just take the first swizzle channel for each argument in
1029 * order into each writemask channel.
1030 */
1031 if ((alu->op == nir_op_vec2) ||
1032 (alu->op == nir_op_vec3) ||
1033 (alu->op == nir_op_vec4)) {
1034
1035 for (int i = 0; i < info->num_inputs; i++) {
1036 nir_alu_src *asrc = &alu->src[i];
1037
1038 compile_assert(ctx, !asrc->abs);
1039 compile_assert(ctx, !asrc->negate);
1040
1041 src[i] = get_src(ctx, &asrc->src)[asrc->swizzle[0]];
1042 if (!src[i])
1043 src[i] = create_immed(ctx->block, 0);
1044 dst[i] = ir3_MOV(b, src[i], TYPE_U32);
1045 }
1046
1047 put_dst(ctx, &alu->dest.dest);
1048 return;
1049 }
1050
1051 /* We also get mov's with more than one component for mov's so
1052 * handle those specially:
1053 */
1054 if ((alu->op == nir_op_imov) || (alu->op == nir_op_fmov)) {
1055 type_t type = (alu->op == nir_op_imov) ? TYPE_U32 : TYPE_F32;
1056 nir_alu_src *asrc = &alu->src[0];
1057 struct ir3_instruction *const *src0 = get_src(ctx, &asrc->src);
1058
1059 for (unsigned i = 0; i < dst_sz; i++) {
1060 if (wrmask & (1 << i)) {
1061 dst[i] = ir3_MOV(b, src0[asrc->swizzle[i]], type);
1062 } else {
1063 dst[i] = NULL;
1064 }
1065 }
1066
1067 put_dst(ctx, &alu->dest.dest);
1068 return;
1069 }
1070
1071 /* General case: We can just grab the one used channel per src. */
1072 for (int i = 0; i < info->num_inputs; i++) {
1073 unsigned chan = ffs(alu->dest.write_mask) - 1;
1074 nir_alu_src *asrc = &alu->src[i];
1075
1076 compile_assert(ctx, !asrc->abs);
1077 compile_assert(ctx, !asrc->negate);
1078
1079 src[i] = get_src(ctx, &asrc->src)[asrc->swizzle[chan]];
1080 bs[i] = nir_src_bit_size(asrc->src);
1081
1082 compile_assert(ctx, src[i]);
1083 }
1084
1085 switch (alu->op) {
1086 case nir_op_f2f32:
1087 case nir_op_f2f16_rtne:
1088 case nir_op_f2f16_rtz:
1089 case nir_op_f2f16:
1090 case nir_op_f2i32:
1091 case nir_op_f2i16:
1092 case nir_op_f2i8:
1093 case nir_op_f2u32:
1094 case nir_op_f2u16:
1095 case nir_op_f2u8:
1096 case nir_op_i2f32:
1097 case nir_op_i2f16:
1098 case nir_op_i2i32:
1099 case nir_op_i2i16:
1100 case nir_op_i2i8:
1101 case nir_op_u2f32:
1102 case nir_op_u2f16:
1103 case nir_op_u2u32:
1104 case nir_op_u2u16:
1105 case nir_op_u2u8:
1106 dst[0] = create_cov(ctx, src[0], bs[0], alu->op);
1107 break;
1108 case nir_op_f2b:
1109 dst[0] = ir3_CMPS_F(b, src[0], 0, create_immed(b, fui(0.0)), 0);
1110 dst[0]->cat2.condition = IR3_COND_NE;
1111 dst[0] = ir3_n2b(b, dst[0]);
1112 break;
1113 case nir_op_b2f:
1114 dst[0] = ir3_COV(b, ir3_b2n(b, src[0]), TYPE_U32, TYPE_F32);
1115 break;
1116 case nir_op_b2i:
1117 dst[0] = ir3_b2n(b, src[0]);
1118 break;
1119 case nir_op_i2b:
1120 dst[0] = ir3_CMPS_S(b, src[0], 0, create_immed(b, 0), 0);
1121 dst[0]->cat2.condition = IR3_COND_NE;
1122 dst[0] = ir3_n2b(b, dst[0]);
1123 break;
1124
1125 case nir_op_fneg:
1126 dst[0] = ir3_ABSNEG_F(b, src[0], IR3_REG_FNEG);
1127 break;
1128 case nir_op_fabs:
1129 dst[0] = ir3_ABSNEG_F(b, src[0], IR3_REG_FABS);
1130 break;
1131 case nir_op_fmax:
1132 dst[0] = ir3_MAX_F(b, src[0], 0, src[1], 0);
1133 break;
1134 case nir_op_fmin:
1135 dst[0] = ir3_MIN_F(b, src[0], 0, src[1], 0);
1136 break;
1137 case nir_op_fsat:
1138 /* if there is just a single use of the src, and it supports
1139 * (sat) bit, we can just fold the (sat) flag back to the
1140 * src instruction and create a mov. This is easier for cp
1141 * to eliminate.
1142 *
1143 * TODO probably opc_cat==4 is ok too
1144 */
1145 if (alu->src[0].src.is_ssa &&
1146 (list_length(&alu->src[0].src.ssa->uses) == 1) &&
1147 ((opc_cat(src[0]->opc) == 2) || (opc_cat(src[0]->opc) == 3))) {
1148 src[0]->flags |= IR3_INSTR_SAT;
1149 dst[0] = ir3_MOV(b, src[0], TYPE_U32);
1150 } else {
1151 /* otherwise generate a max.f that saturates.. blob does
1152 * similar (generating a cat2 mov using max.f)
1153 */
1154 dst[0] = ir3_MAX_F(b, src[0], 0, src[0], 0);
1155 dst[0]->flags |= IR3_INSTR_SAT;
1156 }
1157 break;
1158 case nir_op_fmul:
1159 dst[0] = ir3_MUL_F(b, src[0], 0, src[1], 0);
1160 break;
1161 case nir_op_fadd:
1162 dst[0] = ir3_ADD_F(b, src[0], 0, src[1], 0);
1163 break;
1164 case nir_op_fsub:
1165 dst[0] = ir3_ADD_F(b, src[0], 0, src[1], IR3_REG_FNEG);
1166 break;
1167 case nir_op_ffma:
1168 dst[0] = ir3_MAD_F32(b, src[0], 0, src[1], 0, src[2], 0);
1169 break;
1170 case nir_op_fddx:
1171 dst[0] = ir3_DSX(b, src[0], 0);
1172 dst[0]->cat5.type = TYPE_F32;
1173 break;
1174 case nir_op_fddy:
1175 dst[0] = ir3_DSY(b, src[0], 0);
1176 dst[0]->cat5.type = TYPE_F32;
1177 break;
1178 break;
1179 case nir_op_flt:
1180 dst[0] = ir3_CMPS_F(b, src[0], 0, src[1], 0);
1181 dst[0]->cat2.condition = IR3_COND_LT;
1182 dst[0] = ir3_n2b(b, dst[0]);
1183 break;
1184 case nir_op_fge:
1185 dst[0] = ir3_CMPS_F(b, src[0], 0, src[1], 0);
1186 dst[0]->cat2.condition = IR3_COND_GE;
1187 dst[0] = ir3_n2b(b, dst[0]);
1188 break;
1189 case nir_op_feq:
1190 dst[0] = ir3_CMPS_F(b, src[0], 0, src[1], 0);
1191 dst[0]->cat2.condition = IR3_COND_EQ;
1192 dst[0] = ir3_n2b(b, dst[0]);
1193 break;
1194 case nir_op_fne:
1195 dst[0] = ir3_CMPS_F(b, src[0], 0, src[1], 0);
1196 dst[0]->cat2.condition = IR3_COND_NE;
1197 dst[0] = ir3_n2b(b, dst[0]);
1198 break;
1199 case nir_op_fceil:
1200 dst[0] = ir3_CEIL_F(b, src[0], 0);
1201 break;
1202 case nir_op_ffloor:
1203 dst[0] = ir3_FLOOR_F(b, src[0], 0);
1204 break;
1205 case nir_op_ftrunc:
1206 dst[0] = ir3_TRUNC_F(b, src[0], 0);
1207 break;
1208 case nir_op_fround_even:
1209 dst[0] = ir3_RNDNE_F(b, src[0], 0);
1210 break;
1211 case nir_op_fsign:
1212 dst[0] = ir3_SIGN_F(b, src[0], 0);
1213 break;
1214
1215 case nir_op_fsin:
1216 dst[0] = ir3_SIN(b, src[0], 0);
1217 break;
1218 case nir_op_fcos:
1219 dst[0] = ir3_COS(b, src[0], 0);
1220 break;
1221 case nir_op_frsq:
1222 dst[0] = ir3_RSQ(b, src[0], 0);
1223 break;
1224 case nir_op_frcp:
1225 dst[0] = ir3_RCP(b, src[0], 0);
1226 break;
1227 case nir_op_flog2:
1228 dst[0] = ir3_LOG2(b, src[0], 0);
1229 break;
1230 case nir_op_fexp2:
1231 dst[0] = ir3_EXP2(b, src[0], 0);
1232 break;
1233 case nir_op_fsqrt:
1234 dst[0] = ir3_SQRT(b, src[0], 0);
1235 break;
1236
1237 case nir_op_iabs:
1238 dst[0] = ir3_ABSNEG_S(b, src[0], IR3_REG_SABS);
1239 break;
1240 case nir_op_iadd:
1241 dst[0] = ir3_ADD_U(b, src[0], 0, src[1], 0);
1242 break;
1243 case nir_op_iand:
1244 dst[0] = ir3_AND_B(b, src[0], 0, src[1], 0);
1245 break;
1246 case nir_op_imax:
1247 dst[0] = ir3_MAX_S(b, src[0], 0, src[1], 0);
1248 break;
1249 case nir_op_umax:
1250 dst[0] = ir3_MAX_U(b, src[0], 0, src[1], 0);
1251 break;
1252 case nir_op_imin:
1253 dst[0] = ir3_MIN_S(b, src[0], 0, src[1], 0);
1254 break;
1255 case nir_op_umin:
1256 dst[0] = ir3_MIN_U(b, src[0], 0, src[1], 0);
1257 break;
1258 case nir_op_imul:
1259 /*
1260 * dst = (al * bl) + (ah * bl << 16) + (al * bh << 16)
1261 * mull.u tmp0, a, b ; mul low, i.e. al * bl
1262 * madsh.m16 tmp1, a, b, tmp0 ; mul-add shift high mix, i.e. ah * bl << 16
1263 * madsh.m16 dst, b, a, tmp1 ; i.e. al * bh << 16
1264 */
1265 dst[0] = ir3_MADSH_M16(b, src[1], 0, src[0], 0,
1266 ir3_MADSH_M16(b, src[0], 0, src[1], 0,
1267 ir3_MULL_U(b, src[0], 0, src[1], 0), 0), 0);
1268 break;
1269 case nir_op_ineg:
1270 dst[0] = ir3_ABSNEG_S(b, src[0], IR3_REG_SNEG);
1271 break;
1272 case nir_op_inot:
1273 dst[0] = ir3_NOT_B(b, src[0], 0);
1274 break;
1275 case nir_op_ior:
1276 dst[0] = ir3_OR_B(b, src[0], 0, src[1], 0);
1277 break;
1278 case nir_op_ishl:
1279 dst[0] = ir3_SHL_B(b, src[0], 0, src[1], 0);
1280 break;
1281 case nir_op_ishr:
1282 dst[0] = ir3_ASHR_B(b, src[0], 0, src[1], 0);
1283 break;
1284 case nir_op_isign: {
1285 /* maybe this would be sane to lower in nir.. */
1286 struct ir3_instruction *neg, *pos;
1287
1288 neg = ir3_CMPS_S(b, src[0], 0, create_immed(b, 0), 0);
1289 neg->cat2.condition = IR3_COND_LT;
1290
1291 pos = ir3_CMPS_S(b, src[0], 0, create_immed(b, 0), 0);
1292 pos->cat2.condition = IR3_COND_GT;
1293
1294 dst[0] = ir3_SUB_U(b, pos, 0, neg, 0);
1295
1296 break;
1297 }
1298 case nir_op_isub:
1299 dst[0] = ir3_SUB_U(b, src[0], 0, src[1], 0);
1300 break;
1301 case nir_op_ixor:
1302 dst[0] = ir3_XOR_B(b, src[0], 0, src[1], 0);
1303 break;
1304 case nir_op_ushr:
1305 dst[0] = ir3_SHR_B(b, src[0], 0, src[1], 0);
1306 break;
1307 case nir_op_ilt:
1308 dst[0] = ir3_CMPS_S(b, src[0], 0, src[1], 0);
1309 dst[0]->cat2.condition = IR3_COND_LT;
1310 dst[0] = ir3_n2b(b, dst[0]);
1311 break;
1312 case nir_op_ige:
1313 dst[0] = ir3_CMPS_S(b, src[0], 0, src[1], 0);
1314 dst[0]->cat2.condition = IR3_COND_GE;
1315 dst[0] = ir3_n2b(b, dst[0]);
1316 break;
1317 case nir_op_ieq:
1318 dst[0] = ir3_CMPS_S(b, src[0], 0, src[1], 0);
1319 dst[0]->cat2.condition = IR3_COND_EQ;
1320 dst[0] = ir3_n2b(b, dst[0]);
1321 break;
1322 case nir_op_ine:
1323 dst[0] = ir3_CMPS_S(b, src[0], 0, src[1], 0);
1324 dst[0]->cat2.condition = IR3_COND_NE;
1325 dst[0] = ir3_n2b(b, dst[0]);
1326 break;
1327 case nir_op_ult:
1328 dst[0] = ir3_CMPS_U(b, src[0], 0, src[1], 0);
1329 dst[0]->cat2.condition = IR3_COND_LT;
1330 dst[0] = ir3_n2b(b, dst[0]);
1331 break;
1332 case nir_op_uge:
1333 dst[0] = ir3_CMPS_U(b, src[0], 0, src[1], 0);
1334 dst[0]->cat2.condition = IR3_COND_GE;
1335 dst[0] = ir3_n2b(b, dst[0]);
1336 break;
1337
1338 case nir_op_bcsel: {
1339 struct ir3_instruction *cond = ir3_b2n(b, src[0]);
1340 compile_assert(ctx, bs[1] == bs[2]);
1341 /* the boolean condition is 32b even if src[1] and src[2] are
1342 * half-precision, but sel.b16 wants all three src's to be the
1343 * same type.
1344 */
1345 if (bs[1] < 32)
1346 cond = ir3_COV(b, cond, TYPE_U32, TYPE_U16);
1347 dst[0] = ir3_SEL_B32(b, src[1], 0, cond, 0, src[2], 0);
1348 break;
1349 }
1350 case nir_op_bit_count:
1351 dst[0] = ir3_CBITS_B(b, src[0], 0);
1352 break;
1353 case nir_op_ifind_msb: {
1354 struct ir3_instruction *cmp;
1355 dst[0] = ir3_CLZ_S(b, src[0], 0);
1356 cmp = ir3_CMPS_S(b, dst[0], 0, create_immed(b, 0), 0);
1357 cmp->cat2.condition = IR3_COND_GE;
1358 dst[0] = ir3_SEL_B32(b,
1359 ir3_SUB_U(b, create_immed(b, 31), 0, dst[0], 0), 0,
1360 cmp, 0, dst[0], 0);
1361 break;
1362 }
1363 case nir_op_ufind_msb:
1364 dst[0] = ir3_CLZ_B(b, src[0], 0);
1365 dst[0] = ir3_SEL_B32(b,
1366 ir3_SUB_U(b, create_immed(b, 31), 0, dst[0], 0), 0,
1367 src[0], 0, dst[0], 0);
1368 break;
1369 case nir_op_find_lsb:
1370 dst[0] = ir3_BFREV_B(b, src[0], 0);
1371 dst[0] = ir3_CLZ_B(b, dst[0], 0);
1372 break;
1373 case nir_op_bitfield_reverse:
1374 dst[0] = ir3_BFREV_B(b, src[0], 0);
1375 break;
1376
1377 default:
1378 compile_error(ctx, "Unhandled ALU op: %s\n",
1379 nir_op_infos[alu->op].name);
1380 break;
1381 }
1382
1383 put_dst(ctx, &alu->dest.dest);
1384 }
1385
1386 /* handles direct/indirect UBO reads: */
1387 static void
1388 emit_intrinsic_load_ubo(struct ir3_context *ctx, nir_intrinsic_instr *intr,
1389 struct ir3_instruction **dst)
1390 {
1391 struct ir3_block *b = ctx->block;
1392 struct ir3_instruction *base_lo, *base_hi, *addr, *src0, *src1;
1393 nir_const_value *const_offset;
1394 /* UBO addresses are the first driver params: */
1395 unsigned ubo = regid(ctx->so->constbase.ubo, 0);
1396 const unsigned ptrsz = pointer_size(ctx);
1397
1398 int off = 0;
1399
1400 /* First src is ubo index, which could either be an immed or not: */
1401 src0 = get_src(ctx, &intr->src[0])[0];
1402 if (is_same_type_mov(src0) &&
1403 (src0->regs[1]->flags & IR3_REG_IMMED)) {
1404 base_lo = create_uniform(ctx, ubo + (src0->regs[1]->iim_val * ptrsz));
1405 base_hi = create_uniform(ctx, ubo + (src0->regs[1]->iim_val * ptrsz) + 1);
1406 } else {
1407 base_lo = create_uniform_indirect(ctx, ubo, get_addr(ctx, src0, 4));
1408 base_hi = create_uniform_indirect(ctx, ubo + 1, get_addr(ctx, src0, 4));
1409 }
1410
1411 /* note: on 32bit gpu's base_hi is ignored and DCE'd */
1412 addr = base_lo;
1413
1414 const_offset = nir_src_as_const_value(intr->src[1]);
1415 if (const_offset) {
1416 off += const_offset->u32[0];
1417 } else {
1418 /* For load_ubo_indirect, second src is indirect offset: */
1419 src1 = get_src(ctx, &intr->src[1])[0];
1420
1421 /* and add offset to addr: */
1422 addr = ir3_ADD_S(b, addr, 0, src1, 0);
1423 }
1424
1425 /* if offset is to large to encode in the ldg, split it out: */
1426 if ((off + (intr->num_components * 4)) > 1024) {
1427 /* split out the minimal amount to improve the odds that
1428 * cp can fit the immediate in the add.s instruction:
1429 */
1430 unsigned off2 = off + (intr->num_components * 4) - 1024;
1431 addr = ir3_ADD_S(b, addr, 0, create_immed(b, off2), 0);
1432 off -= off2;
1433 }
1434
1435 if (ptrsz == 2) {
1436 struct ir3_instruction *carry;
1437
1438 /* handle 32b rollover, ie:
1439 * if (addr < base_lo)
1440 * base_hi++
1441 */
1442 carry = ir3_CMPS_U(b, addr, 0, base_lo, 0);
1443 carry->cat2.condition = IR3_COND_LT;
1444 base_hi = ir3_ADD_S(b, base_hi, 0, carry, 0);
1445
1446 addr = create_collect(ctx, (struct ir3_instruction*[]){ addr, base_hi }, 2);
1447 }
1448
1449 for (int i = 0; i < intr->num_components; i++) {
1450 struct ir3_instruction *load =
1451 ir3_LDG(b, addr, 0, create_immed(b, 1), 0);
1452 load->cat6.type = TYPE_U32;
1453 load->cat6.src_offset = off + i * 4; /* byte offset */
1454 dst[i] = load;
1455 }
1456 }
1457
1458 /* src[] = { buffer_index, offset }. No const_index */
1459 static void
1460 emit_intrinsic_load_ssbo(struct ir3_context *ctx, nir_intrinsic_instr *intr,
1461 struct ir3_instruction **dst)
1462 {
1463 struct ir3_block *b = ctx->block;
1464 struct ir3_instruction *ldgb, *src0, *src1, *offset;
1465 nir_const_value *const_offset;
1466
1467 /* can this be non-const buffer_index? how do we handle that? */
1468 const_offset = nir_src_as_const_value(intr->src[0]);
1469 compile_assert(ctx, const_offset);
1470
1471 offset = get_src(ctx, &intr->src[1])[0];
1472
1473 /* src0 is uvec2(offset*4, 0), src1 is offset.. nir already *= 4: */
1474 src0 = create_collect(ctx, (struct ir3_instruction*[]){
1475 offset,
1476 create_immed(b, 0),
1477 }, 2);
1478 src1 = ir3_SHR_B(b, offset, 0, create_immed(b, 2), 0);
1479
1480 ldgb = ir3_LDGB(b, create_immed(b, const_offset->u32[0]), 0,
1481 src0, 0, src1, 0);
1482 ldgb->regs[0]->wrmask = MASK(intr->num_components);
1483 ldgb->cat6.iim_val = intr->num_components;
1484 ldgb->cat6.d = 4;
1485 ldgb->cat6.type = TYPE_U32;
1486 ldgb->barrier_class = IR3_BARRIER_BUFFER_R;
1487 ldgb->barrier_conflict = IR3_BARRIER_BUFFER_W;
1488
1489 split_dest(b, dst, ldgb, 0, intr->num_components);
1490 }
1491
1492 /* src[] = { value, block_index, offset }. const_index[] = { write_mask } */
1493 static void
1494 emit_intrinsic_store_ssbo(struct ir3_context *ctx, nir_intrinsic_instr *intr)
1495 {
1496 struct ir3_block *b = ctx->block;
1497 struct ir3_instruction *stgb, *src0, *src1, *src2, *offset;
1498 nir_const_value *const_offset;
1499 /* TODO handle wrmask properly, see _store_shared().. but I think
1500 * it is more a PITA than that, since blob ends up loading the
1501 * masked components and writing them back out.
1502 */
1503 unsigned wrmask = intr->const_index[0];
1504 unsigned ncomp = ffs(~wrmask) - 1;
1505
1506 /* can this be non-const buffer_index? how do we handle that? */
1507 const_offset = nir_src_as_const_value(intr->src[1]);
1508 compile_assert(ctx, const_offset);
1509
1510 offset = get_src(ctx, &intr->src[2])[0];
1511
1512 /* src0 is value, src1 is offset, src2 is uvec2(offset*4, 0)..
1513 * nir already *= 4:
1514 */
1515 src0 = create_collect(ctx, get_src(ctx, &intr->src[0]), ncomp);
1516 src1 = ir3_SHR_B(b, offset, 0, create_immed(b, 2), 0);
1517 src2 = create_collect(ctx, (struct ir3_instruction*[]){
1518 offset,
1519 create_immed(b, 0),
1520 }, 2);
1521
1522 stgb = ir3_STGB(b, create_immed(b, const_offset->u32[0]), 0,
1523 src0, 0, src1, 0, src2, 0);
1524 stgb->cat6.iim_val = ncomp;
1525 stgb->cat6.d = 4;
1526 stgb->cat6.type = TYPE_U32;
1527 stgb->barrier_class = IR3_BARRIER_BUFFER_W;
1528 stgb->barrier_conflict = IR3_BARRIER_BUFFER_R | IR3_BARRIER_BUFFER_W;
1529
1530 array_insert(b, b->keeps, stgb);
1531 }
1532
1533 /* src[] = { block_index } */
1534 static void
1535 emit_intrinsic_ssbo_size(struct ir3_context *ctx, nir_intrinsic_instr *intr,
1536 struct ir3_instruction **dst)
1537 {
1538 /* SSBO size stored as a const starting at ssbo_sizes: */
1539 unsigned blk_idx = nir_src_as_const_value(intr->src[0])->u32[0];
1540 unsigned idx = regid(ctx->so->constbase.ssbo_sizes, 0) +
1541 ctx->so->const_layout.ssbo_size.off[blk_idx];
1542
1543 debug_assert(ctx->so->const_layout.ssbo_size.mask & (1 << blk_idx));
1544
1545 dst[0] = create_uniform(ctx, idx);
1546 }
1547
1548 /*
1549 * SSBO atomic intrinsics
1550 *
1551 * All of the SSBO atomic memory operations read a value from memory,
1552 * compute a new value using one of the operations below, write the new
1553 * value to memory, and return the original value read.
1554 *
1555 * All operations take 3 sources except CompSwap that takes 4. These
1556 * sources represent:
1557 *
1558 * 0: The SSBO buffer index.
1559 * 1: The offset into the SSBO buffer of the variable that the atomic
1560 * operation will operate on.
1561 * 2: The data parameter to the atomic function (i.e. the value to add
1562 * in ssbo_atomic_add, etc).
1563 * 3: For CompSwap only: the second data parameter.
1564 */
1565 static struct ir3_instruction *
1566 emit_intrinsic_atomic_ssbo(struct ir3_context *ctx, nir_intrinsic_instr *intr)
1567 {
1568 struct ir3_block *b = ctx->block;
1569 struct ir3_instruction *atomic, *ssbo, *src0, *src1, *src2, *offset;
1570 nir_const_value *const_offset;
1571 type_t type = TYPE_U32;
1572
1573 /* can this be non-const buffer_index? how do we handle that? */
1574 const_offset = nir_src_as_const_value(intr->src[0]);
1575 compile_assert(ctx, const_offset);
1576 ssbo = create_immed(b, const_offset->u32[0]);
1577
1578 offset = get_src(ctx, &intr->src[1])[0];
1579
1580 /* src0 is data (or uvec2(data, compare))
1581 * src1 is offset
1582 * src2 is uvec2(offset*4, 0) (appears to be 64b byte offset)
1583 *
1584 * Note that nir already multiplies the offset by four
1585 */
1586 src0 = get_src(ctx, &intr->src[2])[0];
1587 src1 = ir3_SHR_B(b, offset, 0, create_immed(b, 2), 0);
1588 src2 = create_collect(ctx, (struct ir3_instruction*[]){
1589 offset,
1590 create_immed(b, 0),
1591 }, 2);
1592
1593 switch (intr->intrinsic) {
1594 case nir_intrinsic_ssbo_atomic_add:
1595 atomic = ir3_ATOMIC_ADD_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1596 break;
1597 case nir_intrinsic_ssbo_atomic_imin:
1598 atomic = ir3_ATOMIC_MIN_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1599 type = TYPE_S32;
1600 break;
1601 case nir_intrinsic_ssbo_atomic_umin:
1602 atomic = ir3_ATOMIC_MIN_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1603 break;
1604 case nir_intrinsic_ssbo_atomic_imax:
1605 atomic = ir3_ATOMIC_MAX_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1606 type = TYPE_S32;
1607 break;
1608 case nir_intrinsic_ssbo_atomic_umax:
1609 atomic = ir3_ATOMIC_MAX_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1610 break;
1611 case nir_intrinsic_ssbo_atomic_and:
1612 atomic = ir3_ATOMIC_AND_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1613 break;
1614 case nir_intrinsic_ssbo_atomic_or:
1615 atomic = ir3_ATOMIC_OR_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1616 break;
1617 case nir_intrinsic_ssbo_atomic_xor:
1618 atomic = ir3_ATOMIC_XOR_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1619 break;
1620 case nir_intrinsic_ssbo_atomic_exchange:
1621 atomic = ir3_ATOMIC_XCHG_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1622 break;
1623 case nir_intrinsic_ssbo_atomic_comp_swap:
1624 /* for cmpxchg, src0 is [ui]vec2(data, compare): */
1625 src0 = create_collect(ctx, (struct ir3_instruction*[]){
1626 get_src(ctx, &intr->src[3])[0],
1627 src0,
1628 }, 2);
1629 atomic = ir3_ATOMIC_CMPXCHG_G(b, ssbo, 0, src0, 0, src1, 0, src2, 0);
1630 break;
1631 default:
1632 unreachable("boo");
1633 }
1634
1635 atomic->cat6.iim_val = 1;
1636 atomic->cat6.d = 4;
1637 atomic->cat6.type = type;
1638 atomic->barrier_class = IR3_BARRIER_BUFFER_W;
1639 atomic->barrier_conflict = IR3_BARRIER_BUFFER_R | IR3_BARRIER_BUFFER_W;
1640
1641 /* even if nothing consume the result, we can't DCE the instruction: */
1642 array_insert(b, b->keeps, atomic);
1643
1644 return atomic;
1645 }
1646
1647 /* src[] = { offset }. const_index[] = { base } */
1648 static void
1649 emit_intrinsic_load_shared(struct ir3_context *ctx, nir_intrinsic_instr *intr,
1650 struct ir3_instruction **dst)
1651 {
1652 struct ir3_block *b = ctx->block;
1653 struct ir3_instruction *ldl, *offset;
1654 unsigned base;
1655
1656 offset = get_src(ctx, &intr->src[0])[0];
1657 base = nir_intrinsic_base(intr);
1658
1659 ldl = ir3_LDL(b, offset, 0, create_immed(b, intr->num_components), 0);
1660 ldl->cat6.src_offset = base;
1661 ldl->cat6.type = utype_dst(intr->dest);
1662 ldl->regs[0]->wrmask = MASK(intr->num_components);
1663
1664 ldl->barrier_class = IR3_BARRIER_SHARED_R;
1665 ldl->barrier_conflict = IR3_BARRIER_SHARED_W;
1666
1667 split_dest(b, dst, ldl, 0, intr->num_components);
1668 }
1669
1670 /* src[] = { value, offset }. const_index[] = { base, write_mask } */
1671 static void
1672 emit_intrinsic_store_shared(struct ir3_context *ctx, nir_intrinsic_instr *intr)
1673 {
1674 struct ir3_block *b = ctx->block;
1675 struct ir3_instruction *stl, *offset;
1676 struct ir3_instruction * const *value;
1677 unsigned base, wrmask;
1678
1679 value = get_src(ctx, &intr->src[0]);
1680 offset = get_src(ctx, &intr->src[1])[0];
1681
1682 base = nir_intrinsic_base(intr);
1683 wrmask = nir_intrinsic_write_mask(intr);
1684
1685 /* Combine groups of consecutive enabled channels in one write
1686 * message. We use ffs to find the first enabled channel and then ffs on
1687 * the bit-inverse, down-shifted writemask to determine the length of
1688 * the block of enabled bits.
1689 *
1690 * (trick stolen from i965's fs_visitor::nir_emit_cs_intrinsic())
1691 */
1692 while (wrmask) {
1693 unsigned first_component = ffs(wrmask) - 1;
1694 unsigned length = ffs(~(wrmask >> first_component)) - 1;
1695
1696 stl = ir3_STL(b, offset, 0,
1697 create_collect(ctx, &value[first_component], length), 0,
1698 create_immed(b, length), 0);
1699 stl->cat6.dst_offset = first_component + base;
1700 stl->cat6.type = utype_src(intr->src[0]);
1701 stl->barrier_class = IR3_BARRIER_SHARED_W;
1702 stl->barrier_conflict = IR3_BARRIER_SHARED_R | IR3_BARRIER_SHARED_W;
1703
1704 array_insert(b, b->keeps, stl);
1705
1706 /* Clear the bits in the writemask that we just wrote, then try
1707 * again to see if more channels are left.
1708 */
1709 wrmask &= (15 << (first_component + length));
1710 }
1711 }
1712
1713 /*
1714 * CS shared variable atomic intrinsics
1715 *
1716 * All of the shared variable atomic memory operations read a value from
1717 * memory, compute a new value using one of the operations below, write the
1718 * new value to memory, and return the original value read.
1719 *
1720 * All operations take 2 sources except CompSwap that takes 3. These
1721 * sources represent:
1722 *
1723 * 0: The offset into the shared variable storage region that the atomic
1724 * operation will operate on.
1725 * 1: The data parameter to the atomic function (i.e. the value to add
1726 * in shared_atomic_add, etc).
1727 * 2: For CompSwap only: the second data parameter.
1728 */
1729 static struct ir3_instruction *
1730 emit_intrinsic_atomic_shared(struct ir3_context *ctx, nir_intrinsic_instr *intr)
1731 {
1732 struct ir3_block *b = ctx->block;
1733 struct ir3_instruction *atomic, *src0, *src1;
1734 type_t type = TYPE_U32;
1735
1736 src0 = get_src(ctx, &intr->src[0])[0]; /* offset */
1737 src1 = get_src(ctx, &intr->src[1])[0]; /* value */
1738
1739 switch (intr->intrinsic) {
1740 case nir_intrinsic_shared_atomic_add:
1741 atomic = ir3_ATOMIC_ADD(b, src0, 0, src1, 0);
1742 break;
1743 case nir_intrinsic_shared_atomic_imin:
1744 atomic = ir3_ATOMIC_MIN(b, src0, 0, src1, 0);
1745 type = TYPE_S32;
1746 break;
1747 case nir_intrinsic_shared_atomic_umin:
1748 atomic = ir3_ATOMIC_MIN(b, src0, 0, src1, 0);
1749 break;
1750 case nir_intrinsic_shared_atomic_imax:
1751 atomic = ir3_ATOMIC_MAX(b, src0, 0, src1, 0);
1752 type = TYPE_S32;
1753 break;
1754 case nir_intrinsic_shared_atomic_umax:
1755 atomic = ir3_ATOMIC_MAX(b, src0, 0, src1, 0);
1756 break;
1757 case nir_intrinsic_shared_atomic_and:
1758 atomic = ir3_ATOMIC_AND(b, src0, 0, src1, 0);
1759 break;
1760 case nir_intrinsic_shared_atomic_or:
1761 atomic = ir3_ATOMIC_OR(b, src0, 0, src1, 0);
1762 break;
1763 case nir_intrinsic_shared_atomic_xor:
1764 atomic = ir3_ATOMIC_XOR(b, src0, 0, src1, 0);
1765 break;
1766 case nir_intrinsic_shared_atomic_exchange:
1767 atomic = ir3_ATOMIC_XCHG(b, src0, 0, src1, 0);
1768 break;
1769 case nir_intrinsic_shared_atomic_comp_swap:
1770 /* for cmpxchg, src1 is [ui]vec2(data, compare): */
1771 src1 = create_collect(ctx, (struct ir3_instruction*[]){
1772 get_src(ctx, &intr->src[2])[0],
1773 src1,
1774 }, 2);
1775 atomic = ir3_ATOMIC_CMPXCHG(b, src0, 0, src1, 0);
1776 break;
1777 default:
1778 unreachable("boo");
1779 }
1780
1781 atomic->cat6.iim_val = 1;
1782 atomic->cat6.d = 1;
1783 atomic->cat6.type = type;
1784 atomic->barrier_class = IR3_BARRIER_SHARED_W;
1785 atomic->barrier_conflict = IR3_BARRIER_SHARED_R | IR3_BARRIER_SHARED_W;
1786
1787 /* even if nothing consume the result, we can't DCE the instruction: */
1788 array_insert(b, b->keeps, atomic);
1789
1790 return atomic;
1791 }
1792
1793 /* Images get mapped into SSBO/image state (for store/atomic) and texture
1794 * state block (for load). To simplify things, invert the image id and
1795 * map it from end of state block, ie. image 0 becomes num-1, image 1
1796 * becomes num-2, etc. This potentially avoids needing to re-emit texture
1797 * state when switching shaders.
1798 *
1799 * TODO is max # of samplers and SSBOs the same. This shouldn't be hard-
1800 * coded. Also, since all the gl shader stages (ie. everything but CS)
1801 * share the same SSBO/image state block, this might require some more
1802 * logic if we supported images in anything other than FS..
1803 */
1804 static unsigned
1805 get_image_slot(struct ir3_context *ctx, nir_deref_instr *deref)
1806 {
1807 unsigned int loc = 0;
1808 unsigned inner_size = 1;
1809
1810 while (deref->deref_type != nir_deref_type_var) {
1811 assert(deref->deref_type == nir_deref_type_array);
1812 nir_const_value *const_index = nir_src_as_const_value(deref->arr.index);
1813 assert(const_index);
1814
1815 /* Go to the next instruction */
1816 deref = nir_deref_instr_parent(deref);
1817
1818 assert(glsl_type_is_array(deref->type));
1819 const unsigned array_len = glsl_get_length(deref->type);
1820 loc += MIN2(const_index->u32[0], array_len - 1) * inner_size;
1821
1822 /* Update the inner size */
1823 inner_size *= array_len;
1824 }
1825
1826 loc += deref->var->data.driver_location;
1827
1828 /* TODO figure out real limit per generation, and don't hardcode: */
1829 const unsigned max_samplers = 16;
1830 return max_samplers - loc - 1;
1831 }
1832
1833 /* see tex_info() for equiv logic for texture instructions.. it would be
1834 * nice if this could be better unified..
1835 */
1836 static unsigned
1837 get_image_coords(const nir_variable *var, unsigned *flagsp)
1838 {
1839 const struct glsl_type *type = glsl_without_array(var->type);
1840 unsigned coords, flags = 0;
1841
1842 switch (glsl_get_sampler_dim(type)) {
1843 case GLSL_SAMPLER_DIM_1D:
1844 case GLSL_SAMPLER_DIM_BUF:
1845 coords = 1;
1846 break;
1847 case GLSL_SAMPLER_DIM_2D:
1848 case GLSL_SAMPLER_DIM_RECT:
1849 case GLSL_SAMPLER_DIM_EXTERNAL:
1850 case GLSL_SAMPLER_DIM_MS:
1851 coords = 2;
1852 break;
1853 case GLSL_SAMPLER_DIM_3D:
1854 case GLSL_SAMPLER_DIM_CUBE:
1855 flags |= IR3_INSTR_3D;
1856 coords = 3;
1857 break;
1858 default:
1859 unreachable("bad sampler dim");
1860 return 0;
1861 }
1862
1863 if (glsl_sampler_type_is_array(type)) {
1864 /* note: unlike tex_info(), adjust # of coords to include array idx: */
1865 coords++;
1866 flags |= IR3_INSTR_A;
1867 }
1868
1869 if (flagsp)
1870 *flagsp = flags;
1871
1872 return coords;
1873 }
1874
1875 static type_t
1876 get_image_type(const nir_variable *var)
1877 {
1878 switch (glsl_get_sampler_result_type(glsl_without_array(var->type))) {
1879 case GLSL_TYPE_UINT:
1880 return TYPE_U32;
1881 case GLSL_TYPE_INT:
1882 return TYPE_S32;
1883 case GLSL_TYPE_FLOAT:
1884 return TYPE_F32;
1885 default:
1886 unreachable("bad sampler type.");
1887 return 0;
1888 }
1889 }
1890
1891 static struct ir3_instruction *
1892 get_image_offset(struct ir3_context *ctx, const nir_variable *var,
1893 struct ir3_instruction * const *coords, bool byteoff)
1894 {
1895 struct ir3_block *b = ctx->block;
1896 struct ir3_instruction *offset;
1897 unsigned ncoords = get_image_coords(var, NULL);
1898
1899 /* to calculate the byte offset (yes, uggg) we need (up to) three
1900 * const values to know the bytes per pixel, and y and z stride:
1901 */
1902 unsigned cb = regid(ctx->so->constbase.image_dims, 0) +
1903 ctx->so->const_layout.image_dims.off[var->data.driver_location];
1904
1905 debug_assert(ctx->so->const_layout.image_dims.mask &
1906 (1 << var->data.driver_location));
1907
1908 /* offset = coords.x * bytes_per_pixel: */
1909 offset = ir3_MUL_S(b, coords[0], 0, create_uniform(ctx, cb + 0), 0);
1910 if (ncoords > 1) {
1911 /* offset += coords.y * y_pitch: */
1912 offset = ir3_MAD_S24(b, create_uniform(ctx, cb + 1), 0,
1913 coords[1], 0, offset, 0);
1914 }
1915 if (ncoords > 2) {
1916 /* offset += coords.z * z_pitch: */
1917 offset = ir3_MAD_S24(b, create_uniform(ctx, cb + 2), 0,
1918 coords[2], 0, offset, 0);
1919 }
1920
1921 if (!byteoff) {
1922 /* Some cases, like atomics, seem to use dword offset instead
1923 * of byte offsets.. blob just puts an extra shr.b in there
1924 * in those cases:
1925 */
1926 offset = ir3_SHR_B(b, offset, 0, create_immed(b, 2), 0);
1927 }
1928
1929 return create_collect(ctx, (struct ir3_instruction*[]){
1930 offset,
1931 create_immed(b, 0),
1932 }, 2);
1933 }
1934
1935 /* src[] = { deref, coord, sample_index }. const_index[] = {} */
1936 static void
1937 emit_intrinsic_load_image(struct ir3_context *ctx, nir_intrinsic_instr *intr,
1938 struct ir3_instruction **dst)
1939 {
1940 struct ir3_block *b = ctx->block;
1941 const nir_variable *var = nir_intrinsic_get_var(intr, 0);
1942 struct ir3_instruction *sam;
1943 struct ir3_instruction * const *src0 = get_src(ctx, &intr->src[1]);
1944 struct ir3_instruction *coords[4];
1945 unsigned flags, ncoords = get_image_coords(var, &flags);
1946 unsigned tex_idx = get_image_slot(ctx, nir_src_as_deref(intr->src[0]));
1947 type_t type = get_image_type(var);
1948
1949 /* hmm, this seems a bit odd, but it is what blob does and (at least
1950 * a5xx) just faults on bogus addresses otherwise:
1951 */
1952 if (flags & IR3_INSTR_3D) {
1953 flags &= ~IR3_INSTR_3D;
1954 flags |= IR3_INSTR_A;
1955 }
1956
1957 for (unsigned i = 0; i < ncoords; i++)
1958 coords[i] = src0[i];
1959
1960 if (ncoords == 1)
1961 coords[ncoords++] = create_immed(b, 0);
1962
1963 sam = ir3_SAM(b, OPC_ISAM, type, TGSI_WRITEMASK_XYZW, flags,
1964 tex_idx, tex_idx, create_collect(ctx, coords, ncoords), NULL);
1965
1966 sam->barrier_class = IR3_BARRIER_IMAGE_R;
1967 sam->barrier_conflict = IR3_BARRIER_IMAGE_W;
1968
1969 split_dest(b, dst, sam, 0, 4);
1970 }
1971
1972 /* src[] = { deref, coord, sample_index, value }. const_index[] = {} */
1973 static void
1974 emit_intrinsic_store_image(struct ir3_context *ctx, nir_intrinsic_instr *intr)
1975 {
1976 struct ir3_block *b = ctx->block;
1977 const nir_variable *var = nir_intrinsic_get_var(intr, 0);
1978 struct ir3_instruction *stib, *offset;
1979 struct ir3_instruction * const *value = get_src(ctx, &intr->src[3]);
1980 struct ir3_instruction * const *coords = get_src(ctx, &intr->src[1]);
1981 unsigned ncoords = get_image_coords(var, NULL);
1982 unsigned tex_idx = get_image_slot(ctx, nir_src_as_deref(intr->src[0]));
1983
1984 /* src0 is value
1985 * src1 is coords
1986 * src2 is 64b byte offset
1987 */
1988
1989 offset = get_image_offset(ctx, var, coords, true);
1990
1991 /* NOTE: stib seems to take byte offset, but stgb.typed can be used
1992 * too and takes a dword offset.. not quite sure yet why blob uses
1993 * one over the other in various cases.
1994 */
1995
1996 stib = ir3_STIB(b, create_immed(b, tex_idx), 0,
1997 create_collect(ctx, value, 4), 0,
1998 create_collect(ctx, coords, ncoords), 0,
1999 offset, 0);
2000 stib->cat6.iim_val = 4;
2001 stib->cat6.d = ncoords;
2002 stib->cat6.type = get_image_type(var);
2003 stib->cat6.typed = true;
2004 stib->barrier_class = IR3_BARRIER_IMAGE_W;
2005 stib->barrier_conflict = IR3_BARRIER_IMAGE_R | IR3_BARRIER_IMAGE_W;
2006
2007 array_insert(b, b->keeps, stib);
2008 }
2009
2010 static void
2011 emit_intrinsic_image_size(struct ir3_context *ctx, nir_intrinsic_instr *intr,
2012 struct ir3_instruction **dst)
2013 {
2014 struct ir3_block *b = ctx->block;
2015 const nir_variable *var = nir_intrinsic_get_var(intr, 0);
2016 unsigned tex_idx = get_image_slot(ctx, nir_src_as_deref(intr->src[0]));
2017 struct ir3_instruction *sam, *lod;
2018 unsigned flags, ncoords = get_image_coords(var, &flags);
2019
2020 lod = create_immed(b, 0);
2021 sam = ir3_SAM(b, OPC_GETSIZE, TYPE_U32, TGSI_WRITEMASK_XYZW, flags,
2022 tex_idx, tex_idx, lod, NULL);
2023
2024 /* Array size actually ends up in .w rather than .z. This doesn't
2025 * matter for miplevel 0, but for higher mips the value in z is
2026 * minified whereas w stays. Also, the value in TEX_CONST_3_DEPTH is
2027 * returned, which means that we have to add 1 to it for arrays for
2028 * a3xx.
2029 *
2030 * Note use a temporary dst and then copy, since the size of the dst
2031 * array that is passed in is based on nir's understanding of the
2032 * result size, not the hardware's
2033 */
2034 struct ir3_instruction *tmp[4];
2035
2036 split_dest(b, tmp, sam, 0, 4);
2037
2038 for (unsigned i = 0; i < ncoords; i++)
2039 dst[i] = tmp[i];
2040
2041 if (flags & IR3_INSTR_A) {
2042 if (ctx->compiler->levels_add_one) {
2043 dst[ncoords-1] = ir3_ADD_U(b, tmp[3], 0, create_immed(b, 1), 0);
2044 } else {
2045 dst[ncoords-1] = ir3_MOV(b, tmp[3], TYPE_U32);
2046 }
2047 }
2048 }
2049
2050 /* src[] = { deref, coord, sample_index, value, compare }. const_index[] = {} */
2051 static struct ir3_instruction *
2052 emit_intrinsic_atomic_image(struct ir3_context *ctx, nir_intrinsic_instr *intr)
2053 {
2054 struct ir3_block *b = ctx->block;
2055 const nir_variable *var = nir_intrinsic_get_var(intr, 0);
2056 struct ir3_instruction *atomic, *image, *src0, *src1, *src2;
2057 struct ir3_instruction * const *coords = get_src(ctx, &intr->src[1]);
2058 unsigned ncoords = get_image_coords(var, NULL);
2059
2060 image = create_immed(b, get_image_slot(ctx, nir_src_as_deref(intr->src[0])));
2061
2062 /* src0 is value (or uvec2(value, compare))
2063 * src1 is coords
2064 * src2 is 64b byte offset
2065 */
2066 src0 = get_src(ctx, &intr->src[3])[0];
2067 src1 = create_collect(ctx, coords, ncoords);
2068 src2 = get_image_offset(ctx, var, coords, false);
2069
2070 switch (intr->intrinsic) {
2071 case nir_intrinsic_image_deref_atomic_add:
2072 atomic = ir3_ATOMIC_ADD_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2073 break;
2074 case nir_intrinsic_image_deref_atomic_min:
2075 atomic = ir3_ATOMIC_MIN_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2076 break;
2077 case nir_intrinsic_image_deref_atomic_max:
2078 atomic = ir3_ATOMIC_MAX_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2079 break;
2080 case nir_intrinsic_image_deref_atomic_and:
2081 atomic = ir3_ATOMIC_AND_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2082 break;
2083 case nir_intrinsic_image_deref_atomic_or:
2084 atomic = ir3_ATOMIC_OR_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2085 break;
2086 case nir_intrinsic_image_deref_atomic_xor:
2087 atomic = ir3_ATOMIC_XOR_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2088 break;
2089 case nir_intrinsic_image_deref_atomic_exchange:
2090 atomic = ir3_ATOMIC_XCHG_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2091 break;
2092 case nir_intrinsic_image_deref_atomic_comp_swap:
2093 /* for cmpxchg, src0 is [ui]vec2(data, compare): */
2094 src0 = create_collect(ctx, (struct ir3_instruction*[]){
2095 get_src(ctx, &intr->src[4])[0],
2096 src0,
2097 }, 2);
2098 atomic = ir3_ATOMIC_CMPXCHG_G(b, image, 0, src0, 0, src1, 0, src2, 0);
2099 break;
2100 default:
2101 unreachable("boo");
2102 }
2103
2104 atomic->cat6.iim_val = 1;
2105 atomic->cat6.d = ncoords;
2106 atomic->cat6.type = get_image_type(var);
2107 atomic->cat6.typed = true;
2108 atomic->barrier_class = IR3_BARRIER_IMAGE_W;
2109 atomic->barrier_conflict = IR3_BARRIER_IMAGE_R | IR3_BARRIER_IMAGE_W;
2110
2111 /* even if nothing consume the result, we can't DCE the instruction: */
2112 array_insert(b, b->keeps, atomic);
2113
2114 return atomic;
2115 }
2116
2117 static void
2118 emit_intrinsic_barrier(struct ir3_context *ctx, nir_intrinsic_instr *intr)
2119 {
2120 struct ir3_block *b = ctx->block;
2121 struct ir3_instruction *barrier;
2122
2123 switch (intr->intrinsic) {
2124 case nir_intrinsic_barrier:
2125 barrier = ir3_BAR(b);
2126 barrier->cat7.g = true;
2127 barrier->cat7.l = true;
2128 barrier->flags = IR3_INSTR_SS | IR3_INSTR_SY;
2129 barrier->barrier_class = IR3_BARRIER_EVERYTHING;
2130 break;
2131 case nir_intrinsic_memory_barrier:
2132 barrier = ir3_FENCE(b);
2133 barrier->cat7.g = true;
2134 barrier->cat7.r = true;
2135 barrier->cat7.w = true;
2136 barrier->barrier_class = IR3_BARRIER_IMAGE_W |
2137 IR3_BARRIER_BUFFER_W;
2138 barrier->barrier_conflict =
2139 IR3_BARRIER_IMAGE_R | IR3_BARRIER_IMAGE_W |
2140 IR3_BARRIER_BUFFER_R | IR3_BARRIER_BUFFER_W;
2141 break;
2142 case nir_intrinsic_memory_barrier_atomic_counter:
2143 case nir_intrinsic_memory_barrier_buffer:
2144 barrier = ir3_FENCE(b);
2145 barrier->cat7.g = true;
2146 barrier->cat7.r = true;
2147 barrier->cat7.w = true;
2148 barrier->barrier_class = IR3_BARRIER_BUFFER_W;
2149 barrier->barrier_conflict = IR3_BARRIER_BUFFER_R |
2150 IR3_BARRIER_BUFFER_W;
2151 break;
2152 case nir_intrinsic_memory_barrier_image:
2153 // TODO double check if this should have .g set
2154 barrier = ir3_FENCE(b);
2155 barrier->cat7.g = true;
2156 barrier->cat7.r = true;
2157 barrier->cat7.w = true;
2158 barrier->barrier_class = IR3_BARRIER_IMAGE_W;
2159 barrier->barrier_conflict = IR3_BARRIER_IMAGE_R |
2160 IR3_BARRIER_IMAGE_W;
2161 break;
2162 case nir_intrinsic_memory_barrier_shared:
2163 barrier = ir3_FENCE(b);
2164 barrier->cat7.g = true;
2165 barrier->cat7.l = true;
2166 barrier->cat7.r = true;
2167 barrier->cat7.w = true;
2168 barrier->barrier_class = IR3_BARRIER_SHARED_W;
2169 barrier->barrier_conflict = IR3_BARRIER_SHARED_R |
2170 IR3_BARRIER_SHARED_W;
2171 break;
2172 case nir_intrinsic_group_memory_barrier:
2173 barrier = ir3_FENCE(b);
2174 barrier->cat7.g = true;
2175 barrier->cat7.l = true;
2176 barrier->cat7.r = true;
2177 barrier->cat7.w = true;
2178 barrier->barrier_class = IR3_BARRIER_SHARED_W |
2179 IR3_BARRIER_IMAGE_W |
2180 IR3_BARRIER_BUFFER_W;
2181 barrier->barrier_conflict =
2182 IR3_BARRIER_SHARED_R | IR3_BARRIER_SHARED_W |
2183 IR3_BARRIER_IMAGE_R | IR3_BARRIER_IMAGE_W |
2184 IR3_BARRIER_BUFFER_R | IR3_BARRIER_BUFFER_W;
2185 break;
2186 default:
2187 unreachable("boo");
2188 }
2189
2190 /* make sure barrier doesn't get DCE'd */
2191 array_insert(b, b->keeps, barrier);
2192 }
2193
2194 static void add_sysval_input_compmask(struct ir3_context *ctx,
2195 gl_system_value slot, unsigned compmask,
2196 struct ir3_instruction *instr)
2197 {
2198 struct ir3_shader_variant *so = ctx->so;
2199 unsigned r = regid(so->inputs_count, 0);
2200 unsigned n = so->inputs_count++;
2201
2202 so->inputs[n].sysval = true;
2203 so->inputs[n].slot = slot;
2204 so->inputs[n].compmask = compmask;
2205 so->inputs[n].regid = r;
2206 so->inputs[n].interpolate = INTERP_MODE_FLAT;
2207 so->total_in++;
2208
2209 ctx->ir->ninputs = MAX2(ctx->ir->ninputs, r + 1);
2210 ctx->ir->inputs[r] = instr;
2211 }
2212
2213 static void add_sysval_input(struct ir3_context *ctx, gl_system_value slot,
2214 struct ir3_instruction *instr)
2215 {
2216 add_sysval_input_compmask(ctx, slot, 0x1, instr);
2217 }
2218
2219 static void
2220 emit_intrinsic(struct ir3_context *ctx, nir_intrinsic_instr *intr)
2221 {
2222 const nir_intrinsic_info *info = &nir_intrinsic_infos[intr->intrinsic];
2223 struct ir3_instruction **dst;
2224 struct ir3_instruction * const *src;
2225 struct ir3_block *b = ctx->block;
2226 nir_const_value *const_offset;
2227 int idx, comp;
2228
2229 if (info->has_dest) {
2230 unsigned n = nir_intrinsic_dest_components(intr);
2231 dst = get_dst(ctx, &intr->dest, n);
2232 } else {
2233 dst = NULL;
2234 }
2235
2236 switch (intr->intrinsic) {
2237 case nir_intrinsic_load_uniform:
2238 idx = nir_intrinsic_base(intr);
2239 const_offset = nir_src_as_const_value(intr->src[0]);
2240 if (const_offset) {
2241 idx += const_offset->u32[0];
2242 for (int i = 0; i < intr->num_components; i++) {
2243 unsigned n = idx * 4 + i;
2244 dst[i] = create_uniform(ctx, n);
2245 }
2246 } else {
2247 src = get_src(ctx, &intr->src[0]);
2248 for (int i = 0; i < intr->num_components; i++) {
2249 int n = idx * 4 + i;
2250 dst[i] = create_uniform_indirect(ctx, n,
2251 get_addr(ctx, src[0], 4));
2252 }
2253 /* NOTE: if relative addressing is used, we set
2254 * constlen in the compiler (to worst-case value)
2255 * since we don't know in the assembler what the max
2256 * addr reg value can be:
2257 */
2258 ctx->so->constlen = ctx->s->num_uniforms;
2259 }
2260 break;
2261 case nir_intrinsic_load_ubo:
2262 emit_intrinsic_load_ubo(ctx, intr, dst);
2263 break;
2264 case nir_intrinsic_load_input:
2265 idx = nir_intrinsic_base(intr);
2266 comp = nir_intrinsic_component(intr);
2267 const_offset = nir_src_as_const_value(intr->src[0]);
2268 if (const_offset) {
2269 idx += const_offset->u32[0];
2270 for (int i = 0; i < intr->num_components; i++) {
2271 unsigned n = idx * 4 + i + comp;
2272 dst[i] = ctx->ir->inputs[n];
2273 }
2274 } else {
2275 src = get_src(ctx, &intr->src[0]);
2276 struct ir3_instruction *collect =
2277 create_collect(ctx, ctx->ir->inputs, ctx->ir->ninputs);
2278 struct ir3_instruction *addr = get_addr(ctx, src[0], 4);
2279 for (int i = 0; i < intr->num_components; i++) {
2280 unsigned n = idx * 4 + i + comp;
2281 dst[i] = create_indirect_load(ctx, ctx->ir->ninputs,
2282 n, addr, collect);
2283 }
2284 }
2285 break;
2286 case nir_intrinsic_load_ssbo:
2287 emit_intrinsic_load_ssbo(ctx, intr, dst);
2288 break;
2289 case nir_intrinsic_store_ssbo:
2290 emit_intrinsic_store_ssbo(ctx, intr);
2291 break;
2292 case nir_intrinsic_get_buffer_size:
2293 emit_intrinsic_ssbo_size(ctx, intr, dst);
2294 break;
2295 case nir_intrinsic_ssbo_atomic_add:
2296 case nir_intrinsic_ssbo_atomic_imin:
2297 case nir_intrinsic_ssbo_atomic_umin:
2298 case nir_intrinsic_ssbo_atomic_imax:
2299 case nir_intrinsic_ssbo_atomic_umax:
2300 case nir_intrinsic_ssbo_atomic_and:
2301 case nir_intrinsic_ssbo_atomic_or:
2302 case nir_intrinsic_ssbo_atomic_xor:
2303 case nir_intrinsic_ssbo_atomic_exchange:
2304 case nir_intrinsic_ssbo_atomic_comp_swap:
2305 dst[0] = emit_intrinsic_atomic_ssbo(ctx, intr);
2306 break;
2307 case nir_intrinsic_load_shared:
2308 emit_intrinsic_load_shared(ctx, intr, dst);
2309 break;
2310 case nir_intrinsic_store_shared:
2311 emit_intrinsic_store_shared(ctx, intr);
2312 break;
2313 case nir_intrinsic_shared_atomic_add:
2314 case nir_intrinsic_shared_atomic_imin:
2315 case nir_intrinsic_shared_atomic_umin:
2316 case nir_intrinsic_shared_atomic_imax:
2317 case nir_intrinsic_shared_atomic_umax:
2318 case nir_intrinsic_shared_atomic_and:
2319 case nir_intrinsic_shared_atomic_or:
2320 case nir_intrinsic_shared_atomic_xor:
2321 case nir_intrinsic_shared_atomic_exchange:
2322 case nir_intrinsic_shared_atomic_comp_swap:
2323 dst[0] = emit_intrinsic_atomic_shared(ctx, intr);
2324 break;
2325 case nir_intrinsic_image_deref_load:
2326 emit_intrinsic_load_image(ctx, intr, dst);
2327 break;
2328 case nir_intrinsic_image_deref_store:
2329 emit_intrinsic_store_image(ctx, intr);
2330 break;
2331 case nir_intrinsic_image_deref_size:
2332 emit_intrinsic_image_size(ctx, intr, dst);
2333 break;
2334 case nir_intrinsic_image_deref_atomic_add:
2335 case nir_intrinsic_image_deref_atomic_min:
2336 case nir_intrinsic_image_deref_atomic_max:
2337 case nir_intrinsic_image_deref_atomic_and:
2338 case nir_intrinsic_image_deref_atomic_or:
2339 case nir_intrinsic_image_deref_atomic_xor:
2340 case nir_intrinsic_image_deref_atomic_exchange:
2341 case nir_intrinsic_image_deref_atomic_comp_swap:
2342 dst[0] = emit_intrinsic_atomic_image(ctx, intr);
2343 break;
2344 case nir_intrinsic_barrier:
2345 case nir_intrinsic_memory_barrier:
2346 case nir_intrinsic_group_memory_barrier:
2347 case nir_intrinsic_memory_barrier_atomic_counter:
2348 case nir_intrinsic_memory_barrier_buffer:
2349 case nir_intrinsic_memory_barrier_image:
2350 case nir_intrinsic_memory_barrier_shared:
2351 emit_intrinsic_barrier(ctx, intr);
2352 /* note that blk ptr no longer valid, make that obvious: */
2353 b = NULL;
2354 break;
2355 case nir_intrinsic_store_output:
2356 idx = nir_intrinsic_base(intr);
2357 comp = nir_intrinsic_component(intr);
2358 const_offset = nir_src_as_const_value(intr->src[1]);
2359 compile_assert(ctx, const_offset != NULL);
2360 idx += const_offset->u32[0];
2361
2362 src = get_src(ctx, &intr->src[0]);
2363 for (int i = 0; i < intr->num_components; i++) {
2364 unsigned n = idx * 4 + i + comp;
2365 ctx->ir->outputs[n] = src[i];
2366 }
2367 break;
2368 case nir_intrinsic_load_base_vertex:
2369 case nir_intrinsic_load_first_vertex:
2370 if (!ctx->basevertex) {
2371 ctx->basevertex = create_driver_param(ctx, IR3_DP_VTXID_BASE);
2372 add_sysval_input(ctx, SYSTEM_VALUE_FIRST_VERTEX, ctx->basevertex);
2373 }
2374 dst[0] = ctx->basevertex;
2375 break;
2376 case nir_intrinsic_load_vertex_id_zero_base:
2377 case nir_intrinsic_load_vertex_id:
2378 if (!ctx->vertex_id) {
2379 gl_system_value sv = (intr->intrinsic == nir_intrinsic_load_vertex_id) ?
2380 SYSTEM_VALUE_VERTEX_ID : SYSTEM_VALUE_VERTEX_ID_ZERO_BASE;
2381 ctx->vertex_id = create_input(ctx, 0);
2382 add_sysval_input(ctx, sv, ctx->vertex_id);
2383 }
2384 dst[0] = ctx->vertex_id;
2385 break;
2386 case nir_intrinsic_load_instance_id:
2387 if (!ctx->instance_id) {
2388 ctx->instance_id = create_input(ctx, 0);
2389 add_sysval_input(ctx, SYSTEM_VALUE_INSTANCE_ID,
2390 ctx->instance_id);
2391 }
2392 dst[0] = ctx->instance_id;
2393 break;
2394 case nir_intrinsic_load_sample_id:
2395 case nir_intrinsic_load_sample_id_no_per_sample:
2396 if (!ctx->samp_id) {
2397 ctx->samp_id = create_input(ctx, 0);
2398 ctx->samp_id->regs[0]->flags |= IR3_REG_HALF;
2399 add_sysval_input(ctx, SYSTEM_VALUE_SAMPLE_ID,
2400 ctx->samp_id);
2401 }
2402 dst[0] = ir3_COV(b, ctx->samp_id, TYPE_U16, TYPE_U32);
2403 break;
2404 case nir_intrinsic_load_sample_mask_in:
2405 if (!ctx->samp_mask_in) {
2406 ctx->samp_mask_in = create_input(ctx, 0);
2407 add_sysval_input(ctx, SYSTEM_VALUE_SAMPLE_MASK_IN,
2408 ctx->samp_mask_in);
2409 }
2410 dst[0] = ctx->samp_mask_in;
2411 break;
2412 case nir_intrinsic_load_user_clip_plane:
2413 idx = nir_intrinsic_ucp_id(intr);
2414 for (int i = 0; i < intr->num_components; i++) {
2415 unsigned n = idx * 4 + i;
2416 dst[i] = create_driver_param(ctx, IR3_DP_UCP0_X + n);
2417 }
2418 break;
2419 case nir_intrinsic_load_front_face:
2420 if (!ctx->frag_face) {
2421 ctx->so->frag_face = true;
2422 ctx->frag_face = create_input(ctx, 0);
2423 add_sysval_input(ctx, SYSTEM_VALUE_FRONT_FACE, ctx->frag_face);
2424 ctx->frag_face->regs[0]->flags |= IR3_REG_HALF;
2425 }
2426 /* for fragface, we get -1 for back and 0 for front. However this is
2427 * the inverse of what nir expects (where ~0 is true).
2428 */
2429 dst[0] = ir3_COV(b, ctx->frag_face, TYPE_S16, TYPE_S32);
2430 dst[0] = ir3_NOT_B(b, dst[0], 0);
2431 break;
2432 case nir_intrinsic_load_local_invocation_id:
2433 if (!ctx->local_invocation_id) {
2434 ctx->local_invocation_id = create_input_compmask(ctx, 0, 0x7);
2435 add_sysval_input_compmask(ctx, SYSTEM_VALUE_LOCAL_INVOCATION_ID,
2436 0x7, ctx->local_invocation_id);
2437 }
2438 split_dest(b, dst, ctx->local_invocation_id, 0, 3);
2439 break;
2440 case nir_intrinsic_load_work_group_id:
2441 if (!ctx->work_group_id) {
2442 ctx->work_group_id = create_input_compmask(ctx, 0, 0x7);
2443 add_sysval_input_compmask(ctx, SYSTEM_VALUE_WORK_GROUP_ID,
2444 0x7, ctx->work_group_id);
2445 ctx->work_group_id->regs[0]->flags |= IR3_REG_HIGH;
2446 }
2447 split_dest(b, dst, ctx->work_group_id, 0, 3);
2448 break;
2449 case nir_intrinsic_load_num_work_groups:
2450 for (int i = 0; i < intr->num_components; i++) {
2451 dst[i] = create_driver_param(ctx, IR3_DP_NUM_WORK_GROUPS_X + i);
2452 }
2453 break;
2454 case nir_intrinsic_load_local_group_size:
2455 for (int i = 0; i < intr->num_components; i++) {
2456 dst[i] = create_driver_param(ctx, IR3_DP_LOCAL_GROUP_SIZE_X + i);
2457 }
2458 break;
2459 case nir_intrinsic_discard_if:
2460 case nir_intrinsic_discard: {
2461 struct ir3_instruction *cond, *kill;
2462
2463 if (intr->intrinsic == nir_intrinsic_discard_if) {
2464 /* conditional discard: */
2465 src = get_src(ctx, &intr->src[0]);
2466 cond = ir3_b2n(b, src[0]);
2467 } else {
2468 /* unconditional discard: */
2469 cond = create_immed(b, 1);
2470 }
2471
2472 /* NOTE: only cmps.*.* can write p0.x: */
2473 cond = ir3_CMPS_S(b, cond, 0, create_immed(b, 0), 0);
2474 cond->cat2.condition = IR3_COND_NE;
2475
2476 /* condition always goes in predicate register: */
2477 cond->regs[0]->num = regid(REG_P0, 0);
2478
2479 kill = ir3_KILL(b, cond, 0);
2480 array_insert(ctx->ir, ctx->ir->predicates, kill);
2481
2482 array_insert(b, b->keeps, kill);
2483 ctx->so->has_kill = true;
2484
2485 break;
2486 }
2487 default:
2488 compile_error(ctx, "Unhandled intrinsic type: %s\n",
2489 nir_intrinsic_infos[intr->intrinsic].name);
2490 break;
2491 }
2492
2493 if (info->has_dest)
2494 put_dst(ctx, &intr->dest);
2495 }
2496
2497 static void
2498 emit_load_const(struct ir3_context *ctx, nir_load_const_instr *instr)
2499 {
2500 struct ir3_instruction **dst = get_dst_ssa(ctx, &instr->def,
2501 instr->def.num_components);
2502 type_t type = (instr->def.bit_size < 32) ? TYPE_U16 : TYPE_U32;
2503
2504 for (int i = 0; i < instr->def.num_components; i++)
2505 dst[i] = create_immed_typed(ctx->block, instr->value.u32[i], type);
2506 }
2507
2508 static void
2509 emit_undef(struct ir3_context *ctx, nir_ssa_undef_instr *undef)
2510 {
2511 struct ir3_instruction **dst = get_dst_ssa(ctx, &undef->def,
2512 undef->def.num_components);
2513 type_t type = (undef->def.bit_size < 32) ? TYPE_U16 : TYPE_U32;
2514
2515 /* backend doesn't want undefined instructions, so just plug
2516 * in 0.0..
2517 */
2518 for (int i = 0; i < undef->def.num_components; i++)
2519 dst[i] = create_immed_typed(ctx->block, fui(0.0), type);
2520 }
2521
2522 /*
2523 * texture fetch/sample instructions:
2524 */
2525
2526 static void
2527 tex_info(nir_tex_instr *tex, unsigned *flagsp, unsigned *coordsp)
2528 {
2529 unsigned coords, flags = 0;
2530
2531 /* note: would use tex->coord_components.. except txs.. also,
2532 * since array index goes after shadow ref, we don't want to
2533 * count it:
2534 */
2535 switch (tex->sampler_dim) {
2536 case GLSL_SAMPLER_DIM_1D:
2537 case GLSL_SAMPLER_DIM_BUF:
2538 coords = 1;
2539 break;
2540 case GLSL_SAMPLER_DIM_2D:
2541 case GLSL_SAMPLER_DIM_RECT:
2542 case GLSL_SAMPLER_DIM_EXTERNAL:
2543 case GLSL_SAMPLER_DIM_MS:
2544 coords = 2;
2545 break;
2546 case GLSL_SAMPLER_DIM_3D:
2547 case GLSL_SAMPLER_DIM_CUBE:
2548 coords = 3;
2549 flags |= IR3_INSTR_3D;
2550 break;
2551 default:
2552 unreachable("bad sampler_dim");
2553 }
2554
2555 if (tex->is_shadow && tex->op != nir_texop_lod)
2556 flags |= IR3_INSTR_S;
2557
2558 if (tex->is_array && tex->op != nir_texop_lod)
2559 flags |= IR3_INSTR_A;
2560
2561 *flagsp = flags;
2562 *coordsp = coords;
2563 }
2564
2565 static void
2566 emit_tex(struct ir3_context *ctx, nir_tex_instr *tex)
2567 {
2568 struct ir3_block *b = ctx->block;
2569 struct ir3_instruction **dst, *sam, *src0[12], *src1[4];
2570 struct ir3_instruction * const *coord, * const *off, * const *ddx, * const *ddy;
2571 struct ir3_instruction *lod, *compare, *proj, *sample_index;
2572 bool has_bias = false, has_lod = false, has_proj = false, has_off = false;
2573 unsigned i, coords, flags;
2574 unsigned nsrc0 = 0, nsrc1 = 0;
2575 type_t type;
2576 opc_t opc = 0;
2577
2578 coord = off = ddx = ddy = NULL;
2579 lod = proj = compare = sample_index = NULL;
2580
2581 /* TODO: might just be one component for gathers? */
2582 dst = get_dst(ctx, &tex->dest, 4);
2583
2584 for (unsigned i = 0; i < tex->num_srcs; i++) {
2585 switch (tex->src[i].src_type) {
2586 case nir_tex_src_coord:
2587 coord = get_src(ctx, &tex->src[i].src);
2588 break;
2589 case nir_tex_src_bias:
2590 lod = get_src(ctx, &tex->src[i].src)[0];
2591 has_bias = true;
2592 break;
2593 case nir_tex_src_lod:
2594 lod = get_src(ctx, &tex->src[i].src)[0];
2595 has_lod = true;
2596 break;
2597 case nir_tex_src_comparator: /* shadow comparator */
2598 compare = get_src(ctx, &tex->src[i].src)[0];
2599 break;
2600 case nir_tex_src_projector:
2601 proj = get_src(ctx, &tex->src[i].src)[0];
2602 has_proj = true;
2603 break;
2604 case nir_tex_src_offset:
2605 off = get_src(ctx, &tex->src[i].src);
2606 has_off = true;
2607 break;
2608 case nir_tex_src_ddx:
2609 ddx = get_src(ctx, &tex->src[i].src);
2610 break;
2611 case nir_tex_src_ddy:
2612 ddy = get_src(ctx, &tex->src[i].src);
2613 break;
2614 case nir_tex_src_ms_index:
2615 sample_index = get_src(ctx, &tex->src[i].src)[0];
2616 break;
2617 default:
2618 compile_error(ctx, "Unhandled NIR tex src type: %d\n",
2619 tex->src[i].src_type);
2620 return;
2621 }
2622 }
2623
2624 switch (tex->op) {
2625 case nir_texop_tex: opc = has_lod ? OPC_SAML : OPC_SAM; break;
2626 case nir_texop_txb: opc = OPC_SAMB; break;
2627 case nir_texop_txl: opc = OPC_SAML; break;
2628 case nir_texop_txd: opc = OPC_SAMGQ; break;
2629 case nir_texop_txf: opc = OPC_ISAML; break;
2630 case nir_texop_lod: opc = OPC_GETLOD; break;
2631 case nir_texop_tg4:
2632 /* NOTE: a4xx might need to emulate gather w/ txf (this is
2633 * what blob does, seems gather is broken?), and a3xx did
2634 * not support it (but probably could also emulate).
2635 */
2636 switch (tex->component) {
2637 case 0: opc = OPC_GATHER4R; break;
2638 case 1: opc = OPC_GATHER4G; break;
2639 case 2: opc = OPC_GATHER4B; break;
2640 case 3: opc = OPC_GATHER4A; break;
2641 }
2642 break;
2643 case nir_texop_txf_ms: opc = OPC_ISAMM; break;
2644 case nir_texop_txs:
2645 case nir_texop_query_levels:
2646 case nir_texop_texture_samples:
2647 case nir_texop_samples_identical:
2648 case nir_texop_txf_ms_mcs:
2649 compile_error(ctx, "Unhandled NIR tex type: %d\n", tex->op);
2650 return;
2651 }
2652
2653 tex_info(tex, &flags, &coords);
2654
2655 /*
2656 * lay out the first argument in the proper order:
2657 * - actual coordinates first
2658 * - shadow reference
2659 * - array index
2660 * - projection w
2661 * - starting at offset 4, dpdx.xy, dpdy.xy
2662 *
2663 * bias/lod go into the second arg
2664 */
2665
2666 /* insert tex coords: */
2667 for (i = 0; i < coords; i++)
2668 src0[i] = coord[i];
2669
2670 nsrc0 = i;
2671
2672 /* NOTE a3xx (and possibly a4xx?) might be different, using isaml
2673 * with scaled x coord according to requested sample:
2674 */
2675 if (tex->op == nir_texop_txf_ms) {
2676 if (ctx->compiler->txf_ms_with_isaml) {
2677 /* the samples are laid out in x dimension as
2678 * 0 1 2 3
2679 * x_ms = (x << ms) + sample_index;
2680 */
2681 struct ir3_instruction *ms;
2682 ms = create_immed(b, (ctx->samples >> (2 * tex->texture_index)) & 3);
2683
2684 src0[0] = ir3_SHL_B(b, src0[0], 0, ms, 0);
2685 src0[0] = ir3_ADD_U(b, src0[0], 0, sample_index, 0);
2686
2687 opc = OPC_ISAML;
2688 } else {
2689 src0[nsrc0++] = sample_index;
2690 }
2691 }
2692
2693 /* scale up integer coords for TXF based on the LOD */
2694 if (ctx->compiler->unminify_coords && (opc == OPC_ISAML)) {
2695 assert(has_lod);
2696 for (i = 0; i < coords; i++)
2697 src0[i] = ir3_SHL_B(b, src0[i], 0, lod, 0);
2698 }
2699
2700 if (coords == 1) {
2701 /* hw doesn't do 1d, so we treat it as 2d with
2702 * height of 1, and patch up the y coord.
2703 * TODO: y coord should be (int)0 in some cases..
2704 */
2705 src0[nsrc0++] = create_immed(b, fui(0.5));
2706 }
2707
2708 if (tex->is_shadow && tex->op != nir_texop_lod)
2709 src0[nsrc0++] = compare;
2710
2711 if (tex->is_array && tex->op != nir_texop_lod) {
2712 struct ir3_instruction *idx = coord[coords];
2713
2714 /* the array coord for cube arrays needs 0.5 added to it */
2715 if (ctx->compiler->array_index_add_half && (opc != OPC_ISAML))
2716 idx = ir3_ADD_F(b, idx, 0, create_immed(b, fui(0.5)), 0);
2717
2718 src0[nsrc0++] = idx;
2719 }
2720
2721 if (has_proj) {
2722 src0[nsrc0++] = proj;
2723 flags |= IR3_INSTR_P;
2724 }
2725
2726 /* pad to 4, then ddx/ddy: */
2727 if (tex->op == nir_texop_txd) {
2728 while (nsrc0 < 4)
2729 src0[nsrc0++] = create_immed(b, fui(0.0));
2730 for (i = 0; i < coords; i++)
2731 src0[nsrc0++] = ddx[i];
2732 if (coords < 2)
2733 src0[nsrc0++] = create_immed(b, fui(0.0));
2734 for (i = 0; i < coords; i++)
2735 src0[nsrc0++] = ddy[i];
2736 if (coords < 2)
2737 src0[nsrc0++] = create_immed(b, fui(0.0));
2738 }
2739
2740 /*
2741 * second argument (if applicable):
2742 * - offsets
2743 * - lod
2744 * - bias
2745 */
2746 if (has_off | has_lod | has_bias) {
2747 if (has_off) {
2748 unsigned off_coords = coords;
2749 if (tex->sampler_dim == GLSL_SAMPLER_DIM_CUBE)
2750 off_coords--;
2751 for (i = 0; i < off_coords; i++)
2752 src1[nsrc1++] = off[i];
2753 if (off_coords < 2)
2754 src1[nsrc1++] = create_immed(b, fui(0.0));
2755 flags |= IR3_INSTR_O;
2756 }
2757
2758 if (has_lod | has_bias)
2759 src1[nsrc1++] = lod;
2760 }
2761
2762 switch (tex->dest_type) {
2763 case nir_type_invalid:
2764 case nir_type_float:
2765 type = TYPE_F32;
2766 break;
2767 case nir_type_int:
2768 type = TYPE_S32;
2769 break;
2770 case nir_type_uint:
2771 case nir_type_bool:
2772 type = TYPE_U32;
2773 break;
2774 default:
2775 unreachable("bad dest_type");
2776 }
2777
2778 if (opc == OPC_GETLOD)
2779 type = TYPE_U32;
2780
2781 unsigned tex_idx = tex->texture_index;
2782
2783 ctx->max_texture_index = MAX2(ctx->max_texture_index, tex_idx);
2784
2785 struct ir3_instruction *col0 = create_collect(ctx, src0, nsrc0);
2786 struct ir3_instruction *col1 = create_collect(ctx, src1, nsrc1);
2787
2788 sam = ir3_SAM(b, opc, type, TGSI_WRITEMASK_XYZW, flags,
2789 tex_idx, tex_idx, col0, col1);
2790
2791 if ((ctx->astc_srgb & (1 << tex_idx)) && !nir_tex_instr_is_query(tex)) {
2792 /* only need first 3 components: */
2793 sam->regs[0]->wrmask = 0x7;
2794 split_dest(b, dst, sam, 0, 3);
2795
2796 /* we need to sample the alpha separately with a non-ASTC
2797 * texture state:
2798 */
2799 sam = ir3_SAM(b, opc, type, TGSI_WRITEMASK_W, flags,
2800 tex_idx, tex_idx, col0, col1);
2801
2802 array_insert(ctx->ir, ctx->ir->astc_srgb, sam);
2803
2804 /* fixup .w component: */
2805 split_dest(b, &dst[3], sam, 3, 1);
2806 } else {
2807 /* normal (non-workaround) case: */
2808 split_dest(b, dst, sam, 0, 4);
2809 }
2810
2811 /* GETLOD returns results in 4.8 fixed point */
2812 if (opc == OPC_GETLOD) {
2813 struct ir3_instruction *factor = create_immed(b, fui(1.0 / 256));
2814
2815 compile_assert(ctx, tex->dest_type == nir_type_float);
2816 for (i = 0; i < 2; i++) {
2817 dst[i] = ir3_MUL_F(b, ir3_COV(b, dst[i], TYPE_U32, TYPE_F32), 0,
2818 factor, 0);
2819 }
2820 }
2821
2822 put_dst(ctx, &tex->dest);
2823 }
2824
2825 static void
2826 emit_tex_query_levels(struct ir3_context *ctx, nir_tex_instr *tex)
2827 {
2828 struct ir3_block *b = ctx->block;
2829 struct ir3_instruction **dst, *sam;
2830
2831 dst = get_dst(ctx, &tex->dest, 1);
2832
2833 sam = ir3_SAM(b, OPC_GETINFO, TYPE_U32, TGSI_WRITEMASK_Z, 0,
2834 tex->texture_index, tex->texture_index, NULL, NULL);
2835
2836 /* even though there is only one component, since it ends
2837 * up in .z rather than .x, we need a split_dest()
2838 */
2839 split_dest(b, dst, sam, 0, 3);
2840
2841 /* The # of levels comes from getinfo.z. We need to add 1 to it, since
2842 * the value in TEX_CONST_0 is zero-based.
2843 */
2844 if (ctx->compiler->levels_add_one)
2845 dst[0] = ir3_ADD_U(b, dst[0], 0, create_immed(b, 1), 0);
2846
2847 put_dst(ctx, &tex->dest);
2848 }
2849
2850 static void
2851 emit_tex_txs(struct ir3_context *ctx, nir_tex_instr *tex)
2852 {
2853 struct ir3_block *b = ctx->block;
2854 struct ir3_instruction **dst, *sam;
2855 struct ir3_instruction *lod;
2856 unsigned flags, coords;
2857
2858 tex_info(tex, &flags, &coords);
2859
2860 /* Actually we want the number of dimensions, not coordinates. This
2861 * distinction only matters for cubes.
2862 */
2863 if (tex->sampler_dim == GLSL_SAMPLER_DIM_CUBE)
2864 coords = 2;
2865
2866 dst = get_dst(ctx, &tex->dest, 4);
2867
2868 compile_assert(ctx, tex->num_srcs == 1);
2869 compile_assert(ctx, tex->src[0].src_type == nir_tex_src_lod);
2870
2871 lod = get_src(ctx, &tex->src[0].src)[0];
2872
2873 sam = ir3_SAM(b, OPC_GETSIZE, TYPE_U32, TGSI_WRITEMASK_XYZW, flags,
2874 tex->texture_index, tex->texture_index, lod, NULL);
2875
2876 split_dest(b, dst, sam, 0, 4);
2877
2878 /* Array size actually ends up in .w rather than .z. This doesn't
2879 * matter for miplevel 0, but for higher mips the value in z is
2880 * minified whereas w stays. Also, the value in TEX_CONST_3_DEPTH is
2881 * returned, which means that we have to add 1 to it for arrays.
2882 */
2883 if (tex->is_array) {
2884 if (ctx->compiler->levels_add_one) {
2885 dst[coords] = ir3_ADD_U(b, dst[3], 0, create_immed(b, 1), 0);
2886 } else {
2887 dst[coords] = ir3_MOV(b, dst[3], TYPE_U32);
2888 }
2889 }
2890
2891 put_dst(ctx, &tex->dest);
2892 }
2893
2894 static void
2895 emit_jump(struct ir3_context *ctx, nir_jump_instr *jump)
2896 {
2897 switch (jump->type) {
2898 case nir_jump_break:
2899 case nir_jump_continue:
2900 case nir_jump_return:
2901 /* I *think* we can simply just ignore this, and use the
2902 * successor block link to figure out where we need to
2903 * jump to for break/continue
2904 */
2905 break;
2906 default:
2907 compile_error(ctx, "Unhandled NIR jump type: %d\n", jump->type);
2908 break;
2909 }
2910 }
2911
2912 static void
2913 emit_instr(struct ir3_context *ctx, nir_instr *instr)
2914 {
2915 switch (instr->type) {
2916 case nir_instr_type_alu:
2917 emit_alu(ctx, nir_instr_as_alu(instr));
2918 break;
2919 case nir_instr_type_deref:
2920 /* ignored, handled as part of the intrinsic they are src to */
2921 break;
2922 case nir_instr_type_intrinsic:
2923 emit_intrinsic(ctx, nir_instr_as_intrinsic(instr));
2924 break;
2925 case nir_instr_type_load_const:
2926 emit_load_const(ctx, nir_instr_as_load_const(instr));
2927 break;
2928 case nir_instr_type_ssa_undef:
2929 emit_undef(ctx, nir_instr_as_ssa_undef(instr));
2930 break;
2931 case nir_instr_type_tex: {
2932 nir_tex_instr *tex = nir_instr_as_tex(instr);
2933 /* couple tex instructions get special-cased:
2934 */
2935 switch (tex->op) {
2936 case nir_texop_txs:
2937 emit_tex_txs(ctx, tex);
2938 break;
2939 case nir_texop_query_levels:
2940 emit_tex_query_levels(ctx, tex);
2941 break;
2942 default:
2943 emit_tex(ctx, tex);
2944 break;
2945 }
2946 break;
2947 }
2948 case nir_instr_type_jump:
2949 emit_jump(ctx, nir_instr_as_jump(instr));
2950 break;
2951 case nir_instr_type_phi:
2952 /* we have converted phi webs to regs in NIR by now */
2953 compile_error(ctx, "Unexpected NIR instruction type: %d\n", instr->type);
2954 break;
2955 case nir_instr_type_call:
2956 case nir_instr_type_parallel_copy:
2957 compile_error(ctx, "Unhandled NIR instruction type: %d\n", instr->type);
2958 break;
2959 }
2960 }
2961
2962 static struct ir3_block *
2963 get_block(struct ir3_context *ctx, const nir_block *nblock)
2964 {
2965 struct ir3_block *block;
2966 struct hash_entry *hentry;
2967 struct set_entry *sentry;
2968 unsigned i;
2969
2970 hentry = _mesa_hash_table_search(ctx->block_ht, nblock);
2971 if (hentry)
2972 return hentry->data;
2973
2974 block = ir3_block_create(ctx->ir);
2975 block->nblock = nblock;
2976 _mesa_hash_table_insert(ctx->block_ht, nblock, block);
2977
2978 block->predecessors_count = nblock->predecessors->entries;
2979 block->predecessors = ralloc_array_size(block,
2980 sizeof(block->predecessors[0]), block->predecessors_count);
2981 i = 0;
2982 set_foreach(nblock->predecessors, sentry) {
2983 block->predecessors[i++] = get_block(ctx, sentry->key);
2984 }
2985
2986 return block;
2987 }
2988
2989 static void
2990 emit_block(struct ir3_context *ctx, nir_block *nblock)
2991 {
2992 struct ir3_block *block = get_block(ctx, nblock);
2993
2994 for (int i = 0; i < ARRAY_SIZE(block->successors); i++) {
2995 if (nblock->successors[i]) {
2996 block->successors[i] =
2997 get_block(ctx, nblock->successors[i]);
2998 }
2999 }
3000
3001 ctx->block = block;
3002 list_addtail(&block->node, &ctx->ir->block_list);
3003
3004 /* re-emit addr register in each block if needed: */
3005 for (int i = 0; i < ARRAY_SIZE(ctx->addr_ht); i++) {
3006 _mesa_hash_table_destroy(ctx->addr_ht[i], NULL);
3007 ctx->addr_ht[i] = NULL;
3008 }
3009
3010 nir_foreach_instr(instr, nblock) {
3011 ctx->cur_instr = instr;
3012 emit_instr(ctx, instr);
3013 ctx->cur_instr = NULL;
3014 if (ctx->error)
3015 return;
3016 }
3017 }
3018
3019 static void emit_cf_list(struct ir3_context *ctx, struct exec_list *list);
3020
3021 static void
3022 emit_if(struct ir3_context *ctx, nir_if *nif)
3023 {
3024 struct ir3_instruction *condition = get_src(ctx, &nif->condition)[0];
3025
3026 ctx->block->condition =
3027 get_predicate(ctx, ir3_b2n(condition->block, condition));
3028
3029 emit_cf_list(ctx, &nif->then_list);
3030 emit_cf_list(ctx, &nif->else_list);
3031 }
3032
3033 static void
3034 emit_loop(struct ir3_context *ctx, nir_loop *nloop)
3035 {
3036 emit_cf_list(ctx, &nloop->body);
3037 }
3038
3039 static void
3040 emit_cf_list(struct ir3_context *ctx, struct exec_list *list)
3041 {
3042 foreach_list_typed(nir_cf_node, node, node, list) {
3043 switch (node->type) {
3044 case nir_cf_node_block:
3045 emit_block(ctx, nir_cf_node_as_block(node));
3046 break;
3047 case nir_cf_node_if:
3048 emit_if(ctx, nir_cf_node_as_if(node));
3049 break;
3050 case nir_cf_node_loop:
3051 emit_loop(ctx, nir_cf_node_as_loop(node));
3052 break;
3053 case nir_cf_node_function:
3054 compile_error(ctx, "TODO\n");
3055 break;
3056 }
3057 }
3058 }
3059
3060 /* emit stream-out code. At this point, the current block is the original
3061 * (nir) end block, and nir ensures that all flow control paths terminate
3062 * into the end block. We re-purpose the original end block to generate
3063 * the 'if (vtxcnt < maxvtxcnt)' condition, then append the conditional
3064 * block holding stream-out write instructions, followed by the new end
3065 * block:
3066 *
3067 * blockOrigEnd {
3068 * p0.x = (vtxcnt < maxvtxcnt)
3069 * // succs: blockStreamOut, blockNewEnd
3070 * }
3071 * blockStreamOut {
3072 * ... stream-out instructions ...
3073 * // succs: blockNewEnd
3074 * }
3075 * blockNewEnd {
3076 * }
3077 */
3078 static void
3079 emit_stream_out(struct ir3_context *ctx)
3080 {
3081 struct ir3_shader_variant *v = ctx->so;
3082 struct ir3 *ir = ctx->ir;
3083 struct pipe_stream_output_info *strmout =
3084 &ctx->so->shader->stream_output;
3085 struct ir3_block *orig_end_block, *stream_out_block, *new_end_block;
3086 struct ir3_instruction *vtxcnt, *maxvtxcnt, *cond;
3087 struct ir3_instruction *bases[PIPE_MAX_SO_BUFFERS];
3088
3089 /* create vtxcnt input in input block at top of shader,
3090 * so that it is seen as live over the entire duration
3091 * of the shader:
3092 */
3093 vtxcnt = create_input(ctx, 0);
3094 add_sysval_input(ctx, SYSTEM_VALUE_VERTEX_CNT, vtxcnt);
3095
3096 maxvtxcnt = create_driver_param(ctx, IR3_DP_VTXCNT_MAX);
3097
3098 /* at this point, we are at the original 'end' block,
3099 * re-purpose this block to stream-out condition, then
3100 * append stream-out block and new-end block
3101 */
3102 orig_end_block = ctx->block;
3103
3104 // TODO these blocks need to update predecessors..
3105 // maybe w/ store_global intrinsic, we could do this
3106 // stuff in nir->nir pass
3107
3108 stream_out_block = ir3_block_create(ir);
3109 list_addtail(&stream_out_block->node, &ir->block_list);
3110
3111 new_end_block = ir3_block_create(ir);
3112 list_addtail(&new_end_block->node, &ir->block_list);
3113
3114 orig_end_block->successors[0] = stream_out_block;
3115 orig_end_block->successors[1] = new_end_block;
3116 stream_out_block->successors[0] = new_end_block;
3117
3118 /* setup 'if (vtxcnt < maxvtxcnt)' condition: */
3119 cond = ir3_CMPS_S(ctx->block, vtxcnt, 0, maxvtxcnt, 0);
3120 cond->regs[0]->num = regid(REG_P0, 0);
3121 cond->cat2.condition = IR3_COND_LT;
3122
3123 /* condition goes on previous block to the conditional,
3124 * since it is used to pick which of the two successor
3125 * paths to take:
3126 */
3127 orig_end_block->condition = cond;
3128
3129 /* switch to stream_out_block to generate the stream-out
3130 * instructions:
3131 */
3132 ctx->block = stream_out_block;
3133
3134 /* Calculate base addresses based on vtxcnt. Instructions
3135 * generated for bases not used in following loop will be
3136 * stripped out in the backend.
3137 */
3138 for (unsigned i = 0; i < PIPE_MAX_SO_BUFFERS; i++) {
3139 unsigned stride = strmout->stride[i];
3140 struct ir3_instruction *base, *off;
3141
3142 base = create_uniform(ctx, regid(v->constbase.tfbo, i));
3143
3144 /* 24-bit should be enough: */
3145 off = ir3_MUL_U(ctx->block, vtxcnt, 0,
3146 create_immed(ctx->block, stride * 4), 0);
3147
3148 bases[i] = ir3_ADD_S(ctx->block, off, 0, base, 0);
3149 }
3150
3151 /* Generate the per-output store instructions: */
3152 for (unsigned i = 0; i < strmout->num_outputs; i++) {
3153 for (unsigned j = 0; j < strmout->output[i].num_components; j++) {
3154 unsigned c = j + strmout->output[i].start_component;
3155 struct ir3_instruction *base, *out, *stg;
3156
3157 base = bases[strmout->output[i].output_buffer];
3158 out = ctx->ir->outputs[regid(strmout->output[i].register_index, c)];
3159
3160 stg = ir3_STG(ctx->block, base, 0, out, 0,
3161 create_immed(ctx->block, 1), 0);
3162 stg->cat6.type = TYPE_U32;
3163 stg->cat6.dst_offset = (strmout->output[i].dst_offset + j) * 4;
3164
3165 array_insert(ctx->block, ctx->block->keeps, stg);
3166 }
3167 }
3168
3169 /* and finally switch to the new_end_block: */
3170 ctx->block = new_end_block;
3171 }
3172
3173 static void
3174 emit_function(struct ir3_context *ctx, nir_function_impl *impl)
3175 {
3176 nir_metadata_require(impl, nir_metadata_block_index);
3177
3178 emit_cf_list(ctx, &impl->body);
3179 emit_block(ctx, impl->end_block);
3180
3181 /* at this point, we should have a single empty block,
3182 * into which we emit the 'end' instruction.
3183 */
3184 compile_assert(ctx, list_empty(&ctx->block->instr_list));
3185
3186 /* If stream-out (aka transform-feedback) enabled, emit the
3187 * stream-out instructions, followed by a new empty block (into
3188 * which the 'end' instruction lands).
3189 *
3190 * NOTE: it is done in this order, rather than inserting before
3191 * we emit end_block, because NIR guarantees that all blocks
3192 * flow into end_block, and that end_block has no successors.
3193 * So by re-purposing end_block as the first block of stream-
3194 * out, we guarantee that all exit paths flow into the stream-
3195 * out instructions.
3196 */
3197 if ((ctx->compiler->gpu_id < 500) &&
3198 (ctx->so->shader->stream_output.num_outputs > 0) &&
3199 !ctx->so->binning_pass) {
3200 debug_assert(ctx->so->type == SHADER_VERTEX);
3201 emit_stream_out(ctx);
3202 }
3203
3204 ir3_END(ctx->block);
3205 }
3206
3207 static struct ir3_instruction *
3208 create_frag_coord(struct ir3_context *ctx, unsigned comp)
3209 {
3210 struct ir3_block *block = ctx->block;
3211 struct ir3_instruction *instr;
3212
3213 if (!ctx->frag_coord) {
3214 ctx->frag_coord = create_input_compmask(ctx, 0, 0xf);
3215 /* defer add_sysval_input() until after all inputs created */
3216 }
3217
3218 split_dest(block, &instr, ctx->frag_coord, comp, 1);
3219
3220 switch (comp) {
3221 case 0: /* .x */
3222 case 1: /* .y */
3223 /* for frag_coord, we get unsigned values.. we need
3224 * to subtract (integer) 8 and divide by 16 (right-
3225 * shift by 4) then convert to float:
3226 *
3227 * sub.s tmp, src, 8
3228 * shr.b tmp, tmp, 4
3229 * mov.u32f32 dst, tmp
3230 *
3231 */
3232 instr = ir3_SUB_S(block, instr, 0,
3233 create_immed(block, 8), 0);
3234 instr = ir3_SHR_B(block, instr, 0,
3235 create_immed(block, 4), 0);
3236 instr = ir3_COV(block, instr, TYPE_U32, TYPE_F32);
3237
3238 return instr;
3239 case 2: /* .z */
3240 case 3: /* .w */
3241 default:
3242 /* seems that we can use these as-is: */
3243 return instr;
3244 }
3245 }
3246
3247 static void
3248 setup_input(struct ir3_context *ctx, nir_variable *in)
3249 {
3250 struct ir3_shader_variant *so = ctx->so;
3251 unsigned array_len = MAX2(glsl_get_length(in->type), 1);
3252 unsigned ncomp = glsl_get_components(in->type);
3253 unsigned n = in->data.driver_location;
3254 unsigned slot = in->data.location;
3255
3256 DBG("; in: slot=%u, len=%ux%u, drvloc=%u",
3257 slot, array_len, ncomp, n);
3258
3259 /* let's pretend things other than vec4 don't exist: */
3260 ncomp = MAX2(ncomp, 4);
3261
3262 /* skip unread inputs, we could end up with (for example), unsplit
3263 * matrix/etc inputs in the case they are not read, so just silently
3264 * skip these.
3265 */
3266 if (ncomp > 4)
3267 return;
3268
3269 compile_assert(ctx, ncomp == 4);
3270
3271 so->inputs[n].slot = slot;
3272 so->inputs[n].compmask = (1 << ncomp) - 1;
3273 so->inputs_count = MAX2(so->inputs_count, n + 1);
3274 so->inputs[n].interpolate = in->data.interpolation;
3275
3276 if (ctx->so->type == SHADER_FRAGMENT) {
3277 for (int i = 0; i < ncomp; i++) {
3278 struct ir3_instruction *instr = NULL;
3279 unsigned idx = (n * 4) + i;
3280
3281 if (slot == VARYING_SLOT_POS) {
3282 so->inputs[n].bary = false;
3283 so->frag_coord = true;
3284 instr = create_frag_coord(ctx, i);
3285 } else if (slot == VARYING_SLOT_PNTC) {
3286 /* see for example st_nir_fixup_varying_slots().. this is
3287 * maybe a bit mesa/st specific. But we need things to line
3288 * up for this in fdN_program:
3289 * unsigned texmask = 1 << (slot - VARYING_SLOT_VAR0);
3290 * if (emit->sprite_coord_enable & texmask) {
3291 * ...
3292 * }
3293 */
3294 so->inputs[n].slot = VARYING_SLOT_VAR8;
3295 so->inputs[n].bary = true;
3296 instr = create_frag_input(ctx, false);
3297 } else {
3298 bool use_ldlv = false;
3299
3300 /* detect the special case for front/back colors where
3301 * we need to do flat vs smooth shading depending on
3302 * rast state:
3303 */
3304 if (in->data.interpolation == INTERP_MODE_NONE) {
3305 switch (slot) {
3306 case VARYING_SLOT_COL0:
3307 case VARYING_SLOT_COL1:
3308 case VARYING_SLOT_BFC0:
3309 case VARYING_SLOT_BFC1:
3310 so->inputs[n].rasterflat = true;
3311 break;
3312 default:
3313 break;
3314 }
3315 }
3316
3317 if (ctx->compiler->flat_bypass) {
3318 if ((so->inputs[n].interpolate == INTERP_MODE_FLAT) ||
3319 (so->inputs[n].rasterflat && ctx->so->key.rasterflat))
3320 use_ldlv = true;
3321 }
3322
3323 so->inputs[n].bary = true;
3324
3325 instr = create_frag_input(ctx, use_ldlv);
3326 }
3327
3328 compile_assert(ctx, idx < ctx->ir->ninputs);
3329
3330 ctx->ir->inputs[idx] = instr;
3331 }
3332 } else if (ctx->so->type == SHADER_VERTEX) {
3333 for (int i = 0; i < ncomp; i++) {
3334 unsigned idx = (n * 4) + i;
3335 compile_assert(ctx, idx < ctx->ir->ninputs);
3336 ctx->ir->inputs[idx] = create_input(ctx, idx);
3337 }
3338 } else {
3339 compile_error(ctx, "unknown shader type: %d\n", ctx->so->type);
3340 }
3341
3342 if (so->inputs[n].bary || (ctx->so->type == SHADER_VERTEX)) {
3343 so->total_in += ncomp;
3344 }
3345 }
3346
3347 static void
3348 setup_output(struct ir3_context *ctx, nir_variable *out)
3349 {
3350 struct ir3_shader_variant *so = ctx->so;
3351 unsigned array_len = MAX2(glsl_get_length(out->type), 1);
3352 unsigned ncomp = glsl_get_components(out->type);
3353 unsigned n = out->data.driver_location;
3354 unsigned slot = out->data.location;
3355 unsigned comp = 0;
3356
3357 DBG("; out: slot=%u, len=%ux%u, drvloc=%u",
3358 slot, array_len, ncomp, n);
3359
3360 /* let's pretend things other than vec4 don't exist: */
3361 ncomp = MAX2(ncomp, 4);
3362 compile_assert(ctx, ncomp == 4);
3363
3364 if (ctx->so->type == SHADER_FRAGMENT) {
3365 switch (slot) {
3366 case FRAG_RESULT_DEPTH:
3367 comp = 2; /* tgsi will write to .z component */
3368 so->writes_pos = true;
3369 break;
3370 case FRAG_RESULT_COLOR:
3371 so->color0_mrt = 1;
3372 break;
3373 default:
3374 if (slot >= FRAG_RESULT_DATA0)
3375 break;
3376 compile_error(ctx, "unknown FS output name: %s\n",
3377 gl_frag_result_name(slot));
3378 }
3379 } else if (ctx->so->type == SHADER_VERTEX) {
3380 switch (slot) {
3381 case VARYING_SLOT_POS:
3382 so->writes_pos = true;
3383 break;
3384 case VARYING_SLOT_PSIZ:
3385 so->writes_psize = true;
3386 break;
3387 case VARYING_SLOT_COL0:
3388 case VARYING_SLOT_COL1:
3389 case VARYING_SLOT_BFC0:
3390 case VARYING_SLOT_BFC1:
3391 case VARYING_SLOT_FOGC:
3392 case VARYING_SLOT_CLIP_DIST0:
3393 case VARYING_SLOT_CLIP_DIST1:
3394 case VARYING_SLOT_CLIP_VERTEX:
3395 break;
3396 default:
3397 if (slot >= VARYING_SLOT_VAR0)
3398 break;
3399 if ((VARYING_SLOT_TEX0 <= slot) && (slot <= VARYING_SLOT_TEX7))
3400 break;
3401 compile_error(ctx, "unknown VS output name: %s\n",
3402 gl_varying_slot_name(slot));
3403 }
3404 } else {
3405 compile_error(ctx, "unknown shader type: %d\n", ctx->so->type);
3406 }
3407
3408 compile_assert(ctx, n < ARRAY_SIZE(so->outputs));
3409
3410 so->outputs[n].slot = slot;
3411 so->outputs[n].regid = regid(n, comp);
3412 so->outputs_count = MAX2(so->outputs_count, n + 1);
3413
3414 for (int i = 0; i < ncomp; i++) {
3415 unsigned idx = (n * 4) + i;
3416 compile_assert(ctx, idx < ctx->ir->noutputs);
3417 ctx->ir->outputs[idx] = create_immed(ctx->block, fui(0.0));
3418 }
3419 }
3420
3421 static int
3422 max_drvloc(struct exec_list *vars)
3423 {
3424 int drvloc = -1;
3425 nir_foreach_variable(var, vars) {
3426 drvloc = MAX2(drvloc, (int)var->data.driver_location);
3427 }
3428 return drvloc;
3429 }
3430
3431 static const unsigned max_sysvals[SHADER_MAX] = {
3432 [SHADER_FRAGMENT] = 24, // TODO
3433 [SHADER_VERTEX] = 16,
3434 [SHADER_COMPUTE] = 16, // TODO how many do we actually need?
3435 };
3436
3437 static void
3438 emit_instructions(struct ir3_context *ctx)
3439 {
3440 unsigned ninputs, noutputs;
3441 nir_function_impl *fxn = nir_shader_get_entrypoint(ctx->s);
3442
3443 ninputs = (max_drvloc(&ctx->s->inputs) + 1) * 4;
3444 noutputs = (max_drvloc(&ctx->s->outputs) + 1) * 4;
3445
3446 /* we need to leave room for sysvals:
3447 */
3448 ninputs += max_sysvals[ctx->so->type];
3449
3450 ctx->ir = ir3_create(ctx->compiler, ninputs, noutputs);
3451
3452 /* Create inputs in first block: */
3453 ctx->block = get_block(ctx, nir_start_block(fxn));
3454 ctx->in_block = ctx->block;
3455 list_addtail(&ctx->block->node, &ctx->ir->block_list);
3456
3457 ninputs -= max_sysvals[ctx->so->type];
3458
3459 /* for fragment shader, the vcoord input register is used as the
3460 * base for bary.f varying fetch instrs:
3461 */
3462 struct ir3_instruction *vcoord = NULL;
3463 if (ctx->so->type == SHADER_FRAGMENT) {
3464 struct ir3_instruction *xy[2];
3465
3466 vcoord = create_input_compmask(ctx, 0, 0x3);
3467 split_dest(ctx->block, xy, vcoord, 0, 2);
3468
3469 ctx->frag_vcoord = create_collect(ctx, xy, 2);
3470 }
3471
3472 /* Setup inputs: */
3473 nir_foreach_variable(var, &ctx->s->inputs) {
3474 setup_input(ctx, var);
3475 }
3476
3477 /* Defer add_sysval_input() stuff until after setup_inputs(),
3478 * because sysvals need to be appended after varyings:
3479 */
3480 if (vcoord) {
3481 add_sysval_input_compmask(ctx, SYSTEM_VALUE_VARYING_COORD,
3482 0x3, vcoord);
3483 }
3484
3485 if (ctx->frag_coord) {
3486 add_sysval_input_compmask(ctx, SYSTEM_VALUE_FRAG_COORD,
3487 0xf, ctx->frag_coord);
3488 }
3489
3490 /* Setup outputs: */
3491 nir_foreach_variable(var, &ctx->s->outputs) {
3492 setup_output(ctx, var);
3493 }
3494
3495 /* Setup registers (which should only be arrays): */
3496 nir_foreach_register(reg, &ctx->s->registers) {
3497 declare_array(ctx, reg);
3498 }
3499
3500 /* NOTE: need to do something more clever when we support >1 fxn */
3501 nir_foreach_register(reg, &fxn->registers) {
3502 declare_array(ctx, reg);
3503 }
3504 /* And emit the body: */
3505 ctx->impl = fxn;
3506 emit_function(ctx, fxn);
3507 }
3508
3509 /* from NIR perspective, we actually have varying inputs. But the varying
3510 * inputs, from an IR standpoint, are just bary.f/ldlv instructions. The
3511 * only actual inputs are the sysvals.
3512 */
3513 static void
3514 fixup_frag_inputs(struct ir3_context *ctx)
3515 {
3516 struct ir3_shader_variant *so = ctx->so;
3517 struct ir3 *ir = ctx->ir;
3518 unsigned i = 0;
3519
3520 /* sysvals should appear at the end of the inputs, drop everything else: */
3521 while ((i < so->inputs_count) && !so->inputs[i].sysval)
3522 i++;
3523
3524 /* at IR level, inputs are always blocks of 4 scalars: */
3525 i *= 4;
3526
3527 ir->inputs = &ir->inputs[i];
3528 ir->ninputs -= i;
3529 }
3530
3531 /* Fixup tex sampler state for astc/srgb workaround instructions. We
3532 * need to assign the tex state indexes for these after we know the
3533 * max tex index.
3534 */
3535 static void
3536 fixup_astc_srgb(struct ir3_context *ctx)
3537 {
3538 struct ir3_shader_variant *so = ctx->so;
3539 /* indexed by original tex idx, value is newly assigned alpha sampler
3540 * state tex idx. Zero is invalid since there is at least one sampler
3541 * if we get here.
3542 */
3543 unsigned alt_tex_state[16] = {0};
3544 unsigned tex_idx = ctx->max_texture_index + 1;
3545 unsigned idx = 0;
3546
3547 so->astc_srgb.base = tex_idx;
3548
3549 for (unsigned i = 0; i < ctx->ir->astc_srgb_count; i++) {
3550 struct ir3_instruction *sam = ctx->ir->astc_srgb[i];
3551
3552 compile_assert(ctx, sam->cat5.tex < ARRAY_SIZE(alt_tex_state));
3553
3554 if (alt_tex_state[sam->cat5.tex] == 0) {
3555 /* assign new alternate/alpha tex state slot: */
3556 alt_tex_state[sam->cat5.tex] = tex_idx++;
3557 so->astc_srgb.orig_idx[idx++] = sam->cat5.tex;
3558 so->astc_srgb.count++;
3559 }
3560
3561 sam->cat5.tex = alt_tex_state[sam->cat5.tex];
3562 }
3563 }
3564
3565 static void
3566 fixup_binning_pass(struct ir3_context *ctx)
3567 {
3568 struct ir3_shader_variant *so = ctx->so;
3569 struct ir3 *ir = ctx->ir;
3570 unsigned i, j;
3571
3572 for (i = 0, j = 0; i < so->outputs_count; i++) {
3573 unsigned slot = so->outputs[i].slot;
3574
3575 /* throw away everything but first position/psize */
3576 if ((slot == VARYING_SLOT_POS) || (slot == VARYING_SLOT_PSIZ)) {
3577 if (i != j) {
3578 so->outputs[j] = so->outputs[i];
3579 ir->outputs[(j*4)+0] = ir->outputs[(i*4)+0];
3580 ir->outputs[(j*4)+1] = ir->outputs[(i*4)+1];
3581 ir->outputs[(j*4)+2] = ir->outputs[(i*4)+2];
3582 ir->outputs[(j*4)+3] = ir->outputs[(i*4)+3];
3583 }
3584 j++;
3585 }
3586 }
3587 so->outputs_count = j;
3588 ir->noutputs = j * 4;
3589 }
3590
3591 int
3592 ir3_compile_shader_nir(struct ir3_compiler *compiler,
3593 struct ir3_shader_variant *so)
3594 {
3595 struct ir3_context *ctx;
3596 struct ir3 *ir;
3597 struct ir3_instruction **inputs;
3598 unsigned i, actual_in, inloc;
3599 int ret = 0, max_bary;
3600
3601 assert(!so->ir);
3602
3603 ctx = compile_init(compiler, so);
3604 if (!ctx) {
3605 DBG("INIT failed!");
3606 ret = -1;
3607 goto out;
3608 }
3609
3610 emit_instructions(ctx);
3611
3612 if (ctx->error) {
3613 DBG("EMIT failed!");
3614 ret = -1;
3615 goto out;
3616 }
3617
3618 ir = so->ir = ctx->ir;
3619
3620 /* keep track of the inputs from TGSI perspective.. */
3621 inputs = ir->inputs;
3622
3623 /* but fixup actual inputs for frag shader: */
3624 if (so->type == SHADER_FRAGMENT)
3625 fixup_frag_inputs(ctx);
3626
3627 /* at this point, for binning pass, throw away unneeded outputs: */
3628 if (so->binning_pass && (ctx->compiler->gpu_id < 600))
3629 fixup_binning_pass(ctx);
3630
3631 /* if we want half-precision outputs, mark the output registers
3632 * as half:
3633 */
3634 if (so->key.half_precision) {
3635 for (i = 0; i < ir->noutputs; i++) {
3636 struct ir3_instruction *out = ir->outputs[i];
3637
3638 if (!out)
3639 continue;
3640
3641 /* if frag shader writes z, that needs to be full precision: */
3642 if (so->outputs[i/4].slot == FRAG_RESULT_DEPTH)
3643 continue;
3644
3645 out->regs[0]->flags |= IR3_REG_HALF;
3646 /* output could be a fanout (ie. texture fetch output)
3647 * in which case we need to propagate the half-reg flag
3648 * up to the definer so that RA sees it:
3649 */
3650 if (out->opc == OPC_META_FO) {
3651 out = out->regs[1]->instr;
3652 out->regs[0]->flags |= IR3_REG_HALF;
3653 }
3654
3655 if (out->opc == OPC_MOV) {
3656 out->cat1.dst_type = half_type(out->cat1.dst_type);
3657 }
3658 }
3659 }
3660
3661 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3662 printf("BEFORE CP:\n");
3663 ir3_print(ir);
3664 }
3665
3666 ir3_cp(ir, so);
3667
3668 /* at this point, for binning pass, throw away unneeded outputs:
3669 * Note that for a6xx and later, we do this after ir3_cp to ensure
3670 * that the uniform/constant layout for BS and VS matches, so that
3671 * we can re-use same VS_CONST state group.
3672 */
3673 if (so->binning_pass && (ctx->compiler->gpu_id >= 600))
3674 fixup_binning_pass(ctx);
3675
3676 /* Insert mov if there's same instruction for each output.
3677 * eg. dEQP-GLES31.functional.shaders.opaque_type_indexing.sampler.const_expression.vertex.sampler2dshadow
3678 */
3679 for (int i = ir->noutputs - 1; i >= 0; i--) {
3680 if (!ir->outputs[i])
3681 continue;
3682 for (unsigned j = 0; j < i; j++) {
3683 if (ir->outputs[i] == ir->outputs[j]) {
3684 ir->outputs[i] =
3685 ir3_MOV(ir->outputs[i]->block, ir->outputs[i], TYPE_F32);
3686 }
3687 }
3688 }
3689
3690 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3691 printf("BEFORE GROUPING:\n");
3692 ir3_print(ir);
3693 }
3694
3695 ir3_sched_add_deps(ir);
3696
3697 /* Group left/right neighbors, inserting mov's where needed to
3698 * solve conflicts:
3699 */
3700 ir3_group(ir);
3701
3702 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3703 printf("AFTER GROUPING:\n");
3704 ir3_print(ir);
3705 }
3706
3707 ir3_depth(ir);
3708
3709 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3710 printf("AFTER DEPTH:\n");
3711 ir3_print(ir);
3712 }
3713
3714 ret = ir3_sched(ir);
3715 if (ret) {
3716 DBG("SCHED failed!");
3717 goto out;
3718 }
3719
3720 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3721 printf("AFTER SCHED:\n");
3722 ir3_print(ir);
3723 }
3724
3725 ret = ir3_ra(ir, so->type, so->frag_coord, so->frag_face);
3726 if (ret) {
3727 DBG("RA failed!");
3728 goto out;
3729 }
3730
3731 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3732 printf("AFTER RA:\n");
3733 ir3_print(ir);
3734 }
3735
3736 /* fixup input/outputs: */
3737 for (i = 0; i < so->outputs_count; i++) {
3738 so->outputs[i].regid = ir->outputs[i*4]->regs[0]->num;
3739 }
3740
3741 /* Note that some or all channels of an input may be unused: */
3742 actual_in = 0;
3743 inloc = 0;
3744 for (i = 0; i < so->inputs_count; i++) {
3745 unsigned j, reg = regid(63,0), compmask = 0, maxcomp = 0;
3746 so->inputs[i].ncomp = 0;
3747 so->inputs[i].inloc = inloc;
3748 for (j = 0; j < 4; j++) {
3749 struct ir3_instruction *in = inputs[(i*4) + j];
3750 if (in && !(in->flags & IR3_INSTR_UNUSED)) {
3751 compmask |= (1 << j);
3752 reg = in->regs[0]->num - j;
3753 actual_in++;
3754 so->inputs[i].ncomp++;
3755 if ((so->type == SHADER_FRAGMENT) && so->inputs[i].bary) {
3756 /* assign inloc: */
3757 assert(in->regs[1]->flags & IR3_REG_IMMED);
3758 in->regs[1]->iim_val = inloc + j;
3759 maxcomp = j + 1;
3760 }
3761 }
3762 }
3763 if ((so->type == SHADER_FRAGMENT) && compmask && so->inputs[i].bary) {
3764 so->varying_in++;
3765 so->inputs[i].compmask = (1 << maxcomp) - 1;
3766 inloc += maxcomp;
3767 } else if (!so->inputs[i].sysval) {
3768 so->inputs[i].compmask = compmask;
3769 }
3770 so->inputs[i].regid = reg;
3771 }
3772
3773 if (ctx->astc_srgb)
3774 fixup_astc_srgb(ctx);
3775
3776 /* We need to do legalize after (for frag shader's) the "bary.f"
3777 * offsets (inloc) have been assigned.
3778 */
3779 ir3_legalize(ir, &so->num_samp, &so->has_ssbo, &max_bary);
3780
3781 if (fd_mesa_debug & FD_DBG_OPTMSGS) {
3782 printf("AFTER LEGALIZE:\n");
3783 ir3_print(ir);
3784 }
3785
3786 /* Note that actual_in counts inputs that are not bary.f'd for FS: */
3787 if (so->type == SHADER_VERTEX)
3788 so->total_in = actual_in;
3789 else
3790 so->total_in = max_bary + 1;
3791
3792 out:
3793 if (ret) {
3794 if (so->ir)
3795 ir3_destroy(so->ir);
3796 so->ir = NULL;
3797 }
3798 compile_free(ctx);
3799
3800 return ret;
3801 }