emit_x64_vector: Vectorize fallback path in EmitVectorMinU16()

This commit is contained in:
Lioncash 2018-04-28 19:43:56 -04:00 committed by MerryMage
parent cda85a1da0
commit 7ceda6d919

View file

@ -1126,9 +1126,17 @@ void EmitX64::EmitVectorMinU16(EmitContext& ctx, IR::Inst* inst) {
return; return;
} }
EmitTwoArgumentFallback(code, ctx, inst, [](std::array<u16, 8>& result, const std::array<u16, 8>& a, const std::array<u16, 8>& b){ auto args = ctx.reg_alloc.GetArgumentInfo(inst);
std::transform(a.begin(), a.end(), b.begin(), result.begin(), [](auto x, auto y) { return std::min(x, y); }); const Xbyak::Xmm a = ctx.reg_alloc.UseXmm(args[0]);
}); const Xbyak::Xmm b = ctx.reg_alloc.UseScratchXmm(args[1]);
const Xbyak::Xmm tmp_b = ctx.reg_alloc.ScratchXmm();
code.movdqa(tmp_b, b);
code.psubusw(tmp_b, a);
code.psubw(b, tmp_b);
ctx.reg_alloc.DefineValue(inst, b);
} }
void EmitX64::EmitVectorMinU32(EmitContext& ctx, IR::Inst* inst) { void EmitX64::EmitVectorMinU32(EmitContext& ctx, IR::Inst* inst) {