aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeSimdMemLit64.cs
blob: c98ffd030b1874920434f4ff0decc9b7fed983cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using ChocolArm64.Instructions;

namespace ChocolArm64.Decoders
{
    class OpCodeSimdMemLit64 : OpCode64, IOpCodeSimd64, IOpCodeLit64
    {
        public int  Rt   { get; private set; }
        public long Imm  { get; private set; }
        public int  Size { get; private set; }
        public bool Signed   => false;
        public bool Prefetch => false;

        public OpCodeSimdMemLit64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            int opc = (opCode >> 30) & 3;

            if (opc == 3)
            {
                Emitter = InstEmit.Und;

                return;
            }

            Rt = opCode & 0x1f;

            Imm = position + DecoderHelper.DecodeImmS19_2(opCode);

            Size = opc + 2;
        }
    }
}