/* This file is part of the dynarmic project. * Copyright (c) 2018 MerryMage * This software may be used and distributed according to the terms of the GNU * General Public License version 2 or any later version. */ #include "common/bit_util.h" #include "frontend/A64/translate/impl/impl.h" namespace Dynarmic::A64 { namespace { enum class ShiftExtraBehavior { None, Accumulate, Round }; enum class Signedness { Signed, Unsigned }; bool ShiftRight(TranslatorVisitor& v, bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd, ShiftExtraBehavior behavior, Signedness signedness) { if (immh == 0b0000) { return v.DecodeError(); } if (immh.Bit<3>() && !Q) { return v.ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t datasize = Q ? 128 : 64; const u8 shift_amount = static_cast(2 * esize) - concatenate(immh, immb).ZeroExtend(); const IR::U128 operand = v.V(datasize, Vn); IR::U128 result = [&] { if (signedness == Signedness::Signed) { return v.ir.VectorArithmeticShiftRight(esize, operand, shift_amount); } return v.ir.VectorLogicalShiftRight(esize, operand, shift_amount); }(); if (behavior == ShiftExtraBehavior::Accumulate) { const IR::U128 accumulator = v.V(datasize, Vd); result = v.ir.VectorAdd(esize, result, accumulator); } v.V(datasize, Vd, result); return true; } bool RoundingShiftRight(TranslatorVisitor& v, bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd, ShiftExtraBehavior behavior, Signedness signedness) { if (immh == 0b0000) { return v.DecodeError(); } if (!Q && immh.Bit<3>()) { return v.ReservedValue(); } const size_t datasize = Q ? 128 : 64; const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const u8 shift_amount = static_cast((esize * 2) - concatenate(immh, immb).ZeroExtend()); const u64 round_value = 1ULL << (shift_amount - 1); const IR::U128 operand = v.V(datasize, Vn); const IR::U128 round_const = v.ir.VectorBroadcast(esize, v.I(esize, round_value)); const IR::U128 round_correction = v.ir.VectorEqual(esize, v.ir.VectorAnd(operand, round_const), round_const); const IR::U128 result = [&] { if (signedness == Signedness::Signed) { return v.ir.VectorArithmeticShiftRight(esize, operand, shift_amount); } return v.ir.VectorLogicalShiftRight(esize, operand, shift_amount); }(); IR::U128 corrected_result = v.ir.VectorSub(esize, result, round_correction); if (behavior == ShiftExtraBehavior::Accumulate) { const IR::U128 accumulator = v.V(datasize, Vd); corrected_result = v.ir.VectorAdd(esize, accumulator, corrected_result); } v.V(datasize, Vd, corrected_result); return true; } bool ShiftRightNarrowing(TranslatorVisitor& v, bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd, ShiftExtraBehavior behavior) { if (immh == 0b0000) { return v.DecodeError(); } if (immh.Bit<3>()) { return v.ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t source_esize = 2 * esize; const size_t part = Q ? 1 : 0; const u8 shift_amount = static_cast(source_esize - concatenate(immh, immb).ZeroExtend()); IR::U128 operand = v.ir.GetQ(Vn); if (behavior == ShiftExtraBehavior::Round) { const u64 round_const = 1ULL << (shift_amount - 1); const IR::U128 round_operand = v.ir.VectorBroadcast(source_esize, v.I(source_esize, round_const)); operand = v.ir.VectorAdd(source_esize, operand, round_operand); } const IR::U128 result = v.ir.VectorNarrow(source_esize, v.ir.VectorLogicalShiftRight(source_esize, operand, shift_amount)); v.Vpart(64, Vd, part, result); return true; } bool ShiftLeftLong(TranslatorVisitor& v, bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd, Signedness signedness) { if (immh == 0b0000) { return v.DecodeError(); } if (immh.Bit<3>()) { return v.ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t datasize = 64; const size_t part = Q ? 1 : 0; const u8 shift_amount = concatenate(immh, immb).ZeroExtend() - static_cast(esize); const IR::U128 operand = v.Vpart(datasize, Vn, part); const IR::U128 expanded_operand = [&] { if (signedness == Signedness::Signed) { return v.ir.VectorSignExtend(esize, operand); } return v.ir.VectorZeroExtend(esize, operand); }(); const IR::U128 result = v.ir.VectorLogicalShiftLeft(2 * esize, expanded_operand, shift_amount); v.V(2 * datasize, Vd, result); return true; } } // Anonymous namespace bool TranslatorVisitor::SSHR_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::None, Signedness::Signed); } bool TranslatorVisitor::SRSHR_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return RoundingShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::None, Signedness::Signed); } bool TranslatorVisitor::SRSRA_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return RoundingShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::Accumulate, Signedness::Signed); } bool TranslatorVisitor::SSRA_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::Accumulate, Signedness::Signed); } bool TranslatorVisitor::SHL_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { if (immh == 0b0000) { return DecodeError(); } if (immh.Bit<3>() && !Q) { return ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t datasize = Q ? 128 : 64; const u8 shift_amount = concatenate(immh, immb).ZeroExtend() - static_cast(esize); const IR::U128 operand = V(datasize, Vn); const IR::U128 result = ir.VectorLogicalShiftLeft(esize, operand, shift_amount); V(datasize, Vd, result); return true; } bool TranslatorVisitor::SHRN(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRightNarrowing(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::None); } bool TranslatorVisitor::RSHRN(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRightNarrowing(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::Round); } bool TranslatorVisitor::SSHLL(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftLeftLong(*this, Q, immh, immb, Vn, Vd, Signedness::Signed); } bool TranslatorVisitor::URSHR_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return RoundingShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::None, Signedness::Unsigned); } bool TranslatorVisitor::URSRA_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return RoundingShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::Accumulate, Signedness::Unsigned); } bool TranslatorVisitor::USHR_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::None, Signedness::Unsigned); } bool TranslatorVisitor::USRA_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftRight(*this, Q, immh, immb, Vn, Vd, ShiftExtraBehavior::Accumulate, Signedness::Unsigned); } bool TranslatorVisitor::USHLL(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { return ShiftLeftLong(*this, Q, immh, immb, Vn, Vd, Signedness::Unsigned); } bool TranslatorVisitor::SRI_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { if (immh == 0b0000) { return DecodeError(); } if (!Q && immh.Bit<3>()) { return ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t datasize = Q ? 128 : 64; const u8 shift_amount = static_cast((esize * 2) - concatenate(immh, immb).ZeroExtend()); const u64 mask = shift_amount == esize ? 0 : Common::Ones(esize) >> shift_amount; const IR::U128 operand1 = V(datasize, Vn); const IR::U128 operand2 = V(datasize, Vd); const IR::U128 shifted = ir.VectorLogicalShiftRight(esize, operand1, shift_amount); const IR::U128 mask_vec = ir.VectorBroadcast(esize, I(esize, mask)); const IR::U128 result = ir.VectorOr(ir.VectorAnd(operand2, ir.VectorNot(mask_vec)), shifted); V(datasize, Vd, result); return true; } bool TranslatorVisitor::SLI_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) { if (immh == 0b0000) { return DecodeError(); } if (!Q && immh.Bit<3>()) { return ReservedValue(); } const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend()); const size_t datasize = Q ? 128 : 64; const u8 shift_amount = concatenate(immh, immb).ZeroExtend() - static_cast(esize); const u64 mask = Common::Ones(esize) << shift_amount; const IR::U128 operand1 = V(datasize, Vn); const IR::U128 operand2 = V(datasize, Vd); const IR::U128 shifted = ir.VectorLogicalShiftLeft(esize, operand1, shift_amount); const IR::U128 mask_vec = ir.VectorBroadcast(esize, I(esize, mask)); const IR::U128 result = ir.VectorOr(ir.VectorAnd(operand2, ir.VectorNot(mask_vec)), shifted); V(datasize, Vd, result); return true; } } // namespace Dynarmic::A64