summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/Arm/Arm64/Base.PlatformNotSupported.cs
blob: 95c32527af85a2b5e12358edde92121067d9036e (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
// 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.

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