summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/Arm/Arm64/Base.cs
blob: 3361fbe96f4fef0e241edabfc5ee4f0d10c0aef5 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#nullable enable
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>
    [Intrinsic]
    [CLSCompliant(false)]
    public static class Base
    {
        public static bool IsSupported { get { return IsSupported; }}

        /// <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);
    }
}