diff options
author | Rhys Perry <[email protected]> | 2019-10-14 17:17:00 +0100 |
---|---|---|
committer | Rhys Perry <[email protected]> | 2019-10-22 18:52:29 +0000 |
commit | bdf47a12736e89e1befaa77567668a5128dc2486 (patch) | |
tree | 67ea925417cdc99c48503ff22379b90c5347955b /src/amd/compiler | |
parent | 58d4aee5df015c901ceecb46a9d51e4c640860ee (diff) |
aco: properly combine additions into ds_write2_b64/ds_read2_b64
Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Diffstat (limited to 'src/amd/compiler')
-rw-r--r-- | src/amd/compiler/aco_optimizer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/compiler/aco_optimizer.cpp b/src/amd/compiler/aco_optimizer.cpp index 4a287336d0d..d9596ea8b59 100644 --- a/src/amd/compiler/aco_optimizer.cpp +++ b/src/amd/compiler/aco_optimizer.cpp @@ -657,7 +657,8 @@ void label_instruction(opt_ctx &ctx, aco_ptr<Instruction>& instr) Temp base; uint32_t offset; if (i == 0 && parse_base_offset(ctx, instr.get(), i, &base, &offset) && base.regClass() == instr->operands[i].regClass()) { - if (instr->opcode == aco_opcode::ds_write2_b32 || instr->opcode == aco_opcode::ds_read2_b32) { + if (instr->opcode == aco_opcode::ds_write2_b32 || instr->opcode == aco_opcode::ds_read2_b32 || + instr->opcode == aco_opcode::ds_write2_b64 || instr->opcode == aco_opcode::ds_read2_b64) { if (offset % 4 == 0 && ds->offset0 + (offset >> 2) <= 255 && ds->offset1 + (offset >> 2) <= 255) { |