aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeMov64.cs
blob: f9697854796f35515058174ba6a3921eb45bab99 (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
32
33
34
35
36
using ChocolArm64.Instructions;
using ChocolArm64.State;

namespace ChocolArm64.Decoders
{
    class OpCodeMov64 : OpCode64
    {
        public int  Rd  { get; private set; }
        public long Imm { get; private set; }
        public int  Pos { get; private set; }

        public OpCodeMov64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            int p1 = (opCode >> 22) & 1;
            int sf = (opCode >> 31) & 1;

            if (sf == 0 && p1 != 0)
            {
                Emitter = InstEmit.Und;

                return;
            }

            Rd  = (opCode >>  0) & 0x1f;
            Imm = (opCode >>  5) & 0xffff;
            Pos = (opCode >> 21) & 0x3;

            Pos <<= 4;
            Imm <<= Pos;

            RegisterSize = (opCode >> 31) != 0
                ? State.RegisterSize.Int64
                : State.RegisterSize.Int32;
        }
    }
}