aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
blob: 0c2582695e7c65b3546dd66453f26b1f9c27d644 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#define SimdFmov

using ARMeilleure.State;
using NUnit.Framework;

namespace Ryujinx.Tests.Cpu
{
    [Category("SimdFmov")]
    public sealed class CpuTestSimdFmov : CpuTest
    {
#if SimdFmov

        #region "ValueSource"
        private static uint[] _F_Mov_Si_S_()
        {
            return new[]
            {
                0x1E201000u, // FMOV S0, #2.0
            };
        }

        private static uint[] _F_Mov_Si_D_()
        {
            return new[]
            {
                0x1E601000u, // FMOV D0, #2.0
            };
        }
        #endregion

        [Test, Pairwise]
        [Explicit]
        public void F_Mov_Si_S([ValueSource(nameof(_F_Mov_Si_S_))] uint opcodes,
                               [Range(0u, 255u, 1u)] uint imm8)
        {
            opcodes |= ((imm8 & 0xFFu) << 13);

            ulong z = TestContext.CurrentContext.Random.NextULong();
            V128 v0 = MakeVectorE0E1(z, z);

            SingleOpcode(opcodes, v0: v0);

            CompareAgainstUnicorn();
        }

        [Test, Pairwise]
        [Explicit]
        public void F_Mov_Si_D([ValueSource(nameof(_F_Mov_Si_D_))] uint opcodes,
                               [Range(0u, 255u, 1u)] uint imm8)
        {
            opcodes |= ((imm8 & 0xFFu) << 13);

            ulong z = TestContext.CurrentContext.Random.NextULong();
            V128 v0 = MakeVectorE1(z);

            SingleOpcode(opcodes, v0: v0);

            CompareAgainstUnicorn();
        }
#endif
    }
}