Skip to content

ARM additional shifting intrinsics #33398

Description

@tannergooding
namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

    , 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
     blocks
    (function() {
    function addCopyButtons() {
    document.querySelectorAll('pre code').forEach(function(codeBlock) {
    if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
    codeBlock.parentElement.setAttribute('data-copy-added', 'true');
    var btn = document.createElement('button');
    btn.textContent = 'Copy';
    btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
    btn.onmouseover = function() { this.style.opacity = '1'; };
    btn.onmouseout = function() { this.style.opacity = '0.7'; };
    btn.onclick = function() {
    navigator.clipboard.writeText(codeBlock.textContent).then(function() {
    btn.textContent = 'Copied!';
    setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
    });
    };
    codeBlock.parentElement.style.position = 'relative';
    codeBlock.parentElement.appendChild(btn);
    });
    }
    addCopyButtons();
    // Re-run on dynamic content
    var observer = new MutationObserver(addCopyButtons);
    observer.observe(document.body, { childList: true, subtree: true });
    })();
    }
    } catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
    })();
    (function(){
    try {
    var __m = "github.com";
    var __re = new RegExp('^' + "github\\.com" + '
    ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
    Skip to content

    ARM additional shifting intrinsics #33398

    Description

    @tannergooding
    namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

    Metadata

    Metadata

    Assignees

    Type

    No type

    Projects

    No projects

      Milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

      , 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
      Skip to content

      ARM additional shifting intrinsics #33398

      Description

      @tannergooding
      namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

      Metadata

      Metadata

      Assignees

      Type

      No type

      Projects

      No projects

        Milestone

        Relationships

        None yet

        Development

        No branches or pull requests

        Issue actions

        , 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
        Skip to content

        ARM additional shifting intrinsics #33398

        Description

        @tannergooding
        namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

        Metadata

        Metadata

        Assignees

        Type

        No type

        Projects

        No projects

          Milestone

          Relationships

          None yet

          Development

          No branches or pull requests

          Issue actions

          , 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
          Skip to content

          ARM additional shifting intrinsics #33398

          Description

          @tannergooding
          namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

          Metadata

          Metadata

          Assignees

          Type

          No type

          Projects

          No projects

            Milestone

            Relationships

            None yet

            Development

            No branches or pull requests

            Issue actions

            , 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
            Skip to content

            ARM additional shifting intrinsics #33398

            Description

            @tannergooding
            namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

            Metadata

            Metadata

            Assignees

            Type

            No type

            Projects

            No projects

              Milestone

              Relationships

              None yet

              Development

              No branches or pull requests

              Issue actions

              , 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
              Skip to content

              ARM additional shifting intrinsics #33398

              Description

              @tannergooding
              namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

              Metadata

              Metadata

              Assignees

              Type

              No type

              Projects

              No projects

                Milestone

                Relationships

                None yet

                Development

                No branches or pull requests

                Issue actions

                , 'i'); if (__m === '*' || __re.test(location.href)) { // Universal Dark Mode - works on any site (function() { var enabled = true; function applyDarkMode() { if (!enabled) return; // Create style element if it doesn't exist var style = document.getElementById('universal-dark-mode-style'); if (!style) { style = document.createElement('style'); style.id = 'universal-dark-mode-style'; document.head.appendChild(style); } // Dark mode CSS - inverts colors but preserves images/video style.textContent = ' /* Invert everything except media */ html { filter: invert(1) hue-rotate(180deg) !important; background: #1a1a2e !important; } /* Restore images, videos, iframes, canvas */ img, video, iframe, canvas, svg, picture, [style*="background-image"] { filter: invert(1) hue-rotate(180deg) !important; } /* Preserve specific elements that should not be inverted */ .no-dark-mode, .no-dark-mode *, [data-theme="light"], [data-theme="light"], .ace_editor, .ace_editor *, .CodeMirror, .CodeMirror *, .monaco-editor, .monaco-editor *, .markdown-body pre, .markdown-body pre *, .highlight, .highlight *, pre code, pre code * { filter: none !important; } /* Fix common UI elements */ .modal, .popup, .dropdown-menu, .tooltip, .popover { filter: invert(1) hue-rotate(180deg) !important; background: #2d2d44 !important; border-color: #444 !important; } /* Scrollbars */ ::-webkit-scrollbar { background: #1a1a2e !important; } ::-webkit-scrollbar-thumb { background: #444 !important; } ::-webkit-scrollbar-thumb:hover { background: #555 !important; } /* Selection */ ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; } ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; } '; } function removeDarkMode() { var style = document.getElementById('universal-dark-mode-style'); if (style) style.remove(); } // Toggle with Alt+Shift+D document.addEventListener('keydown', function(e) { if (e.altKey && e.shiftKey && e.key === 'D') { e.preventDefault(); enabled = !enabled; if (enabled) { applyDarkMode(); console.log('[Universal Dark Mode] Enabled'); } else { removeDarkMode(); console.log('[Universal Dark Mode] Disabled'); } } }); // Apply on load applyDarkMode(); // Re-apply on dynamic content var observer = new MutationObserver(function(mutations) { if (enabled && !document.getElementById('universal-dark-mode-style')) { applyDarkMode(); } }); observer.observe(document.head, { childList: true }); console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle'); })(); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })(); ARM additional shifting intrinsics · Issue #33398 · dotnet/runtime · GitHub
                Skip to content

                ARM additional shifting intrinsics #33398

                Description

                @tannergooding
                namespaceSystem.Runtime.Intrinsics.Arm{publicabstractclassAdvSimd{/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogical(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogical(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogical(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogical(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogical(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogical(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogical(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogical(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogical(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogical(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogical(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogical(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogical(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogical(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRounded(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRounded(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRounded(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRounded(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRounded(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRounded(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRounded(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRounded(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRounded(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRounded(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRounded(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRounded(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL and VSHL/// </summary>Vector64<sbyte>ShiftArithmetic(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmetic(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmetic(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmetic(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmetic(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmetic(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmetic(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL and VRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRounded(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRounded(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRounded(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRounded(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRounded(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRounded(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRounded(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturate(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturate(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturate(Vector64<uint>value,Vector64<int>shift);Vector128<byte>ShiftLogicalRoundedSaturate(Vector128<byte>value,Vector128<sbyte>shift);Vector128<sbyte>ShiftLogicalRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftLogicalRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<ushort>ShiftLogicalRoundedSaturate(Vector128<ushort>value,Vector128<short>shift);Vector128<int>ShiftLogicalRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<uint>ShiftLogicalRoundedSaturate(Vector128<uint>value,Vector128<int>shift);Vector128<long>ShiftLogicalRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector128<ulong>ShiftLogicalRoundedSaturate(Vector128<ulong>value,Vector128<long>shift);Vector64<long>ShiftLogicalRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);Vector64<ulong>ShiftLogicalRoundedSaturateScalar(Vector64<ulong>value,Vector64<long>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL and VQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL and VQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturate(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturate(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturate(Vector64<int>value,Vector64<int>shift);Vector128<sbyte>ShiftArithmeticRoundedSaturate(Vector128<sbyte>value,Vector128<sbyte>shift);Vector128<short>ShiftArithmeticRoundedSaturate(Vector128<short>value,Vector128<short>shift);Vector128<int>ShiftArithmeticRoundedSaturate(Vector128<int>value,Vector128<int>shift);Vector128<long>ShiftArithmeticRoundedSaturate(Vector128<long>value,Vector128<long>shift);Vector64<long>ShiftArithmeticRoundedSaturateScalar(Vector64<long>value,Vector64<long>shift);/// <summary>/// Shift Left Immediate/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHL and VSHL/// </summary>Vector64<byte>ShiftLeftLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of USHR and VSHR/// </summary>Vector64<byte>ShiftRightLogical(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogical(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogical(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogical(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogical(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogical(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogical(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogical(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogical(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogical(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogical(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogical(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogical(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogical(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalScalar(Vector64<ulong>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of URSHR and VRSHR/// </summary>Vector64<byte>ShiftRightLogicalRounded(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalRounded(Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalRounded(Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalRounded(Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalRounded(Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalRounded(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalRounded(Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalRounded(Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalRounded(Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalRounded(Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalRounded(Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalRounded(Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalRoundedScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalRoundedScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SSHR and VSHR/// </summary>Vector64<sbyte>ShiftRightArithmetic(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmetic(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmetic(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmetic(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmetic(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmetic(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmetic(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticScalar(Vector64<long>value,byteshift);/// <summary>/// Signed Rounding Shift Right Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of SRSHR and VRSHR/// </summary>Vector64<sbyte>ShiftRightArithmeticRounded(Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticRounded(Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticRounded(Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticRounded(Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticRounded(Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticRounded(Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticRounded(Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticRoundedScalar(Vector64<long>value,byteshift);/// <summary>/// Unsigned Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of USRA and VSRA/// </summary>Vector64<byte>ShiftRightLogicalAdd(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAdd(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAdd(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAdd(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAdd(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAdd(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAdd(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> shift)/// Corresponds to vector forms of SSRA and VSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAdd(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAdd(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAdd(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAdd(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAdd(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAdd(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAdd(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Unsigned Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of URSRA and VRSRA/// </summary>Vector64<byte>ShiftRightLogicalAddRounded(Vector64<byte>addend,Vector64<byte>value,byteshift);Vector64<sbyte>ShiftRightLogicalAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightLogicalAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<ushort>ShiftRightLogicalAddRounded(Vector64<ushort>addend,Vector64<ushort>value,byteshift);Vector64<int>ShiftRightLogicalAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector64<uint>ShiftRightLogicalAddRounded(Vector64<uint>addend,Vector64<uint>value,byteshift);Vector128<byte>ShiftRightLogicalAddRounded(Vector128<byte>addend,Vector128<byte>value,byteshift);Vector128<sbyte>ShiftRightLogicalAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightLogicalAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightLogicalAddRounded(Vector128<ushort>addend,Vector128<ushort>value,byteshift);Vector128<int>ShiftRightLogicalAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<uint>ShiftRightLogicalAddRounded(Vector128<uint>addend,Vector128<uint>value,byteshift);Vector128<long>ShiftRightLogicalAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector128<ulong>ShiftRightLogicalAddRounded(Vector128<ulong>addend,Vector128<ulong>value,byteshift);Vector64<long>ShiftRightLogicalAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);Vector64<ulong>ShiftRightLogicalAddRoundedScalar(Vector64<ulong>addend,Vector64<ulong>value,byteshift);/// <summary>/// Signed Rounding Shift Right and Accumulate/// For each element result[elem] = addend[elem] + (value[elem] >> RoundedShift)/// Corresponds to vector forms of SRSRA and VRSRA/// </summary>Vector64<sbyte>ShiftRightArithmeticAddRounded(Vector64<sbyte>addend,Vector64<sbyte>value,byteshift);Vector64<short>ShiftRightArithmeticAddRounded(Vector64<short>addend,Vector64<short>value,byteshift);Vector64<int>ShiftRightArithmeticAddRounded(Vector64<int>addend,Vector64<int>value,byteshift);Vector128<sbyte>ShiftRightArithmeticAddRounded(Vector128<sbyte>addend,Vector128<sbyte>value,byteshift);Vector128<short>ShiftRightArithmeticAddRounded(Vector128<short>addend,Vector128<short>value,byteshift);Vector128<int>ShiftRightArithmeticAddRounded(Vector128<int>addend,Vector128<int>value,byteshift);Vector128<long>ShiftRightArithmeticAddRounded(Vector128<long>addend,Vector128<long>value,byteshift);Vector64<long>ShiftRightArithmeticAddRoundedScalar(Vector64<long>addend,Vector64<long>value,byteshift);/// <summary>/// Signed Saturating Shift Left and Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHL, UQSHL, and VQSHL/// </summary>Vector64<byte>ShiftLeftLogicalSaturate(Vector64<byte>value,byteshift);Vector64<sbyte>ShiftLeftLogicalSaturate(Vector64<sbyte>value,byteshift);Vector64<short>ShiftLeftLogicalSaturate(Vector64<short>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturate(Vector64<ushort>value,byteshift);Vector64<int>ShiftLeftLogicalSaturate(Vector64<int>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturate(Vector64<uint>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturate(Vector128<byte>value,byteshift);Vector128<sbyte>ShiftLeftLogicalSaturate(Vector128<sbyte>value,byteshift);Vector128<short>ShiftLeftLogicalSaturate(Vector128<short>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturate(Vector128<ushort>value,byteshift);Vector128<int>ShiftLeftLogicalSaturate(Vector128<int>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturate(Vector128<uint>value,byteshift);Vector128<long>ShiftLeftLogicalSaturate(Vector128<long>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturate(Vector128<ulong>value,byteshift);Vector64<long>ShiftLeftLogicalSaturateScalar(Vector64<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateScalar(Vector64<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Left Unsigned/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SQSHLU and VQSHLU/// </summary>Vector64<byte>ShiftLeftLogicalSaturateUnsigned(Vector64<sbyte>value,byteshift);Vector64<ushort>ShiftLeftLogicalSaturateUnsigned(Vector64<short>value,byteshift);Vector64<uint>ShiftLeftLogicalSaturateUnsigned(Vector64<int>value,byteshift);Vector128<byte>ShiftLeftLogicalSaturateUnsigned(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalSaturateUnsigned(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalSaturateUnsigned(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalSaturateUnsigned(Vector128<long>value,byteshift);Vector64<ulong>ShiftLeftLogicalSaturateUnsignedScalar(Vector64<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN and VSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowLower(Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN and VRSHRN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedLower(Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL and VSHLL/// </summary>Vector128<short>ShiftLeftLogicalAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN and VQSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN and VQRSHRUN/// </summary>Vector64<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<byte>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ushort>value,byteshift);Vector64<short>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<ushort>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<uint>value,byteshift);Vector64<int>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);Vector64<uint>ShiftRightLogicalAndNarrowRoundedSaturateLower(Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN and VQSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN and VQRSHRN/// </summary>Vector64<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<short>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<int>ShiftRightArithmeticAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);publicabstractclassArm64{/// <summary>/// Signed Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of SQSHL/// </summary>Vector64<sbyte>ShiftArithmeticSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticSaturateScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of SRSHL/// </summary>Vector64<sbyte>ShiftArithmeticRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticRoundedScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Signed Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of SSHL/// </summary>Vector64<sbyte>ShiftArithmeticScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftArithmeticScalar(Vector64<short>value,Vector64<short>shift);Vector64<int>ShiftArithmeticScalar(Vector64<int>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(ShiftLogical[elem] & 0xFF) - 1))) << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQRSHL and VQRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Saturating Shift Left/// For each element result[elem] = value[elem] << (ShiftLogical[elem] & 0xFF)/// Corresponds to vector forms of UQSHL and VQSHL/// </summary>Vector64<byte>ShiftLogicalSaturateScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalSaturateScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalSaturateScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalSaturateScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalSaturateScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalSaturateScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Rounding Shift Left/// For each element result[elem] = (value[elem] + (1 << (-(shift[elem] & 0xFF) - 1))) << (shift[elem] & 0xFF)/// Corresponds to vector forms of URSHL and VRSHL/// </summary>Vector64<byte>ShiftLogicalRoundedScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalRoundedScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalRoundedScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalRoundedScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalRoundedScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalRoundedScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Unsigned Shift Left/// For each element result[elem] = value[elem] << (shift[elem] & 0xFF)/// Corresponds to vector forms of USHL and VSHL/// </summary>Vector64<byte>ShiftLogicalScalar(Vector64<byte>value,Vector64<sbyte>shift);Vector64<sbyte>ShiftLogicalScalar(Vector64<sbyte>value,Vector64<sbyte>shift);Vector64<short>ShiftLogicalScalar(Vector64<short>value,Vector64<short>shift);Vector64<ushort>ShiftLogicalScalar(Vector64<ushort>value,Vector64<short>shift);Vector64<int>ShiftLogicalScalar(Vector64<int>value,Vector64<int>shift);Vector64<uint>ShiftLogicalScalar(Vector64<uint>value,Vector64<int>shift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL/// </summary>Vector128<short>SignExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<long>SignExtendAndWidenLower(Vector64<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL/// </summary>Vector128<short>ZeroExtendAndWidenLower(Vector64<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenLower(Vector64<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenLower(Vector64<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenLower(Vector64<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenLower(Vector64<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenLower(Vector64<uint>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN/// </summary>Vector64<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<short>value,byteshift);Vector64<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<int>value,byteshift);Vector64<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateLower(Vector128<long>value,byteshift);/// <summary>/// Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Rounding Shift Right Narrow Immediate/// For each element result[elem] = (value[elem] + (1 << (shift - 1))) >> shift/// Corresponds to vector forms of RSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Shift Left Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SHLL2/// </summary>Vector128<short>ShiftLeftLogicalAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ShiftLeftLogicalAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ShiftLeftLogicalAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ShiftLeftLogicalAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ShiftLeftLogicalAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ShiftLeftLogicalAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Signed Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of SXTL2/// </summary>Vector128<short>SignExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<int>SignExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<long>SignExtendAndWidenUpper(Vector128<int>value,byteshift);/// <summary>/// Unsigned Extend Long/// For each element result[elem] = value[elem] << shift/// Corresponds to vector forms of UXTL2/// </summary>Vector128<short>ZeroExtendAndWidenUpper(Vector128<sbyte>value,byteshift);Vector128<ushort>ZeroExtendAndWidenUpper(Vector128<byte>value,byteshift);Vector128<int>ZeroExtendAndWidenUpper(Vector128<short>value,byteshift);Vector128<uint>ZeroExtendAndWidenUpper(Vector128<ushort>value,byteshift);Vector128<long>ZeroExtendAndWidenUpper(Vector128<int>value,byteshift);Vector128<ulong>ZeroExtendAndWidenUpper(Vector128<uint>value,byteshift);/// <summary>/// Unsigned Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Unsigned Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of UQRSHRN2/// </summary>Vector128<sbyte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<byte>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<byte>lower,Vector128<ushort>value,byteshift);Vector128<short>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<ushort>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<ushort>lower,Vector128<uint>value,byteshift);Vector128<int>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);Vector128<uint>ShiftRightLogicalAndNarrowRoundedSaturateUpper(Vector64<uint>lower,Vector128<ulong>value,byteshift);/// <summary>/// Signed Saturating Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRN2/// </summary>Vector128<sbyte>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<short>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<int>ShiftRightArithmeticAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);/// <summary>/// Signed Saturating Rounded Shift Right Unsigned Narrow Immediate/// For each element result[elem] = value[elem] >> shift/// Corresponds to vector forms of SQRSHRUN2/// </summary>Vector128<byte>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<sbyte>lower,Vector128<short>value,byteshift);Vector128<ushort>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<short>lower,Vector128<int>value,byteshift);Vector128<uint>ShiftRightArithmeticUnsignedAndNarrowRoundedSaturateUpper(Vector64<int>lower,Vector128<long>value,byteshift);}}}

                Metadata

                Metadata

                Assignees

                Type

                No type

                Projects

                No projects

                  Milestone

                  Relationships

                  None yet

                  Development

                  No branches or pull requests

                  Issue actions