mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
fuzz_arm: Test testable parts of ASIMD VRECPE and VRSQRTE
This commit is contained in:
parent
92cb4a5a34
commit
214c1d6002
@ -61,6 +61,10 @@ bool ShouldTestInst(u32 instruction, u32 pc, bool is_last_inst) {
|
|||||||
case IR::Opcode::A32CoprocLoadWords:
|
case IR::Opcode::A32CoprocLoadWords:
|
||||||
case IR::Opcode::A32CoprocStoreWords:
|
case IR::Opcode::A32CoprocStoreWords:
|
||||||
return false;
|
return false;
|
||||||
|
// Currently unimplemented in Unicorn
|
||||||
|
case IR::Opcode::FPVectorRecipEstimate16:
|
||||||
|
case IR::Opcode::FPVectorRSqrtEstimate16:
|
||||||
|
return false;
|
||||||
default:
|
default:
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -111,7 +115,7 @@ u32 GenRandomInst(u32 pc, bool is_last_inst) {
|
|||||||
// FPSCR is inaccurate
|
// FPSCR is inaccurate
|
||||||
"vfp_VMRS",
|
"vfp_VMRS",
|
||||||
// Unimplemented in Unicorn
|
// Unimplemented in Unicorn
|
||||||
"asimd_VPADD_float", "asimd_VRECPE", "asimd_VRSQRTE",
|
"asimd_VPADD_float",
|
||||||
// Incorrect Unicorn implementations
|
// Incorrect Unicorn implementations
|
||||||
"asimd_VRECPS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
|
"asimd_VRECPS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
|
||||||
"asimd_VRSQRTS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
|
"asimd_VRSQRTS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user