Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GitHub_43569.cs « GitHub_43569 « Regression « General « HardwareIntrinsics « JIT « tests « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 357674b77dcdf2434d1833d91ec3a861bb8d0d6b (plain)
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
63
64
65
66
67
68
69
70
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics;
using Xunit;

namespace GitHub_43569
{
    public class Program
    {
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
        public static T Inline<T>(T t) => t;

        [Theory]
        [InlineData(100, 100)]
        [MethodImpl(MethodImplOptions.NoInlining)]
        public static void Vector64_Create_short(short a, int expectedResult)
        {
            Vector64<short> x = default;
            for (int i = 0; i < 1; i++)
                x = Vector64.Create(1, 2, 3, Inline(a));
            Assert.Equal(expectedResult, (int)x.GetElement(3));
        }

        [Theory]
        [InlineData(100, 100)]
        [MethodImpl(MethodImplOptions.NoInlining)]
        public static void Vector128_Create_float(float a, int expectedResult)
        {
            Vector128<float> x = default;
            for (int i = 0; i < 1; i++)
                x = Vector128.Create(1, 2, 3, Inline(a));
            Assert.Equal(expectedResult, (int)x.GetElement(3));
        }

        [Theory]
        [InlineData(100, 100)]
        [MethodImpl(MethodImplOptions.NoInlining)]
        public static void Vector128_Create_byte(byte a, int expectedResult)
        {
            Vector128<byte> x = default;
            for (int i = 0; i < 1; i++)
                x = Vector128.Create(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, Inline(a));
            Assert.Equal(expectedResult, (int)x.GetElement(15));
        }

        [Theory]
        [InlineData(100, 100)]
        [MethodImpl(MethodImplOptions.NoInlining)]
        public static void Vector256_Create_float(float a, int expectedResult)
        {
            Vector256<float> x = default;
            for (int i = 0; i < 1; i++)
                x = Vector256.Create(1, 2, 3, 4, 5, 6, 7, Inline(a));
            Assert.Equal(expectedResult, (int)x.GetElement(7));
        }

        [Theory]
        [InlineData(100, 100)]
        [MethodImpl(MethodImplOptions.NoInlining)]
        public static void Vector256_Create_double(double a, int expectedResult)
        {
            Vector256<double> x = default;
            for (int i = 0; i < 1; i++)
                x = Vector256.Create(1, 2, 3, Inline(a));
            Assert.Equal(expectedResult, (int)x.GetElement(3));
        }
    }
}