pan/mdg: Free previous liveness
[mesa.git] / src / panfrost / midgard / midgard_schedule.c
1 /*
2 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
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 #include "midgard_ops.h"
26 #include "midgard_quirks.h"
27 #include "util/u_memory.h"
28 #include "util/u_math.h"
29 #include "util/half_float.h"
30
31 /* Scheduling for Midgard is complicated, to say the least. ALU instructions
32 * must be grouped into VLIW bundles according to following model:
33 *
34 * [VMUL] [SADD]
35 * [VADD] [SMUL] [VLUT]
36 *
37 * A given instruction can execute on some subset of the units (or a few can
38 * execute on all). Instructions can be either vector or scalar; only scalar
39 * instructions can execute on SADD/SMUL units. Units on a given line execute
40 * in parallel. Subsequent lines execute separately and can pass results
41 * directly via pipeline registers r24/r25, bypassing the register file.
42 *
43 * A bundle can optionally have 128-bits of embedded constants, shared across
44 * all of the instructions within a bundle.
45 *
46 * Instructions consuming conditionals (branches and conditional selects)
47 * require their condition to be written into the conditional register (r31)
48 * within the same bundle they are consumed.
49 *
50 * Fragment writeout requires its argument to be written in full within the
51 * same bundle as the branch, with no hanging dependencies.
52 *
53 * Load/store instructions are also in bundles of simply two instructions, and
54 * texture instructions have no bundling.
55 *
56 * -------------------------------------------------------------------------
57 *
58 */
59
60 /* We create the dependency graph with per-byte granularity */
61
62 #define BYTE_COUNT 16
63
64 static void
65 add_dependency(struct util_dynarray *table, unsigned index, uint16_t mask, midgard_instruction **instructions, unsigned child)
66 {
67 for (unsigned i = 0; i < BYTE_COUNT; ++i) {
68 if (!(mask & (1 << i)))
69 continue;
70
71 struct util_dynarray *parents = &table[(BYTE_COUNT * index) + i];
72
73 util_dynarray_foreach(parents, unsigned, parent) {
74 BITSET_WORD *dependents = instructions[*parent]->dependents;
75
76 /* Already have the dependency */
77 if (BITSET_TEST(dependents, child))
78 continue;
79
80 BITSET_SET(dependents, child);
81 instructions[child]->nr_dependencies++;
82 }
83 }
84 }
85
86 static void
87 mark_access(struct util_dynarray *table, unsigned index, uint16_t mask, unsigned parent)
88 {
89 for (unsigned i = 0; i < BYTE_COUNT; ++i) {
90 if (!(mask & (1 << i)))
91 continue;
92
93 util_dynarray_append(&table[(BYTE_COUNT * index) + i], unsigned, parent);
94 }
95 }
96
97 static void
98 mir_create_dependency_graph(midgard_instruction **instructions, unsigned count, unsigned node_count)
99 {
100 size_t sz = node_count * BYTE_COUNT;
101
102 struct util_dynarray *last_read = calloc(sizeof(struct util_dynarray), sz);
103 struct util_dynarray *last_write = calloc(sizeof(struct util_dynarray), sz);
104
105 for (unsigned i = 0; i < sz; ++i) {
106 util_dynarray_init(&last_read[i], NULL);
107 util_dynarray_init(&last_write[i], NULL);
108 }
109
110 /* Initialize dependency graph */
111 for (unsigned i = 0; i < count; ++i) {
112 instructions[i]->dependents =
113 calloc(BITSET_WORDS(count), sizeof(BITSET_WORD));
114
115 instructions[i]->nr_dependencies = 0;
116 }
117
118 /* Populate dependency graph */
119 for (signed i = count - 1; i >= 0; --i) {
120 if (instructions[i]->compact_branch)
121 continue;
122
123 unsigned dest = instructions[i]->dest;
124 unsigned mask = mir_bytemask(instructions[i]);
125
126 mir_foreach_src((*instructions), s) {
127 unsigned src = instructions[i]->src[s];
128
129 if (src < node_count) {
130 unsigned readmask = mir_bytemask_of_read_components(instructions[i], src);
131 add_dependency(last_write, src, readmask, instructions, i);
132 }
133 }
134
135 if (dest < node_count) {
136 add_dependency(last_read, dest, mask, instructions, i);
137 add_dependency(last_write, dest, mask, instructions, i);
138 mark_access(last_write, dest, mask, i);
139 }
140
141 mir_foreach_src((*instructions), s) {
142 unsigned src = instructions[i]->src[s];
143
144 if (src < node_count) {
145 unsigned readmask = mir_bytemask_of_read_components(instructions[i], src);
146 mark_access(last_read, src, readmask, i);
147 }
148 }
149 }
150
151 /* If there is a branch, all instructions depend on it, as interblock
152 * execution must be purely in-order */
153
154 if (instructions[count - 1]->compact_branch) {
155 BITSET_WORD *dependents = instructions[count - 1]->dependents;
156
157 for (signed i = count - 2; i >= 0; --i) {
158 if (BITSET_TEST(dependents, i))
159 continue;
160
161 BITSET_SET(dependents, i);
162 instructions[i]->nr_dependencies++;
163 }
164 }
165
166 /* Free the intermediate structures */
167 for (unsigned i = 0; i < sz; ++i) {
168 util_dynarray_fini(&last_read[i]);
169 util_dynarray_fini(&last_write[i]);
170 }
171
172 free(last_read);
173 free(last_write);
174 }
175
176 /* Does the mask cover more than a scalar? */
177
178 static bool
179 is_single_component_mask(unsigned mask)
180 {
181 int components = 0;
182
183 for (int c = 0; c < 8; ++c) {
184 if (mask & (1 << c))
185 components++;
186 }
187
188 return components == 1;
189 }
190
191 /* Helpers for scheudling */
192
193 static bool
194 mir_is_scalar(midgard_instruction *ains)
195 {
196 /* Do we try to use it as a vector op? */
197 if (!is_single_component_mask(ains->mask))
198 return false;
199
200 /* Otherwise, check mode hazards */
201 bool could_scalar = true;
202 unsigned szd = nir_alu_type_get_type_size(ains->dest_type);
203 unsigned sz0 = nir_alu_type_get_type_size(ains->src_types[0]);
204 unsigned sz1 = nir_alu_type_get_type_size(ains->src_types[1]);
205
206 /* Only 16/32-bit can run on a scalar unit */
207 could_scalar &= (szd == 16) || (szd == 32);
208
209 if (ains->src[0] != ~0)
210 could_scalar &= (sz0 == 16) || (sz0 == 32);
211
212 if (ains->src[1] != ~0)
213 could_scalar &= (sz1 == 16) || (sz1 == 32);
214
215 return could_scalar;
216 }
217
218 /* How many bytes does this ALU instruction add to the bundle? */
219
220 static unsigned
221 bytes_for_instruction(midgard_instruction *ains)
222 {
223 if (ains->unit & UNITS_ANY_VECTOR)
224 return sizeof(midgard_reg_info) + sizeof(midgard_vector_alu);
225 else if (ains->unit == ALU_ENAB_BRANCH)
226 return sizeof(midgard_branch_extended);
227 else if (ains->compact_branch)
228 return sizeof(uint16_t);
229 else
230 return sizeof(midgard_reg_info) + sizeof(midgard_scalar_alu);
231 }
232
233 /* We would like to flatten the linked list of midgard_instructions in a bundle
234 * to an array of pointers on the heap for easy indexing */
235
236 static midgard_instruction **
237 flatten_mir(midgard_block *block, unsigned *len)
238 {
239 *len = list_length(&block->base.instructions);
240
241 if (!(*len))
242 return NULL;
243
244 midgard_instruction **instructions =
245 calloc(sizeof(midgard_instruction *), *len);
246
247 unsigned i = 0;
248
249 mir_foreach_instr_in_block(block, ins)
250 instructions[i++] = ins;
251
252 return instructions;
253 }
254
255 /* The worklist is the set of instructions that can be scheduled now; that is,
256 * the set of instructions with no remaining dependencies */
257
258 static void
259 mir_initialize_worklist(BITSET_WORD *worklist, midgard_instruction **instructions, unsigned count)
260 {
261 for (unsigned i = 0; i < count; ++i) {
262 if (instructions[i]->nr_dependencies == 0)
263 BITSET_SET(worklist, i);
264 }
265 }
266
267 /* Update the worklist after an instruction terminates. Remove its edges from
268 * the graph and if that causes any node to have no dependencies, add it to the
269 * worklist */
270
271 static void
272 mir_update_worklist(
273 BITSET_WORD *worklist, unsigned count,
274 midgard_instruction **instructions, midgard_instruction *done)
275 {
276 /* Sanity check: if no instruction terminated, there is nothing to do.
277 * If the instruction that terminated had dependencies, that makes no
278 * sense and means we messed up the worklist. Finally, as the purpose
279 * of this routine is to update dependents, we abort early if there are
280 * no dependents defined. */
281
282 if (!done)
283 return;
284
285 assert(done->nr_dependencies == 0);
286
287 if (!done->dependents)
288 return;
289
290 /* We have an instruction with dependents. Iterate each dependent to
291 * remove one dependency (`done`), adding dependents to the worklist
292 * where possible. */
293
294 unsigned i;
295 BITSET_FOREACH_SET(i, done->dependents, count) {
296 assert(instructions[i]->nr_dependencies);
297
298 if (!(--instructions[i]->nr_dependencies))
299 BITSET_SET(worklist, i);
300 }
301
302 free(done->dependents);
303 }
304
305 /* While scheduling, we need to choose instructions satisfying certain
306 * criteria. As we schedule backwards, we choose the *last* instruction in the
307 * worklist to simulate in-order scheduling. Chosen instructions must satisfy a
308 * given predicate. */
309
310 struct midgard_predicate {
311 /* TAG or ~0 for dont-care */
312 unsigned tag;
313
314 /* True if we want to pop off the chosen instruction */
315 bool destructive;
316
317 /* For ALU, choose only this unit */
318 unsigned unit;
319
320 /* State for bundle constants. constants is the actual constants
321 * for the bundle. constant_count is the number of bytes (up to
322 * 16) currently in use for constants. When picking in destructive
323 * mode, the constants array will be updated, and the instruction
324 * will be adjusted to index into the constants array */
325
326 midgard_constants *constants;
327 unsigned constant_mask;
328 bool blend_constant;
329
330 /* Exclude this destination (if not ~0) */
331 unsigned exclude;
332
333 /* Don't schedule instructions consuming conditionals (since we already
334 * scheduled one). Excludes conditional branches and csel */
335 bool no_cond;
336
337 /* Require (or reject) a minimal mask and (if nonzero) given
338 * destination. Used for writeout optimizations */
339
340 unsigned mask;
341 unsigned no_mask;
342 unsigned dest;
343
344 /* Whether to not-care/only/never schedule imov/fmov instructions This
345 * allows non-move instructions to get priority on each unit */
346 unsigned move_mode;
347
348 /* For load/store: how many pipeline registers are in use? The two
349 * scheduled instructions cannot use more than the 256-bits of pipeline
350 * space available or RA will fail (as it would run out of pipeline
351 * registers and fail to spill without breaking the schedule) */
352
353 unsigned pipeline_count;
354 };
355
356 static bool
357 mir_adjust_constant(midgard_instruction *ins, unsigned src,
358 unsigned *bundle_constant_mask,
359 unsigned *comp_mapping,
360 uint8_t *bundle_constants,
361 bool upper)
362 {
363 unsigned type_size = nir_alu_type_get_type_size(ins->src_types[src]) / 8;
364 unsigned type_shift = util_logbase2(type_size);
365 unsigned max_comp = mir_components_for_type(ins->src_types[src]);
366 unsigned comp_mask = mir_from_bytemask(mir_round_bytemask_up(
367 mir_bytemask_of_read_components_index(ins, src),
368 type_size * 8),
369 type_size * 8);
370 unsigned type_mask = (1 << type_size) - 1;
371
372 /* Upper only makes sense for 16-bit */
373 if (type_size != 16 && upper)
374 return false;
375
376 /* For 16-bit, we need to stay on either upper or lower halves to avoid
377 * disrupting the swizzle */
378 unsigned start = upper ? 8 : 0;
379 unsigned length = (type_size == 2) ? 8 : 16;
380
381 for (unsigned comp = 0; comp < max_comp; comp++) {
382 if (!(comp_mask & (1 << comp)))
383 continue;
384
385 uint8_t *constantp = ins->constants.u8 + (type_size * comp);
386 unsigned best_reuse_bytes = 0;
387 signed best_place = -1;
388 unsigned i, j;
389
390 for (i = start; i < (start + length); i += type_size) {
391 unsigned reuse_bytes = 0;
392
393 for (j = 0; j < type_size; j++) {
394 if (!(*bundle_constant_mask & (1 << (i + j))))
395 continue;
396 if (constantp[j] != bundle_constants[i + j])
397 break;
398 if ((i + j) > (start + length))
399 break;
400
401 reuse_bytes++;
402 }
403
404 /* Select the place where existing bytes can be
405 * reused so we leave empty slots to others
406 */
407 if (j == type_size &&
408 (reuse_bytes > best_reuse_bytes || best_place < 0)) {
409 best_reuse_bytes = reuse_bytes;
410 best_place = i;
411 break;
412 }
413 }
414
415 /* This component couldn't fit in the remaining constant slot,
416 * no need check the remaining components, bail out now
417 */
418 if (best_place < 0)
419 return false;
420
421 memcpy(&bundle_constants[i], constantp, type_size);
422 *bundle_constant_mask |= type_mask << best_place;
423 comp_mapping[comp] = best_place >> type_shift;
424 }
425
426 return true;
427 }
428
429 /* For an instruction that can fit, adjust it to fit and update the constants
430 * array, in destructive mode. Returns whether the fitting was successful. */
431
432 static bool
433 mir_adjust_constants(midgard_instruction *ins,
434 struct midgard_predicate *pred,
435 bool destructive)
436 {
437 /* Blend constants dominate */
438 if (ins->has_blend_constant) {
439 if (pred->constant_mask)
440 return false;
441 else if (destructive) {
442 pred->blend_constant = true;
443 pred->constant_mask = 0xffff;
444 return true;
445 }
446 }
447
448 /* No constant, nothing to adjust */
449 if (!ins->has_constants)
450 return true;
451
452 unsigned r_constant = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
453 unsigned bundle_constant_mask = pred->constant_mask;
454 unsigned comp_mapping[2][16] = { };
455 uint8_t bundle_constants[16];
456
457 memcpy(bundle_constants, pred->constants, 16);
458
459 /* Let's try to find a place for each active component of the constant
460 * register.
461 */
462 for (unsigned src = 0; src < 2; ++src) {
463 if (ins->src[src] != SSA_FIXED_REGISTER(REGISTER_CONSTANT))
464 continue;
465
466 /* First, try lower half (or whole for !16) */
467 if (mir_adjust_constant(ins, src, &bundle_constant_mask,
468 comp_mapping[src], bundle_constants, false))
469 continue;
470
471 /* Next, try upper half */
472 if (mir_adjust_constant(ins, src, &bundle_constant_mask,
473 comp_mapping[src], bundle_constants, true))
474 continue;
475
476 /* Otherwise bail */
477 return false;
478 }
479
480 /* If non-destructive, we're done */
481 if (!destructive)
482 return true;
483
484 /* Otherwise update the constant_mask and constant values */
485 pred->constant_mask = bundle_constant_mask;
486 memcpy(pred->constants, bundle_constants, 16);
487
488 /* Use comp_mapping as a swizzle */
489 mir_foreach_src(ins, s) {
490 if (ins->src[s] == r_constant)
491 mir_compose_swizzle(ins->swizzle[s], comp_mapping[s], ins->swizzle[s]);
492 }
493
494 return true;
495 }
496
497 /* Conservative estimate of the pipeline registers required for load/store */
498
499 static unsigned
500 mir_pipeline_count(midgard_instruction *ins)
501 {
502 unsigned bytecount = 0;
503
504 mir_foreach_src(ins, i) {
505 /* Skip empty source */
506 if (ins->src[i] == ~0) continue;
507
508 unsigned bytemask = mir_bytemask_of_read_components_index(ins, i);
509
510 unsigned max = util_logbase2(bytemask) + 1;
511 bytecount += max;
512 }
513
514 return DIV_ROUND_UP(bytecount, 16);
515 }
516
517 /* Matches FADD x, x with modifiers compatible. Since x + x = x * 2, for
518 * any x including of the form f(y) for some swizzle/abs/neg function f */
519
520 static bool
521 mir_is_add_2(midgard_instruction *ins)
522 {
523 if (ins->op != midgard_alu_op_fadd)
524 return false;
525
526 if (ins->src[0] != ins->src[1])
527 return false;
528
529 if (ins->src_types[0] != ins->src_types[1])
530 return false;
531
532 for (unsigned i = 0; i < MIR_VEC_COMPONENTS; ++i) {
533 if (ins->swizzle[0][i] != ins->swizzle[1][i])
534 return false;
535 }
536
537 if (ins->src_abs[0] != ins->src_abs[1])
538 return false;
539
540 if (ins->src_neg[0] != ins->src_neg[1])
541 return false;
542
543 return true;
544 }
545
546 static void
547 mir_adjust_unit(midgard_instruction *ins, unsigned unit)
548 {
549 /* FADD x, x = FMUL x, #2 */
550 if (mir_is_add_2(ins) && (unit & (UNITS_MUL | UNIT_VLUT))) {
551 ins->op = midgard_alu_op_fmul;
552
553 ins->src[1] = ~0;
554 ins->src_abs[1] = false;
555 ins->src_neg[1] = false;
556
557 ins->has_inline_constant = true;
558 ins->inline_constant = _mesa_float_to_half(2.0);
559 }
560 }
561
562 static unsigned
563 mir_has_unit(midgard_instruction *ins, unsigned unit)
564 {
565 if (alu_opcode_props[ins->op].props & unit)
566 return true;
567
568 /* FADD x, x can run on any adder or any multiplier */
569 if (mir_is_add_2(ins))
570 return true;
571
572 return false;
573 }
574
575 /* Net change in liveness if an instruction were scheduled. Loosely based on
576 * ir3's scheduler. */
577
578 static int
579 mir_live_effect(uint16_t *liveness, midgard_instruction *ins, bool destructive)
580 {
581 /* TODO: what if dest is used multiple times? */
582 int free_live = 0;
583
584 if (ins->dest < SSA_FIXED_MINIMUM) {
585 unsigned bytemask = mir_bytemask(ins);
586 bytemask = util_next_power_of_two(bytemask + 1) - 1;
587 free_live += util_bitcount(liveness[ins->dest] & bytemask);
588
589 if (destructive)
590 liveness[ins->dest] &= ~bytemask;
591 }
592
593 int new_live = 0;
594
595 mir_foreach_src(ins, s) {
596 unsigned S = ins->src[s];
597
598 bool dupe = false;
599
600 for (unsigned q = 0; q < s; ++q)
601 dupe |= (ins->src[q] == S);
602
603 if (dupe)
604 continue;
605
606 if (S < SSA_FIXED_MINIMUM) {
607 unsigned bytemask = mir_bytemask_of_read_components(ins, S);
608 bytemask = util_next_power_of_two(bytemask + 1) - 1;
609
610 /* Count only the new components */
611 new_live += util_bitcount(bytemask & ~(liveness[S]));
612
613 if (destructive)
614 liveness[S] |= bytemask;
615 }
616 }
617
618 return new_live - free_live;
619 }
620
621 static midgard_instruction *
622 mir_choose_instruction(
623 midgard_instruction **instructions,
624 uint16_t *liveness,
625 BITSET_WORD *worklist, unsigned count,
626 struct midgard_predicate *predicate)
627 {
628 /* Parse the predicate */
629 unsigned tag = predicate->tag;
630 bool alu = tag == TAG_ALU_4;
631 bool ldst = tag == TAG_LOAD_STORE_4;
632 unsigned unit = predicate->unit;
633 bool branch = alu && (unit == ALU_ENAB_BR_COMPACT);
634 bool scalar = (unit != ~0) && (unit & UNITS_SCALAR);
635 bool no_cond = predicate->no_cond;
636
637 unsigned mask = predicate->mask;
638 unsigned dest = predicate->dest;
639 bool needs_dest = mask & 0xF;
640
641 /* Iterate to find the best instruction satisfying the predicate */
642 unsigned i;
643
644 signed best_index = -1;
645 signed best_effect = INT_MAX;
646 bool best_conditional = false;
647
648 /* Enforce a simple metric limiting distance to keep down register
649 * pressure. TOOD: replace with liveness tracking for much better
650 * results */
651
652 unsigned max_active = 0;
653 unsigned max_distance = 36;
654
655 BITSET_FOREACH_SET(i, worklist, count) {
656 max_active = MAX2(max_active, i);
657 }
658
659 BITSET_FOREACH_SET(i, worklist, count) {
660 bool is_move = alu &&
661 (instructions[i]->op == midgard_alu_op_imov ||
662 instructions[i]->op == midgard_alu_op_fmov);
663
664 if ((max_active - i) >= max_distance)
665 continue;
666
667 if (tag != ~0 && instructions[i]->type != tag)
668 continue;
669
670 if (predicate->exclude != ~0 && instructions[i]->dest == predicate->exclude)
671 continue;
672
673 if (alu && !branch && !(mir_has_unit(instructions[i], unit)))
674 continue;
675
676 /* 0: don't care, 1: no moves, 2: only moves */
677 if (predicate->move_mode && ((predicate->move_mode - 1) != is_move))
678 continue;
679
680 if (branch && !instructions[i]->compact_branch)
681 continue;
682
683 if (alu && scalar && !mir_is_scalar(instructions[i]))
684 continue;
685
686 if (alu && !mir_adjust_constants(instructions[i], predicate, false))
687 continue;
688
689 if (needs_dest && instructions[i]->dest != dest)
690 continue;
691
692 if (mask && ((~instructions[i]->mask) & mask))
693 continue;
694
695 if (instructions[i]->mask & predicate->no_mask)
696 continue;
697
698 if (ldst && mir_pipeline_count(instructions[i]) + predicate->pipeline_count > 2)
699 continue;
700
701 bool conditional = alu && !branch && OP_IS_CSEL(instructions[i]->op);
702 conditional |= (branch && instructions[i]->branch.conditional);
703
704 if (conditional && no_cond)
705 continue;
706
707 int effect = mir_live_effect(liveness, instructions[i], false);
708
709 if (effect > best_effect)
710 continue;
711
712 if (effect == best_effect && (signed) i < best_index)
713 continue;
714
715 best_effect = effect;
716 best_index = i;
717 best_conditional = conditional;
718 }
719
720 /* Did we find anything? */
721
722 if (best_index < 0)
723 return NULL;
724
725 /* If we found something, remove it from the worklist */
726 assert(best_index < count);
727
728 if (predicate->destructive) {
729 BITSET_CLEAR(worklist, best_index);
730
731 if (alu)
732 mir_adjust_constants(instructions[best_index], predicate, true);
733
734 if (ldst)
735 predicate->pipeline_count += mir_pipeline_count(instructions[best_index]);
736
737 if (alu)
738 mir_adjust_unit(instructions[best_index], unit);
739
740 /* Once we schedule a conditional, we can't again */
741 predicate->no_cond |= best_conditional;
742 mir_live_effect(liveness, instructions[best_index], true);
743 }
744
745 return instructions[best_index];
746 }
747
748 /* Still, we don't choose instructions in a vacuum. We need a way to choose the
749 * best bundle type (ALU, load/store, texture). Nondestructive. */
750
751 static unsigned
752 mir_choose_bundle(
753 midgard_instruction **instructions,
754 uint16_t *liveness,
755 BITSET_WORD *worklist, unsigned count)
756 {
757 /* At the moment, our algorithm is very simple - use the bundle of the
758 * best instruction, regardless of what else could be scheduled
759 * alongside it. This is not optimal but it works okay for in-order */
760
761 struct midgard_predicate predicate = {
762 .tag = ~0,
763 .destructive = false,
764 .exclude = ~0
765 };
766
767 midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate);
768
769 if (chosen)
770 return chosen->type;
771 else
772 return ~0;
773 }
774
775 /* We want to choose an ALU instruction filling a given unit */
776 static void
777 mir_choose_alu(midgard_instruction **slot,
778 midgard_instruction **instructions,
779 uint16_t *liveness,
780 BITSET_WORD *worklist, unsigned len,
781 struct midgard_predicate *predicate,
782 unsigned unit)
783 {
784 /* Did we already schedule to this slot? */
785 if ((*slot) != NULL)
786 return;
787
788 /* Try to schedule something, if not */
789 predicate->unit = unit;
790 *slot = mir_choose_instruction(instructions, liveness, worklist, len, predicate);
791
792 /* Store unit upon scheduling */
793 if (*slot && !((*slot)->compact_branch))
794 (*slot)->unit = unit;
795 }
796
797 /* When we are scheduling a branch/csel, we need the consumed condition in the
798 * same block as a pipeline register. There are two options to enable this:
799 *
800 * - Move the conditional into the bundle. Preferred, but only works if the
801 * conditional is used only once and is from this block.
802 * - Copy the conditional.
803 *
804 * We search for the conditional. If it's in this block, single-use, and
805 * without embedded constants, we schedule it immediately. Otherwise, we
806 * schedule a move for it.
807 *
808 * mir_comparison_mobile is a helper to find the moveable condition.
809 */
810
811 static unsigned
812 mir_comparison_mobile(
813 compiler_context *ctx,
814 midgard_instruction **instructions,
815 struct midgard_predicate *predicate,
816 unsigned count,
817 unsigned cond)
818 {
819 if (!mir_single_use(ctx, cond))
820 return ~0;
821
822 unsigned ret = ~0;
823
824 for (unsigned i = 0; i < count; ++i) {
825 if (instructions[i]->dest != cond)
826 continue;
827
828 /* Must fit in an ALU bundle */
829 if (instructions[i]->type != TAG_ALU_4)
830 return ~0;
831
832 /* If it would itself require a condition, that's recursive */
833 if (OP_IS_CSEL(instructions[i]->op))
834 return ~0;
835
836 /* We'll need to rewrite to .w but that doesn't work for vector
837 * ops that don't replicate (ball/bany), so bail there */
838
839 if (GET_CHANNEL_COUNT(alu_opcode_props[instructions[i]->op].props))
840 return ~0;
841
842 /* Ensure it will fit with constants */
843
844 if (!mir_adjust_constants(instructions[i], predicate, false))
845 return ~0;
846
847 /* Ensure it is written only once */
848
849 if (ret != ~0)
850 return ~0;
851 else
852 ret = i;
853 }
854
855 /* Inject constants now that we are sure we want to */
856 if (ret != ~0)
857 mir_adjust_constants(instructions[ret], predicate, true);
858
859 return ret;
860 }
861
862 /* Using the information about the moveable conditional itself, we either pop
863 * that condition off the worklist for use now, or create a move to
864 * artificially schedule instead as a fallback */
865
866 static midgard_instruction *
867 mir_schedule_comparison(
868 compiler_context *ctx,
869 midgard_instruction **instructions,
870 struct midgard_predicate *predicate,
871 BITSET_WORD *worklist, unsigned count,
872 unsigned cond, bool vector, unsigned *swizzle,
873 midgard_instruction *user)
874 {
875 /* TODO: swizzle when scheduling */
876 unsigned comp_i =
877 (!vector && (swizzle[0] == 0)) ?
878 mir_comparison_mobile(ctx, instructions, predicate, count, cond) : ~0;
879
880 /* If we can, schedule the condition immediately */
881 if ((comp_i != ~0) && BITSET_TEST(worklist, comp_i)) {
882 assert(comp_i < count);
883 BITSET_CLEAR(worklist, comp_i);
884 return instructions[comp_i];
885 }
886
887 /* Otherwise, we insert a move */
888
889 midgard_instruction mov = v_mov(cond, cond);
890 mov.mask = vector ? 0xF : 0x1;
891 memcpy(mov.swizzle[1], swizzle, sizeof(mov.swizzle[1]));
892
893 return mir_insert_instruction_before(ctx, user, mov);
894 }
895
896 /* Most generally, we need instructions writing to r31 in the appropriate
897 * components */
898
899 static midgard_instruction *
900 mir_schedule_condition(compiler_context *ctx,
901 struct midgard_predicate *predicate,
902 BITSET_WORD *worklist, unsigned count,
903 midgard_instruction **instructions,
904 midgard_instruction *last)
905 {
906 /* For a branch, the condition is the only argument; for csel, third */
907 bool branch = last->compact_branch;
908 unsigned condition_index = branch ? 0 : 2;
909
910 /* csel_v is vector; otherwise, conditions are scalar */
911 bool vector = !branch && OP_IS_CSEL_V(last->op);
912
913 /* Grab the conditional instruction */
914
915 midgard_instruction *cond = mir_schedule_comparison(
916 ctx, instructions, predicate, worklist, count, last->src[condition_index],
917 vector, last->swizzle[2], last);
918
919 /* We have exclusive reign over this (possibly move) conditional
920 * instruction. We can rewrite into a pipeline conditional register */
921
922 predicate->exclude = cond->dest;
923 cond->dest = SSA_FIXED_REGISTER(31);
924
925 if (!vector) {
926 cond->mask = (1 << COMPONENT_W);
927
928 mir_foreach_src(cond, s) {
929 if (cond->src[s] == ~0)
930 continue;
931
932 for (unsigned q = 0; q < 4; ++q)
933 cond->swizzle[s][q + COMPONENT_W] = cond->swizzle[s][q];
934 }
935 }
936
937 /* Schedule the unit: csel is always in the latter pipeline, so a csel
938 * condition must be in the former pipeline stage (vmul/sadd),
939 * depending on scalar/vector of the instruction itself. A branch must
940 * be written from the latter pipeline stage and a branch condition is
941 * always scalar, so it is always in smul (exception: ball/bany, which
942 * will be vadd) */
943
944 if (branch)
945 cond->unit = UNIT_SMUL;
946 else
947 cond->unit = vector ? UNIT_VMUL : UNIT_SADD;
948
949 return cond;
950 }
951
952 /* Schedules a single bundle of the given type */
953
954 static midgard_bundle
955 mir_schedule_texture(
956 midgard_instruction **instructions,
957 uint16_t *liveness,
958 BITSET_WORD *worklist, unsigned len,
959 bool is_vertex)
960 {
961 struct midgard_predicate predicate = {
962 .tag = TAG_TEXTURE_4,
963 .destructive = true,
964 .exclude = ~0
965 };
966
967 midgard_instruction *ins =
968 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
969
970 mir_update_worklist(worklist, len, instructions, ins);
971
972 struct midgard_bundle out = {
973 .tag = ins->op == TEXTURE_OP_BARRIER ?
974 TAG_TEXTURE_4_BARRIER :
975 (ins->op == TEXTURE_OP_TEXEL_FETCH) || is_vertex ?
976 TAG_TEXTURE_4_VTX : TAG_TEXTURE_4,
977 .instruction_count = 1,
978 .instructions = { ins }
979 };
980
981 return out;
982 }
983
984 static midgard_bundle
985 mir_schedule_ldst(
986 midgard_instruction **instructions,
987 uint16_t *liveness,
988 BITSET_WORD *worklist, unsigned len)
989 {
990 struct midgard_predicate predicate = {
991 .tag = TAG_LOAD_STORE_4,
992 .destructive = true,
993 .exclude = ~0
994 };
995
996 /* Try to pick two load/store ops. Second not gauranteed to exist */
997
998 midgard_instruction *ins =
999 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
1000
1001 midgard_instruction *pair =
1002 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
1003
1004 struct midgard_bundle out = {
1005 .tag = TAG_LOAD_STORE_4,
1006 .instruction_count = pair ? 2 : 1,
1007 .instructions = { ins, pair }
1008 };
1009
1010 /* We have to update the worklist atomically, since the two
1011 * instructions run concurrently (TODO: verify it's not pipelined) */
1012
1013 mir_update_worklist(worklist, len, instructions, ins);
1014 mir_update_worklist(worklist, len, instructions, pair);
1015
1016 return out;
1017 }
1018
1019 static void
1020 mir_schedule_zs_write(
1021 compiler_context *ctx,
1022 struct midgard_predicate *predicate,
1023 midgard_instruction **instructions,
1024 uint16_t *liveness,
1025 BITSET_WORD *worklist, unsigned len,
1026 midgard_instruction *branch,
1027 midgard_instruction **smul,
1028 midgard_instruction **vadd,
1029 midgard_instruction **vlut,
1030 bool stencil)
1031 {
1032 bool success = false;
1033 unsigned idx = stencil ? 3 : 2;
1034 unsigned src = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(1) : branch->src[idx];
1035
1036 predicate->dest = src;
1037 predicate->mask = 0x1;
1038
1039 midgard_instruction **units[] = { smul, vadd, vlut };
1040 unsigned unit_names[] = { UNIT_SMUL, UNIT_VADD, UNIT_VLUT };
1041
1042 for (unsigned i = 0; i < 3; ++i) {
1043 if (*(units[i]))
1044 continue;
1045
1046 predicate->unit = unit_names[i];
1047 midgard_instruction *ins =
1048 mir_choose_instruction(instructions, liveness, worklist, len, predicate);
1049
1050 if (ins) {
1051 ins->unit = unit_names[i];
1052 *(units[i]) = ins;
1053 success |= true;
1054 break;
1055 }
1056 }
1057
1058 predicate->dest = predicate->mask = 0;
1059
1060 if (success)
1061 return;
1062
1063 midgard_instruction *mov = ralloc(ctx, midgard_instruction);
1064 *mov = v_mov(src, make_compiler_temp(ctx));
1065 mov->mask = 0x1;
1066
1067 branch->src[idx] = mov->dest;
1068
1069 if (stencil) {
1070 unsigned swizzle = (branch->src[0] == ~0) ? COMPONENT_Y : COMPONENT_X;
1071
1072 for (unsigned c = 0; c < 16; ++c)
1073 mov->swizzle[1][c] = swizzle;
1074 }
1075
1076 for (unsigned i = 0; i < 3; ++i) {
1077 if (!(*(units[i]))) {
1078 *(units[i]) = mov;
1079 mov->unit = unit_names[i];
1080 return;
1081 }
1082 }
1083
1084 unreachable("Could not schedule Z/S move to any unit");
1085 }
1086
1087 static midgard_bundle
1088 mir_schedule_alu(
1089 compiler_context *ctx,
1090 midgard_instruction **instructions,
1091 uint16_t *liveness,
1092 BITSET_WORD *worklist, unsigned len)
1093 {
1094 struct midgard_bundle bundle = {};
1095
1096 unsigned bytes_emitted = sizeof(bundle.control);
1097
1098 struct midgard_predicate predicate = {
1099 .tag = TAG_ALU_4,
1100 .destructive = true,
1101 .exclude = ~0,
1102 .constants = &bundle.constants
1103 };
1104
1105 midgard_instruction *vmul = NULL;
1106 midgard_instruction *vadd = NULL;
1107 midgard_instruction *vlut = NULL;
1108 midgard_instruction *smul = NULL;
1109 midgard_instruction *sadd = NULL;
1110 midgard_instruction *branch = NULL;
1111
1112 mir_choose_alu(&branch, instructions, liveness, worklist, len, &predicate, ALU_ENAB_BR_COMPACT);
1113 mir_update_worklist(worklist, len, instructions, branch);
1114 unsigned writeout = branch ? branch->writeout : 0;
1115
1116 if (branch && branch->branch.conditional) {
1117 midgard_instruction *cond = mir_schedule_condition(ctx, &predicate, worklist, len, instructions, branch);
1118
1119 if (cond->unit == UNIT_VADD)
1120 vadd = cond;
1121 else if (cond->unit == UNIT_SMUL)
1122 smul = cond;
1123 else
1124 unreachable("Bad condition");
1125 }
1126
1127 /* If we have a render target reference, schedule a move for it. Since
1128 * this will be in sadd, we boost this to prevent scheduling csel into
1129 * smul */
1130
1131 if (writeout && (branch->constants.u32[0] || ctx->is_blend)) {
1132 sadd = ralloc(ctx, midgard_instruction);
1133 *sadd = v_mov(~0, make_compiler_temp(ctx));
1134 sadd->unit = UNIT_SADD;
1135 sadd->mask = 0x1;
1136 sadd->has_inline_constant = true;
1137 sadd->inline_constant = branch->constants.u32[0];
1138 branch->src[1] = sadd->dest;
1139 branch->src_types[1] = sadd->dest_type;
1140
1141 /* Mask off any conditionals. Could be optimized to just scalar
1142 * conditionals TODO */
1143 predicate.no_cond = true;
1144 }
1145
1146 if (writeout) {
1147 /* Propagate up */
1148 bundle.last_writeout = branch->last_writeout;
1149 }
1150
1151 /* When MRT is in use, writeout loops require r1.w to be filled (with a
1152 * return address? by symmetry with Bifrost, etc), at least for blend
1153 * shaders to work properly. When MRT is not in use (including on SFBD
1154 * GPUs), this is not needed. Blend shaders themselves don't know if
1155 * they are paired with MRT or not so they always need this, at least
1156 * on MFBD GPUs. */
1157
1158 if (writeout && (ctx->is_blend || ctx->writeout_branch[1])) {
1159 vadd = ralloc(ctx, midgard_instruction);
1160 *vadd = v_mov(~0, make_compiler_temp(ctx));
1161
1162 if (!ctx->is_blend) {
1163 vadd->op = midgard_alu_op_iadd;
1164 vadd->src[0] = SSA_FIXED_REGISTER(31);
1165 vadd->src_types[0] = nir_type_uint32;
1166
1167 for (unsigned c = 0; c < 16; ++c)
1168 vadd->swizzle[0][c] = COMPONENT_X;
1169
1170 vadd->has_inline_constant = true;
1171 vadd->inline_constant = 0;
1172 } else {
1173 vadd->src[1] = SSA_FIXED_REGISTER(1);
1174 vadd->src_types[0] = nir_type_uint32;
1175
1176 for (unsigned c = 0; c < 16; ++c)
1177 vadd->swizzle[1][c] = COMPONENT_W;
1178 }
1179
1180 vadd->unit = UNIT_VADD;
1181 vadd->mask = 0x1;
1182 branch->dest = vadd->dest;
1183 branch->dest_type = vadd->dest_type;
1184 }
1185
1186 if (writeout & PAN_WRITEOUT_Z)
1187 mir_schedule_zs_write(ctx, &predicate, instructions, liveness, worklist, len, branch, &smul, &vadd, &vlut, false);
1188
1189 if (writeout & PAN_WRITEOUT_S)
1190 mir_schedule_zs_write(ctx, &predicate, instructions, liveness, worklist, len, branch, &smul, &vadd, &vlut, true);
1191
1192 mir_choose_alu(&smul, instructions, liveness, worklist, len, &predicate, UNIT_SMUL);
1193
1194 for (unsigned mode = 1; mode < 3; ++mode) {
1195 predicate.move_mode = mode;
1196 predicate.no_mask = writeout ? (1 << 3) : 0;
1197 mir_choose_alu(&vlut, instructions, liveness, worklist, len, &predicate, UNIT_VLUT);
1198 predicate.no_mask = 0;
1199 mir_choose_alu(&vadd, instructions, liveness, worklist, len, &predicate, UNIT_VADD);
1200 }
1201
1202 /* Reset */
1203 predicate.move_mode = 0;
1204
1205 mir_update_worklist(worklist, len, instructions, vlut);
1206 mir_update_worklist(worklist, len, instructions, vadd);
1207 mir_update_worklist(worklist, len, instructions, smul);
1208
1209 bool vadd_csel = vadd && OP_IS_CSEL(vadd->op);
1210 bool smul_csel = smul && OP_IS_CSEL(smul->op);
1211
1212 if (vadd_csel || smul_csel) {
1213 midgard_instruction *ins = vadd_csel ? vadd : smul;
1214 midgard_instruction *cond = mir_schedule_condition(ctx, &predicate, worklist, len, instructions, ins);
1215
1216 if (cond->unit == UNIT_VMUL)
1217 vmul = cond;
1218 else if (cond->unit == UNIT_SADD)
1219 sadd = cond;
1220 else
1221 unreachable("Bad condition");
1222 }
1223
1224 /* Stage 2, let's schedule sadd before vmul for writeout */
1225 mir_choose_alu(&sadd, instructions, liveness, worklist, len, &predicate, UNIT_SADD);
1226
1227 /* Check if writeout reads its own register */
1228
1229 if (writeout) {
1230 midgard_instruction *stages[] = { sadd, vadd, smul, vlut };
1231 unsigned src = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(0) : branch->src[0];
1232 unsigned writeout_mask = 0x0;
1233 bool bad_writeout = false;
1234
1235 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1236 if (!stages[i])
1237 continue;
1238
1239 if (stages[i]->dest != src)
1240 continue;
1241
1242 writeout_mask |= stages[i]->mask;
1243 bad_writeout |= mir_has_arg(stages[i], branch->src[0]);
1244 }
1245
1246 /* It's possible we'll be able to schedule something into vmul
1247 * to fill r0. Let's peak into the future, trying to schedule
1248 * vmul specially that way. */
1249
1250 unsigned full_mask = 0xF;
1251
1252 if (!bad_writeout && writeout_mask != full_mask) {
1253 predicate.unit = UNIT_VMUL;
1254 predicate.dest = src;
1255 predicate.mask = writeout_mask ^ full_mask;
1256
1257 struct midgard_instruction *peaked =
1258 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
1259
1260 if (peaked) {
1261 vmul = peaked;
1262 vmul->unit = UNIT_VMUL;
1263 writeout_mask |= predicate.mask;
1264 assert(writeout_mask == full_mask);
1265 }
1266
1267 /* Cleanup */
1268 predicate.dest = predicate.mask = 0;
1269 }
1270
1271 /* Finally, add a move if necessary */
1272 if (bad_writeout || writeout_mask != full_mask) {
1273 unsigned temp = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(0) : make_compiler_temp(ctx);
1274
1275 vmul = ralloc(ctx, midgard_instruction);
1276 *vmul = v_mov(src, temp);
1277 vmul->unit = UNIT_VMUL;
1278 vmul->mask = full_mask ^ writeout_mask;
1279
1280 /* Rewrite to use our temp */
1281
1282 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1283 if (stages[i])
1284 mir_rewrite_index_dst_single(stages[i], src, temp);
1285 }
1286
1287 mir_rewrite_index_src_single(branch, src, temp);
1288 }
1289 }
1290
1291 mir_choose_alu(&vmul, instructions, liveness, worklist, len, &predicate, UNIT_VMUL);
1292
1293 mir_update_worklist(worklist, len, instructions, vmul);
1294 mir_update_worklist(worklist, len, instructions, sadd);
1295
1296 bundle.has_blend_constant = predicate.blend_constant;
1297 bundle.has_embedded_constants = predicate.constant_mask != 0;
1298
1299 unsigned padding = 0;
1300
1301 /* Now that we have finished scheduling, build up the bundle */
1302 midgard_instruction *stages[] = { vmul, sadd, vadd, smul, vlut, branch };
1303
1304 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1305 if (stages[i]) {
1306 bundle.control |= stages[i]->unit;
1307 bytes_emitted += bytes_for_instruction(stages[i]);
1308 bundle.instructions[bundle.instruction_count++] = stages[i];
1309
1310 /* If we branch, we can't spill to TLS since the store
1311 * instruction will never get executed. We could try to
1312 * break the bundle but this is probably easier for
1313 * now. */
1314
1315 if (branch)
1316 stages[i]->no_spill |= (1 << REG_CLASS_WORK);
1317 }
1318 }
1319
1320 /* Pad ALU op to nearest word */
1321
1322 if (bytes_emitted & 15) {
1323 padding = 16 - (bytes_emitted & 15);
1324 bytes_emitted += padding;
1325 }
1326
1327 /* Constants must always be quadwords */
1328 if (bundle.has_embedded_constants)
1329 bytes_emitted += 16;
1330
1331 /* Size ALU instruction for tag */
1332 bundle.tag = (TAG_ALU_4) + (bytes_emitted / 16) - 1;
1333
1334 bool tilebuf_wait = branch && branch->compact_branch &&
1335 branch->branch.target_type == TARGET_TILEBUF_WAIT;
1336
1337 /* MRT capable GPUs use a special writeout procedure */
1338 if ((writeout || tilebuf_wait) && !(ctx->quirks & MIDGARD_NO_UPPER_ALU))
1339 bundle.tag += 4;
1340
1341 bundle.padding = padding;
1342 bundle.control |= bundle.tag;
1343
1344 return bundle;
1345 }
1346
1347 /* Schedule a single block by iterating its instruction to create bundles.
1348 * While we go, tally about the bundle sizes to compute the block size. */
1349
1350
1351 static void
1352 schedule_block(compiler_context *ctx, midgard_block *block)
1353 {
1354 /* Copy list to dynamic array */
1355 unsigned len = 0;
1356 midgard_instruction **instructions = flatten_mir(block, &len);
1357
1358 if (!len)
1359 return;
1360
1361 /* Calculate dependencies and initial worklist */
1362 unsigned node_count = ctx->temp_count + 1;
1363 mir_create_dependency_graph(instructions, len, node_count);
1364
1365 /* Allocate the worklist */
1366 size_t sz = BITSET_WORDS(len) * sizeof(BITSET_WORD);
1367 BITSET_WORD *worklist = calloc(sz, 1);
1368 uint16_t *liveness = calloc(node_count, 2);
1369 mir_initialize_worklist(worklist, instructions, len);
1370
1371 struct util_dynarray bundles;
1372 util_dynarray_init(&bundles, NULL);
1373
1374 block->quadword_count = 0;
1375 unsigned blend_offset = 0;
1376
1377 for (;;) {
1378 unsigned tag = mir_choose_bundle(instructions, liveness, worklist, len);
1379 midgard_bundle bundle;
1380
1381 if (tag == TAG_TEXTURE_4)
1382 bundle = mir_schedule_texture(instructions, liveness, worklist, len, ctx->stage != MESA_SHADER_FRAGMENT);
1383 else if (tag == TAG_LOAD_STORE_4)
1384 bundle = mir_schedule_ldst(instructions, liveness, worklist, len);
1385 else if (tag == TAG_ALU_4)
1386 bundle = mir_schedule_alu(ctx, instructions, liveness, worklist, len);
1387 else
1388 break;
1389
1390 util_dynarray_append(&bundles, midgard_bundle, bundle);
1391
1392 if (bundle.has_blend_constant)
1393 blend_offset = block->quadword_count;
1394
1395 block->quadword_count += midgard_tag_props[bundle.tag].size;
1396 }
1397
1398 /* We emitted bundles backwards; copy into the block in reverse-order */
1399
1400 util_dynarray_init(&block->bundles, block);
1401 util_dynarray_foreach_reverse(&bundles, midgard_bundle, bundle) {
1402 util_dynarray_append(&block->bundles, midgard_bundle, *bundle);
1403 }
1404 util_dynarray_fini(&bundles);
1405
1406 /* Blend constant was backwards as well. blend_offset if set is
1407 * strictly positive, as an offset of zero would imply constants before
1408 * any instructions which is invalid in Midgard. TODO: blend constants
1409 * are broken if you spill since then quadword_count becomes invalid
1410 * XXX */
1411
1412 if (blend_offset)
1413 ctx->blend_constant_offset = ((ctx->quadword_count + block->quadword_count) - blend_offset - 1) * 0x10;
1414
1415 block->scheduled = true;
1416 ctx->quadword_count += block->quadword_count;
1417
1418 /* Reorder instructions to match bundled. First remove existing
1419 * instructions and then recreate the list */
1420
1421 mir_foreach_instr_in_block_safe(block, ins) {
1422 list_del(&ins->link);
1423 }
1424
1425 mir_foreach_instr_in_block_scheduled_rev(block, ins) {
1426 list_add(&ins->link, &block->base.instructions);
1427 }
1428
1429 free(instructions); /* Allocated by flatten_mir() */
1430 free(worklist);
1431 free(liveness);
1432 }
1433
1434 void
1435 midgard_schedule_program(compiler_context *ctx)
1436 {
1437 midgard_promote_uniforms(ctx);
1438
1439 /* Must be lowered right before scheduling */
1440 mir_squeeze_index(ctx);
1441 mir_lower_special_reads(ctx);
1442 mir_squeeze_index(ctx);
1443
1444 /* Lowering can introduce some dead moves */
1445
1446 mir_foreach_block(ctx, _block) {
1447 midgard_block *block = (midgard_block *) _block;
1448 midgard_opt_dead_move_eliminate(ctx, block);
1449 schedule_block(ctx, block);
1450 }
1451
1452 }