aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeSimdCvt64.cs
blob: 3181a85a342ede32a2ada8f05e1a8c567e054366 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using ChocolArm64.Instructions;

namespace ChocolArm64.Decoders
{
    class OpCodeSimdCvt64 : OpCodeSimd64
    {
        public int FBits { get; private set; }

        public OpCodeSimdCvt64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            int scale = (opCode >> 10) & 0x3f;
            int sf    = (opCode >> 31) & 0x1;

            FBits = 64 - scale;

            RegisterSize = sf != 0
                ? State.RegisterSize.Int64
                : State.RegisterSize.Int32;
        }
    }
}