SIMD&FP load/store with scale > 4 should be undefined (#1522)
* SIMD&FP load/store with scale > 4 should be undefined * Catch more invalid encodings for FP&SIMD LDR/STR (reg variant) * Set PTC version to PR number
This commit is contained in:
parent
3d294a9a6c
commit
6cc187da59
4 changed files with 20 additions and 4 deletions
|
@ -6,6 +6,13 @@ namespace ARMeilleure.Decoders
|
|||
{
|
||||
Size |= (opCode >> 21) & 4;
|
||||
|
||||
if (Size > 4)
|
||||
{
|
||||
Instruction = InstDescriptor.Undefined;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Extend64 = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue