pan/mdg: Schedule based on 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(ains->br_compact);
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 /* For VADD/VLUT whether to only/never schedule imov/fmov instructions
345 * This allows non-move instructions to get priority on each unit */
346 bool moves;
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->alu.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->alu.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->alu.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]->alu.op == midgard_alu_op_imov ||
662 instructions[i]->alu.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 if ((unit == UNIT_VLUT || unit == UNIT_VADD) && (predicate->moves != is_move))
677 continue;
678
679 if (branch && !instructions[i]->compact_branch)
680 continue;
681
682 if (alu && scalar && !mir_is_scalar(instructions[i]))
683 continue;
684
685 if (alu && !mir_adjust_constants(instructions[i], predicate, false))
686 continue;
687
688 if (needs_dest && instructions[i]->dest != dest)
689 continue;
690
691 if (mask && ((~instructions[i]->mask) & mask))
692 continue;
693
694 if (instructions[i]->mask & predicate->no_mask)
695 continue;
696
697 if (ldst && mir_pipeline_count(instructions[i]) + predicate->pipeline_count > 2)
698 continue;
699
700 bool conditional = alu && !branch && OP_IS_CSEL(instructions[i]->alu.op);
701 conditional |= (branch && instructions[i]->branch.conditional);
702
703 if (conditional && no_cond)
704 continue;
705
706 int effect = mir_live_effect(liveness, instructions[i], false);
707
708 if (effect > best_effect)
709 continue;
710
711 if (effect == best_effect && (signed) i < best_index)
712 continue;
713
714 best_effect = effect;
715 best_index = i;
716 best_conditional = conditional;
717 }
718
719 /* Did we find anything? */
720
721 if (best_index < 0)
722 return NULL;
723
724 /* If we found something, remove it from the worklist */
725 assert(best_index < count);
726
727 if (predicate->destructive) {
728 BITSET_CLEAR(worklist, best_index);
729
730 if (alu)
731 mir_adjust_constants(instructions[best_index], predicate, true);
732
733 if (ldst)
734 predicate->pipeline_count += mir_pipeline_count(instructions[best_index]);
735
736 if (alu)
737 mir_adjust_unit(instructions[best_index], unit);
738
739 /* Once we schedule a conditional, we can't again */
740 predicate->no_cond |= best_conditional;
741 mir_live_effect(liveness, instructions[best_index], true);
742 }
743
744 return instructions[best_index];
745 }
746
747 /* Still, we don't choose instructions in a vacuum. We need a way to choose the
748 * best bundle type (ALU, load/store, texture). Nondestructive. */
749
750 static unsigned
751 mir_choose_bundle(
752 midgard_instruction **instructions,
753 uint16_t *liveness,
754 BITSET_WORD *worklist, unsigned count)
755 {
756 /* At the moment, our algorithm is very simple - use the bundle of the
757 * best instruction, regardless of what else could be scheduled
758 * alongside it. This is not optimal but it works okay for in-order */
759
760 struct midgard_predicate predicate = {
761 .tag = ~0,
762 .destructive = false,
763 .exclude = ~0
764 };
765
766 midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate);
767
768 if (chosen)
769 return chosen->type;
770 else
771 return ~0;
772 }
773
774 /* We want to choose an ALU instruction filling a given unit */
775 static void
776 mir_choose_alu(midgard_instruction **slot,
777 midgard_instruction **instructions,
778 uint16_t *liveness,
779 BITSET_WORD *worklist, unsigned len,
780 struct midgard_predicate *predicate,
781 unsigned unit)
782 {
783 /* Did we already schedule to this slot? */
784 if ((*slot) != NULL)
785 return;
786
787 /* Try to schedule something, if not */
788 predicate->unit = unit;
789 *slot = mir_choose_instruction(instructions, liveness, worklist, len, predicate);
790
791 /* Store unit upon scheduling */
792 if (*slot && !((*slot)->compact_branch))
793 (*slot)->unit = unit;
794 }
795
796 /* When we are scheduling a branch/csel, we need the consumed condition in the
797 * same block as a pipeline register. There are two options to enable this:
798 *
799 * - Move the conditional into the bundle. Preferred, but only works if the
800 * conditional is used only once and is from this block.
801 * - Copy the conditional.
802 *
803 * We search for the conditional. If it's in this block, single-use, and
804 * without embedded constants, we schedule it immediately. Otherwise, we
805 * schedule a move for it.
806 *
807 * mir_comparison_mobile is a helper to find the moveable condition.
808 */
809
810 static unsigned
811 mir_comparison_mobile(
812 compiler_context *ctx,
813 midgard_instruction **instructions,
814 struct midgard_predicate *predicate,
815 unsigned count,
816 unsigned cond)
817 {
818 if (!mir_single_use(ctx, cond))
819 return ~0;
820
821 unsigned ret = ~0;
822
823 for (unsigned i = 0; i < count; ++i) {
824 if (instructions[i]->dest != cond)
825 continue;
826
827 /* Must fit in an ALU bundle */
828 if (instructions[i]->type != TAG_ALU_4)
829 return ~0;
830
831 /* If it would itself require a condition, that's recursive */
832 if (OP_IS_CSEL(instructions[i]->alu.op))
833 return ~0;
834
835 /* We'll need to rewrite to .w but that doesn't work for vector
836 * ops that don't replicate (ball/bany), so bail there */
837
838 if (GET_CHANNEL_COUNT(alu_opcode_props[instructions[i]->alu.op].props))
839 return ~0;
840
841 /* Ensure it will fit with constants */
842
843 if (!mir_adjust_constants(instructions[i], predicate, false))
844 return ~0;
845
846 /* Ensure it is written only once */
847
848 if (ret != ~0)
849 return ~0;
850 else
851 ret = i;
852 }
853
854 /* Inject constants now that we are sure we want to */
855 if (ret != ~0)
856 mir_adjust_constants(instructions[ret], predicate, true);
857
858 return ret;
859 }
860
861 /* Using the information about the moveable conditional itself, we either pop
862 * that condition off the worklist for use now, or create a move to
863 * artificially schedule instead as a fallback */
864
865 static midgard_instruction *
866 mir_schedule_comparison(
867 compiler_context *ctx,
868 midgard_instruction **instructions,
869 struct midgard_predicate *predicate,
870 BITSET_WORD *worklist, unsigned count,
871 unsigned cond, bool vector, unsigned *swizzle,
872 midgard_instruction *user)
873 {
874 /* TODO: swizzle when scheduling */
875 unsigned comp_i =
876 (!vector && (swizzle[0] == 0)) ?
877 mir_comparison_mobile(ctx, instructions, predicate, count, cond) : ~0;
878
879 /* If we can, schedule the condition immediately */
880 if ((comp_i != ~0) && BITSET_TEST(worklist, comp_i)) {
881 assert(comp_i < count);
882 BITSET_CLEAR(worklist, comp_i);
883 return instructions[comp_i];
884 }
885
886 /* Otherwise, we insert a move */
887
888 midgard_instruction mov = v_mov(cond, cond);
889 mov.mask = vector ? 0xF : 0x1;
890 memcpy(mov.swizzle[1], swizzle, sizeof(mov.swizzle[1]));
891
892 return mir_insert_instruction_before(ctx, user, mov);
893 }
894
895 /* Most generally, we need instructions writing to r31 in the appropriate
896 * components */
897
898 static midgard_instruction *
899 mir_schedule_condition(compiler_context *ctx,
900 struct midgard_predicate *predicate,
901 BITSET_WORD *worklist, unsigned count,
902 midgard_instruction **instructions,
903 midgard_instruction *last)
904 {
905 /* For a branch, the condition is the only argument; for csel, third */
906 bool branch = last->compact_branch;
907 unsigned condition_index = branch ? 0 : 2;
908
909 /* csel_v is vector; otherwise, conditions are scalar */
910 bool vector = !branch && OP_IS_CSEL_V(last->alu.op);
911
912 /* Grab the conditional instruction */
913
914 midgard_instruction *cond = mir_schedule_comparison(
915 ctx, instructions, predicate, worklist, count, last->src[condition_index],
916 vector, last->swizzle[2], last);
917
918 /* We have exclusive reign over this (possibly move) conditional
919 * instruction. We can rewrite into a pipeline conditional register */
920
921 predicate->exclude = cond->dest;
922 cond->dest = SSA_FIXED_REGISTER(31);
923
924 if (!vector) {
925 cond->mask = (1 << COMPONENT_W);
926
927 mir_foreach_src(cond, s) {
928 if (cond->src[s] == ~0)
929 continue;
930
931 for (unsigned q = 0; q < 4; ++q)
932 cond->swizzle[s][q + COMPONENT_W] = cond->swizzle[s][q];
933 }
934 }
935
936 /* Schedule the unit: csel is always in the latter pipeline, so a csel
937 * condition must be in the former pipeline stage (vmul/sadd),
938 * depending on scalar/vector of the instruction itself. A branch must
939 * be written from the latter pipeline stage and a branch condition is
940 * always scalar, so it is always in smul (exception: ball/bany, which
941 * will be vadd) */
942
943 if (branch)
944 cond->unit = UNIT_SMUL;
945 else
946 cond->unit = vector ? UNIT_VMUL : UNIT_SADD;
947
948 return cond;
949 }
950
951 /* Schedules a single bundle of the given type */
952
953 static midgard_bundle
954 mir_schedule_texture(
955 midgard_instruction **instructions,
956 uint16_t *liveness,
957 BITSET_WORD *worklist, unsigned len,
958 bool is_vertex)
959 {
960 struct midgard_predicate predicate = {
961 .tag = TAG_TEXTURE_4,
962 .destructive = true,
963 .exclude = ~0
964 };
965
966 midgard_instruction *ins =
967 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
968
969 mir_update_worklist(worklist, len, instructions, ins);
970
971 struct midgard_bundle out = {
972 .tag = ins->texture.op == TEXTURE_OP_BARRIER ?
973 TAG_TEXTURE_4_BARRIER : is_vertex ?
974 TAG_TEXTURE_4_VTX : TAG_TEXTURE_4,
975 .instruction_count = 1,
976 .instructions = { ins }
977 };
978
979 return out;
980 }
981
982 static midgard_bundle
983 mir_schedule_ldst(
984 midgard_instruction **instructions,
985 uint16_t *liveness,
986 BITSET_WORD *worklist, unsigned len)
987 {
988 struct midgard_predicate predicate = {
989 .tag = TAG_LOAD_STORE_4,
990 .destructive = true,
991 .exclude = ~0
992 };
993
994 /* Try to pick two load/store ops. Second not gauranteed to exist */
995
996 midgard_instruction *ins =
997 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
998
999 midgard_instruction *pair =
1000 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
1001
1002 struct midgard_bundle out = {
1003 .tag = TAG_LOAD_STORE_4,
1004 .instruction_count = pair ? 2 : 1,
1005 .instructions = { ins, pair }
1006 };
1007
1008 /* We have to update the worklist atomically, since the two
1009 * instructions run concurrently (TODO: verify it's not pipelined) */
1010
1011 mir_update_worklist(worklist, len, instructions, ins);
1012 mir_update_worklist(worklist, len, instructions, pair);
1013
1014 return out;
1015 }
1016
1017 static void
1018 mir_schedule_zs_write(
1019 compiler_context *ctx,
1020 struct midgard_predicate *predicate,
1021 midgard_instruction **instructions,
1022 uint16_t *liveness,
1023 BITSET_WORD *worklist, unsigned len,
1024 midgard_instruction *branch,
1025 midgard_instruction **smul,
1026 midgard_instruction **vadd,
1027 midgard_instruction **vlut,
1028 bool stencil)
1029 {
1030 bool success = false;
1031 unsigned idx = stencil ? 3 : 2;
1032 unsigned src = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(1) : branch->src[idx];
1033
1034 predicate->dest = src;
1035 predicate->mask = 0x1;
1036
1037 midgard_instruction **units[] = { smul, vadd, vlut };
1038 unsigned unit_names[] = { UNIT_SMUL, UNIT_VADD, UNIT_VLUT };
1039
1040 for (unsigned i = 0; i < 3; ++i) {
1041 if (*(units[i]))
1042 continue;
1043
1044 predicate->unit = unit_names[i];
1045 midgard_instruction *ins =
1046 mir_choose_instruction(instructions, liveness, worklist, len, predicate);
1047
1048 if (ins) {
1049 ins->unit = unit_names[i];
1050 *(units[i]) = ins;
1051 success |= true;
1052 break;
1053 }
1054 }
1055
1056 predicate->dest = predicate->mask = 0;
1057
1058 if (success)
1059 return;
1060
1061 midgard_instruction *mov = ralloc(ctx, midgard_instruction);
1062 *mov = v_mov(src, make_compiler_temp(ctx));
1063 mov->mask = 0x1;
1064
1065 branch->src[idx] = mov->dest;
1066
1067 if (stencil) {
1068 unsigned swizzle = (branch->src[0] == ~0) ? COMPONENT_Y : COMPONENT_X;
1069
1070 for (unsigned c = 0; c < 16; ++c)
1071 mov->swizzle[1][c] = swizzle;
1072 }
1073
1074 for (unsigned i = 0; i < 3; ++i) {
1075 if (!(*(units[i]))) {
1076 *(units[i]) = mov;
1077 mov->unit = unit_names[i];
1078 return;
1079 }
1080 }
1081
1082 unreachable("Could not schedule Z/S move to any unit");
1083 }
1084
1085 static midgard_bundle
1086 mir_schedule_alu(
1087 compiler_context *ctx,
1088 midgard_instruction **instructions,
1089 uint16_t *liveness,
1090 BITSET_WORD *worklist, unsigned len)
1091 {
1092 struct midgard_bundle bundle = {};
1093
1094 unsigned bytes_emitted = sizeof(bundle.control);
1095
1096 struct midgard_predicate predicate = {
1097 .tag = TAG_ALU_4,
1098 .destructive = true,
1099 .exclude = ~0,
1100 .constants = &bundle.constants
1101 };
1102
1103 midgard_instruction *vmul = NULL;
1104 midgard_instruction *vadd = NULL;
1105 midgard_instruction *vlut = NULL;
1106 midgard_instruction *smul = NULL;
1107 midgard_instruction *sadd = NULL;
1108 midgard_instruction *branch = NULL;
1109
1110 mir_choose_alu(&branch, instructions, liveness, worklist, len, &predicate, ALU_ENAB_BR_COMPACT);
1111 mir_update_worklist(worklist, len, instructions, branch);
1112 unsigned writeout = branch ? branch->writeout : 0;
1113
1114 if (branch && branch->branch.conditional) {
1115 midgard_instruction *cond = mir_schedule_condition(ctx, &predicate, worklist, len, instructions, branch);
1116
1117 if (cond->unit == UNIT_VADD)
1118 vadd = cond;
1119 else if (cond->unit == UNIT_SMUL)
1120 smul = cond;
1121 else
1122 unreachable("Bad condition");
1123 }
1124
1125 /* If we have a render target reference, schedule a move for it. Since
1126 * this will be in sadd, we boost this to prevent scheduling csel into
1127 * smul */
1128
1129 if (writeout && (branch->constants.u32[0] || ctx->is_blend)) {
1130 sadd = ralloc(ctx, midgard_instruction);
1131 *sadd = v_mov(~0, make_compiler_temp(ctx));
1132 sadd->unit = UNIT_SADD;
1133 sadd->mask = 0x1;
1134 sadd->has_inline_constant = true;
1135 sadd->inline_constant = branch->constants.u32[0];
1136 branch->src[1] = sadd->dest;
1137 branch->src_types[1] = sadd->dest_type;
1138
1139 /* Mask off any conditionals. Could be optimized to just scalar
1140 * conditionals TODO */
1141 predicate.no_cond = true;
1142 }
1143
1144 if (writeout) {
1145 /* Propagate up */
1146 bundle.last_writeout = branch->last_writeout;
1147 }
1148
1149 /* When MRT is in use, writeout loops require r1.w to be filled (with a
1150 * return address? by symmetry with Bifrost, etc), at least for blend
1151 * shaders to work properly. When MRT is not in use (including on SFBD
1152 * GPUs), this is not needed. Blend shaders themselves don't know if
1153 * they are paired with MRT or not so they always need this, at least
1154 * on MFBD GPUs. */
1155
1156 if (writeout && (ctx->is_blend || ctx->writeout_branch[1])) {
1157 vadd = ralloc(ctx, midgard_instruction);
1158 *vadd = v_mov(~0, make_compiler_temp(ctx));
1159
1160 if (!ctx->is_blend) {
1161 vadd->alu.op = midgard_alu_op_iadd;
1162 vadd->src[0] = SSA_FIXED_REGISTER(31);
1163 vadd->src_types[0] = nir_type_uint32;
1164
1165 for (unsigned c = 0; c < 16; ++c)
1166 vadd->swizzle[0][c] = COMPONENT_X;
1167
1168 vadd->has_inline_constant = true;
1169 vadd->inline_constant = 0;
1170 } else {
1171 vadd->src[1] = SSA_FIXED_REGISTER(1);
1172 vadd->src_types[0] = nir_type_uint32;
1173
1174 for (unsigned c = 0; c < 16; ++c)
1175 vadd->swizzle[1][c] = COMPONENT_W;
1176 }
1177
1178 vadd->unit = UNIT_VADD;
1179 vadd->mask = 0x1;
1180 branch->dest = vadd->dest;
1181 branch->dest_type = vadd->dest_type;
1182 }
1183
1184 if (writeout & PAN_WRITEOUT_Z)
1185 mir_schedule_zs_write(ctx, &predicate, instructions, liveness, worklist, len, branch, &smul, &vadd, &vlut, false);
1186
1187 if (writeout & PAN_WRITEOUT_S)
1188 mir_schedule_zs_write(ctx, &predicate, instructions, liveness, worklist, len, branch, &smul, &vadd, &vlut, true);
1189
1190 mir_choose_alu(&smul, instructions, liveness, worklist, len, &predicate, UNIT_SMUL);
1191
1192 for (unsigned moves = 0; moves < 2; ++moves) {
1193 predicate.moves = moves;
1194 predicate.no_mask = writeout ? (1 << 3) : 0;
1195 mir_choose_alu(&vlut, instructions, liveness, worklist, len, &predicate, UNIT_VLUT);
1196 predicate.no_mask = 0;
1197 mir_choose_alu(&vadd, instructions, liveness, worklist, len, &predicate, UNIT_VADD);
1198 }
1199
1200 mir_update_worklist(worklist, len, instructions, vlut);
1201 mir_update_worklist(worklist, len, instructions, vadd);
1202 mir_update_worklist(worklist, len, instructions, smul);
1203
1204 bool vadd_csel = vadd && OP_IS_CSEL(vadd->alu.op);
1205 bool smul_csel = smul && OP_IS_CSEL(smul->alu.op);
1206
1207 if (vadd_csel || smul_csel) {
1208 midgard_instruction *ins = vadd_csel ? vadd : smul;
1209 midgard_instruction *cond = mir_schedule_condition(ctx, &predicate, worklist, len, instructions, ins);
1210
1211 if (cond->unit == UNIT_VMUL)
1212 vmul = cond;
1213 else if (cond->unit == UNIT_SADD)
1214 sadd = cond;
1215 else
1216 unreachable("Bad condition");
1217 }
1218
1219 /* Stage 2, let's schedule sadd before vmul for writeout */
1220 mir_choose_alu(&sadd, instructions, liveness, worklist, len, &predicate, UNIT_SADD);
1221
1222 /* Check if writeout reads its own register */
1223
1224 if (writeout) {
1225 midgard_instruction *stages[] = { sadd, vadd, smul, vlut };
1226 unsigned src = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(0) : branch->src[0];
1227 unsigned writeout_mask = 0x0;
1228 bool bad_writeout = false;
1229
1230 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1231 if (!stages[i])
1232 continue;
1233
1234 if (stages[i]->dest != src)
1235 continue;
1236
1237 writeout_mask |= stages[i]->mask;
1238 bad_writeout |= mir_has_arg(stages[i], branch->src[0]);
1239 }
1240
1241 /* It's possible we'll be able to schedule something into vmul
1242 * to fill r0. Let's peak into the future, trying to schedule
1243 * vmul specially that way. */
1244
1245 unsigned full_mask = 0xF;
1246
1247 if (!bad_writeout && writeout_mask != full_mask) {
1248 predicate.unit = UNIT_VMUL;
1249 predicate.dest = src;
1250 predicate.mask = writeout_mask ^ full_mask;
1251
1252 struct midgard_instruction *peaked =
1253 mir_choose_instruction(instructions, liveness, worklist, len, &predicate);
1254
1255 if (peaked) {
1256 vmul = peaked;
1257 vmul->unit = UNIT_VMUL;
1258 writeout_mask |= predicate.mask;
1259 assert(writeout_mask == full_mask);
1260 }
1261
1262 /* Cleanup */
1263 predicate.dest = predicate.mask = 0;
1264 }
1265
1266 /* Finally, add a move if necessary */
1267 if (bad_writeout || writeout_mask != full_mask) {
1268 unsigned temp = (branch->src[0] == ~0) ? SSA_FIXED_REGISTER(0) : make_compiler_temp(ctx);
1269
1270 vmul = ralloc(ctx, midgard_instruction);
1271 *vmul = v_mov(src, temp);
1272 vmul->unit = UNIT_VMUL;
1273 vmul->mask = full_mask ^ writeout_mask;
1274
1275 /* Rewrite to use our temp */
1276
1277 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1278 if (stages[i])
1279 mir_rewrite_index_dst_single(stages[i], src, temp);
1280 }
1281
1282 mir_rewrite_index_src_single(branch, src, temp);
1283 }
1284 }
1285
1286 mir_choose_alu(&vmul, instructions, liveness, worklist, len, &predicate, UNIT_VMUL);
1287
1288 mir_update_worklist(worklist, len, instructions, vmul);
1289 mir_update_worklist(worklist, len, instructions, sadd);
1290
1291 bundle.has_blend_constant = predicate.blend_constant;
1292 bundle.has_embedded_constants = predicate.constant_mask != 0;
1293
1294 unsigned padding = 0;
1295
1296 /* Now that we have finished scheduling, build up the bundle */
1297 midgard_instruction *stages[] = { vmul, sadd, vadd, smul, vlut, branch };
1298
1299 for (unsigned i = 0; i < ARRAY_SIZE(stages); ++i) {
1300 if (stages[i]) {
1301 bundle.control |= stages[i]->unit;
1302 bytes_emitted += bytes_for_instruction(stages[i]);
1303 bundle.instructions[bundle.instruction_count++] = stages[i];
1304
1305 /* If we branch, we can't spill to TLS since the store
1306 * instruction will never get executed. We could try to
1307 * break the bundle but this is probably easier for
1308 * now. */
1309
1310 if (branch)
1311 stages[i]->no_spill |= (1 << REG_CLASS_WORK);
1312 }
1313 }
1314
1315 /* Pad ALU op to nearest word */
1316
1317 if (bytes_emitted & 15) {
1318 padding = 16 - (bytes_emitted & 15);
1319 bytes_emitted += padding;
1320 }
1321
1322 /* Constants must always be quadwords */
1323 if (bundle.has_embedded_constants)
1324 bytes_emitted += 16;
1325
1326 /* Size ALU instruction for tag */
1327 bundle.tag = (TAG_ALU_4) + (bytes_emitted / 16) - 1;
1328
1329 /* MRT capable GPUs use a special writeout procedure */
1330 if (writeout && !(ctx->quirks & MIDGARD_NO_UPPER_ALU))
1331 bundle.tag += 4;
1332
1333 bundle.padding = padding;
1334 bundle.control |= bundle.tag;
1335
1336 return bundle;
1337 }
1338
1339 /* Schedule a single block by iterating its instruction to create bundles.
1340 * While we go, tally about the bundle sizes to compute the block size. */
1341
1342
1343 static void
1344 schedule_block(compiler_context *ctx, midgard_block *block)
1345 {
1346 /* Copy list to dynamic array */
1347 unsigned len = 0;
1348 midgard_instruction **instructions = flatten_mir(block, &len);
1349
1350 if (!len)
1351 return;
1352
1353 /* Calculate dependencies and initial worklist */
1354 unsigned node_count = ctx->temp_count + 1;
1355 mir_create_dependency_graph(instructions, len, node_count);
1356
1357 /* Allocate the worklist */
1358 size_t sz = BITSET_WORDS(len) * sizeof(BITSET_WORD);
1359 BITSET_WORD *worklist = calloc(sz, 1);
1360 uint16_t *liveness = calloc(node_count, 2);
1361 mir_initialize_worklist(worklist, instructions, len);
1362
1363 struct util_dynarray bundles;
1364 util_dynarray_init(&bundles, NULL);
1365
1366 block->quadword_count = 0;
1367 unsigned blend_offset = 0;
1368
1369 for (;;) {
1370 unsigned tag = mir_choose_bundle(instructions, liveness, worklist, len);
1371 midgard_bundle bundle;
1372
1373 if (tag == TAG_TEXTURE_4)
1374 bundle = mir_schedule_texture(instructions, liveness, worklist, len, ctx->stage != MESA_SHADER_FRAGMENT);
1375 else if (tag == TAG_LOAD_STORE_4)
1376 bundle = mir_schedule_ldst(instructions, liveness, worklist, len);
1377 else if (tag == TAG_ALU_4)
1378 bundle = mir_schedule_alu(ctx, instructions, liveness, worklist, len);
1379 else
1380 break;
1381
1382 util_dynarray_append(&bundles, midgard_bundle, bundle);
1383
1384 if (bundle.has_blend_constant)
1385 blend_offset = block->quadword_count;
1386
1387 block->quadword_count += midgard_tag_props[bundle.tag].size;
1388 }
1389
1390 /* We emitted bundles backwards; copy into the block in reverse-order */
1391
1392 util_dynarray_init(&block->bundles, block);
1393 util_dynarray_foreach_reverse(&bundles, midgard_bundle, bundle) {
1394 util_dynarray_append(&block->bundles, midgard_bundle, *bundle);
1395 }
1396 util_dynarray_fini(&bundles);
1397
1398 /* Blend constant was backwards as well. blend_offset if set is
1399 * strictly positive, as an offset of zero would imply constants before
1400 * any instructions which is invalid in Midgard. TODO: blend constants
1401 * are broken if you spill since then quadword_count becomes invalid
1402 * XXX */
1403
1404 if (blend_offset)
1405 ctx->blend_constant_offset = ((ctx->quadword_count + block->quadword_count) - blend_offset - 1) * 0x10;
1406
1407 block->scheduled = true;
1408 ctx->quadword_count += block->quadword_count;
1409
1410 /* Reorder instructions to match bundled. First remove existing
1411 * instructions and then recreate the list */
1412
1413 mir_foreach_instr_in_block_safe(block, ins) {
1414 list_del(&ins->link);
1415 }
1416
1417 mir_foreach_instr_in_block_scheduled_rev(block, ins) {
1418 list_add(&ins->link, &block->base.instructions);
1419 }
1420
1421 free(instructions); /* Allocated by flatten_mir() */
1422 free(worklist);
1423 free(liveness);
1424 }
1425
1426 void
1427 midgard_schedule_program(compiler_context *ctx)
1428 {
1429 midgard_promote_uniforms(ctx);
1430
1431 /* Must be lowered right before scheduling */
1432 mir_squeeze_index(ctx);
1433 mir_lower_special_reads(ctx);
1434 mir_squeeze_index(ctx);
1435
1436 /* Lowering can introduce some dead moves */
1437
1438 mir_foreach_block(ctx, _block) {
1439 midgard_block *block = (midgard_block *) _block;
1440 midgard_opt_dead_move_eliminate(ctx, block);
1441 schedule_block(ctx, block);
1442 }
1443
1444 }