using System.Diagnostics; namespace Unity.Burst.Intrinsics { public unsafe static partial class X86 { /// /// bmi2 intrinsics /// public static class Bmi2 { /// /// Evaluates to true at compile time if bmi2 intrinsics are supported. /// /// Burst ties bmi2 support to AVX2 support to simplify feature sets to support. /// public static bool IsBmi2Supported { get { return Avx2.IsAvx2Supported; } } /// /// Copy all bits from unsigned 32-bit integer a to dst, and reset (set to 0) the high bits in dst starting at index. /// /// /// **** bzhi r32, r32, r32 /// /// 32-bit integer /// Starting point /// 32-bit integer [DebuggerStepThrough] public static uint bzhi_u32(uint a, uint index) { if (index >= (sizeof(uint) * 8)) { return a; } return a & ((1u << (int)index) - 1u); } /// /// Copy all bits from unsigned 64-bit integer a to dst, and reset (set to 0) the high bits in dst starting at index. /// /// /// **** bzhi r64, r64, r64 /// /// 64-bit integer /// Starting point /// 64-bit integer [DebuggerStepThrough] public static ulong bzhi_u64(ulong a, ulong index) { if (index >= (sizeof(ulong) * 8)) { return a; } return a & ((1u << (int)index) - 1u); } /// /// Multiply unsigned 32-bit integers a and b, store the low 32-bits of the result in dst, and store the high 32-bits in hi. This does not read or write arithmetic flags. /// /// /// **** mulx r32, r32, m32 /// /// 32-bit integer /// 32-bit integer /// Stores the high 32-bits /// 32-bit integer [DebuggerStepThrough] public static uint mulx_u32(uint a, uint b, out uint hi) { ulong aBig = a; ulong bBig = b; ulong result = aBig * bBig; hi = (uint)(result >> 32); return (uint)(result & 0xffffffff); } /// /// Multiply unsigned 64-bit integers a and b, store the low 64-bits of the result in dst, and store the high 64-bits in hi. This does not read or write arithmetic flags. /// /// /// **** mulx r64, r64, m64 /// /// 64-bit integer /// 64-bit integer /// Stores the high 64-bits /// 64-bit integer [DebuggerStepThrough] public static ulong mulx_u64(ulong a, ulong b, out ulong hi) { return Common.umul128(a, b, out hi); } /// /// Deposit contiguous low bits from unsigned 32-bit integer a to dst at the corresponding bit locations specified by mask; all other bits in dst are set to zero. /// /// /// **** pdep r32, r32, r32 /// /// 32-bit integer /// Mask /// 32-bit integer [DebuggerStepThrough] public static uint pdep_u32(uint a, uint mask) { uint result = 0; int k = 0; for (int i = 0; i < 32; i++) { if ((mask & (1u << i)) != 0) { result |= ((a >> k) & 1u) << i; k++; } } return result; } /// /// Deposit contiguous low bits from unsigned 64-bit integer a to dst at the corresponding bit locations specified by mask; all other bits in dst are set to zero. /// /// /// **** pdep r64, r64, r64 /// /// 64-bit integer /// Mask /// 64-bit integer [DebuggerStepThrough] public static ulong pdep_u64(ulong a, ulong mask) { ulong result = 0; int k = 0; for (int i = 0; i < 64; i++) { if ((mask & (1ul << i)) != 0) { result |= ((a >> k) & 1ul) << i; k++; } } return result; } /// /// Extract bits from unsigned 32-bit integer a at the corresponding bit locations specified by mask to contiguous low bits in dst; the remaining upper bits in dst are set to zero. /// /// /// **** pext r32, r32, r32 /// /// 32-bit integer /// Mask /// 32-bit integer [DebuggerStepThrough] public static uint pext_u32(uint a, uint mask) { uint result = 0; int k = 0; for (int i = 0; i < 32; i++) { if ((mask & (1u << i)) != 0) { result |= ((a >> i) & 1u) << k; k++; } } return result; } /// /// Extract bits from unsigned 64-bit integer a at the corresponding bit locations specified by mask to contiguous low bits in dst; the remaining upper bits in dst are set to zero. /// /// /// **** pext r64, r64, r64 /// /// 64-bit integer /// Mask /// 64-bit integer [DebuggerStepThrough] public static ulong pext_u64(ulong a, ulong mask) { ulong result = 0; int k = 0; for (int i = 0; i < 64; i++) { if ((mask & (1ul << i)) != 0) { result |= ((a >> i) & 1ul) << k; k++; } } return result; } } } }