2 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
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:
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
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
25 #include "midgard_ops.h"
26 #include "midgard_quirks.h"
27 #include "util/u_memory.h"
28 #include "util/u_math.h"
30 /* Scheduling for Midgard is complicated, to say the least. ALU instructions
31 * must be grouped into VLIW bundles according to following model:
34 * [VADD] [SMUL] [VLUT]
36 * A given instruction can execute on some subset of the units (or a few can
37 * execute on all). Instructions can be either vector or scalar; only scalar
38 * instructions can execute on SADD/SMUL units. Units on a given line execute
39 * in parallel. Subsequent lines execute separately and can pass results
40 * directly via pipeline registers r24/r25, bypassing the register file.
42 * A bundle can optionally have 128-bits of embedded constants, shared across
43 * all of the instructions within a bundle.
45 * Instructions consuming conditionals (branches and conditional selects)
46 * require their condition to be written into the conditional register (r31)
47 * within the same bundle they are consumed.
49 * Fragment writeout requires its argument to be written in full within the
50 * same bundle as the branch, with no hanging dependencies.
52 * Load/store instructions are also in bundles of simply two instructions, and
53 * texture instructions have no bundling.
55 * -------------------------------------------------------------------------
59 /* We create the dependency graph with per-byte granularity */
64 add_dependency(struct util_dynarray
*table
, unsigned index
, uint16_t mask
, midgard_instruction
**instructions
, unsigned child
)
66 for (unsigned i
= 0; i
< BYTE_COUNT
; ++i
) {
67 if (!(mask
& (1 << i
)))
70 struct util_dynarray
*parents
= &table
[(BYTE_COUNT
* index
) + i
];
72 util_dynarray_foreach(parents
, unsigned, parent
) {
73 BITSET_WORD
*dependents
= instructions
[*parent
]->dependents
;
75 /* Already have the dependency */
76 if (BITSET_TEST(dependents
, child
))
79 BITSET_SET(dependents
, child
);
80 instructions
[child
]->nr_dependencies
++;
86 mark_access(struct util_dynarray
*table
, unsigned index
, uint16_t mask
, unsigned parent
)
88 for (unsigned i
= 0; i
< BYTE_COUNT
; ++i
) {
89 if (!(mask
& (1 << i
)))
92 util_dynarray_append(&table
[(BYTE_COUNT
* index
) + i
], unsigned, parent
);
97 mir_create_dependency_graph(midgard_instruction
**instructions
, unsigned count
, unsigned node_count
)
99 size_t sz
= node_count
* BYTE_COUNT
;
101 struct util_dynarray
*last_read
= calloc(sizeof(struct util_dynarray
), sz
);
102 struct util_dynarray
*last_write
= calloc(sizeof(struct util_dynarray
), sz
);
104 for (unsigned i
= 0; i
< sz
; ++i
) {
105 util_dynarray_init(&last_read
[i
], NULL
);
106 util_dynarray_init(&last_write
[i
], NULL
);
109 /* Initialize dependency graph */
110 for (unsigned i
= 0; i
< count
; ++i
) {
111 instructions
[i
]->dependents
=
112 calloc(BITSET_WORDS(count
), sizeof(BITSET_WORD
));
114 instructions
[i
]->nr_dependencies
= 0;
117 /* Populate dependency graph */
118 for (signed i
= count
- 1; i
>= 0; --i
) {
119 if (instructions
[i
]->compact_branch
)
122 unsigned dest
= instructions
[i
]->dest
;
123 unsigned mask
= mir_bytemask(instructions
[i
]);
125 mir_foreach_src((*instructions
), s
) {
126 unsigned src
= instructions
[i
]->src
[s
];
128 if (src
< node_count
) {
129 unsigned readmask
= mir_bytemask_of_read_components(instructions
[i
], src
);
130 add_dependency(last_write
, src
, readmask
, instructions
, i
);
134 if (dest
< node_count
) {
135 add_dependency(last_read
, dest
, mask
, instructions
, i
);
136 add_dependency(last_write
, dest
, mask
, instructions
, i
);
137 mark_access(last_write
, dest
, mask
, i
);
140 mir_foreach_src((*instructions
), s
) {
141 unsigned src
= instructions
[i
]->src
[s
];
143 if (src
< node_count
) {
144 unsigned readmask
= mir_bytemask_of_read_components(instructions
[i
], src
);
145 mark_access(last_read
, src
, readmask
, i
);
150 /* If there is a branch, all instructions depend on it, as interblock
151 * execution must be purely in-order */
153 if (instructions
[count
- 1]->compact_branch
) {
154 BITSET_WORD
*dependents
= instructions
[count
- 1]->dependents
;
156 for (signed i
= count
- 2; i
>= 0; --i
) {
157 if (BITSET_TEST(dependents
, i
))
160 BITSET_SET(dependents
, i
);
161 instructions
[i
]->nr_dependencies
++;
165 /* Free the intermediate structures */
166 for (unsigned i
= 0; i
< sz
; ++i
) {
167 util_dynarray_fini(&last_read
[i
]);
168 util_dynarray_fini(&last_write
[i
]);
175 /* Does the mask cover more than a scalar? */
178 is_single_component_mask(unsigned mask
)
182 for (int c
= 0; c
< 8; ++c
) {
187 return components
== 1;
190 /* Helpers for scheudling */
193 mir_is_scalar(midgard_instruction
*ains
)
195 /* Do we try to use it as a vector op? */
196 if (!is_single_component_mask(ains
->mask
))
199 /* Otherwise, check mode hazards */
200 bool could_scalar
= true;
202 /* Only 16/32-bit can run on a scalar unit */
203 could_scalar
&= ains
->alu
.reg_mode
!= midgard_reg_mode_8
;
204 could_scalar
&= ains
->alu
.reg_mode
!= midgard_reg_mode_64
;
205 could_scalar
&= ains
->alu
.dest_override
== midgard_dest_override_none
;
207 if (ains
->alu
.reg_mode
== midgard_reg_mode_16
) {
208 /* If we're running in 16-bit mode, we
209 * can't have any 8-bit sources on the
210 * scalar unit (since the scalar unit
211 * doesn't understand 8-bit) */
213 midgard_vector_alu_src s1
=
214 vector_alu_from_unsigned(ains
->alu
.src1
);
216 could_scalar
&= !s1
.half
;
218 midgard_vector_alu_src s2
=
219 vector_alu_from_unsigned(ains
->alu
.src2
);
221 could_scalar
&= !s2
.half
;
227 /* How many bytes does this ALU instruction add to the bundle? */
230 bytes_for_instruction(midgard_instruction
*ains
)
232 if (ains
->unit
& UNITS_ANY_VECTOR
)
233 return sizeof(midgard_reg_info
) + sizeof(midgard_vector_alu
);
234 else if (ains
->unit
== ALU_ENAB_BRANCH
)
235 return sizeof(midgard_branch_extended
);
236 else if (ains
->compact_branch
)
237 return sizeof(ains
->br_compact
);
239 return sizeof(midgard_reg_info
) + sizeof(midgard_scalar_alu
);
242 /* We would like to flatten the linked list of midgard_instructions in a bundle
243 * to an array of pointers on the heap for easy indexing */
245 static midgard_instruction
**
246 flatten_mir(midgard_block
*block
, unsigned *len
)
248 *len
= list_length(&block
->base
.instructions
);
253 midgard_instruction
**instructions
=
254 calloc(sizeof(midgard_instruction
*), *len
);
258 mir_foreach_instr_in_block(block
, ins
)
259 instructions
[i
++] = ins
;
264 /* The worklist is the set of instructions that can be scheduled now; that is,
265 * the set of instructions with no remaining dependencies */
268 mir_initialize_worklist(BITSET_WORD
*worklist
, midgard_instruction
**instructions
, unsigned count
)
270 for (unsigned i
= 0; i
< count
; ++i
) {
271 if (instructions
[i
]->nr_dependencies
== 0)
272 BITSET_SET(worklist
, i
);
276 /* Update the worklist after an instruction terminates. Remove its edges from
277 * the graph and if that causes any node to have no dependencies, add it to the
282 BITSET_WORD
*worklist
, unsigned count
,
283 midgard_instruction
**instructions
, midgard_instruction
*done
)
285 /* Sanity check: if no instruction terminated, there is nothing to do.
286 * If the instruction that terminated had dependencies, that makes no
287 * sense and means we messed up the worklist. Finally, as the purpose
288 * of this routine is to update dependents, we abort early if there are
289 * no dependents defined. */
294 assert(done
->nr_dependencies
== 0);
296 if (!done
->dependents
)
299 /* We have an instruction with dependents. Iterate each dependent to
300 * remove one dependency (`done`), adding dependents to the worklist
304 BITSET_FOREACH_SET(i
, done
->dependents
, count
) {
305 assert(instructions
[i
]->nr_dependencies
);
307 if (!(--instructions
[i
]->nr_dependencies
))
308 BITSET_SET(worklist
, i
);
311 free(done
->dependents
);
314 /* While scheduling, we need to choose instructions satisfying certain
315 * criteria. As we schedule backwards, we choose the *last* instruction in the
316 * worklist to simulate in-order scheduling. Chosen instructions must satisfy a
317 * given predicate. */
319 struct midgard_predicate
{
320 /* TAG or ~0 for dont-care */
323 /* True if we want to pop off the chosen instruction */
326 /* For ALU, choose only this unit */
329 /* State for bundle constants. constants is the actual constants
330 * for the bundle. constant_count is the number of bytes (up to
331 * 16) currently in use for constants. When picking in destructive
332 * mode, the constants array will be updated, and the instruction
333 * will be adjusted to index into the constants array */
335 midgard_constants
*constants
;
336 unsigned constant_mask
;
339 /* Exclude this destination (if not ~0) */
342 /* Don't schedule instructions consuming conditionals (since we already
343 * scheduled one). Excludes conditional branches and csel */
346 /* Require a minimal mask and (if nonzero) given destination. Used for
347 * writeout optimizations */
352 /* For load/store: how many pipeline registers are in use? The two
353 * scheduled instructions cannot use more than the 256-bits of pipeline
354 * space available or RA will fail (as it would run out of pipeline
355 * registers and fail to spill without breaking the schedule) */
357 unsigned pipeline_count
;
360 /* For an instruction that can fit, adjust it to fit and update the constants
361 * array, in destructive mode. Returns whether the fitting was successful. */
364 mir_adjust_constants(midgard_instruction
*ins
,
365 struct midgard_predicate
*pred
,
368 /* Blend constants dominate */
369 if (ins
->has_blend_constant
) {
370 if (pred
->constant_mask
)
372 else if (destructive
) {
373 pred
->blend_constant
= true;
374 pred
->constant_mask
= 0xffff;
379 /* No constant, nothing to adjust */
380 if (!ins
->has_constants
)
383 unsigned r_constant
= SSA_FIXED_REGISTER(REGISTER_CONSTANT
);
384 unsigned bundle_constant_mask
= pred
->constant_mask
;
385 unsigned comp_mapping
[2][16] = { };
386 uint8_t bundle_constants
[16];
388 memcpy(bundle_constants
, pred
->constants
, 16);
390 /* Let's try to find a place for each active component of the constant
393 for (unsigned src
= 0; src
< 2; ++src
) {
394 if (ins
->src
[src
] != SSA_FIXED_REGISTER(REGISTER_CONSTANT
))
397 unsigned type_size
= nir_alu_type_get_type_size(ins
->src_types
[src
]) / 8;
398 unsigned max_comp
= 16 / type_size
;
399 unsigned comp_mask
= mir_from_bytemask(mir_round_bytemask_up(
400 mir_bytemask_of_read_components_index(ins
, src
),
403 unsigned type_mask
= (1 << type_size
) - 1;
405 for (unsigned comp
= 0; comp
< max_comp
; comp
++) {
406 if (!(comp_mask
& (1 << comp
)))
409 uint8_t *constantp
= ins
->constants
.u8
+ (type_size
* comp
);
410 unsigned best_reuse_bytes
= 0;
411 signed best_place
= -1;
414 for (i
= 0; i
< 16; i
+= type_size
) {
415 unsigned reuse_bytes
= 0;
417 for (j
= 0; j
< type_size
; j
++) {
418 if (!(bundle_constant_mask
& (1 << (i
+ j
))))
420 if (constantp
[j
] != bundle_constants
[i
+ j
])
426 /* Select the place where existing bytes can be
427 * reused so we leave empty slots to others
429 if (j
== type_size
&&
430 (reuse_bytes
> best_reuse_bytes
|| best_place
< 0)) {
431 best_reuse_bytes
= reuse_bytes
;
437 /* This component couldn't fit in the remaining constant slot,
438 * no need check the remaining components, bail out now
443 memcpy(&bundle_constants
[i
], constantp
, type_size
);
444 bundle_constant_mask
|= type_mask
<< best_place
;
445 comp_mapping
[src
][comp
] = best_place
/ type_size
;
449 /* If non-destructive, we're done */
453 /* Otherwise update the constant_mask and constant values */
454 pred
->constant_mask
= bundle_constant_mask
;
455 memcpy(pred
->constants
, bundle_constants
, 16);
457 /* Use comp_mapping as a swizzle */
458 mir_foreach_src(ins
, s
) {
459 if (ins
->src
[s
] == r_constant
)
460 mir_compose_swizzle(ins
->swizzle
[s
], comp_mapping
[s
], ins
->swizzle
[s
]);
466 /* Conservative estimate of the pipeline registers required for load/store */
469 mir_pipeline_count(midgard_instruction
*ins
)
471 unsigned bytecount
= 0;
473 mir_foreach_src(ins
, i
) {
474 /* Skip empty source */
475 if (ins
->src
[i
] == ~0) continue;
477 unsigned bytemask
= mir_bytemask_of_read_components_index(ins
, i
);
479 unsigned max
= util_logbase2(bytemask
) + 1;
483 return DIV_ROUND_UP(bytecount
, 16);
486 static midgard_instruction
*
487 mir_choose_instruction(
488 midgard_instruction
**instructions
,
489 BITSET_WORD
*worklist
, unsigned count
,
490 struct midgard_predicate
*predicate
)
492 /* Parse the predicate */
493 unsigned tag
= predicate
->tag
;
494 bool alu
= tag
== TAG_ALU_4
;
495 bool ldst
= tag
== TAG_LOAD_STORE_4
;
496 unsigned unit
= predicate
->unit
;
497 bool branch
= alu
&& (unit
== ALU_ENAB_BR_COMPACT
);
498 bool scalar
= (unit
!= ~0) && (unit
& UNITS_SCALAR
);
499 bool no_cond
= predicate
->no_cond
;
501 unsigned mask
= predicate
->mask
;
502 unsigned dest
= predicate
->dest
;
503 bool needs_dest
= mask
& 0xF;
505 /* Iterate to find the best instruction satisfying the predicate */
508 signed best_index
= -1;
509 bool best_conditional
= false;
511 /* Enforce a simple metric limiting distance to keep down register
512 * pressure. TOOD: replace with liveness tracking for much better
515 unsigned max_active
= 0;
516 unsigned max_distance
= 6;
518 BITSET_FOREACH_SET(i
, worklist
, count
) {
519 max_active
= MAX2(max_active
, i
);
522 BITSET_FOREACH_SET(i
, worklist
, count
) {
523 if ((max_active
- i
) >= max_distance
)
526 if (tag
!= ~0 && instructions
[i
]->type
!= tag
)
529 if (predicate
->exclude
!= ~0 && instructions
[i
]->dest
== predicate
->exclude
)
532 if (alu
&& !branch
&& !(alu_opcode_props
[instructions
[i
]->alu
.op
].props
& unit
))
535 if (branch
&& !instructions
[i
]->compact_branch
)
538 if (alu
&& scalar
&& !mir_is_scalar(instructions
[i
]))
541 if (alu
&& !mir_adjust_constants(instructions
[i
], predicate
, false))
544 if (needs_dest
&& instructions
[i
]->dest
!= dest
)
547 if (mask
&& ((~instructions
[i
]->mask
) & mask
))
550 if (ldst
&& mir_pipeline_count(instructions
[i
]) + predicate
->pipeline_count
> 2)
553 bool conditional
= alu
&& !branch
&& OP_IS_CSEL(instructions
[i
]->alu
.op
);
554 conditional
|= (branch
&& instructions
[i
]->branch
.conditional
);
556 if (conditional
&& no_cond
)
559 /* Simulate in-order scheduling */
560 if ((signed) i
< best_index
)
564 best_conditional
= conditional
;
568 /* Did we find anything? */
573 /* If we found something, remove it from the worklist */
574 assert(best_index
< count
);
576 if (predicate
->destructive
) {
577 BITSET_CLEAR(worklist
, best_index
);
580 mir_adjust_constants(instructions
[best_index
], predicate
, true);
583 predicate
->pipeline_count
+= mir_pipeline_count(instructions
[best_index
]);
585 /* Once we schedule a conditional, we can't again */
586 predicate
->no_cond
|= best_conditional
;
589 return instructions
[best_index
];
592 /* Still, we don't choose instructions in a vacuum. We need a way to choose the
593 * best bundle type (ALU, load/store, texture). Nondestructive. */
597 midgard_instruction
**instructions
,
598 BITSET_WORD
*worklist
, unsigned count
)
600 /* At the moment, our algorithm is very simple - use the bundle of the
601 * best instruction, regardless of what else could be scheduled
602 * alongside it. This is not optimal but it works okay for in-order */
604 struct midgard_predicate predicate
= {
606 .destructive
= false,
610 midgard_instruction
*chosen
= mir_choose_instruction(instructions
, worklist
, count
, &predicate
);
618 /* We want to choose an ALU instruction filling a given unit */
620 mir_choose_alu(midgard_instruction
**slot
,
621 midgard_instruction
**instructions
,
622 BITSET_WORD
*worklist
, unsigned len
,
623 struct midgard_predicate
*predicate
,
626 /* Did we already schedule to this slot? */
630 /* Try to schedule something, if not */
631 predicate
->unit
= unit
;
632 *slot
= mir_choose_instruction(instructions
, worklist
, len
, predicate
);
634 /* Store unit upon scheduling */
635 if (*slot
&& !((*slot
)->compact_branch
))
636 (*slot
)->unit
= unit
;
639 /* When we are scheduling a branch/csel, we need the consumed condition in the
640 * same block as a pipeline register. There are two options to enable this:
642 * - Move the conditional into the bundle. Preferred, but only works if the
643 * conditional is used only once and is from this block.
644 * - Copy the conditional.
646 * We search for the conditional. If it's in this block, single-use, and
647 * without embedded constants, we schedule it immediately. Otherwise, we
648 * schedule a move for it.
650 * mir_comparison_mobile is a helper to find the moveable condition.
654 mir_comparison_mobile(
655 compiler_context
*ctx
,
656 midgard_instruction
**instructions
,
657 struct midgard_predicate
*predicate
,
661 if (!mir_single_use(ctx
, cond
))
666 for (unsigned i
= 0; i
< count
; ++i
) {
667 if (instructions
[i
]->dest
!= cond
)
670 /* Must fit in an ALU bundle */
671 if (instructions
[i
]->type
!= TAG_ALU_4
)
674 /* If it would itself require a condition, that's recursive */
675 if (OP_IS_CSEL(instructions
[i
]->alu
.op
))
678 /* We'll need to rewrite to .w but that doesn't work for vector
679 * ops that don't replicate (ball/bany), so bail there */
681 if (GET_CHANNEL_COUNT(alu_opcode_props
[instructions
[i
]->alu
.op
].props
))
684 /* Ensure it will fit with constants */
686 if (!mir_adjust_constants(instructions
[i
], predicate
, false))
689 /* Ensure it is written only once */
697 /* Inject constants now that we are sure we want to */
699 mir_adjust_constants(instructions
[ret
], predicate
, true);
704 /* Using the information about the moveable conditional itself, we either pop
705 * that condition off the worklist for use now, or create a move to
706 * artificially schedule instead as a fallback */
708 static midgard_instruction
*
709 mir_schedule_comparison(
710 compiler_context
*ctx
,
711 midgard_instruction
**instructions
,
712 struct midgard_predicate
*predicate
,
713 BITSET_WORD
*worklist
, unsigned count
,
714 unsigned cond
, bool vector
, unsigned *swizzle
,
715 midgard_instruction
*user
)
717 /* TODO: swizzle when scheduling */
719 (!vector
&& (swizzle
[0] == 0)) ?
720 mir_comparison_mobile(ctx
, instructions
, predicate
, count
, cond
) : ~0;
722 /* If we can, schedule the condition immediately */
723 if ((comp_i
!= ~0) && BITSET_TEST(worklist
, comp_i
)) {
724 assert(comp_i
< count
);
725 BITSET_CLEAR(worklist
, comp_i
);
726 return instructions
[comp_i
];
729 /* Otherwise, we insert a move */
731 midgard_instruction mov
= v_mov(cond
, cond
);
732 mov
.mask
= vector
? 0xF : 0x1;
733 memcpy(mov
.swizzle
[1], swizzle
, sizeof(mov
.swizzle
[1]));
735 return mir_insert_instruction_before(ctx
, user
, mov
);
738 /* Most generally, we need instructions writing to r31 in the appropriate
741 static midgard_instruction
*
742 mir_schedule_condition(compiler_context
*ctx
,
743 struct midgard_predicate
*predicate
,
744 BITSET_WORD
*worklist
, unsigned count
,
745 midgard_instruction
**instructions
,
746 midgard_instruction
*last
)
748 /* For a branch, the condition is the only argument; for csel, third */
749 bool branch
= last
->compact_branch
;
750 unsigned condition_index
= branch
? 0 : 2;
752 /* csel_v is vector; otherwise, conditions are scalar */
753 bool vector
= !branch
&& OP_IS_CSEL_V(last
->alu
.op
);
755 /* Grab the conditional instruction */
757 midgard_instruction
*cond
= mir_schedule_comparison(
758 ctx
, instructions
, predicate
, worklist
, count
, last
->src
[condition_index
],
759 vector
, last
->swizzle
[2], last
);
761 /* We have exclusive reign over this (possibly move) conditional
762 * instruction. We can rewrite into a pipeline conditional register */
764 predicate
->exclude
= cond
->dest
;
765 cond
->dest
= SSA_FIXED_REGISTER(31);
768 cond
->mask
= (1 << COMPONENT_W
);
770 mir_foreach_src(cond
, s
) {
771 if (cond
->src
[s
] == ~0)
774 for (unsigned q
= 0; q
< 4; ++q
)
775 cond
->swizzle
[s
][q
+ COMPONENT_W
] = cond
->swizzle
[s
][q
];
779 /* Schedule the unit: csel is always in the latter pipeline, so a csel
780 * condition must be in the former pipeline stage (vmul/sadd),
781 * depending on scalar/vector of the instruction itself. A branch must
782 * be written from the latter pipeline stage and a branch condition is
783 * always scalar, so it is always in smul (exception: ball/bany, which
787 cond
->unit
= UNIT_SMUL
;
789 cond
->unit
= vector
? UNIT_VMUL
: UNIT_SADD
;
794 /* Schedules a single bundle of the given type */
796 static midgard_bundle
797 mir_schedule_texture(
798 midgard_instruction
**instructions
,
799 BITSET_WORD
*worklist
, unsigned len
)
801 struct midgard_predicate predicate
= {
802 .tag
= TAG_TEXTURE_4
,
807 midgard_instruction
*ins
=
808 mir_choose_instruction(instructions
, worklist
, len
, &predicate
);
810 mir_update_worklist(worklist
, len
, instructions
, ins
);
812 struct midgard_bundle out
= {
813 .tag
= ins
->texture
.op
== TEXTURE_OP_BARRIER
?
814 TAG_TEXTURE_4_BARRIER
: TAG_TEXTURE_4
,
815 .instruction_count
= 1,
816 .instructions
= { ins
}
822 static midgard_bundle
824 midgard_instruction
**instructions
,
825 BITSET_WORD
*worklist
, unsigned len
)
827 struct midgard_predicate predicate
= {
828 .tag
= TAG_LOAD_STORE_4
,
833 /* Try to pick two load/store ops. Second not gauranteed to exist */
835 midgard_instruction
*ins
=
836 mir_choose_instruction(instructions
, worklist
, len
, &predicate
);
838 midgard_instruction
*pair
=
839 mir_choose_instruction(instructions
, worklist
, len
, &predicate
);
841 struct midgard_bundle out
= {
842 .tag
= TAG_LOAD_STORE_4
,
843 .instruction_count
= pair
? 2 : 1,
844 .instructions
= { ins
, pair
}
847 /* We have to update the worklist atomically, since the two
848 * instructions run concurrently (TODO: verify it's not pipelined) */
850 mir_update_worklist(worklist
, len
, instructions
, ins
);
851 mir_update_worklist(worklist
, len
, instructions
, pair
);
856 static midgard_bundle
858 compiler_context
*ctx
,
859 midgard_instruction
**instructions
,
860 BITSET_WORD
*worklist
, unsigned len
)
862 struct midgard_bundle bundle
= {};
864 unsigned bytes_emitted
= sizeof(bundle
.control
);
866 struct midgard_predicate predicate
= {
870 .constants
= &bundle
.constants
873 midgard_instruction
*vmul
= NULL
;
874 midgard_instruction
*vadd
= NULL
;
875 midgard_instruction
*vlut
= NULL
;
876 midgard_instruction
*smul
= NULL
;
877 midgard_instruction
*sadd
= NULL
;
878 midgard_instruction
*branch
= NULL
;
880 mir_choose_alu(&branch
, instructions
, worklist
, len
, &predicate
, ALU_ENAB_BR_COMPACT
);
881 mir_update_worklist(worklist
, len
, instructions
, branch
);
882 bool writeout
= branch
&& branch
->writeout
;
883 bool zs_writeout
= writeout
&& (branch
->writeout_depth
| branch
->writeout_stencil
);
885 if (branch
&& branch
->branch
.conditional
) {
886 midgard_instruction
*cond
= mir_schedule_condition(ctx
, &predicate
, worklist
, len
, instructions
, branch
);
888 if (cond
->unit
== UNIT_VADD
)
890 else if (cond
->unit
== UNIT_SMUL
)
893 unreachable("Bad condition");
896 /* If we have a render target reference, schedule a move for it. Since
897 * this will be in sadd, we boost this to prevent scheduling csel into
900 if (writeout
&& (branch
->constants
.u32
[0] || ctx
->is_blend
)) {
901 sadd
= ralloc(ctx
, midgard_instruction
);
902 *sadd
= v_mov(~0, make_compiler_temp(ctx
));
903 sadd
->unit
= UNIT_SADD
;
905 sadd
->has_inline_constant
= true;
906 sadd
->inline_constant
= branch
->constants
.u32
[0];
907 branch
->src
[1] = sadd
->dest
;
908 branch
->src_types
[1] = sadd
->dest_type
;
910 /* Mask off any conditionals. Could be optimized to just scalar
911 * conditionals TODO */
912 predicate
.no_cond
= true;
915 mir_choose_alu(&smul
, instructions
, worklist
, len
, &predicate
, UNIT_SMUL
);
918 mir_choose_alu(&vlut
, instructions
, worklist
, len
, &predicate
, UNIT_VLUT
);
921 bundle
.last_writeout
= branch
->last_writeout
;
924 if (writeout
&& !zs_writeout
) {
925 vadd
= ralloc(ctx
, midgard_instruction
);
926 *vadd
= v_mov(~0, make_compiler_temp(ctx
));
928 if (!ctx
->is_blend
) {
929 vadd
->alu
.op
= midgard_alu_op_iadd
;
930 vadd
->src
[0] = SSA_FIXED_REGISTER(31);
931 vadd
->src_types
[0] = nir_type_uint32
;
933 for (unsigned c
= 0; c
< 16; ++c
)
934 vadd
->swizzle
[0][c
] = COMPONENT_X
;
936 vadd
->has_inline_constant
= true;
937 vadd
->inline_constant
= 0;
939 vadd
->src
[1] = SSA_FIXED_REGISTER(1);
940 vadd
->src_types
[0] = nir_type_uint32
;
942 for (unsigned c
= 0; c
< 16; ++c
)
943 vadd
->swizzle
[1][c
] = COMPONENT_W
;
946 vadd
->unit
= UNIT_VADD
;
948 branch
->src
[2] = vadd
->dest
;
949 branch
->src_types
[2] = vadd
->dest_type
;
952 mir_choose_alu(&vadd
, instructions
, worklist
, len
, &predicate
, UNIT_VADD
);
954 mir_update_worklist(worklist
, len
, instructions
, vlut
);
955 mir_update_worklist(worklist
, len
, instructions
, vadd
);
956 mir_update_worklist(worklist
, len
, instructions
, smul
);
958 bool vadd_csel
= vadd
&& OP_IS_CSEL(vadd
->alu
.op
);
959 bool smul_csel
= smul
&& OP_IS_CSEL(smul
->alu
.op
);
961 if (vadd_csel
|| smul_csel
) {
962 midgard_instruction
*ins
= vadd_csel
? vadd
: smul
;
963 midgard_instruction
*cond
= mir_schedule_condition(ctx
, &predicate
, worklist
, len
, instructions
, ins
);
965 if (cond
->unit
== UNIT_VMUL
)
967 else if (cond
->unit
== UNIT_SADD
)
970 unreachable("Bad condition");
973 /* Stage 2, let's schedule sadd before vmul for writeout */
974 mir_choose_alu(&sadd
, instructions
, worklist
, len
, &predicate
, UNIT_SADD
);
976 /* Check if writeout reads its own register */
979 midgard_instruction
*stages
[] = { sadd
, vadd
, smul
};
980 unsigned src
= (branch
->src
[0] == ~0) ? SSA_FIXED_REGISTER(zs_writeout
? 1 : 0) : branch
->src
[0];
981 unsigned writeout_mask
= 0x0;
982 bool bad_writeout
= false;
984 for (unsigned i
= 0; i
< ARRAY_SIZE(stages
); ++i
) {
988 if (stages
[i
]->dest
!= src
)
991 writeout_mask
|= stages
[i
]->mask
;
992 bad_writeout
|= mir_has_arg(stages
[i
], branch
->src
[0]);
995 /* It's possible we'll be able to schedule something into vmul
996 * to fill r0/r1. Let's peak into the future, trying to schedule
997 * vmul specially that way. */
999 unsigned full_mask
= zs_writeout
?
1000 (1 << (branch
->writeout_depth
+ branch
->writeout_stencil
)) - 1 :
1003 if (!bad_writeout
&& writeout_mask
!= full_mask
) {
1004 predicate
.unit
= UNIT_VMUL
;
1005 predicate
.dest
= src
;
1006 predicate
.mask
= writeout_mask
^ full_mask
;
1008 struct midgard_instruction
*peaked
=
1009 mir_choose_instruction(instructions
, worklist
, len
, &predicate
);
1013 vmul
->unit
= UNIT_VMUL
;
1014 writeout_mask
|= predicate
.mask
;
1015 assert(writeout_mask
== full_mask
);
1019 predicate
.dest
= predicate
.mask
= 0;
1022 /* Finally, add a move if necessary */
1023 if (bad_writeout
|| writeout_mask
!= full_mask
) {
1024 unsigned temp
= (branch
->src
[0] == ~0) ? SSA_FIXED_REGISTER(zs_writeout
? 1 : 0) : make_compiler_temp(ctx
);
1026 vmul
= ralloc(ctx
, midgard_instruction
);
1027 *vmul
= v_mov(src
, temp
);
1028 vmul
->unit
= UNIT_VMUL
;
1029 vmul
->mask
= full_mask
^ writeout_mask
;
1031 /* Rewrite to use our temp */
1033 for (unsigned i
= 0; i
< ARRAY_SIZE(stages
); ++i
) {
1035 mir_rewrite_index_dst_single(stages
[i
], src
, temp
);
1038 mir_rewrite_index_src_single(branch
, src
, temp
);
1042 mir_choose_alu(&vmul
, instructions
, worklist
, len
, &predicate
, UNIT_VMUL
);
1044 mir_update_worklist(worklist
, len
, instructions
, vmul
);
1045 mir_update_worklist(worklist
, len
, instructions
, sadd
);
1047 bundle
.has_blend_constant
= predicate
.blend_constant
;
1048 bundle
.has_embedded_constants
= predicate
.constant_mask
!= 0;
1050 unsigned padding
= 0;
1052 /* Now that we have finished scheduling, build up the bundle */
1053 midgard_instruction
*stages
[] = { vmul
, sadd
, vadd
, smul
, vlut
, branch
};
1055 for (unsigned i
= 0; i
< ARRAY_SIZE(stages
); ++i
) {
1057 bundle
.control
|= stages
[i
]->unit
;
1058 bytes_emitted
+= bytes_for_instruction(stages
[i
]);
1059 bundle
.instructions
[bundle
.instruction_count
++] = stages
[i
];
1061 /* If we branch, we can't spill to TLS since the store
1062 * instruction will never get executed. We could try to
1063 * break the bundle but this is probably easier for
1067 stages
[i
]->no_spill
|= (1 << REG_CLASS_WORK
);
1071 /* Pad ALU op to nearest word */
1073 if (bytes_emitted
& 15) {
1074 padding
= 16 - (bytes_emitted
& 15);
1075 bytes_emitted
+= padding
;
1078 /* Constants must always be quadwords */
1079 if (bundle
.has_embedded_constants
)
1080 bytes_emitted
+= 16;
1082 /* Size ALU instruction for tag */
1083 bundle
.tag
= (TAG_ALU_4
) + (bytes_emitted
/ 16) - 1;
1085 /* MRT capable GPUs use a special writeout procedure */
1086 if (writeout
&& !(ctx
->quirks
& MIDGARD_NO_UPPER_ALU
))
1089 bundle
.padding
= padding
;
1090 bundle
.control
|= bundle
.tag
;
1095 /* Schedule a single block by iterating its instruction to create bundles.
1096 * While we go, tally about the bundle sizes to compute the block size. */
1100 schedule_block(compiler_context
*ctx
, midgard_block
*block
)
1102 /* Copy list to dynamic array */
1104 midgard_instruction
**instructions
= flatten_mir(block
, &len
);
1109 /* Calculate dependencies and initial worklist */
1110 unsigned node_count
= ctx
->temp_count
+ 1;
1111 mir_create_dependency_graph(instructions
, len
, node_count
);
1113 /* Allocate the worklist */
1114 size_t sz
= BITSET_WORDS(len
) * sizeof(BITSET_WORD
);
1115 BITSET_WORD
*worklist
= calloc(sz
, 1);
1116 mir_initialize_worklist(worklist
, instructions
, len
);
1118 struct util_dynarray bundles
;
1119 util_dynarray_init(&bundles
, NULL
);
1121 block
->quadword_count
= 0;
1122 unsigned blend_offset
= 0;
1125 unsigned tag
= mir_choose_bundle(instructions
, worklist
, len
);
1126 midgard_bundle bundle
;
1128 if (tag
== TAG_TEXTURE_4
)
1129 bundle
= mir_schedule_texture(instructions
, worklist
, len
);
1130 else if (tag
== TAG_LOAD_STORE_4
)
1131 bundle
= mir_schedule_ldst(instructions
, worklist
, len
);
1132 else if (tag
== TAG_ALU_4
)
1133 bundle
= mir_schedule_alu(ctx
, instructions
, worklist
, len
);
1137 util_dynarray_append(&bundles
, midgard_bundle
, bundle
);
1139 if (bundle
.has_blend_constant
)
1140 blend_offset
= block
->quadword_count
;
1142 block
->quadword_count
+= midgard_tag_props
[bundle
.tag
].size
;
1145 /* We emitted bundles backwards; copy into the block in reverse-order */
1147 util_dynarray_init(&block
->bundles
, block
);
1148 util_dynarray_foreach_reverse(&bundles
, midgard_bundle
, bundle
) {
1149 util_dynarray_append(&block
->bundles
, midgard_bundle
, *bundle
);
1151 util_dynarray_fini(&bundles
);
1153 /* Blend constant was backwards as well. blend_offset if set is
1154 * strictly positive, as an offset of zero would imply constants before
1155 * any instructions which is invalid in Midgard. TODO: blend constants
1156 * are broken if you spill since then quadword_count becomes invalid
1160 ctx
->blend_constant_offset
= ((ctx
->quadword_count
+ block
->quadword_count
) - blend_offset
- 1) * 0x10;
1162 block
->scheduled
= true;
1163 ctx
->quadword_count
+= block
->quadword_count
;
1165 /* Reorder instructions to match bundled. First remove existing
1166 * instructions and then recreate the list */
1168 mir_foreach_instr_in_block_safe(block
, ins
) {
1169 list_del(&ins
->link
);
1172 mir_foreach_instr_in_block_scheduled_rev(block
, ins
) {
1173 list_add(&ins
->link
, &block
->base
.instructions
);
1176 free(instructions
); /* Allocated by flatten_mir() */
1181 midgard_schedule_program(compiler_context
*ctx
)
1183 midgard_promote_uniforms(ctx
);
1185 /* Must be lowered right before scheduling */
1186 mir_squeeze_index(ctx
);
1187 mir_lower_special_reads(ctx
);
1188 mir_squeeze_index(ctx
);
1190 /* Lowering can introduce some dead moves */
1192 mir_foreach_block(ctx
, _block
) {
1193 midgard_block
*block
= (midgard_block
*) _block
;
1194 midgard_opt_dead_move_eliminate(ctx
, block
);
1195 schedule_block(ctx
, block
);