2020-07-17 06:21:40 +02:00
|
|
|
|
namespace ARMeilleure.Decoders
|
|
|
|
|
{
|
Add Umaal & Vabd_I, Vabdl_I, Vaddl_I, Vhadd, Vqshrn, Vshll inst.s (slow paths). (#1577)
* Add Umaal & Vabd_I, Vabdl_I, Vaddl_I, Vhadd, Vqshrn, Vshll inst.s (slow paths).
No test provided (i.e. draft).
* Ptc InternalVersion = 1577
2020-10-13 22:41:33 +02:00
|
|
|
|
class OpCode32SimdRegWide : OpCode32SimdReg
|
2020-07-17 06:21:40 +02:00
|
|
|
|
{
|
2022-09-13 23:25:37 +02:00
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32SimdRegWide(inst, address, opCode, false);
|
|
|
|
|
public new static OpCode CreateT32(InstDescriptor inst, ulong address, int opCode) => new OpCode32SimdRegWide(inst, address, opCode, true);
|
2020-10-21 14:13:44 +02:00
|
|
|
|
|
2022-09-13 23:25:37 +02:00
|
|
|
|
public OpCode32SimdRegWide(InstDescriptor inst, ulong address, int opCode, bool isThumb) : base(inst, address, opCode, isThumb)
|
2020-07-17 06:21:40 +02:00
|
|
|
|
{
|
|
|
|
|
Q = false;
|
|
|
|
|
RegisterSize = RegisterSize.Simd64;
|
|
|
|
|
|
|
|
|
|
// Subclasses have their own handling of Vx to account for before checking.
|
|
|
|
|
if (GetType() == typeof(OpCode32SimdRegWide) && DecoderHelper.VectorArgumentsInvalid(true, Vd, Vn))
|
|
|
|
|
{
|
|
|
|
|
Instruction = InstDescriptor.Undefined;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|