mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
aco: Support GFX10 EXP in aco_assembler.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
This commit is contained in:
parent
e6330d71b5
commit
d3a48c272f
1 changed files with 7 additions and 1 deletions
|
|
@ -415,7 +415,13 @@ void emit_instruction(asm_context& ctx, std::vector<uint32_t>& out, Instruction*
|
|||
}
|
||||
case Format::EXP: {
|
||||
Export_instruction* exp = static_cast<Export_instruction*>(instr);
|
||||
uint32_t encoding = (0b110001 << 26);
|
||||
uint32_t encoding;
|
||||
if (ctx.chip_class <= GFX9) {
|
||||
encoding = (0b110001 << 26);
|
||||
} else if (ctx.chip_class >= GFX10) {
|
||||
encoding = (0b111110 << 26);
|
||||
}
|
||||
|
||||
encoding |= exp->valid_mask ? 0b1 << 12 : 0;
|
||||
encoding |= exp->done ? 0b1 << 11 : 0;
|
||||
encoding |= exp->compressed ? 0b1 << 10 : 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue