OpCode32SimdBinary.cs 531 B

123456789101112131415161718
  1. namespace ARMeilleure.Decoders
  2. {
  3. /// <summary>
  4. /// A special alias that always runs in 64 bit int, to speed up binary ops a little.
  5. /// </summary>
  6. class OpCode32SimdBinary : OpCode32SimdReg
  7. {
  8. public OpCode32SimdBinary(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  9. {
  10. Size = 3;
  11. if (DecoderHelper.VectorArgumentsInvalid(Q, Vd, Vm, Vn))
  12. {
  13. Instruction = InstDescriptor.Undefined;
  14. }
  15. }
  16. }
  17. }