mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 23:50:00 +01:00
Replaces type aliases of raw integral types with the more type-safe Imm template, like how the AArch64 frontend has been using it. This makes the two frontends more consistent with one another.
165 lines
4.8 KiB
C++
165 lines
4.8 KiB
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 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 "translate_arm.h"
|
|
|
|
namespace Dynarmic::A32 {
|
|
|
|
// BFC<c> <Rd>, #<lsb>, #<width>
|
|
bool ArmTranslatorVisitor::arm_BFC(Cond cond, Imm<5> msb, Reg d, Imm<5> lsb) {
|
|
if (d == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
if (msb < lsb) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
const u32 lsb_value = lsb.ZeroExtend();
|
|
const u32 msb_value = msb.ZeroExtend();
|
|
const u32 mask = ~(Common::Ones<u32>(msb_value - lsb_value + 1) << lsb_value);
|
|
const IR::U32 operand = ir.GetRegister(d);
|
|
const IR::U32 result = ir.And(operand, ir.Imm32(mask));
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
// BFI<c> <Rd>, <Rn>, #<lsb>, #<width>
|
|
bool ArmTranslatorVisitor::arm_BFI(Cond cond, Imm<5> msb, Reg d, Imm<5> lsb, Reg n) {
|
|
if (d == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
if (msb < lsb) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
const u32 lsb_value = lsb.ZeroExtend();
|
|
const u32 msb_value = msb.ZeroExtend();
|
|
const u32 inclusion_mask = Common::Ones<u32>(msb_value - lsb_value + 1) << lsb_value;
|
|
const u32 exclusion_mask = ~inclusion_mask;
|
|
const IR::U32 operand1 = ir.And(ir.GetRegister(d), ir.Imm32(exclusion_mask));
|
|
const IR::U32 operand2 = ir.And(ir.LogicalShiftLeft(ir.GetRegister(n), ir.Imm8(u8(lsb_value))), ir.Imm32(inclusion_mask));
|
|
const IR::U32 result = ir.Or(operand1, operand2);
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
// CLZ<c> <Rd>, <Rm>
|
|
bool ArmTranslatorVisitor::arm_CLZ(Cond cond, Reg d, Reg m) {
|
|
if (d == Reg::PC || m == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
ir.SetRegister(d, ir.CountLeadingZeros(ir.GetRegister(m)));
|
|
return true;
|
|
}
|
|
|
|
// MOVT<c> <Rd>, #<imm16>
|
|
bool ArmTranslatorVisitor::arm_MOVT(Cond cond, Imm<4> imm4, Reg d, Imm<12> imm12) {
|
|
if (d == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
const IR::U32 imm16 = ir.Imm32(concatenate(imm4, imm12).ZeroExtend() << 16);
|
|
const IR::U32 operand = ir.GetRegister(d);
|
|
const IR::U32 result = ir.Or(ir.And(operand, ir.Imm32(0x0000FFFFU)), imm16);
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
// SBFX<c> <Rd>, <Rn>, #<lsb>, #<width>
|
|
bool ArmTranslatorVisitor::arm_SBFX(Cond cond, Imm<5> widthm1, Reg d, Imm<5> lsb, Reg n) {
|
|
if (d == Reg::PC || n == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
const u32 lsb_value = lsb.ZeroExtend();
|
|
const u32 widthm1_value = widthm1.ZeroExtend();
|
|
const u32 msb = lsb_value + widthm1_value;
|
|
if (msb >= Common::BitSize<u32>()) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
constexpr size_t max_width = Common::BitSize<u32>();
|
|
const u32 width = widthm1_value + 1;
|
|
const u8 left_shift_amount = static_cast<u8>(max_width - width - lsb_value);
|
|
const u8 right_shift_amount = static_cast<u8>(max_width - width);
|
|
const IR::U32 operand = ir.GetRegister(n);
|
|
const IR::U32 tmp = ir.LogicalShiftLeft(operand, ir.Imm8(left_shift_amount));
|
|
const IR::U32 result = ir.ArithmeticShiftRight(tmp, ir.Imm8(right_shift_amount));
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
// SEL<c> <Rd>, <Rn>, <Rm>
|
|
bool ArmTranslatorVisitor::arm_SEL(Cond cond, Reg n, Reg d, Reg m) {
|
|
if (n == Reg::PC || d == Reg::PC || m == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
const auto to = ir.GetRegister(m);
|
|
const auto from = ir.GetRegister(n);
|
|
const auto result = ir.PackedSelect(ir.GetGEFlags(), to, from);
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
// UBFX<c> <Rd>, <Rn>, #<lsb>, #<width>
|
|
bool ArmTranslatorVisitor::arm_UBFX(Cond cond, Imm<5> widthm1, Reg d, Imm<5> lsb, Reg n) {
|
|
if (d == Reg::PC || n == Reg::PC) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
const u32 lsb_value = lsb.ZeroExtend();
|
|
const u32 widthm1_value = widthm1.ZeroExtend();
|
|
const u32 msb = lsb_value + widthm1_value;
|
|
if (msb >= Common::BitSize<u32>()) {
|
|
return UnpredictableInstruction();
|
|
}
|
|
|
|
if (!ConditionPassed(cond)) {
|
|
return true;
|
|
}
|
|
|
|
const IR::U32 operand = ir.GetRegister(n);
|
|
const IR::U32 mask = ir.Imm32(Common::Ones<u32>(widthm1_value + 1));
|
|
const IR::U32 result = ir.And(ir.LogicalShiftRight(operand, ir.Imm8(u8(lsb_value))), mask);
|
|
|
|
ir.SetRegister(d, result);
|
|
return true;
|
|
}
|
|
|
|
} // namespace Dynarmic::A32
|