mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01:00
aco: fix emitting slc for MUBUF instructions on GFX6-GFX7
Same as GFX10, only GFX8/GFX9 moved that bit near the opcode. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3437> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3437>
This commit is contained in:
parent
6af63c939b
commit
b9b393f0ce
1 changed files with 1 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ void emit_instruction(asm_context& ctx, std::vector<uint32_t>& out, Instruction*
|
|||
encoding |= 0x0FFF & mubuf->offset;
|
||||
out.push_back(encoding);
|
||||
encoding = 0;
|
||||
if (ctx.chip_class >= GFX10) {
|
||||
if (ctx.chip_class <= GFX7 || ctx.chip_class >= GFX10) {
|
||||
encoding |= (mubuf->slc ? 1 : 0) << 22;
|
||||
}
|
||||
encoding |= instr->operands[2].physReg() << 24;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue