From: Rhys Perry Date: Thu, 23 Apr 2020 16:17:49 +0000 (+0100) Subject: aco: clobber scc in s_bfe_u32 in get_alu_src() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3dc1441f01e575d612fdbf900518a3a81df94ac;p=mesa.git aco: clobber scc in s_bfe_u32 in get_alu_src() Signed-off-by: Rhys Perry Reviewed-by: Daniel Schürmann Part-of: --- diff --git a/src/amd/compiler/aco_instruction_selection.cpp b/src/amd/compiler/aco_instruction_selection.cpp index f2fbfa46851..4366e8b2362 100644 --- a/src/amd/compiler/aco_instruction_selection.cpp +++ b/src/amd/compiler/aco_instruction_selection.cpp @@ -501,10 +501,11 @@ Temp get_alu_src(struct isel_context *ctx, nir_alu_src src, unsigned size=1) return vec; Temp dst{ctx->program->allocateId(), s1}; - aco_ptr bfe{create_instruction(aco_opcode::s_bfe_u32, Format::SOP2, 2, 1)}; + aco_ptr bfe{create_instruction(aco_opcode::s_bfe_u32, Format::SOP2, 2, 2)}; bfe->operands[0] = Operand(vec); bfe->operands[1] = Operand(uint32_t((src.src.ssa->bit_size << 16) | (src.src.ssa->bit_size * swizzle))); bfe->definitions[0] = Definition(dst); + bfe->definitions[1] = Definition(ctx->program->allocateId(), scc, s1); ctx->block->instructions.emplace_back(std::move(bfe)); return dst; }