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

Base.PlatformNotSupported.cs « Arm64 « Arm « Intrinsics « Runtime « System « shared « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a13828ee0bc06d4d6f21a58d74bab145b84bfb9 (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
using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics;


namespace System.Runtime.Intrinsics.Arm.Arm64
{
    /// <summary>
    /// This class provides access to the Arm64 Base intrinsics
    ///
    /// These intrinsics are supported by all Arm64 CPUs
    /// </summary>
    [CLSCompliant(false)]
    public static class Base
    {
        public static bool IsSupported { get { return false; }}

        /// <summary>
        /// Vector LeadingSignCount
        /// Corresponds to integer forms of ARM64 CLS
        /// </summary>
        public static int LeadingSignCount(int  value) { throw new PlatformNotSupportedException(); }
        public static int LeadingSignCount(long value) { throw new PlatformNotSupportedException(); }

        /// <summary>
        /// Vector LeadingZeroCount
        /// Corresponds to integer forms of ARM64 CLZ
        /// </summary>
        public static int LeadingZeroCount(int   value) { throw new PlatformNotSupportedException(); }
        public static int LeadingZeroCount(uint  value) { throw new PlatformNotSupportedException(); }
        public static int LeadingZeroCount(long  value) { throw new PlatformNotSupportedException(); }
        public static int LeadingZeroCount(ulong value) { throw new PlatformNotSupportedException(); }
    }
}