TranslateArm: Implement VSTR.
This commit is contained in:
parent
df39308e03
commit
8e8db6e137
6 changed files with 29 additions and 2 deletions
|
@ -59,6 +59,7 @@ set(HEADERS
|
||||||
frontend/decoder/decoder_detail.h
|
frontend/decoder/decoder_detail.h
|
||||||
frontend/decoder/thumb16.h
|
frontend/decoder/thumb16.h
|
||||||
frontend/decoder/thumb32.h
|
frontend/decoder/thumb32.h
|
||||||
|
frontend/decoder/vfp2.h
|
||||||
frontend/disassembler/disassembler.h
|
frontend/disassembler/disassembler.h
|
||||||
frontend/ir/ir.h
|
frontend/ir/ir.h
|
||||||
frontend/ir/ir_emitter.h
|
frontend/ir/ir_emitter.h
|
||||||
|
|
|
@ -100,6 +100,7 @@ boost::optional<const VFP2Matcher<V>&> DecodeVFP2(u32 instruction) {
|
||||||
// VSTMDB
|
// VSTMDB
|
||||||
// VPUSH
|
// VPUSH
|
||||||
INST(&V::vfp2_VLDR, "VLDR", "cccc1101UD01nnnndddd101zvvvvvvvv"),
|
INST(&V::vfp2_VLDR, "VLDR", "cccc1101UD01nnnndddd101zvvvvvvvv"),
|
||||||
|
INST(&V::vfp2_VSTR, "VSTR", "cccc1101UD00nnnndddd101zvvvvvvvv"),
|
||||||
// VLDM
|
// VLDM
|
||||||
// VLDMDB
|
// VLDMDB
|
||||||
// VPOP
|
// VPOP
|
||||||
|
|
|
@ -828,6 +828,11 @@ public:
|
||||||
u32 imm32 = imm8 << 2;
|
u32 imm32 = imm8 << 2;
|
||||||
return Common::StringFromFormat("vldr%s %s, [%s, #%c%u]", CondToString(cond), FPRegStr(sz, Vd, D).c_str(), RegToString(n), U ? '+' : '-', imm32);
|
return Common::StringFromFormat("vldr%s %s, [%s, #%c%u]", CondToString(cond), FPRegStr(sz, Vd, D).c_str(), RegToString(n), U ? '+' : '-', imm32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string vfp2_VSTR(Cond cond, bool U, bool D, Reg n, size_t Vd, bool sz, Imm8 imm8) {
|
||||||
|
u32 imm32 = imm8 << 2;
|
||||||
|
return Common::StringFromFormat("vstr%s %s, [%s, #%c%u]", CondToString(cond), FPRegStr(sz, Vd, D).c_str(), RegToString(n), U ? '+' : '-', imm32);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::string DisassembleArm(u32 instruction) {
|
std::string DisassembleArm(u32 instruction) {
|
||||||
|
|
|
@ -353,6 +353,7 @@ struct ArmTranslatorVisitor final {
|
||||||
|
|
||||||
// Floating-point load-store instructions
|
// Floating-point load-store instructions
|
||||||
bool vfp2_VLDR(Cond cond, bool U, bool D, Reg n, size_t Vd, bool sz, Imm8 imm8);
|
bool vfp2_VLDR(Cond cond, bool U, bool D, Reg n, size_t Vd, bool sz, Imm8 imm8);
|
||||||
|
bool vfp2_VSTR(Cond cond, bool U, bool D, Reg n, size_t Vd, bool sz, Imm8 imm8);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Arm
|
} // namespace Arm
|
||||||
|
|
|
@ -379,5 +379,23 @@ bool ArmTranslatorVisitor::vfp2_VLDR(Cond cond, bool U, bool D, Reg n, size_t Vd
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ArmTranslatorVisitor::vfp2_VSTR(Cond cond, bool U, bool D, Reg n, size_t Vd, bool sz, Imm8 imm8) {
|
||||||
|
u32 imm32 = imm8 << 2;
|
||||||
|
ExtReg d = ToExtReg(sz, Vd, D);
|
||||||
|
// VSTR <{S,D}d>, [<Rn>, #+/-<imm32>]
|
||||||
|
if (ConditionPassed(cond)) {
|
||||||
|
auto base = n == Reg::PC ? ir.Imm32(ir.AlignPC(4)) : ir.GetRegister(n);
|
||||||
|
auto address = U ? ir.Add(base, ir.Imm32(imm32)) : ir.Sub(base, ir.Imm32(imm32));
|
||||||
|
if (sz) {
|
||||||
|
auto d_u64 = ir.TransferFromFP64(ir.GetExtendedRegister(d));
|
||||||
|
ir.WriteMemory32(address, ir.LeastSignificantWord(d_u64));
|
||||||
|
ir.WriteMemory32(ir.Add(address, ir.Imm32(4)), ir.MostSignificantWord(d_u64).result);
|
||||||
|
} else {
|
||||||
|
ir.WriteMemory32(address, ir.TransferFromFP32(ir.GetExtendedRegister(d)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Arm
|
} // namespace Arm
|
||||||
} // namespace Dynarmic
|
} // namespace Dynarmic
|
||||||
|
|
|
@ -423,10 +423,11 @@ TEST_CASE("VFP: VMOV", "[JitX64][vfp]") {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("VFP: VMOV (reg), VLDR", "[JitX64][vfp]") {
|
TEST_CASE("VFP: VMOV (reg), VLDR, VSTR", "[JitX64][vfp]") {
|
||||||
const std::array<InstructionGenerator, 2> instructions = {{
|
const std::array<InstructionGenerator, 3> instructions = {{
|
||||||
InstructionGenerator("cccc11101D110000dddd101z01M0mmmm"),
|
InstructionGenerator("cccc11101D110000dddd101z01M0mmmm"),
|
||||||
InstructionGenerator("cccc1101UD01nnnndddd101zvvvvvvvv"),
|
InstructionGenerator("cccc1101UD01nnnndddd101zvvvvvvvv"),
|
||||||
|
InstructionGenerator("cccc1101UD00nnnndddd101zvvvvvvvv"),
|
||||||
}};
|
}};
|
||||||
|
|
||||||
FuzzJitArm(1, 1, 10000, [&instructions]() -> u32 {
|
FuzzJitArm(1, 1, 10000, [&instructions]() -> u32 {
|
||||||
|
|
Loading…
Reference in a new issue