pan/bi: Add FMA16 packing
[mesa.git] / src / panfrost / bifrost / bi_pack.c
1 /*
2 * Copyright (C) 2020 Collabora, Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #include "compiler.h"
25
26 #define RETURN_PACKED(str) { \
27 uint64_t temp = 0; \
28 memcpy(&temp, &str, sizeof(str)); \
29 return temp; \
30 }
31
32 /* This file contains the final passes of the compiler. Running after
33 * scheduling and RA, the IR is now finalized, so we need to emit it to actual
34 * bits on the wire (as well as fixup branches) */
35
36 static uint64_t
37 bi_pack_header(bi_clause *clause, bi_clause *next, bool is_fragment)
38 {
39 struct bifrost_header header = {
40 .back_to_back = clause->back_to_back,
41 .no_end_of_shader = (next != NULL),
42 .elide_writes = is_fragment,
43 .branch_cond = clause->branch_conditional,
44 .datareg_writebarrier = clause->data_register_write_barrier,
45 .datareg = clause->data_register,
46 .scoreboard_deps = next ? next->dependencies : 0,
47 .scoreboard_index = clause->scoreboard_id,
48 .clause_type = clause->clause_type,
49 .next_clause_type = next ? next->clause_type : 0,
50 };
51
52 uint64_t u = 0;
53 memcpy(&u, &header, sizeof(header));
54 return u;
55 }
56
57 /* Represents the assignment of ports for a given bundle */
58
59 struct bi_registers {
60 /* Register to assign to each port */
61 unsigned port[4];
62
63 /* Read ports can be disabled */
64 bool enabled[2];
65
66 /* Should we write FMA? what about ADD? If only a single port is
67 * enabled it is in port 2, else ADD/FMA is 2/3 respectively */
68 bool write_fma, write_add;
69
70 /* Should we read with port 3? */
71 bool read_port3;
72
73 /* Packed uniform/constant */
74 uint8_t uniform_constant;
75
76 /* Whether writes are actually for the last instruction */
77 bool first_instruction;
78 };
79
80 /* The uniform/constant slot allows loading a contiguous 64-bit immediate or
81 * pushed uniform per bundle. Figure out which one we need in the bundle (the
82 * scheduler needs to ensure we only have one type per bundle), validate
83 * everything, and rewrite away the register/uniform indices to use 3-bit
84 * sources directly. */
85
86 static unsigned
87 bi_lookup_constant(bi_clause *clause, uint64_t cons, bool *hi, bool b64)
88 {
89 uint64_t want = (cons >> 4);
90
91 for (unsigned i = 0; i < clause->constant_count; ++i) {
92 /* Only check top 60-bits since that's what's actually embedded
93 * in the clause, the bottom 4-bits are bundle-inline */
94
95 unsigned candidates[2] = {
96 clause->constants[i] >> 4,
97 clause->constants[i] >> 36
98 };
99
100 if (!b64)
101 candidates[0] &= 0xFFFFFFFF;
102
103 if (candidates[0] == want)
104 return i;
105
106 if (candidates[1] == want && !b64) {
107 *hi = true;
108 return i;
109 }
110 }
111
112 unreachable("Invalid constant accessed");
113 }
114
115 static unsigned
116 bi_constant_field(unsigned idx)
117 {
118 assert(idx <= 5);
119
120 const unsigned values[] = {
121 4, 5, 6, 7, 2, 3
122 };
123
124 return values[idx] << 4;
125 }
126
127 static bool
128 bi_assign_uniform_constant_single(
129 struct bi_registers *regs,
130 bi_clause *clause,
131 bi_instruction *ins, bool assigned, bool fast_zero)
132 {
133 if (!ins)
134 return assigned;
135
136 bi_foreach_src(ins, s) {
137 if (s == 0 && (ins->type == BI_LOAD_VAR_ADDRESS || ins->type == BI_LOAD_ATTR)) continue;
138
139 if (ins->src[s] & BIR_INDEX_CONSTANT) {
140 bool hi = false;
141 bool b64 = nir_alu_type_get_type_size(ins->src_types[s]) > 32;
142 uint64_t cons = bi_get_immediate(ins, ins->src[s]);
143 unsigned idx = bi_lookup_constant(clause, cons, &hi, b64);
144 unsigned f = bi_constant_field(idx) | (cons & 0xF);
145
146 if (assigned && regs->uniform_constant != f)
147 unreachable("Mismatched uniform/const field: imm");
148
149 regs->uniform_constant = f;
150 ins->src[s] = BIR_INDEX_PASS | (hi ? BIFROST_SRC_CONST_HI : BIFROST_SRC_CONST_LO);
151 assigned = true;
152 } else if (ins->src[s] & BIR_INDEX_ZERO && (ins->type == BI_LOAD_UNIFORM || ins->type == BI_LOAD_VAR)) {
153 /* XXX: HACK UNTIL WE HAVE HI MATCHING DUE TO OVERFLOW XXX */
154 ins->src[s] = BIR_INDEX_PASS | BIFROST_SRC_CONST_HI;
155 } else if (ins->src[s] & BIR_INDEX_ZERO && !fast_zero) {
156 /* FMAs have a fast zero port, ADD needs to use the
157 * uniform/const port's special 0 mode handled here */
158 unsigned f = 0;
159
160 if (assigned && regs->uniform_constant != f)
161 unreachable("Mismatched uniform/const field: 0");
162
163 regs->uniform_constant = f;
164 ins->src[s] = BIR_INDEX_PASS | BIFROST_SRC_CONST_LO;
165 assigned = true;
166 } else if (s & BIR_INDEX_UNIFORM) {
167 unreachable("Push uniforms not implemented yet");
168 }
169 }
170
171 return assigned;
172 }
173
174 static void
175 bi_assign_uniform_constant(
176 bi_clause *clause,
177 struct bi_registers *regs,
178 bi_bundle bundle)
179 {
180 bool assigned =
181 bi_assign_uniform_constant_single(regs, clause, bundle.fma, false, true);
182
183 bi_assign_uniform_constant_single(regs, clause, bundle.add, assigned, false);
184 }
185
186 /* Assigns a port for reading, before anything is written */
187
188 static void
189 bi_assign_port_read(struct bi_registers *regs, unsigned src)
190 {
191 /* We only assign for registers */
192 if (!(src & BIR_INDEX_REGISTER))
193 return;
194
195 unsigned reg = src & ~BIR_INDEX_REGISTER;
196
197 /* Check if we already assigned the port */
198 for (unsigned i = 0; i <= 1; ++i) {
199 if (regs->port[i] == reg && regs->enabled[i])
200 return;
201 }
202
203 if (regs->port[3] == reg && regs->read_port3)
204 return;
205
206 /* Assign it now */
207
208 for (unsigned i = 0; i <= 1; ++i) {
209 if (!regs->enabled[i]) {
210 regs->port[i] = reg;
211 regs->enabled[i] = true;
212 return;
213 }
214 }
215
216 if (!regs->read_port3) {
217 regs->port[3] = reg;
218 regs->read_port3 = true;
219 }
220 }
221
222 static struct bi_registers
223 bi_assign_ports(bi_bundle now, bi_bundle prev)
224 {
225 struct bi_registers regs = { 0 };
226
227 /* We assign ports for the main register mechanism. Special ops
228 * use the data registers, which has its own mechanism entirely
229 * and thus gets skipped over here. */
230
231 unsigned read_dreg = now.add &&
232 bi_class_props[now.add->type] & BI_DATA_REG_SRC;
233
234 unsigned write_dreg = prev.add &&
235 bi_class_props[prev.add->type] & BI_DATA_REG_DEST;
236
237 /* First, assign reads */
238
239 if (now.fma)
240 bi_foreach_src(now.fma, src)
241 bi_assign_port_read(&regs, now.fma->src[src]);
242
243 if (now.add) {
244 bi_foreach_src(now.add, src) {
245 if (!(src == 0 && read_dreg))
246 bi_assign_port_read(&regs, now.add->src[src]);
247 }
248 }
249
250 /* Next, assign writes */
251
252 if (prev.fma && prev.fma->dest & BIR_INDEX_REGISTER) {
253 regs.port[2] = prev.fma->dest & ~BIR_INDEX_REGISTER;
254 regs.write_fma = true;
255 }
256
257 if (prev.add && prev.add->dest & BIR_INDEX_REGISTER && !write_dreg) {
258 unsigned r = prev.add->dest & ~BIR_INDEX_REGISTER;
259
260 if (regs.write_fma) {
261 /* Scheduler constraint: cannot read 3 and write 2 */
262 assert(!regs.read_port3);
263 regs.port[3] = r;
264 } else {
265 regs.port[2] = r;
266 }
267
268 regs.write_add = true;
269 }
270
271 /* Finally, ensure port 1 > port 0 for the 63-x trick to function */
272
273 if (regs.enabled[0] && regs.enabled[1] && regs.port[1] < regs.port[0]) {
274 unsigned temp = regs.port[0];
275 regs.port[0] = regs.port[1];
276 regs.port[1] = temp;
277 }
278
279 return regs;
280 }
281
282 /* Determines the register control field, ignoring the first? flag */
283
284 static enum bifrost_reg_control
285 bi_pack_register_ctrl_lo(struct bi_registers r)
286 {
287 if (r.write_fma) {
288 if (r.write_add) {
289 assert(!r.read_port3);
290 return BIFROST_WRITE_ADD_P2_FMA_P3;
291 } else {
292 if (r.read_port3)
293 return BIFROST_WRITE_FMA_P2_READ_P3;
294 else
295 return BIFROST_WRITE_FMA_P2;
296 }
297 } else if (r.write_add) {
298 if (r.read_port3)
299 return BIFROST_WRITE_ADD_P2_READ_P3;
300 else
301 return BIFROST_WRITE_ADD_P2;
302 } else if (r.read_port3)
303 return BIFROST_READ_P3;
304 else
305 return BIFROST_REG_NONE;
306 }
307
308 /* Ditto but account for the first? flag this time */
309
310 static enum bifrost_reg_control
311 bi_pack_register_ctrl(struct bi_registers r)
312 {
313 enum bifrost_reg_control ctrl = bi_pack_register_ctrl_lo(r);
314
315 if (r.first_instruction) {
316 if (ctrl == BIFROST_REG_NONE)
317 ctrl = BIFROST_FIRST_NONE;
318 else
319 ctrl |= BIFROST_FIRST_NONE;
320 }
321
322 return ctrl;
323 }
324
325 static uint64_t
326 bi_pack_registers(struct bi_registers regs)
327 {
328 enum bifrost_reg_control ctrl = bi_pack_register_ctrl(regs);
329 struct bifrost_regs s;
330 uint64_t packed = 0;
331
332 if (regs.enabled[1]) {
333 /* Gotta save that bit!~ Required by the 63-x trick */
334 assert(regs.port[1] > regs.port[0]);
335 assert(regs.enabled[0]);
336
337 /* Do the 63-x trick, see docs/disasm */
338 if (regs.port[0] > 31) {
339 regs.port[0] = 63 - regs.port[0];
340 regs.port[1] = 63 - regs.port[1];
341 }
342
343 assert(regs.port[0] <= 31);
344 assert(regs.port[1] <= 63);
345
346 s.ctrl = ctrl;
347 s.reg1 = regs.port[1];
348 s.reg0 = regs.port[0];
349 } else {
350 /* Port 1 disabled, so set to zero and use port 1 for ctrl */
351 s.reg1 = ctrl << 2;
352
353 if (regs.enabled[0]) {
354 /* Bit 0 upper bit of port 0 */
355 s.reg1 |= (regs.port[0] >> 5);
356
357 /* Rest of port 0 in usual spot */
358 s.reg0 = (regs.port[0] & 0b11111);
359 } else {
360 /* Bit 1 set if port 0 also disabled */
361 s.reg1 |= (1 << 1);
362 }
363 }
364
365 s.reg3 = regs.port[3];
366 s.reg2 = regs.port[2];
367 s.uniform_const = regs.uniform_constant;
368
369 memcpy(&packed, &s, sizeof(s));
370 return packed;
371 }
372
373 static void
374 bi_set_data_register(bi_clause *clause, unsigned idx)
375 {
376 assert(idx & BIR_INDEX_REGISTER);
377 unsigned reg = idx & ~BIR_INDEX_REGISTER;
378 assert(reg <= 63);
379 clause->data_register = reg;
380 }
381
382 static void
383 bi_read_data_register(bi_clause *clause, bi_instruction *ins)
384 {
385 bi_set_data_register(clause, ins->src[0]);
386 }
387
388 static void
389 bi_write_data_register(bi_clause *clause, bi_instruction *ins)
390 {
391 bi_set_data_register(clause, ins->dest);
392 }
393
394 static enum bifrost_packed_src
395 bi_get_src_reg_port(struct bi_registers *regs, unsigned src)
396 {
397 unsigned reg = src & ~BIR_INDEX_REGISTER;
398
399 if (regs->port[0] == reg && regs->enabled[0])
400 return BIFROST_SRC_PORT0;
401 else if (regs->port[1] == reg && regs->enabled[1])
402 return BIFROST_SRC_PORT1;
403 else if (regs->port[3] == reg && regs->read_port3)
404 return BIFROST_SRC_PORT3;
405 else
406 unreachable("Tried to access register with no port");
407 }
408
409 static enum bifrost_packed_src
410 bi_get_src(bi_instruction *ins, struct bi_registers *regs, unsigned s, bool is_fma)
411 {
412 unsigned src = ins->src[s];
413
414 if (src & BIR_INDEX_REGISTER)
415 return bi_get_src_reg_port(regs, src);
416 else if (src & BIR_INDEX_ZERO && is_fma)
417 return BIFROST_SRC_STAGE;
418 else if (src & BIR_INDEX_PASS)
419 return src & ~BIR_INDEX_PASS;
420 else
421 unreachable("Unknown src");
422 }
423
424 /* Constructs a packed 2-bit swizzle for a 16-bit vec2 source. Source must be
425 * 16-bit and written components must correspond to valid swizzles (component x
426 * or y). */
427
428 static unsigned
429 bi_swiz16(bi_instruction *ins, unsigned src)
430 {
431 assert(nir_alu_type_get_type_size(ins->src_types[src]) == 16);
432 unsigned swizzle = 0;
433
434 for (unsigned c = 0; c < 2; ++c) {
435 if (!bi_writes_component(ins, src)) continue;
436
437 unsigned k = ins->swizzle[src][c];
438 assert(k < 1);
439 swizzle |= (k << c);
440 }
441
442 return swizzle;
443 }
444
445 static unsigned
446 bi_pack_fma_fma(bi_instruction *ins, struct bi_registers *regs)
447 {
448 /* (-a)(-b) = ab, so we only need one negate bit */
449 bool negate_mul = ins->src_neg[0] ^ ins->src_neg[1];
450
451 if (ins->dest_type == nir_type_float32) {
452 struct bifrost_fma_fma pack = {
453 .src0 = bi_get_src(ins, regs, 0, true),
454 .src1 = bi_get_src(ins, regs, 1, true),
455 .src2 = bi_get_src(ins, regs, 2, true),
456 .src0_abs = ins->src_abs[0],
457 .src1_abs = ins->src_abs[1],
458 .src2_abs = ins->src_abs[2],
459 .src0_neg = negate_mul,
460 .src2_neg = ins->src_neg[2],
461 .op = BIFROST_FMA_OP_FMA
462 };
463
464 RETURN_PACKED(pack);
465 } else if (ins->dest_type == nir_type_float16) {
466 struct bifrost_fma_fma16 pack = {
467 .src0 = bi_get_src(ins, regs, 0, true),
468 .src1 = bi_get_src(ins, regs, 1, true),
469 .src2 = bi_get_src(ins, regs, 2, true),
470 .swizzle_0 = bi_swiz16(ins, 0),
471 .swizzle_1 = bi_swiz16(ins, 1),
472 .swizzle_2 = bi_swiz16(ins, 2),
473 .src0_neg = negate_mul,
474 .src2_neg = ins->src_neg[2],
475 .op = BIFROST_FMA_OP_FMA16
476 };
477
478 RETURN_PACKED(pack);
479 } else {
480 unreachable("Invalid fma dest type");
481 }
482 }
483
484 static unsigned
485 bi_pack_fma_add(bi_instruction *ins, struct bi_registers *regs)
486 {
487 /* TODO: fadd16 packing is a bit different */
488 assert(ins->dest_type == nir_type_float32);
489
490 struct bifrost_fma_add pack = {
491 .src0 = bi_get_src(ins, regs, 0, true),
492 .src1 = bi_get_src(ins, regs, 1, true),
493 .src0_abs = ins->src_abs[0],
494 .src1_abs = ins->src_abs[1],
495 .src0_neg = ins->src_neg[0],
496 .src1_neg = ins->src_neg[1],
497 .unk = 0x0,
498 .outmod = ins->outmod,
499 .roundmode = ins->roundmode,
500 .op = BIFROST_FMA_OP_FADD32
501 };
502
503 RETURN_PACKED(pack);
504 }
505
506 static unsigned
507 bi_pack_fma_1src(bi_instruction *ins, struct bi_registers *regs, unsigned op)
508 {
509 struct bifrost_fma_inst pack = {
510 .src0 = bi_get_src(ins, regs, 0, true),
511 .op = op
512 };
513
514 RETURN_PACKED(pack);
515 }
516
517 static enum bifrost_csel_cond
518 bi_cond_to_csel(enum bi_cond cond, bool *flip, bool *invert, nir_alu_type T)
519 {
520 nir_alu_type B = nir_alu_type_get_base_type(T);
521 unsigned idx = (B == nir_type_float) ? 0 :
522 ((B == nir_type_int) ? 1 : 2);
523
524 switch (cond){
525 case BI_COND_LT:
526 *flip = true;
527 case BI_COND_GT: {
528 const enum bifrost_csel_cond ops[] = {
529 BIFROST_FGT_F,
530 BIFROST_IGT_I,
531 BIFROST_UGT_I
532 };
533
534 return ops[idx];
535 }
536 case BI_COND_LE:
537 *flip = true;
538 case BI_COND_GE: {
539 const enum bifrost_csel_cond ops[] = {
540 BIFROST_FGE_F,
541 BIFROST_IGE_I,
542 BIFROST_UGE_I
543 };
544
545 return ops[idx];
546 }
547 case BI_COND_NE:
548 *invert = true;
549 case BI_COND_EQ: {
550 const enum bifrost_csel_cond ops[] = {
551 BIFROST_FEQ_F,
552 BIFROST_IEQ_F,
553 BIFROST_IEQ_F /* sign is irrelevant */
554 };
555
556 return ops[idx];
557 }
558 default:
559 unreachable("Invalid op for csel");
560 }
561 }
562
563 static unsigned
564 bi_pack_fma_csel(bi_instruction *ins, struct bi_registers *regs)
565 {
566 /* TODO: Use csel3 as well */
567 bool flip = false, invert = false;
568
569 enum bifrost_csel_cond cond =
570 bi_cond_to_csel(ins->csel_cond, &flip, &invert, ins->src_types[0]);
571
572 unsigned size = nir_alu_type_get_type_size(ins->dest_type);
573
574 unsigned cmp_0 = (flip ? 3 : 0);
575 unsigned cmp_1 = (flip ? 0 : 3);
576 unsigned res_0 = (invert ? 2 : 1);
577 unsigned res_1 = (invert ? 1 : 2);
578
579 struct bifrost_csel4 pack = {
580 .src0 = bi_get_src(ins, regs, cmp_0, true),
581 .src1 = bi_get_src(ins, regs, cmp_1, true),
582 .src2 = bi_get_src(ins, regs, res_0, true),
583 .src3 = bi_get_src(ins, regs, res_1, true),
584 .cond = cond,
585 .op = (size == 16) ? BIFROST_FMA_OP_CSEL4_V16 :
586 BIFROST_FMA_OP_CSEL4
587 };
588
589 RETURN_PACKED(pack);
590 }
591
592 static unsigned
593 bi_pack_fma(bi_clause *clause, bi_bundle bundle, struct bi_registers *regs)
594 {
595 if (!bundle.fma)
596 return BIFROST_FMA_NOP;
597
598 switch (bundle.fma->type) {
599 case BI_ADD:
600 return bi_pack_fma_add(bundle.fma, regs);
601 case BI_CMP:
602 case BI_BITWISE:
603 case BI_CONVERT:
604 return BIFROST_FMA_NOP;
605 case BI_CSEL:
606 return bi_pack_fma_csel(bundle.fma, regs);
607 case BI_FMA:
608 return bi_pack_fma_fma(bundle.fma, regs);
609 case BI_FREXP:
610 case BI_ISUB:
611 case BI_MINMAX:
612 return BIFROST_FMA_NOP;
613 case BI_MOV:
614 return bi_pack_fma_1src(bundle.fma, regs, BIFROST_FMA_OP_MOV);
615 case BI_FMOV:
616 case BI_SHIFT:
617 case BI_SWIZZLE:
618 case BI_ROUND:
619 return BIFROST_FMA_NOP;
620 default:
621 unreachable("Cannot encode class as FMA");
622 }
623 }
624
625 static unsigned
626 bi_pack_add_ld_vary(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
627 {
628 unsigned size = nir_alu_type_get_type_size(ins->dest_type);
629 assert(size == 32 || size == 16);
630
631 unsigned op = (size == 32) ?
632 BIFROST_ADD_OP_LD_VAR_32 :
633 BIFROST_ADD_OP_LD_VAR_16;
634
635 unsigned cmask = bi_from_bytemask(ins->writemask, size / 8);
636 unsigned channels = util_bitcount(cmask);
637 assert(cmask == ((1 << channels) - 1));
638
639 unsigned packed_addr = 0;
640
641 if (ins->src[0] & BIR_INDEX_CONSTANT) {
642 /* Direct uses address field directly */
643 packed_addr = bi_get_immediate(ins, ins->src[0]);
644 assert(packed_addr < 0b1000);
645 } else {
646 /* Indirect gets an extra source */
647 packed_addr = bi_get_src(ins, regs, 0, false) | 0b11000;
648 }
649
650 /* The destination is thrown in the data register */
651 assert(ins->dest & BIR_INDEX_REGISTER);
652 clause->data_register = ins->dest & ~BIR_INDEX_REGISTER;
653
654 assert(channels >= 1 && channels <= 4);
655
656 struct bifrost_ld_var pack = {
657 .src0 = bi_get_src(ins, regs, 1, false),
658 .addr = packed_addr,
659 .channels = MALI_POSITIVE(channels),
660 .interp_mode = ins->load_vary.interp_mode,
661 .reuse = ins->load_vary.reuse,
662 .flat = ins->load_vary.flat,
663 .op = op
664 };
665
666 RETURN_PACKED(pack);
667 }
668
669 static unsigned
670 bi_pack_add_2src(bi_instruction *ins, struct bi_registers *regs, unsigned op)
671 {
672 struct bifrost_add_2src pack = {
673 .src0 = bi_get_src(ins, regs, 0, true),
674 .src1 = bi_get_src(ins, regs, 1, true),
675 .op = op
676 };
677
678 RETURN_PACKED(pack);
679 }
680
681 static unsigned
682 bi_pack_add_ld_ubo(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
683 {
684 unsigned components = bi_load32_components(ins);
685
686 const unsigned ops[4] = {
687 BIFROST_ADD_OP_LD_UBO_1,
688 BIFROST_ADD_OP_LD_UBO_2,
689 BIFROST_ADD_OP_LD_UBO_3,
690 BIFROST_ADD_OP_LD_UBO_4
691 };
692
693 bi_write_data_register(clause, ins);
694 return bi_pack_add_2src(ins, regs, ops[components - 1]);
695 }
696
697 static enum bifrost_ldst_type
698 bi_pack_ldst_type(nir_alu_type T)
699 {
700 switch (T) {
701 case nir_type_float16: return BIFROST_LDST_F16;
702 case nir_type_float32: return BIFROST_LDST_F32;
703 case nir_type_int32: return BIFROST_LDST_I32;
704 case nir_type_uint32: return BIFROST_LDST_U32;
705 default: unreachable("Invalid type loaded");
706 }
707 }
708
709 static unsigned
710 bi_pack_add_ld_var_addr(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
711 {
712 struct bifrost_ld_var_addr pack = {
713 .src0 = bi_get_src(ins, regs, 1, false),
714 .src1 = bi_get_src(ins, regs, 2, false),
715 .location = bi_get_immediate(ins, ins->src[0]),
716 .type = bi_pack_ldst_type(ins->src_types[3]),
717 .op = BIFROST_ADD_OP_LD_VAR_ADDR
718 };
719
720 bi_write_data_register(clause, ins);
721 RETURN_PACKED(pack);
722 }
723
724 static unsigned
725 bi_pack_add_ld_attr(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
726 {
727 struct bifrost_ld_attr pack = {
728 .src0 = bi_get_src(ins, regs, 1, false),
729 .src1 = bi_get_src(ins, regs, 2, false),
730 .location = bi_get_immediate(ins, ins->src[0]),
731 .channels = MALI_POSITIVE(bi_load32_components(ins)),
732 .type = bi_pack_ldst_type(ins->dest_type),
733 .op = BIFROST_ADD_OP_LD_ATTR
734 };
735
736 bi_write_data_register(clause, ins);
737 RETURN_PACKED(pack);
738 }
739
740 static unsigned
741 bi_pack_add_st_vary(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
742 {
743 assert(ins->store_channels >= 1 && ins->store_channels <= 4);
744
745 struct bifrost_st_vary pack = {
746 .src0 = bi_get_src(ins, regs, 1, false),
747 .src1 = bi_get_src(ins, regs, 2, false),
748 .src2 = bi_get_src(ins, regs, 3, false),
749 .channels = MALI_POSITIVE(ins->store_channels),
750 .op = BIFROST_ADD_OP_ST_VAR
751 };
752
753 bi_read_data_register(clause, ins);
754 RETURN_PACKED(pack);
755 }
756
757 static unsigned
758 bi_pack_add_atest(bi_clause *clause, bi_instruction *ins, struct bi_registers *regs)
759 {
760 /* TODO: fp16 */
761 assert(ins->src_types[1] == nir_type_float32);
762
763 struct bifrost_add_atest pack = {
764 .src0 = bi_get_src(ins, regs, 0, false),
765 .src1 = bi_get_src(ins, regs, 1, false),
766 .component = 1, /* Set for fp32 */
767 .op = BIFROST_ADD_OP_ATEST,
768 };
769
770 /* Despite *also* writing with the usual mechanism... quirky and
771 * perhaps unnecessary, but let's match the blob */
772 clause->data_register = ins->dest & ~BIR_INDEX_REGISTER;
773
774 RETURN_PACKED(pack);
775 }
776
777 static unsigned
778 bi_pack_add_blend(bi_instruction *ins, struct bi_registers *regs)
779 {
780 struct bifrost_add_inst pack = {
781 .src0 = bi_get_src(ins, regs, 0, false),
782 .op = BIFROST_ADD_OP_BLEND
783 };
784
785 /* TODO: Pack location in uniform_const */
786 assert(ins->blend_location == 0);
787
788 RETURN_PACKED(pack);
789 }
790
791 static unsigned
792 bi_pack_add(bi_clause *clause, bi_bundle bundle, struct bi_registers *regs)
793 {
794 if (!bundle.add)
795 return BIFROST_ADD_NOP;
796
797 switch (bundle.add->type) {
798 case BI_ADD:
799 return BIFROST_ADD_NOP;
800 case BI_ATEST:
801 return bi_pack_add_atest(clause, bundle.add, regs);
802 case BI_BRANCH:
803 case BI_CMP:
804 return BIFROST_ADD_NOP;
805 case BI_BLEND:
806 return bi_pack_add_blend(bundle.add, regs);
807 case BI_BITWISE:
808 case BI_CONVERT:
809 case BI_DISCARD:
810 case BI_FREXP:
811 case BI_ISUB:
812 case BI_LOAD:
813 return BIFROST_ADD_NOP;
814 case BI_LOAD_ATTR:
815 return bi_pack_add_ld_attr(clause, bundle.add, regs);
816 case BI_LOAD_UNIFORM:
817 return bi_pack_add_ld_ubo(clause, bundle.add, regs);
818 case BI_LOAD_VAR:
819 return bi_pack_add_ld_vary(clause, bundle.add, regs);
820 case BI_LOAD_VAR_ADDRESS:
821 return bi_pack_add_ld_var_addr(clause, bundle.add, regs);
822 case BI_MINMAX:
823 case BI_MOV:
824 case BI_FMOV:
825 case BI_SHIFT:
826 case BI_STORE:
827 return BIFROST_ADD_NOP;
828 case BI_STORE_VAR:
829 return bi_pack_add_st_vary(clause, bundle.add, regs);
830 case BI_SPECIAL:
831 case BI_SWIZZLE:
832 case BI_TEX:
833 case BI_ROUND:
834 return BIFROST_ADD_NOP;
835 default:
836 unreachable("Cannot encode class as ADD");
837 }
838 }
839
840 struct bi_packed_bundle {
841 uint64_t lo;
842 uint64_t hi;
843 };
844
845 static struct bi_packed_bundle
846 bi_pack_bundle(bi_clause *clause, bi_bundle bundle, bi_bundle prev, bool first_bundle)
847 {
848 struct bi_registers regs = bi_assign_ports(bundle, prev);
849 bi_assign_uniform_constant(clause, &regs, bundle);
850 regs.first_instruction = first_bundle;
851
852 uint64_t reg = bi_pack_registers(regs);
853 uint64_t fma = bi_pack_fma(clause, bundle, &regs);
854 uint64_t add = bi_pack_add(clause, bundle, &regs);
855
856 struct bi_packed_bundle packed = {
857 .lo = reg | (fma << 35) | ((add & 0b111111) << 58),
858 .hi = add >> 6
859 };
860
861 return packed;
862 }
863
864 /* Packs the next two constants as a dedicated constant quadword at the end of
865 * the clause, returning the number packed. */
866
867 static unsigned
868 bi_pack_constants(bi_context *ctx, bi_clause *clause,
869 unsigned index,
870 struct util_dynarray *emission)
871 {
872 /* After these two, are we done? Determines tag */
873 bool done = clause->constant_count <= (index + 2);
874 bool only = clause->constant_count <= (index + 1);
875
876 /* TODO: Pos */
877 assert(index == 0 && clause->bundle_count == 1);
878
879 struct bifrost_fmt_constant quad = {
880 .pos = 0, /* TODO */
881 .tag = done ? BIFROST_FMTC_FINAL : BIFROST_FMTC_CONSTANTS,
882 .imm_1 = clause->constants[index + 0] >> 4,
883 .imm_2 = only ? 0 : clause->constants[index + 1] >> 4
884 };
885
886 /* XXX: On G71, Connor observed that the difference of the top 4 bits
887 * of the second constant with the first must be less than 8, otherwise
888 * we have to swap them. I am not able to reproduce this on G52,
889 * further investigation needed. Possibly an errata. XXX */
890
891 util_dynarray_append(emission, struct bifrost_fmt_constant, quad);
892
893 return 2;
894 }
895
896 static void
897 bi_pack_clause(bi_context *ctx, bi_clause *clause, bi_clause *next,
898 struct util_dynarray *emission)
899 {
900 struct bi_packed_bundle ins_1 = bi_pack_bundle(clause, clause->bundles[0], clause->bundles[0], true);
901 assert(clause->bundle_count == 1);
902
903 /* Used to decide if we elide writes */
904 bool is_fragment = ctx->stage == MESA_SHADER_FRAGMENT;
905
906 /* State for packing constants throughout */
907 unsigned constant_index = 0;
908
909 struct bifrost_fmt1 quad_1 = {
910 .tag = clause->constant_count ? BIFROST_FMT1_CONSTANTS : BIFROST_FMT1_FINAL,
911 .header = bi_pack_header(clause, next, is_fragment),
912 .ins_1 = ins_1.lo,
913 .ins_2 = ins_1.hi & ((1 << 11) - 1),
914 .ins_0 = (ins_1.hi >> 11) & 0b111,
915 };
916
917 util_dynarray_append(emission, struct bifrost_fmt1, quad_1);
918
919 /* Pack the remaining constants */
920
921 while (constant_index < clause->constant_count) {
922 constant_index += bi_pack_constants(ctx, clause,
923 constant_index, emission);
924 }
925 }
926
927 static bi_clause *
928 bi_next_clause(bi_context *ctx, pan_block *block, bi_clause *clause)
929 {
930 /* Try the next clause in this block */
931 if (clause->link.next != &((bi_block *) block)->clauses)
932 return list_first_entry(&(clause->link), bi_clause, link);
933
934 /* Try the next block, or the one after that if it's empty, etc .*/
935 pan_block *next_block = pan_next_block(block);
936
937 bi_foreach_block_from(ctx, next_block, block) {
938 bi_block *blk = (bi_block *) block;
939
940 if (!list_is_empty(&blk->clauses))
941 return list_first_entry(&(blk->clauses), bi_clause, link);
942 }
943
944 return NULL;
945 }
946
947 void
948 bi_pack(bi_context *ctx, struct util_dynarray *emission)
949 {
950 util_dynarray_init(emission, NULL);
951
952 bi_foreach_block(ctx, _block) {
953 bi_block *block = (bi_block *) _block;
954
955 bi_foreach_clause_in_block(block, clause) {
956 bi_clause *next = bi_next_clause(ctx, _block, clause);
957 bi_pack_clause(ctx, clause, next, emission);
958 }
959 }
960 }