mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 02:42:58 +00:00
fuzz_arm: Ensure all instructions are fuzzed
* VFP instructions were not getting fuzzed due to matching coprocessor instructions (as invalid instructions) * Fix VPOP writeback for doubles when (imm8 & 1) == 1 * Do not accidentally fuzz unimplemented unconditional instructions
This commit is contained in:
@@ -8,35 +8,43 @@
|
||||
namespace Dynarmic::A32 {
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRBT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRHT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRSBT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRSHT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRBT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRHT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRT() {
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
// System instructions unimplemented
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
static IR::U32 GetAddress(A32::IREmitter& ir, bool P, bool U, bool W, Reg n, IR::U32 offset) {
|
||||
|
||||
Reference in New Issue
Block a user