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

Base.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: fc0a19055e952f29b068d197e621ccc7f3ea23b2 (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) => LeadingSignCount(value);
        public static int LeadingSignCount(long value) => LeadingSignCount(value);

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