X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Famd%2Fcompiler%2Faco_optimizer.cpp;h=bf075b6ffab8d5aab8d82cab11cf2757f436edc6;hb=d962bbd89528c540b86bd61d19677bda4d352ebe;hp=d9596ea8b5995e6d53522231b7f026123ae0f41c;hpb=bdf47a12736e89e1befaa77567668a5128dc2486;p=mesa.git diff --git a/src/amd/compiler/aco_optimizer.cpp b/src/amd/compiler/aco_optimizer.cpp index d9596ea8b59..bf075b6ffab 100644 --- a/src/amd/compiler/aco_optimizer.cpp +++ b/src/amd/compiler/aco_optimizer.cpp @@ -53,11 +53,10 @@ struct mad_info { aco_ptr add_instr; uint32_t mul_temp_id; uint32_t literal_idx; - bool needs_vop3; bool check_literal; - mad_info(aco_ptr instr, uint32_t id, bool vop3) - : add_instr(std::move(instr)), mul_temp_id(id), needs_vop3(vop3), check_literal(false) {} + mad_info(aco_ptr instr, uint32_t id) + : add_instr(std::move(instr)), mul_temp_id(id), check_literal(false) {} }; enum Label { @@ -82,11 +81,13 @@ enum Label { label_bitwise = 1 << 18, label_minmax = 1 << 19, label_fcmp = 1 << 20, + label_uniform_bool = 1 << 21, + label_constant_64bit = 1 << 22, }; static constexpr uint32_t instr_labels = label_vec | label_mul | label_mad | label_omod_success | label_clamp_success | label_add_sub | label_bitwise | label_minmax | label_fcmp; -static constexpr uint32_t temp_labels = label_abs | label_neg | label_temp | label_vcc | label_b2f; -static constexpr uint32_t val_labels = label_constant | label_literal | label_mad; +static constexpr uint32_t temp_labels = label_abs | label_neg | label_temp | label_vcc | label_b2f | label_uniform_bool | label_omod2 | label_omod4 | label_omod5 | label_clamp; +static constexpr uint32_t val_labels = label_constant | label_constant_64bit | label_literal | label_mad; struct ssa_info { uint32_t val; @@ -137,6 +138,17 @@ struct ssa_info { return label & label_constant; } + void set_constant_64bit(uint32_t constant) + { + add_label(label_constant_64bit); + val = constant; + } + + bool is_constant_64bit() + { + return label & label_constant_64bit; + } + void set_abs(Temp abs_temp) { add_label(label_abs); @@ -210,9 +222,10 @@ struct ssa_info { return label & label_mad; } - void set_omod2() + void set_omod2(Temp def) { add_label(label_omod2); + temp = def; } bool is_omod2() @@ -220,9 +233,10 @@ struct ssa_info { return label & label_omod2; } - void set_omod4() + void set_omod4(Temp def) { add_label(label_omod4); + temp = def; } bool is_omod4() @@ -230,9 +244,10 @@ struct ssa_info { return label & label_omod4; } - void set_omod5() + void set_omod5(Temp def) { add_label(label_omod5); + temp = def; } bool is_omod5() @@ -251,9 +266,10 @@ struct ssa_info { return label & label_omod_success; } - void set_clamp() + void set_clamp(Temp def) { add_label(label_clamp); + temp = def; } bool is_clamp() @@ -353,6 +369,17 @@ struct ssa_info { return label & label_fcmp; } + void set_uniform_bool(Temp uniform_bool) + { + add_label(label_uniform_bool); + temp = uniform_bool; + } + + bool is_uniform_bool() + { + return label & label_uniform_bool; + } + }; struct opt_ctx { @@ -378,6 +405,10 @@ bool can_swap_operands(aco_ptr& instr) case aco_opcode::v_xor_b32: case aco_opcode::v_max_f32: case aco_opcode::v_min_f32: + case aco_opcode::v_max_i32: + case aco_opcode::v_min_i32: + case aco_opcode::v_max_u32: + case aco_opcode::v_min_u32: case aco_opcode::v_cmp_eq_f32: case aco_opcode::v_cmp_lg_f32: return true; @@ -398,9 +429,12 @@ bool can_swap_operands(aco_ptr& instr) } } -bool can_use_VOP3(aco_ptr& instr) +bool can_use_VOP3(opt_ctx& ctx, aco_ptr& instr) { - if (instr->operands.size() && instr->operands[0].isLiteral()) + if (instr->isVOP3()) + return true; + + if (instr->operands.size() && instr->operands[0].isLiteral() && ctx.program->chip_class < GFX10) return false; if (instr->isDPP() || instr->isSDWA()) @@ -409,14 +443,23 @@ bool can_use_VOP3(aco_ptr& instr) return instr->opcode != aco_opcode::v_madmk_f32 && instr->opcode != aco_opcode::v_madak_f32 && instr->opcode != aco_opcode::v_madmk_f16 && - instr->opcode != aco_opcode::v_madak_f16; + instr->opcode != aco_opcode::v_madak_f16 && + instr->opcode != aco_opcode::v_fmamk_f32 && + instr->opcode != aco_opcode::v_fmaak_f32 && + instr->opcode != aco_opcode::v_fmamk_f16 && + instr->opcode != aco_opcode::v_fmaak_f16 && + instr->opcode != aco_opcode::v_readlane_b32 && + instr->opcode != aco_opcode::v_writelane_b32 && + instr->opcode != aco_opcode::v_readfirstlane_b32; } bool can_apply_sgprs(aco_ptr& instr) { return instr->opcode != aco_opcode::v_readfirstlane_b32 && instr->opcode != aco_opcode::v_readlane_b32 && - instr->opcode != aco_opcode::v_writelane_b32; + instr->opcode != aco_opcode::v_readlane_b32_e64 && + instr->opcode != aco_opcode::v_writelane_b32 && + instr->opcode != aco_opcode::v_writelane_b32_e64; } void to_VOP3(opt_ctx& ctx, aco_ptr& instr) @@ -424,7 +467,6 @@ void to_VOP3(opt_ctx& ctx, aco_ptr& instr) if (instr->isVOP3()) return; - assert(!instr->operands[0].isLiteral()); aco_ptr tmp = std::move(instr); Format format = asVOP3(tmp->format); instr.reset(create_instruction(tmp->opcode, format, tmp->operands.size(), tmp->definitions.size())); @@ -446,6 +488,7 @@ bool can_accept_constant(aco_ptr& instr, unsigned operand) case aco_opcode::v_interp_p2_f32: case aco_opcode::v_mac_f32: case aco_opcode::v_writelane_b32: + case aco_opcode::v_writelane_b32_e64: case aco_opcode::v_cndmask_b32: return operand != 2; case aco_opcode::s_addk_i32: @@ -454,6 +497,7 @@ bool can_accept_constant(aco_ptr& instr, unsigned operand) case aco_opcode::p_extract_vector: case aco_opcode::p_split_vector: case aco_opcode::v_readlane_b32: + case aco_opcode::v_readlane_b32_e64: case aco_opcode::v_readfirstlane_b32: return operand != 0; default: @@ -467,11 +511,60 @@ bool can_accept_constant(aco_ptr& instr, unsigned operand) } } -bool valu_can_accept_literal(opt_ctx& ctx, aco_ptr& instr, unsigned operand) +bool valu_can_accept_vgpr(aco_ptr& instr, unsigned operand) +{ + if (instr->opcode == aco_opcode::v_readlane_b32 || instr->opcode == aco_opcode::v_readlane_b32_e64 || + instr->opcode == aco_opcode::v_writelane_b32 || instr->opcode == aco_opcode::v_writelane_b32_e64) + return operand != 1; + return true; +} + +/* check constant bus and literal limitations */ +bool check_vop3_operands(opt_ctx& ctx, unsigned num_operands, Operand *operands) { - // TODO: VOP3 can take a literal on GFX10 - return !instr->isSDWA() && !instr->isDPP() && !instr->isVOP3() && - operand == 0 && can_accept_constant(instr, operand); + int limit = ctx.program->chip_class >= GFX10 ? 2 : 1; + Operand literal32(s1); + Operand literal64(s2); + unsigned num_sgprs = 0; + unsigned sgpr[] = {0, 0}; + + for (unsigned i = 0; i < num_operands; i++) { + Operand op = operands[i]; + + if (op.hasRegClass() && op.regClass().type() == RegType::sgpr) { + /* two reads of the same SGPR count as 1 to the limit */ + if (op.tempId() != sgpr[0] && op.tempId() != sgpr[1]) { + if (num_sgprs < 2) + sgpr[num_sgprs++] = op.tempId(); + limit--; + if (limit < 0) + return false; + } + } else if (op.isLiteral()) { + if (ctx.program->chip_class < GFX10) + return false; + + if (!literal32.isUndefined() && literal32.constantValue() != op.constantValue()) + return false; + if (!literal64.isUndefined() && literal64.constantValue() != op.constantValue()) + return false; + + /* Any number of 32-bit literals counts as only 1 to the limit. Same + * (but separately) for 64-bit literals. */ + if (op.size() == 1 && literal32.isUndefined()) { + limit--; + literal32 = op; + } else if (op.size() == 2 && literal64.isUndefined()) { + limit--; + literal64 = op; + } + + if (limit < 0) + return false; + } + } + + return true; } bool parse_base_offset(opt_ctx &ctx, Instruction* instr, unsigned op_index, Temp *base, uint32_t *offset) @@ -496,6 +589,9 @@ bool parse_base_offset(opt_ctx &ctx, Instruction* instr, unsigned op_index, Temp return false; } + if (add_instr->usesModifiers()) + return false; + for (unsigned i = 0; i < 2; i++) { if (add_instr->operands[i].isConstant()) { *offset = add_instr->operands[i].constantValue(); @@ -520,7 +616,16 @@ bool parse_base_offset(opt_ctx &ctx, Instruction* instr, unsigned op_index, Temp return false; } -void label_instruction(opt_ctx &ctx, aco_ptr& instr) +Operand get_constant_op(opt_ctx &ctx, uint32_t val, bool is64bit = false) +{ + // TODO: this functions shouldn't be needed if we store Operand instead of value. + Operand op(val, is64bit); + if (val == 0x3e22f983 && ctx.program->chip_class >= GFX8) + op.setFixed(PhysReg{248}); /* 1/2 PI can be an inline constant on GFX8+ */ + return op; +} + +void label_instruction(opt_ctx &ctx, Block& block, aco_ptr& instr) { if (instr->isSALU() || instr->isVALU() || instr->format == Format::PSEUDO) { ASSERTED bool all_const = false; @@ -568,19 +673,19 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) break; } } - if ((info.is_constant() || (info.is_literal() && instr->format == Format::PSEUDO)) && !instr->operands[i].isFixed() && can_accept_constant(instr, i)) { - instr->operands[i] = Operand(info.val); + if ((info.is_constant() || info.is_constant_64bit() || (info.is_literal() && instr->format == Format::PSEUDO)) && !instr->operands[i].isFixed() && can_accept_constant(instr, i)) { + instr->operands[i] = get_constant_op(ctx, info.val, info.is_constant_64bit()); continue; } } /* VALU: propagate neg, abs & inline constants */ else if (instr->isVALU()) { - if (info.is_temp() && info.temp.type() == RegType::vgpr) { + if (info.is_temp() && info.temp.type() == RegType::vgpr && valu_can_accept_vgpr(instr, i)) { instr->operands[i].setTemp(info.temp); info = ctx.info[info.temp.id()]; } - if (info.is_abs() && (can_use_VOP3(instr) || instr->isDPP()) && instr_info.can_use_input_modifiers[(int)instr->opcode]) { + if (info.is_abs() && (can_use_VOP3(ctx, instr) || instr->isDPP()) && instr_info.can_use_input_modifiers[(int)instr->opcode]) { if (!instr->isDPP()) to_VOP3(ctx, instr); instr->operands[i] = Operand(info.temp); @@ -593,7 +698,7 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) instr->opcode = i ? aco_opcode::v_sub_f32 : aco_opcode::v_subrev_f32; instr->operands[i].setTemp(info.temp); continue; - } else if (info.is_neg() && (can_use_VOP3(instr) || instr->isDPP()) && instr_info.can_use_input_modifiers[(int)instr->opcode]) { + } else if (info.is_neg() && (can_use_VOP3(ctx, instr) || instr->isDPP()) && instr_info.can_use_input_modifiers[(int)instr->opcode]) { if (!instr->isDPP()) to_VOP3(ctx, instr); instr->operands[i].setTemp(info.temp); @@ -603,18 +708,19 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) static_cast(instr.get())->neg[i] = true; continue; } - if (info.is_constant() && can_accept_constant(instr, i)) { + if ((info.is_constant() || info.is_constant_64bit()) && can_accept_constant(instr, i)) { + Operand op = get_constant_op(ctx, info.val, info.is_constant_64bit()); perfwarn(instr->opcode == aco_opcode::v_cndmask_b32 && i == 2, "v_cndmask_b32 with a constant selector", instr.get()); - if (i == 0) { - instr->operands[i] = Operand(info.val); + if (i == 0 || instr->opcode == aco_opcode::v_readlane_b32 || instr->opcode == aco_opcode::v_writelane_b32) { + instr->operands[i] = op; continue; } else if (!instr->isVOP3() && can_swap_operands(instr)) { instr->operands[i] = instr->operands[0]; - instr->operands[0] = Operand(info.val); + instr->operands[0] = op; continue; - } else if (can_use_VOP3(instr)) { + } else if (can_use_VOP3(ctx, instr)) { to_VOP3(ctx, instr); - instr->operands[i] = Operand(info.val); + instr->operands[i] = op; continue; } } @@ -656,7 +762,7 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) DS_instruction *ds = static_cast(instr.get()); Temp base; uint32_t offset; - if (i == 0 && parse_base_offset(ctx, instr.get(), i, &base, &offset) && base.regClass() == instr->operands[i].regClass()) { + if (i == 0 && parse_base_offset(ctx, instr.get(), i, &base, &offset) && base.regClass() == instr->operands[i].regClass() && instr->opcode != aco_opcode::ds_swizzle_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 && @@ -681,7 +787,8 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) SMEM_instruction *smem = static_cast(instr.get()); Temp base; uint32_t offset; - if (i == 1 && info.is_constant_or_literal() && info.val <= 0xFFFFF) { + if (i == 1 && info.is_constant_or_literal() && + (ctx.program->chip_class < GFX8 || info.val <= 0xFFFFF)) { instr->operands[i] = Operand(info.val); continue; } else if (i == 1 && parse_base_offset(ctx, instr.get(), i, &base, &offset) && base.regClass() == s1 && offset <= 0xFFFFF && ctx.program->chip_class >= GFX9) { @@ -703,6 +810,8 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) new_instr->operands.back() = Operand(base); if (!smem->definitions.empty()) new_instr->definitions[0] = smem->definitions[0]; + new_instr->can_reorder = smem->can_reorder; + new_instr->barrier = smem->barrier; instr.reset(new_instr); smem = static_cast(instr.get()); } @@ -729,8 +838,13 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) unsigned k = 0; for (Operand& old_op : old_vec->operands) { if (old_op.isTemp() && ctx.info[old_op.tempId()].is_vec()) { - for (unsigned j = 0; j < ctx.info[old_op.tempId()].instr->operands.size(); j++) - instr->operands[k++] = ctx.info[old_op.tempId()].instr->operands[j]; + for (unsigned j = 0; j < ctx.info[old_op.tempId()].instr->operands.size(); j++) { + Operand op = ctx.info[old_op.tempId()].instr->operands[j]; + if (op.isTemp() && ctx.info[op.tempId()].is_temp() && + ctx.info[op.tempId()].temp.type() == instr->definitions[0].regClass().type()) + op.setTemp(ctx.info[op.tempId()].temp); + instr->operands[k++] = op; + } } else { instr->operands[k++] = old_op; } @@ -753,8 +867,10 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) if (vec_op.isConstant()) { if (vec_op.isLiteral()) ctx.info[instr->definitions[i].tempId()].set_literal(vec_op.constantValue()); - else + else if (vec_op.size() == 1) ctx.info[instr->definitions[i].tempId()].set_constant(vec_op.constantValue()); + else if (vec_op.size() == 2) + ctx.info[instr->definitions[i].tempId()].set_constant_64bit(vec_op.constantValue()); } else { assert(vec_op.isTemp()); ctx.info[instr->definitions[i].tempId()].set_temp(vec_op.getTemp()); @@ -776,14 +892,18 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) Format format = is_vgpr ? Format::VOP1 : Format::SOP1; instr->opcode = opcode; instr->format = format; - instr->operands = {instr->operands.begin(), 1 }; + while (instr->operands.size() > 1) + instr->operands.pop_back(); instr->operands[0] = vec_op; if (vec_op.isConstant()) { if (vec_op.isLiteral()) ctx.info[instr->definitions[0].tempId()].set_literal(vec_op.constantValue()); - else + else if (vec_op.size() == 1) ctx.info[instr->definitions[0].tempId()].set_constant(vec_op.constantValue()); + else if (vec_op.size() == 2) + ctx.info[instr->definitions[0].tempId()].set_constant_64bit(vec_op.constantValue()); + } else { assert(vec_op.isTemp()); ctx.info[instr->definitions[0].tempId()].set_temp(vec_op.getTemp()); @@ -797,13 +917,15 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) case aco_opcode::p_as_uniform: if (instr->definitions[0].isFixed()) { /* don't copy-propagate copies into fixed registers */ + } else if (instr->usesModifiers()) { + // TODO } else if (instr->operands[0].isConstant()) { if (instr->operands[0].isLiteral()) ctx.info[instr->definitions[0].tempId()].set_literal(instr->operands[0].constantValue()); - else + else if (instr->operands[0].size() == 1) ctx.info[instr->definitions[0].tempId()].set_constant(instr->operands[0].constantValue()); - } else if (instr->isDPP()) { - // TODO + else if (instr->operands[0].size() == 2) + ctx.info[instr->definitions[0].tempId()].set_constant_64bit(instr->operands[0].constantValue()); } else if (instr->operands[0].isTemp()) { ctx.info[instr->definitions[0].tempId()].set_temp(instr->operands[0].getTemp()); } else { @@ -847,21 +969,19 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) } case aco_opcode::v_mul_f32: { /* omod */ /* TODO: try to move the negate/abs modifier to the consumer instead */ - if (instr->isVOP3()) { - VOP3A_instruction *vop3 = static_cast(instr.get()); - if (vop3->abs[0] || vop3->abs[1] || vop3->neg[0] || vop3->neg[1] || vop3->omod || vop3->clamp) - break; - } + if (instr->usesModifiers()) + break; for (unsigned i = 0; i < 2; i++) { if (instr->operands[!i].isConstant() && instr->operands[i].isTemp()) { if (instr->operands[!i].constantValue() == 0x40000000) { /* 2.0 */ - ctx.info[instr->operands[i].tempId()].set_omod2(); + ctx.info[instr->operands[i].tempId()].set_omod2(instr->definitions[0].getTemp()); } else if (instr->operands[!i].constantValue() == 0x40800000) { /* 4.0 */ - ctx.info[instr->operands[i].tempId()].set_omod4(); + ctx.info[instr->operands[i].tempId()].set_omod4(instr->definitions[0].getTemp()); } else if (instr->operands[!i].constantValue() == 0x3f000000) { /* 0.5 */ - ctx.info[instr->operands[i].tempId()].set_omod5(); - } else if (instr->operands[!i].constantValue() == 0x3f800000) { /* 1.0 */ + ctx.info[instr->operands[i].tempId()].set_omod5(instr->definitions[0].getTemp()); + } else if (instr->operands[!i].constantValue() == 0x3f800000 && + !block.fp_mode.must_flush_denorms32) { /* 1.0 */ ctx.info[instr->definitions[0].tempId()].set_temp(instr->operands[i].getTemp()); } else { continue; @@ -872,16 +992,17 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) break; } case aco_opcode::v_and_b32: /* abs */ - if (instr->operands[0].constantEquals(0x7FFFFFFF) && instr->operands[1].isTemp()) + if (!instr->usesModifiers() && instr->operands[0].constantEquals(0x7FFFFFFF) && + instr->operands[1].isTemp() && instr->operands[1].getTemp().type() == RegType::vgpr) ctx.info[instr->definitions[0].tempId()].set_abs(instr->operands[1].getTemp()); else ctx.info[instr->definitions[0].tempId()].set_bitwise(instr.get()); break; case aco_opcode::v_xor_b32: { /* neg */ - if (instr->operands[0].constantEquals(0x80000000u) && instr->operands[1].isTemp()) { + if (!instr->usesModifiers() && instr->operands[0].constantEquals(0x80000000u) && instr->operands[1].isTemp()) { if (ctx.info[instr->operands[1].tempId()].is_neg()) { ctx.info[instr->definitions[0].tempId()].set_temp(ctx.info[instr->operands[1].tempId()].temp); - } else { + } else if (instr->operands[1].getTemp().type() == RegType::vgpr) { if (ctx.info[instr->operands[1].tempId()].is_abs()) { /* neg(abs(x)) */ instr->operands[1].setTemp(ctx.info[instr->operands[1].tempId()].temp); instr->opcode = aco_opcode::v_or_b32; @@ -897,10 +1018,9 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) } case aco_opcode::v_med3_f32: { /* clamp */ VOP3A_instruction* vop3 = static_cast(instr.get()); - if (vop3->abs[0] || vop3->neg[0] || vop3->opsel[0] || - vop3->abs[1] || vop3->neg[1] || vop3->opsel[1] || - vop3->abs[2] || vop3->neg[2] || vop3->opsel[2] || - vop3->omod != 0) + if (vop3->abs[0] || vop3->abs[1] || vop3->abs[2] || + vop3->neg[0] || vop3->neg[1] || vop3->neg[2] || + vop3->omod != 0 || vop3->opsel != 0) break; unsigned idx = 0; @@ -915,7 +1035,7 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) idx = i; } if (found_zero && found_one && instr->operands[idx].isTemp()) { - ctx.info[instr->operands[idx].tempId()].set_clamp(); + ctx.info[instr->operands[idx].tempId()].set_clamp(instr->definitions[0].getTemp()); } break; } @@ -965,10 +1085,15 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) case aco_opcode::s_add_u32: ctx.info[instr->definitions[0].tempId()].set_add_sub(instr.get()); break; - case aco_opcode::s_not_b32: - case aco_opcode::s_not_b64: case aco_opcode::s_and_b32: case aco_opcode::s_and_b64: + if (instr->operands[1].isFixed() && instr->operands[1].physReg() == exec && + instr->operands[0].isTemp() && ctx.info[instr->operands[0].tempId()].is_uniform_bool()) { + ctx.info[instr->definitions[1].tempId()].set_temp(ctx.info[instr->operands[0].tempId()].temp); + } + /* fallthrough */ + case aco_opcode::s_not_b32: + case aco_opcode::s_not_b64: case aco_opcode::s_or_b32: case aco_opcode::s_or_b64: case aco_opcode::s_xor_b32: @@ -1008,6 +1133,14 @@ void label_instruction(opt_ctx &ctx, aco_ptr& instr) case aco_opcode::v_cmp_nlt_f32: ctx.info[instr->definitions[0].tempId()].set_fcmp(instr.get()); break; + case aco_opcode::s_cselect_b64: + case aco_opcode::s_cselect_b32: + if (instr->operands[0].constantEquals((unsigned) -1) && + instr->operands[1].constantEquals(0)) { + /* Found a cselect that operates on a uniform bool that comes from eg. s_cmp */ + ctx.info[instr->definitions[0].tempId()].set_uniform_bool(instr->operands[2].getTemp()); + } + break; default: break; } @@ -1100,14 +1233,16 @@ Instruction *follow_operand(opt_ctx &ctx, Operand op, bool ignore_uses=false) * s_and_b64(eq(a, a), eq(b, b)) -> v_cmp_o_f32(a, b) */ bool combine_ordering_test(opt_ctx &ctx, aco_ptr& instr) { - if (instr->opcode != aco_opcode::s_or_b64 && instr->opcode != aco_opcode::s_and_b64) + if (instr->definitions[0].regClass() != ctx.program->lane_mask) return false; if (instr->definitions[1].isTemp() && ctx.uses[instr->definitions[1].tempId()]) return false; + bool is_or = instr->opcode == aco_opcode::s_or_b64 || instr->opcode == aco_opcode::s_or_b32; + bool neg[2] = {false, false}; bool abs[2] = {false, false}; - bool opsel[2] = {false, false}; + uint8_t opsel = 0; Instruction *op_instr[2]; Temp op[2]; @@ -1116,8 +1251,7 @@ bool combine_ordering_test(opt_ctx &ctx, aco_ptr& instr) if (!op_instr[i]) return false; - aco_opcode expected_cmp = instr->opcode == aco_opcode::s_or_b64 ? - aco_opcode::v_cmp_neq_f32 : aco_opcode::v_cmp_eq_f32; + aco_opcode expected_cmp = is_or ? aco_opcode::v_cmp_neq_f32 : aco_opcode::v_cmp_eq_f32; if (op_instr[i]->opcode != expected_cmp) return false; @@ -1126,39 +1260,41 @@ bool combine_ordering_test(opt_ctx &ctx, aco_ptr& instr) if (op_instr[i]->isVOP3()) { VOP3A_instruction *vop3 = static_cast(op_instr[i]); - if (vop3->neg[0] != vop3->neg[1] || vop3->abs[0] != vop3->abs[1] || vop3->opsel[0] != vop3->opsel[1]) + if (vop3->neg[0] != vop3->neg[1] || vop3->abs[0] != vop3->abs[1] || vop3->opsel == 1 || vop3->opsel == 2) return false; neg[i] = vop3->neg[0]; abs[i] = vop3->abs[0]; - opsel[i] = vop3->opsel[0]; + opsel |= (vop3->opsel & 1) << i; } Temp op0 = op_instr[i]->operands[0].getTemp(); Temp op1 = op_instr[i]->operands[1].getTemp(); if (original_temp_id(ctx, op0) != original_temp_id(ctx, op1)) return false; - /* shouldn't happen yet, but best to be safe */ - if (op1.type() != RegType::vgpr) - return false; op[i] = op1; } + if (op[1].type() == RegType::sgpr) + std::swap(op[0], op[1]); + unsigned num_sgprs = (op[0].type() == RegType::sgpr) + (op[1].type() == RegType::sgpr); + if (num_sgprs > (ctx.program->chip_class >= GFX10 ? 2 : 1)) + return false; + ctx.uses[op[0].id()]++; ctx.uses[op[1].id()]++; decrease_uses(ctx, op_instr[0]); decrease_uses(ctx, op_instr[1]); - aco_opcode new_op = instr->opcode == aco_opcode::s_or_b64 ? - aco_opcode::v_cmp_u_f32 : aco_opcode::v_cmp_o_f32; + aco_opcode new_op = is_or ? aco_opcode::v_cmp_u_f32 : aco_opcode::v_cmp_o_f32; Instruction *new_instr; - if (neg[0] || neg[1] || abs[0] || abs[1] || opsel[0] || opsel[1]) { + if (neg[0] || neg[1] || abs[0] || abs[1] || opsel || num_sgprs > 1) { VOP3A_instruction *vop3 = create_instruction(new_op, asVOP3(Format::VOPC), 2, 1); for (unsigned i = 0; i < 2; i++) { vop3->neg[i] = neg[i]; vop3->abs[i] = abs[i]; - vop3->opsel[i] = opsel[i]; } + vop3->opsel = opsel; new_instr = static_cast(vop3); } else { new_instr = create_instruction(new_op, Format::VOPC, 2, 1); @@ -1179,13 +1315,13 @@ bool combine_ordering_test(opt_ctx &ctx, aco_ptr& instr) * s_and_b64(v_cmp_o_f32(a, b), cmp(a, b)) -> get_ordered(cmp)(a, b) */ bool combine_comparison_ordering(opt_ctx &ctx, aco_ptr& instr) { - if (instr->opcode != aco_opcode::s_or_b64 && instr->opcode != aco_opcode::s_and_b64) + if (instr->definitions[0].regClass() != ctx.program->lane_mask) return false; if (instr->definitions[1].isTemp() && ctx.uses[instr->definitions[1].tempId()]) return false; - aco_opcode expected_nan_test = instr->opcode == aco_opcode::s_or_b64 ? - aco_opcode::v_cmp_u_f32 : aco_opcode::v_cmp_o_f32; + bool is_or = instr->opcode == aco_opcode::s_or_b64 || instr->opcode == aco_opcode::s_or_b32; + aco_opcode expected_nan_test = is_or ? aco_opcode::v_cmp_u_f32 : aco_opcode::v_cmp_o_f32; Instruction *nan_test = follow_operand(ctx, instr->operands[0], true); Instruction *cmp = follow_operand(ctx, instr->operands[1], true); @@ -1219,17 +1355,16 @@ bool combine_comparison_ordering(opt_ctx &ctx, aco_ptr& instr) decrease_uses(ctx, nan_test); decrease_uses(ctx, cmp); - aco_opcode new_op = instr->opcode == aco_opcode::s_or_b64 ? - get_unordered(cmp->opcode) : get_ordered(cmp->opcode); + aco_opcode new_op = is_or ? get_unordered(cmp->opcode) : get_ordered(cmp->opcode); Instruction *new_instr; if (cmp->isVOP3()) { VOP3A_instruction *new_vop3 = create_instruction(new_op, asVOP3(Format::VOPC), 2, 1); VOP3A_instruction *cmp_vop3 = static_cast(cmp); memcpy(new_vop3->abs, cmp_vop3->abs, sizeof(new_vop3->abs)); - memcpy(new_vop3->opsel, cmp_vop3->opsel, sizeof(new_vop3->opsel)); memcpy(new_vop3->neg, cmp_vop3->neg, sizeof(new_vop3->neg)); new_vop3->clamp = cmp_vop3->clamp; new_vop3->omod = cmp_vop3->omod; + new_vop3->opsel = cmp_vop3->opsel; new_instr = new_vop3; } else { new_instr = create_instruction(new_op, Format::VOPC, 2, 1); @@ -1250,19 +1385,20 @@ bool combine_comparison_ordering(opt_ctx &ctx, aco_ptr& instr) * s_and_b64(v_cmp_eq_f32(a, a), cmp(a, #b)) and b is not NaN -> get_ordered(cmp)(a, b) */ bool combine_constant_comparison_ordering(opt_ctx &ctx, aco_ptr& instr) { - if (instr->opcode != aco_opcode::s_or_b64 && instr->opcode != aco_opcode::s_and_b64) + if (instr->definitions[0].regClass() != ctx.program->lane_mask) return false; if (instr->definitions[1].isTemp() && ctx.uses[instr->definitions[1].tempId()]) return false; + bool is_or = instr->opcode == aco_opcode::s_or_b64 || instr->opcode == aco_opcode::s_or_b32; + Instruction *nan_test = follow_operand(ctx, instr->operands[0], true); Instruction *cmp = follow_operand(ctx, instr->operands[1], true); if (!nan_test || !cmp) return false; - aco_opcode expected_nan_test = instr->opcode == aco_opcode::s_or_b64 ? - aco_opcode::v_cmp_neq_f32 : aco_opcode::v_cmp_eq_f32; + aco_opcode expected_nan_test = is_or ? aco_opcode::v_cmp_neq_f32 : aco_opcode::v_cmp_eq_f32; if (cmp->opcode == expected_nan_test) std::swap(nan_test, cmp); else if (nan_test->opcode != expected_nan_test) @@ -1281,6 +1417,12 @@ bool combine_constant_comparison_ordering(opt_ctx &ctx, aco_ptr& in if (prop_nan0 != prop_nan1) return false; + if (nan_test->isVOP3()) { + VOP3A_instruction *vop3 = static_cast(nan_test); + if (vop3->neg[0] != vop3->neg[1] || vop3->abs[0] != vop3->abs[1] || vop3->opsel == 1 || vop3->opsel == 2) + return false; + } + int constant_operand = -1; for (unsigned i = 0; i < 2; i++) { if (cmp->operands[i].isTemp() && original_temp_id(ctx, cmp->operands[i].getTemp()) == prop_nan0) { @@ -1295,7 +1437,8 @@ bool combine_constant_comparison_ordering(opt_ctx &ctx, aco_ptr& in if (cmp->operands[constant_operand].isConstant()) { constant = cmp->operands[constant_operand].constantValue(); } else if (cmp->operands[constant_operand].isTemp()) { - unsigned id = cmp->operands[constant_operand].tempId(); + Temp tmp = cmp->operands[constant_operand].getTemp(); + unsigned id = original_temp_id(ctx, tmp); if (!ctx.info[id].is_constant() && !ctx.info[id].is_literal()) return false; constant = ctx.info[id].val; @@ -1315,17 +1458,16 @@ bool combine_constant_comparison_ordering(opt_ctx &ctx, aco_ptr& in decrease_uses(ctx, nan_test); decrease_uses(ctx, cmp); - aco_opcode new_op = instr->opcode == aco_opcode::s_or_b64 ? - get_unordered(cmp->opcode) : get_ordered(cmp->opcode); + aco_opcode new_op = is_or ? get_unordered(cmp->opcode) : get_ordered(cmp->opcode); Instruction *new_instr; if (cmp->isVOP3()) { VOP3A_instruction *new_vop3 = create_instruction(new_op, asVOP3(Format::VOPC), 2, 1); VOP3A_instruction *cmp_vop3 = static_cast(cmp); memcpy(new_vop3->abs, cmp_vop3->abs, sizeof(new_vop3->abs)); - memcpy(new_vop3->opsel, cmp_vop3->opsel, sizeof(new_vop3->opsel)); memcpy(new_vop3->neg, cmp_vop3->neg, sizeof(new_vop3->neg)); new_vop3->clamp = cmp_vop3->clamp; new_vop3->omod = cmp_vop3->omod; + new_vop3->opsel = cmp_vop3->opsel; new_instr = new_vop3; } else { new_instr = create_instruction(new_op, Format::VOPC, 2, 1); @@ -1371,10 +1513,10 @@ bool combine_inverse_comparison(opt_ctx &ctx, aco_ptr& instr) VOP3A_instruction *new_vop3 = create_instruction(new_opcode, asVOP3(Format::VOPC), 2, 1); VOP3A_instruction *cmp_vop3 = static_cast(cmp); memcpy(new_vop3->abs, cmp_vop3->abs, sizeof(new_vop3->abs)); - memcpy(new_vop3->opsel, cmp_vop3->opsel, sizeof(new_vop3->opsel)); memcpy(new_vop3->neg, cmp_vop3->neg, sizeof(new_vop3->neg)); new_vop3->clamp = cmp_vop3->clamp; new_vop3->omod = cmp_vop3->omod; + new_vop3->opsel = cmp_vop3->opsel; new_instr = new_vop3; } else { new_instr = create_instruction(new_opcode, Format::VOPC, 2, 1); @@ -1395,8 +1537,8 @@ bool combine_inverse_comparison(opt_ctx &ctx, aco_ptr& instr) * op1(0, op2(1, 2)) if swap = true */ bool match_op3_for_vop3(opt_ctx &ctx, aco_opcode op1, aco_opcode op2, Instruction* op1_instr, bool swap, const char *shuffle_str, - Operand operands[3], bool neg[3], bool abs[3], bool opsel[3], - bool *op1_clamp, unsigned *op1_omod, + Operand operands[3], bool neg[3], bool abs[3], uint8_t *opsel, + bool *op1_clamp, uint8_t *op1_omod, bool *inbetween_neg, bool *inbetween_abs, bool *inbetween_opsel) { /* checks */ @@ -1429,8 +1571,8 @@ bool match_op3_for_vop3(opt_ctx &ctx, aco_opcode op1, aco_opcode op2, return false; if (inbetween_opsel) - *inbetween_opsel = op1_vop3 ? op1_vop3->opsel[swap] : false; - else if (op1_vop3 && op1_vop3->opsel[swap]) + *inbetween_opsel = op1_vop3 ? op1_vop3->opsel & (1 << swap) : false; + else if (op1_vop3 && op1_vop3->opsel & (1 << swap)) return false; int shuffle[3]; @@ -1441,41 +1583,34 @@ bool match_op3_for_vop3(opt_ctx &ctx, aco_opcode op1, aco_opcode op2, operands[shuffle[0]] = op1_instr->operands[!swap]; neg[shuffle[0]] = op1_vop3 ? op1_vop3->neg[!swap] : false; abs[shuffle[0]] = op1_vop3 ? op1_vop3->abs[!swap] : false; - opsel[shuffle[0]] = op1_vop3 ? op1_vop3->opsel[!swap] : false; + if (op1_vop3 && op1_vop3->opsel & (1 << !swap)) + *opsel |= 1 << shuffle[0]; for (unsigned i = 0; i < 2; i++) { operands[shuffle[i + 1]] = op2_instr->operands[i]; neg[shuffle[i + 1]] = op2_vop3 ? op2_vop3->neg[i] : false; abs[shuffle[i + 1]] = op2_vop3 ? op2_vop3->abs[i] : false; - opsel[shuffle[i + 1]] = op2_vop3 ? op2_vop3->opsel[i] : false; + if (op2_vop3 && op2_vop3->opsel & (1 << i)) + *opsel |= 1 << shuffle[i + 1]; } /* check operands */ - unsigned sgpr_id = 0; - for (unsigned i = 0; i < 3; i++) { - Operand op = operands[i]; - if (op.isLiteral()) { - return false; - } else if (op.isTemp() && op.getTemp().type() == RegType::sgpr) { - if (sgpr_id && sgpr_id != op.tempId()) - return false; - sgpr_id = op.tempId(); - } - } + if (!check_vop3_operands(ctx, 3, operands)) + return false; return true; } void create_vop3_for_op3(opt_ctx& ctx, aco_opcode opcode, aco_ptr& instr, - Operand operands[3], bool neg[3], bool abs[3], bool opsel[3], + Operand operands[3], bool neg[3], bool abs[3], uint8_t opsel, bool clamp, unsigned omod) { VOP3A_instruction *new_instr = create_instruction(opcode, Format::VOP3A, 3, 1); memcpy(new_instr->abs, abs, sizeof(bool[3])); - memcpy(new_instr->opsel, opsel, sizeof(bool[3])); memcpy(new_instr->neg, neg, sizeof(bool[3])); new_instr->clamp = clamp; new_instr->omod = omod; + new_instr->opsel = opsel; new_instr->operands[0] = operands[0]; new_instr->operands[1] = operands[1]; new_instr->operands[2] = operands[2]; @@ -1495,11 +1630,11 @@ bool combine_three_valu_op(opt_ctx& ctx, aco_ptr& instr, aco_opcode continue; Operand operands[3]; - bool neg[3], abs[3], opsel[3], clamp; - unsigned omod; + bool neg[3], abs[3], clamp; + uint8_t opsel = 0, omod = 0; if (match_op3_for_vop3(ctx, instr->opcode, op2, instr.get(), swap, shuffle, - operands, neg, abs, opsel, + operands, neg, abs, &opsel, &clamp, &omod, NULL, NULL, NULL)) { ctx.uses[instr->operands[swap].tempId()]--; create_vop3_for_op3(ctx, new_op, instr, operands, neg, abs, opsel, clamp, omod); @@ -1513,6 +1648,40 @@ bool combine_three_valu_op(opt_ctx& ctx, aco_ptr& instr, aco_opcode return false; } +bool combine_minmax(opt_ctx& ctx, aco_ptr& instr, aco_opcode opposite, aco_opcode minmax3) +{ + if (combine_three_valu_op(ctx, instr, instr->opcode, minmax3, "012", 1 | 2)) + return true; + + uint32_t omod_clamp = ctx.info[instr->definitions[0].tempId()].label & + (label_omod_success | label_clamp_success); + + /* min(-max(a, b), c) -> min3(-a, -b, c) * + * max(-min(a, b), c) -> max3(-a, -b, c) */ + for (unsigned swap = 0; swap < 2; swap++) { + Operand operands[3]; + bool neg[3], abs[3], clamp; + uint8_t opsel = 0, omod = 0; + bool inbetween_neg; + if (match_op3_for_vop3(ctx, instr->opcode, opposite, + instr.get(), swap, "012", + operands, neg, abs, &opsel, + &clamp, &omod, &inbetween_neg, NULL, NULL) && + inbetween_neg) { + ctx.uses[instr->operands[swap].tempId()]--; + neg[1] = true; + neg[2] = true; + create_vop3_for_op3(ctx, minmax3, instr, operands, neg, abs, opsel, clamp, omod); + if (omod_clamp & label_omod_success) + ctx.info[instr->definitions[0].tempId()].set_omod_success(instr.get()); + if (omod_clamp & label_clamp_success) + ctx.info[instr->definitions[0].tempId()].set_clamp_success(instr.get()); + return true; + } + } + return false; +} + /* s_not_b32(s_and_b32(a, b)) -> s_nand_b32(a, b) * s_not_b32(s_or_b32(a, b)) -> s_nor_b32(a, b) * s_not_b32(s_xor_b32(a, b)) -> s_xnor_b32(a, b) @@ -1587,6 +1756,10 @@ bool combine_salu_n2(opt_ctx& ctx, aco_ptr& instr) if (!op2_instr || (op2_instr->opcode != aco_opcode::s_not_b32 && op2_instr->opcode != aco_opcode::s_not_b64)) continue; + if (instr->operands[!i].isLiteral() && op2_instr->operands[0].isLiteral() && + instr->operands[!i].constantValue() != op2_instr->operands[0].constantValue()) + continue; + ctx.uses[instr->operands[i].tempId()]--; instr->operands[0] = instr->operands[!i]; instr->operands[1] = op2_instr->operands[0]; @@ -1629,6 +1802,10 @@ bool combine_salu_lshl_add(opt_ctx& ctx, aco_ptr& instr) if (shift < 1 || shift > 4) continue; + if (instr->operands[!i].isLiteral() && op2_instr->operands[0].isLiteral() && + instr->operands[!i].constantValue() != op2_instr->operands[0].constantValue()) + continue; + ctx.uses[instr->operands[i].tempId()]--; instr->operands[1] = instr->operands[!i]; instr->operands[0] = op2_instr->operands[0]; @@ -1675,6 +1852,9 @@ bool get_minmax_info(aco_opcode op, aco_opcode *min, aco_opcode *max, aco_opcode bool combine_clamp(opt_ctx& ctx, aco_ptr& instr, aco_opcode min, aco_opcode max, aco_opcode med) { + /* TODO: GLSL's clamp(x, minVal, maxVal) and SPIR-V's + * FClamp(x, minVal, maxVal)/NClamp(x, minVal, maxVal) are undefined if + * minVal > maxVal, which means we can always select it to a v_med3_f32 */ aco_opcode other_op; if (instr->opcode == min) other_op = max; @@ -1688,19 +1868,18 @@ bool combine_clamp(opt_ctx& ctx, aco_ptr& instr, for (unsigned swap = 0; swap < 2; swap++) { Operand operands[3]; - bool neg[3], abs[3], opsel[3], clamp, inbetween_neg, inbetween_abs; - unsigned omod; + bool neg[3], abs[3], clamp; + uint8_t opsel = 0, omod = 0; if (match_op3_for_vop3(ctx, instr->opcode, other_op, instr.get(), swap, - "012", operands, neg, abs, opsel, - &clamp, &omod, &inbetween_neg, &inbetween_abs, NULL)) { + "012", operands, neg, abs, &opsel, + &clamp, &omod, NULL, NULL, NULL)) { int const0_idx = -1, const1_idx = -1; uint32_t const0 = 0, const1 = 0; for (int i = 0; i < 3; i++) { uint32_t val; if (operands[i].isConstant()) { val = operands[i].constantValue(); - } else if (operands[i].isTemp() && ctx.uses[operands[i].tempId()] == 1 && - ctx.info[operands[i].tempId()].is_constant_or_literal()) { + } else if (operands[i].isTemp() && ctx.info[operands[i].tempId()].is_constant_or_literal()) { val = ctx.info[operands[i].tempId()].val; } else { continue; @@ -1716,9 +1895,9 @@ bool combine_clamp(opt_ctx& ctx, aco_ptr& instr, if (const0_idx < 0 || const1_idx < 0) continue; - if (opsel[const0_idx]) + if (opsel & (1 << const0_idx)) const0 >>= 16; - if (opsel[const1_idx]) + if (opsel & (1 << const1_idx)) const1 >>= 16; int lower_idx = const0_idx; @@ -1773,11 +1952,6 @@ bool combine_clamp(opt_ctx& ctx, aco_ptr& instr, return false; } - neg[1] ^= inbetween_neg; - neg[2] ^= inbetween_neg; - abs[1] |= inbetween_abs; - abs[2] |= inbetween_abs; - ctx.uses[instr->operands[swap].tempId()]--; create_vop3_for_op3(ctx, med, instr, operands, neg, abs, opsel, clamp, omod); if (omod_clamp & label_omod_success) @@ -1795,82 +1969,104 @@ bool combine_clamp(opt_ctx& ctx, aco_ptr& instr, void apply_sgprs(opt_ctx &ctx, aco_ptr& instr) { - /* apply sgprs */ - uint32_t sgpr_idx = 0; - uint32_t sgpr_info_id = 0; - bool has_sgpr = false; - uint32_t sgpr_ssa_id = 0; - /* find 'best' possible sgpr */ - for (unsigned i = 0; i < instr->operands.size(); i++) - { - if (instr->operands[i].isLiteral()) { - has_sgpr = true; - break; - } + bool is_shift64 = instr->opcode == aco_opcode::v_lshlrev_b64 || + instr->opcode == aco_opcode::v_lshrrev_b64 || + instr->opcode == aco_opcode::v_ashrrev_i64; + + /* find candidates and create the set of sgprs already read */ + unsigned sgpr_ids[2] = {0, 0}; + uint32_t operand_mask = 0; + bool has_literal = false; + for (unsigned i = 0; i < instr->operands.size(); i++) { + if (instr->operands[i].isLiteral()) + has_literal = true; if (!instr->operands[i].isTemp()) continue; if (instr->operands[i].getTemp().type() == RegType::sgpr) { - has_sgpr = true; - sgpr_ssa_id = instr->operands[i].tempId(); - continue; + if (instr->operands[i].tempId() != sgpr_ids[0]) + sgpr_ids[!!sgpr_ids[0]] = instr->operands[i].tempId(); } ssa_info& info = ctx.info[instr->operands[i].tempId()]; - if (info.is_temp() && info.temp.type() == RegType::sgpr) { + if (info.is_temp() && info.temp.type() == RegType::sgpr) + operand_mask |= 1u << i; + } + unsigned max_sgprs = 1; + if (ctx.program->chip_class >= GFX10 && !is_shift64) + max_sgprs = 2; + if (has_literal) + max_sgprs--; + + unsigned num_sgprs = !!sgpr_ids[0] + !!sgpr_ids[1]; + + /* keep on applying sgprs until there is nothing left to be done */ + while (operand_mask) { + uint32_t sgpr_idx = 0; + uint32_t sgpr_info_id = 0; + uint32_t mask = operand_mask; + /* choose a sgpr */ + while (mask) { + unsigned i = u_bit_scan(&mask); uint16_t uses = ctx.uses[instr->operands[i].tempId()]; if (sgpr_info_id == 0 || uses < ctx.uses[sgpr_info_id]) { sgpr_idx = i; sgpr_info_id = instr->operands[i].tempId(); } } - } - if (!has_sgpr && sgpr_info_id != 0) { - ssa_info& info = ctx.info[sgpr_info_id]; + operand_mask &= ~(1u << sgpr_idx); + + /* Applying two sgprs require making it VOP3, so don't do it unless it's + * definitively beneficial. + * TODO: this is too conservative because later the use count could be reduced to 1 */ + if (num_sgprs && ctx.uses[sgpr_info_id] > 1 && !instr->isVOP3()) + break; + + Temp sgpr = ctx.info[sgpr_info_id].temp; + bool new_sgpr = sgpr.id() != sgpr_ids[0] && sgpr.id() != sgpr_ids[1]; + if (new_sgpr && num_sgprs >= max_sgprs) + continue; + if (sgpr_idx == 0 || instr->isVOP3()) { - instr->operands[sgpr_idx] = Operand(info.temp); - ctx.uses[sgpr_info_id]--; - ctx.uses[info.temp.id()]++; + instr->operands[sgpr_idx] = Operand(sgpr); } else if (can_swap_operands(instr)) { instr->operands[sgpr_idx] = instr->operands[0]; - instr->operands[0] = Operand(info.temp); - ctx.uses[sgpr_info_id]--; - ctx.uses[info.temp.id()]++; - } else if (can_use_VOP3(instr)) { + instr->operands[0] = Operand(sgpr); + /* swap bits using a 4-entry LUT */ + uint32_t swapped = (0x3120 >> (operand_mask & 0x3)) & 0xf; + operand_mask = (operand_mask & ~0x3) | swapped; + } else if (can_use_VOP3(ctx, instr)) { to_VOP3(ctx, instr); - instr->operands[sgpr_idx] = Operand(info.temp); - ctx.uses[sgpr_info_id]--; - ctx.uses[info.temp.id()]++; + instr->operands[sgpr_idx] = Operand(sgpr); + } else { + continue; } - /* we can have two sgprs on one instruction if it is the same sgpr! */ - } else if (sgpr_info_id != 0 && - sgpr_ssa_id == sgpr_info_id && - ctx.uses[sgpr_info_id] == 1 && - can_use_VOP3(instr)) { - to_VOP3(ctx, instr); - instr->operands[sgpr_idx] = Operand(ctx.info[sgpr_info_id].temp); + sgpr_ids[num_sgprs++] = sgpr.id(); ctx.uses[sgpr_info_id]--; - ctx.uses[ctx.info[sgpr_info_id].temp.id()]++; + ctx.uses[sgpr.id()]++; } } -bool apply_omod_clamp(opt_ctx &ctx, aco_ptr& instr) +bool apply_omod_clamp(opt_ctx &ctx, Block& block, aco_ptr& instr) { /* check if we could apply omod on predecessor */ if (instr->opcode == aco_opcode::v_mul_f32) { - if (instr->operands[1].isTemp() && ctx.info[instr->operands[1].tempId()].is_omod_success()) { - + bool op0 = instr->operands[0].isTemp() && ctx.info[instr->operands[0].tempId()].is_omod_success(); + bool op1 = instr->operands[1].isTemp() && ctx.info[instr->operands[1].tempId()].is_omod_success(); + if (op0 || op1) { + unsigned idx = op0 ? 0 : 1; /* omod was successfully applied */ /* if the omod instruction is v_mad, we also have to change the original add */ - if (ctx.info[instr->operands[1].tempId()].is_mad()) { - Instruction* add_instr = ctx.mad_infos[ctx.info[instr->operands[1].tempId()].val].add_instr.get(); + if (ctx.info[instr->operands[idx].tempId()].is_mad()) { + Instruction* add_instr = ctx.mad_infos[ctx.info[instr->operands[idx].tempId()].val].add_instr.get(); if (ctx.info[instr->definitions[0].tempId()].is_clamp()) static_cast(add_instr)->clamp = true; add_instr->definitions[0] = instr->definitions[0]; } - Instruction* omod_instr = ctx.info[instr->operands[1].tempId()].instr; + Instruction* omod_instr = ctx.info[instr->operands[idx].tempId()].instr; /* check if we have an additional clamp modifier */ - if (ctx.info[instr->definitions[0].tempId()].is_clamp() && ctx.uses[instr->definitions[0].tempId()] == 1) { + if (ctx.info[instr->definitions[0].tempId()].is_clamp() && ctx.uses[instr->definitions[0].tempId()] == 1 && + ctx.uses[ctx.info[instr->definitions[0].tempId()].temp.id()]) { static_cast(omod_instr)->clamp = true; ctx.info[instr->definitions[0].tempId()].set_clamp_success(omod_instr); } @@ -1878,7 +2074,7 @@ bool apply_omod_clamp(opt_ctx &ctx, aco_ptr& instr) omod_instr->definitions[0] = instr->definitions[0]; /* change the definition of instr to something unused, e.g. the original omod def */ - instr->definitions[0] = Definition(instr->operands[1].getTemp()); + instr->definitions[0] = Definition(instr->operands[idx].getTemp()); ctx.uses[instr->definitions[0].tempId()] = 0; return true; } @@ -1920,25 +2116,29 @@ bool apply_omod_clamp(opt_ctx &ctx, aco_ptr& instr) } } + /* omod has no effect if denormals are enabled */ + bool can_use_omod = block.fp_mode.denorm32 == 0; + /* apply omod / clamp modifiers if the def is used only once and the instruction can have modifiers */ if (!instr->definitions.empty() && ctx.uses[instr->definitions[0].tempId()] == 1 && - can_use_VOP3(instr) && instr_info.can_use_output_modifiers[(int)instr->opcode]) { - if(ctx.info[instr->definitions[0].tempId()].is_omod2()) { + can_use_VOP3(ctx, instr) && instr_info.can_use_output_modifiers[(int)instr->opcode]) { + ssa_info& def_info = ctx.info[instr->definitions[0].tempId()]; + if (can_use_omod && def_info.is_omod2() && ctx.uses[def_info.temp.id()]) { to_VOP3(ctx, instr); static_cast(instr.get())->omod = 1; - ctx.info[instr->definitions[0].tempId()].set_omod_success(instr.get()); - } else if (ctx.info[instr->definitions[0].tempId()].is_omod4()) { + def_info.set_omod_success(instr.get()); + } else if (can_use_omod && def_info.is_omod4() && ctx.uses[def_info.temp.id()]) { to_VOP3(ctx, instr); static_cast(instr.get())->omod = 2; - ctx.info[instr->definitions[0].tempId()].set_omod_success(instr.get()); - } else if (ctx.info[instr->definitions[0].tempId()].is_omod5()) { + def_info.set_omod_success(instr.get()); + } else if (can_use_omod && def_info.is_omod5() && ctx.uses[def_info.temp.id()]) { to_VOP3(ctx, instr); static_cast(instr.get())->omod = 3; - ctx.info[instr->definitions[0].tempId()].set_omod_success(instr.get()); - } else if (ctx.info[instr->definitions[0].tempId()].is_clamp()) { + def_info.set_omod_success(instr.get()); + } else if (def_info.is_clamp() && ctx.uses[def_info.temp.id()]) { to_VOP3(ctx, instr); static_cast(instr.get())->clamp = true; - ctx.info[instr->definitions[0].tempId()].set_clamp_success(instr.get()); + def_info.set_clamp_success(instr.get()); } } @@ -1948,7 +2148,7 @@ bool apply_omod_clamp(opt_ctx &ctx, aco_ptr& instr) // TODO: we could possibly move the whole label_instruction pass to combine_instruction: // this would mean that we'd have to fix the instruction uses while value propagation -void combine_instruction(opt_ctx &ctx, aco_ptr& instr) +void combine_instruction(opt_ctx &ctx, Block& block, aco_ptr& instr) { if (instr->definitions.empty() || !ctx.uses[instr->definitions[0].tempId()]) return; @@ -1956,7 +2156,7 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) if (instr->isVALU()) { if (can_apply_sgprs(instr)) apply_sgprs(ctx, instr); - if (apply_omod_clamp(ctx, instr)) + if (apply_omod_clamp(ctx, block, instr)) return; } @@ -2009,9 +2209,11 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) return; } /* combine mul+add -> mad */ - else if (instr->opcode == aco_opcode::v_add_f32 || - instr->opcode == aco_opcode::v_sub_f32 || - instr->opcode == aco_opcode::v_subrev_f32) { + else if ((instr->opcode == aco_opcode::v_add_f32 || + instr->opcode == aco_opcode::v_sub_f32 || + instr->opcode == aco_opcode::v_subrev_f32) && + block.fp_mode.denorm32 == 0 && !block.fp_mode.preserve_signed_zero_inf_nan32) { + //TODO: we could use fma instead when denormals are enabled if the NIR isn't marked as precise uint32_t uses_src0 = UINT32_MAX; uint32_t uses_src1 = UINT32_MAX; @@ -2046,22 +2248,11 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) bool abs[3] = {false, false, false}; unsigned omod = 0; bool clamp = false; - bool need_vop3 = false; - int num_sgpr = 0; op[0] = mul_instr->operands[0]; op[1] = mul_instr->operands[1]; op[2] = instr->operands[add_op_idx]; - for (unsigned i = 0; i < 3; i++) - { - if (op[i].isLiteral()) - return; - if (op[i].isTemp() && op[i].getTemp().type() == RegType::sgpr) - num_sgpr++; - if (!(i == 0 || (op[i].isTemp() && op[i].getTemp().type() == RegType::vgpr))) - need_vop3 = true; - } // TODO: would be better to check this before selecting a mul instr? - if (num_sgpr > 1) + if (!check_vop3_operands(ctx, 3, op)) return; if (mul_instr->isVOP3()) { @@ -2070,7 +2261,6 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) neg[1] = vop3->neg[1]; abs[0] = vop3->abs[0]; abs[1] = vop3->abs[1]; - need_vop3 = true; /* we cannot use these modifiers between mul and add */ if (vop3->clamp || vop3->omod) return; @@ -2100,15 +2290,11 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) } /* neg of the multiplication result */ neg[1] = neg[1] ^ vop3->neg[1 - add_op_idx]; - need_vop3 = true; } - if (instr->opcode == aco_opcode::v_sub_f32) { + if (instr->opcode == aco_opcode::v_sub_f32) neg[1 + add_op_idx] = neg[1 + add_op_idx] ^ true; - need_vop3 = true; - } else if (instr->opcode == aco_opcode::v_subrev_f32) { + else if (instr->opcode == aco_opcode::v_subrev_f32) neg[2 - add_op_idx] = neg[2 - add_op_idx] ^ true; - need_vop3 = true; - } aco_ptr mad{create_instruction(aco_opcode::v_mad_f32, Format::VOP3A, 3, 1)}; for (unsigned i = 0; i < 3; i++) @@ -2122,7 +2308,7 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) mad->definitions[0] = instr->definitions[0]; /* mark this ssa_def to be re-checked for profitability and literals */ - ctx.mad_infos.emplace_back(std::move(instr), mul_instr->definitions[0].tempId(), need_vop3); + ctx.mad_infos.emplace_back(std::move(instr), mul_instr->definitions[0].tempId()); ctx.info[mad->definitions[0].tempId()].set_mad(mad.get(), ctx.mad_infos.size() - 1); instr.reset(mad.release()); return; @@ -2164,9 +2350,8 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) } else if (instr->opcode == aco_opcode::s_not_b64) { if (combine_inverse_comparison(ctx, instr)) ; else combine_salu_not_bitwise(ctx, instr); - } else if (instr->opcode == aco_opcode::s_and_b32 || instr->opcode == aco_opcode::s_or_b32) { - combine_salu_n2(ctx, instr); - } else if (instr->opcode == aco_opcode::s_and_b64 || instr->opcode == aco_opcode::s_or_b64) { + } else if (instr->opcode == aco_opcode::s_and_b32 || instr->opcode == aco_opcode::s_or_b32 || + instr->opcode == aco_opcode::s_and_b64 || instr->opcode == aco_opcode::s_or_b64) { if (combine_ordering_test(ctx, instr)) ; else if (combine_comparison_ordering(ctx, instr)) ; else if (combine_constant_comparison_ordering(ctx, instr)) ; @@ -2176,7 +2361,7 @@ void combine_instruction(opt_ctx &ctx, aco_ptr& instr) bool some_gfx9_only; if (get_minmax_info(instr->opcode, &min, &max, &min3, &max3, &med3, &some_gfx9_only) && (!some_gfx9_only || ctx.program->chip_class >= GFX9)) { - if (combine_three_valu_op(ctx, instr, instr->opcode, instr->opcode == min ? min3 : max3, "012", 1 | 2)); + if (combine_minmax(ctx, instr, instr->opcode == min ? max : min, instr->opcode == min ? min3 : max3)) ; else combine_clamp(ctx, instr, min, max, med3); } } @@ -2187,17 +2372,12 @@ void select_instruction(opt_ctx &ctx, aco_ptr& instr) { const uint32_t threshold = 4; - /* Dead Code Elimination: - * We remove instructions if they define temporaries which all are unused */ - const bool is_used = instr->definitions.empty() || - std::any_of(instr->definitions.begin(), instr->definitions.end(), - [&ctx](const Definition& def) { return ctx.uses[def.tempId()]; }); - if (!is_used) { + if (is_dead(ctx.uses, instr.get())) { instr.reset(); return; } - /* convert split_vector into extract_vector if only one definition is ever used */ + /* convert split_vector into a copy or extract_vector if only one definition is ever used */ if (instr->opcode == aco_opcode::p_split_vector) { unsigned num_used = 0; unsigned idx = 0; @@ -2207,7 +2387,39 @@ void select_instruction(opt_ctx &ctx, aco_ptr& instr) idx = i; } } - if (num_used == 1) { + bool done = false; + if (num_used == 1 && ctx.info[instr->operands[0].tempId()].is_vec() && + ctx.uses[instr->operands[0].tempId()] == 1) { + Instruction *vec = ctx.info[instr->operands[0].tempId()].instr; + + unsigned off = 0; + Operand op; + for (Operand& vec_op : vec->operands) { + if (off == idx * instr->definitions[0].size()) { + op = vec_op; + break; + } + off += vec_op.size(); + } + if (off != instr->operands[0].size()) { + ctx.uses[instr->operands[0].tempId()]--; + for (Operand& vec_op : vec->operands) { + if (vec_op.isTemp()) + ctx.uses[vec_op.tempId()]--; + } + if (op.isTemp()) + ctx.uses[op.tempId()]++; + + aco_ptr extract{create_instruction(aco_opcode::p_create_vector, Format::PSEUDO, 1, 1)}; + extract->operands[0] = op; + extract->definitions[0] = instr->definitions[idx]; + instr.reset(extract.release()); + + done = true; + } + } + + if (!done && num_used == 1) { aco_ptr extract{create_instruction(aco_opcode::p_extract_vector, Format::PSEUDO, 2, 1)}; extract->operands[0] = instr->operands[0]; extract->operands[1] = Operand((uint32_t) idx); @@ -2216,81 +2428,130 @@ void select_instruction(opt_ctx &ctx, aco_ptr& instr) } } - /* re-check mad instructions */ + mad_info* mad_info = NULL; if (instr->opcode == aco_opcode::v_mad_f32 && ctx.info[instr->definitions[0].tempId()].is_mad()) { - mad_info* info = &ctx.mad_infos[ctx.info[instr->definitions[0].tempId()].val]; - /* first, check profitability */ - if (ctx.uses[info->mul_temp_id]) { - ctx.uses[info->mul_temp_id]++; - instr.swap(info->add_instr); - - /* second, check possible literals */ - } else if (!info->needs_vop3) { + mad_info = &ctx.mad_infos[ctx.info[instr->definitions[0].tempId()].val]; + /* re-check mad instructions */ + if (ctx.uses[mad_info->mul_temp_id]) { + ctx.uses[mad_info->mul_temp_id]++; + if (instr->operands[0].isTemp()) + ctx.uses[instr->operands[0].tempId()]--; + if (instr->operands[1].isTemp()) + ctx.uses[instr->operands[1].tempId()]--; + instr.swap(mad_info->add_instr); + mad_info = NULL; + } + /* check literals */ + else if (!instr->usesModifiers()) { + bool sgpr_used = false; uint32_t literal_idx = 0; uint32_t literal_uses = UINT32_MAX; for (unsigned i = 0; i < instr->operands.size(); i++) { + if (instr->operands[i].isConstant() && i > 0) { + literal_uses = UINT32_MAX; + break; + } if (!instr->operands[i].isTemp()) continue; - /* if one of the operands is sgpr, we cannot add a literal somewhere else */ - if (instr->operands[i].getTemp().type() == RegType::sgpr) { + /* if one of the operands is sgpr, we cannot add a literal somewhere else on pre-GFX10 or operands other than the 1st */ + if (instr->operands[i].getTemp().type() == RegType::sgpr && (i > 0 || ctx.program->chip_class < GFX10)) { if (ctx.info[instr->operands[i].tempId()].is_literal()) { literal_uses = ctx.uses[instr->operands[i].tempId()]; literal_idx = i; } else { literal_uses = UINT32_MAX; } - break; - } - else if (ctx.info[instr->operands[i].tempId()].is_literal() && - ctx.uses[instr->operands[i].tempId()] < literal_uses) { + sgpr_used = true; + /* don't break because we still need to check constants */ + } else if (!sgpr_used && + ctx.info[instr->operands[i].tempId()].is_literal() && + ctx.uses[instr->operands[i].tempId()] < literal_uses) { literal_uses = ctx.uses[instr->operands[i].tempId()]; literal_idx = i; } } if (literal_uses < threshold) { ctx.uses[instr->operands[literal_idx].tempId()]--; - info->check_literal = true; - info->literal_idx = literal_idx; + mad_info->check_literal = true; + mad_info->literal_idx = literal_idx; + return; } } - return; } /* check for literals */ + if (!instr->isSALU() && !instr->isVALU()) + return; + + if (instr->isSDWA() || instr->isDPP() || (instr->isVOP3() && ctx.program->chip_class < GFX10)) + return; /* some encodings can't ever take literals */ + /* we do not apply the literals yet as we don't know if it is profitable */ - if (instr->isSALU()) { - uint32_t literal_idx = 0; - uint32_t literal_uses = UINT32_MAX; - bool has_literal = false; - for (unsigned i = 0; i < instr->operands.size(); i++) - { - if (instr->operands[i].isLiteral()) { - has_literal = true; - break; - } - if (!instr->operands[i].isTemp()) - continue; - if (ctx.info[instr->operands[i].tempId()].is_literal() && - ctx.uses[instr->operands[i].tempId()] < literal_uses) { - literal_uses = ctx.uses[instr->operands[i].tempId()]; - literal_idx = i; - } + Operand current_literal(s1); + + unsigned literal_id = 0; + unsigned literal_uses = UINT32_MAX; + Operand literal(s1); + unsigned num_operands = 1; + if (instr->isSALU() || (ctx.program->chip_class >= GFX10 && can_use_VOP3(ctx, instr))) + num_operands = instr->operands.size(); + + unsigned sgpr_ids[2] = {0, 0}; + bool is_literal_sgpr = false; + uint32_t mask = 0; + + /* choose a literal to apply */ + for (unsigned i = 0; i < num_operands; i++) { + Operand op = instr->operands[i]; + if (op.isLiteral()) { + current_literal = op; + continue; + } else if (!op.isTemp() || !ctx.info[op.tempId()].is_literal()) { + if (instr->isVALU() && op.isTemp() && op.getTemp().type() == RegType::sgpr && + op.tempId() != sgpr_ids[0]) + sgpr_ids[!!sgpr_ids[0]] = op.tempId(); + continue; } - if (!has_literal && literal_uses < threshold) { - ctx.uses[instr->operands[literal_idx].tempId()]--; - if (ctx.uses[instr->operands[literal_idx].tempId()] == 0) - instr->operands[literal_idx] = Operand(ctx.info[instr->operands[literal_idx].tempId()].val); + + if (!can_accept_constant(instr, i)) + continue; + + if (ctx.uses[op.tempId()] < literal_uses) { + is_literal_sgpr = op.getTemp().type() == RegType::sgpr; + mask = 0; + literal = Operand(ctx.info[op.tempId()].val); + literal_uses = ctx.uses[op.tempId()]; + literal_id = op.tempId(); } - } else if (instr->isVALU() && valu_can_accept_literal(ctx, instr, 0) && - instr->operands[0].isTemp() && - ctx.info[instr->operands[0].tempId()].is_literal() && - ctx.uses[instr->operands[0].tempId()] < threshold) { - ctx.uses[instr->operands[0].tempId()]--; - if (ctx.uses[instr->operands[0].tempId()] == 0) - instr->operands[0] = Operand(ctx.info[instr->operands[0].tempId()].val); + + mask |= (op.tempId() == literal_id) << i; } + + /* don't go over the constant bus limit */ + bool is_shift64 = instr->opcode == aco_opcode::v_lshlrev_b64 || + instr->opcode == aco_opcode::v_lshrrev_b64 || + instr->opcode == aco_opcode::v_ashrrev_i64; + unsigned const_bus_limit = instr->isVALU() ? 1 : UINT32_MAX; + if (ctx.program->chip_class >= GFX10 && !is_shift64) + const_bus_limit = 2; + + unsigned num_sgprs = !!sgpr_ids[0] + !!sgpr_ids[1]; + if (num_sgprs == const_bus_limit && !is_literal_sgpr) + return; + + if (literal_id && literal_uses < threshold && + (current_literal.isUndefined() || + (current_literal.size() == literal.size() && + current_literal.constantValue() == literal.constantValue()))) { + /* mark the literal to be applied */ + while (mask) { + unsigned i = u_bit_scan(&mask); + if (instr->operands[i].isTemp() && instr->operands[i].tempId() == literal_id) + ctx.uses[instr->operands[i].tempId()]--; + } + } } @@ -2300,32 +2561,11 @@ void apply_literals(opt_ctx &ctx, aco_ptr& instr) if (!instr) return; - /* apply literals on SALU */ - if (instr->isSALU()) { - for (Operand& op : instr->operands) { - if (!op.isTemp()) - continue; - if (op.isLiteral()) - break; - if (ctx.info[op.tempId()].is_literal() && - ctx.uses[op.tempId()] == 0) - op = Operand(ctx.info[op.tempId()].val); - } - } - - /* apply literals on VALU */ - else if (instr->isVALU() && !instr->isVOP3() && - instr->operands[0].isTemp() && - ctx.info[instr->operands[0].tempId()].is_literal() && - ctx.uses[instr->operands[0].tempId()] == 0) { - instr->operands[0] = Operand(ctx.info[instr->operands[0].tempId()].val); - } - /* apply literals on MAD */ - else if (instr->opcode == aco_opcode::v_mad_f32 && ctx.info[instr->definitions[0].tempId()].is_mad()) { + if (instr->opcode == aco_opcode::v_mad_f32 && ctx.info[instr->definitions[0].tempId()].is_mad()) { mad_info* info = &ctx.mad_infos[ctx.info[instr->definitions[0].tempId()].val]; - aco_ptr new_mad; if (info->check_literal && ctx.uses[instr->operands[info->literal_idx].tempId()] == 0) { + aco_ptr new_mad; if (info->literal_idx == 2) { /* add literal -> madak */ new_mad.reset(create_instruction(aco_opcode::v_madak_f32, Format::VOP2, 3, 1)); new_mad->operands[0] = instr->operands[0]; @@ -2337,7 +2577,21 @@ void apply_literals(opt_ctx &ctx, aco_ptr& instr) } new_mad->operands[2] = Operand(ctx.info[instr->operands[info->literal_idx].tempId()].val); new_mad->definitions[0] = instr->definitions[0]; - instr.swap(new_mad); + ctx.instructions.emplace_back(std::move(new_mad)); + return; + } + } + + /* apply literals on other SALU/VALU */ + if (instr->isSALU() || instr->isVALU()) { + for (unsigned i = 0; i < instr->operands.size(); i++) { + Operand op = instr->operands[i]; + if (op.isTemp() && ctx.info[op.tempId()].is_literal() && ctx.uses[op.tempId()] == 0) { + Operand literal(ctx.info[op.tempId()].val); + if (instr->isVALU() && i > 0) + to_VOP3(ctx, instr); + instr->operands[i] = literal; + } } } @@ -2355,7 +2609,7 @@ void optimize(Program* program) /* 1. Bottom-Up DAG pass (forward) to label all ssa-defs */ for (Block& block : program->blocks) { for (aco_ptr& instr : block.instructions) - label_instruction(ctx, instr); + label_instruction(ctx, block, instr); } ctx.uses = std::move(dead_code_analysis(program)); @@ -2363,7 +2617,7 @@ void optimize(Program* program) /* 2. Combine v_mad, omod, clamp and propagate sgpr on VALU instructions */ for (Block& block : program->blocks) { for (aco_ptr& instr : block.instructions) - combine_instruction(ctx, instr); + combine_instruction(ctx, block, instr); } /* 3. Top-Down DAG pass (backward) to select instructions (includes DCE) */