aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeSimdCvt64.cs
blob: 6c68a3af261f6eb6f8a120eca47621a683ac26e2 (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;
using ChocolArm64.State;

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

        public OpCodeSimdCvt64(Inst inst, long position, int opCode) : base(inst, position, opCode)
        {
            //TODO:
            //Und of Fixed Point variants.
            int scale = (opCode >> 10) & 0x3f;
            int sf    = (opCode >> 31) & 0x1;

            /*if (Type != SF && !(Type == 2 && SF == 1))
            {
                Emitter = AInstEmit.Und;

                return;
            }*/

            FBits = 64 - scale;

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