A32: Implement ASIMD VRSQRTE

This commit is contained in:
MerryMage
2020-06-20 15:13:18 +01:00
parent 8912496206
commit 92cb4a5a34
8 changed files with 38 additions and 11 deletions

View File

@@ -111,7 +111,7 @@ u32 GenRandomInst(u32 pc, bool is_last_inst) {
// FPSCR is inaccurate
"vfp_VMRS",
// Unimplemented in Unicorn
"asimd_VPADD_float", "asimd_VRECPE",
"asimd_VPADD_float", "asimd_VRECPE", "asimd_VRSQRTE",
// Incorrect Unicorn implementations
"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.