Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 814ac7b

Browse files
sdmacleaeerhardt
authored andcommitted
[Arm64] Add Base HW Intrinsics
1 parent ab64af8 commit 814ac7b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/System.Runtime.Intrinsics.Experimental/ref/System.Runtime.Intrinsics.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@ public static class Aes
3535
public static Vector128<byte> MixColumns(Vector128<byte> value) { throw null; }
3636
public static Vector128<byte> InverseMixColumns(Vector128<byte> value) { throw null; }
3737
}
38+
public static class Base
39+
{
40+
public static bool IsSupported { get { throw null; } }
41+
public static int LeadingSignCount(int value) { throw null; }
42+
public static int LeadingSignCount(long value) { throw null; }
43+
public static int LeadingZeroCount(int value) { throw null; }
44+
public static int LeadingZeroCount(uint value) { throw null; }
45+
public static int LeadingZeroCount(long value) { throw null; }
46+
public static int LeadingZeroCount(ulong value) { throw null; }
47+
}
3848
public static class Sha1
3949
{
4050
public static bool IsSupported { get { throw null; } }

0 commit comments

Comments
 (0)