using System; using System.Diagnostics; namespace Unity.Burst.Intrinsics { public unsafe static partial class Arm { public unsafe partial class Neon { /// /// Evaluates to true at compile time if Armv8.1 Rounding Double Multiply Add/Subtract intrinsics are supported. /// public static bool IsNeonRDMASupported { get { return false; } } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4H,Vn.4H,Vm.4H
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_s16(v64 a0, v64 a1, v64 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.2S,Vn.2S,Vm.2S
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_s32(v64 a0, v64 a1, v64 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.8H,Vn.8H,Vm.8H
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_s16(v128 a0, v128 a1, v128 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4S,Vn.4S,Vm.4S
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_s32(v128 a0, v128 a1, v128 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4H,Vn.4H,Vm.4H
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_s16(v64 a0, v64 a1, v64 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.2S,Vn.2S,Vm.2S
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_s32(v64 a0, v64 a1, v64 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.8H,Vn.8H,Vm.8H
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_s16(v128 a0, v128 a1, v128 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4S,Vn.4S,Vm.4S
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_s32(v128 a0, v128 a1, v128 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4H,Vn.4H,Vm.H[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_lane_s16(v64 a0, v64 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.8H,Vn.8H,Vm.H[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_lane_s16(v128 a0, v128 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4H,Vn.4H,Vm.H[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_laneq_s16(v64 a0, v64 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.8H,Vn.8H,Vm.H[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_laneq_s16(v128 a0, v128 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.2S,Vn.2S,Vm.S[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..1] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_lane_s32(v64 a0, v64 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4S,Vn.4S,Vm.S[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..1] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_lane_s32(v128 a0, v128 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.2S,Vn.2S,Vm.S[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlah_laneq_s32(v64 a0, v64 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Vd.4S,Vn.4S,Vm.S[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlahq_laneq_s32(v128 a0, v128 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4H,Vn.4H,Vm.H[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_lane_s16(v64 a0, v64 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.8H,Vn.8H,Vm.H[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_lane_s16(v128 a0, v128 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4H,Vn.4H,Vm.H[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_laneq_s16(v64 a0, v64 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.8H,Vn.8H,Vm.H[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_laneq_s16(v128 a0, v128 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.2S,Vn.2S,Vm.S[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..1] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_lane_s32(v64 a0, v64 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4S,Vn.4S,Vm.S[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..1] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_lane_s32(v128 a0, v128 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.2S,Vn.2S,Vm.S[lane]
/// 64-bit vector a0 /// 64-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 64-bit vector [DebuggerStepThrough] public static v64 vqrdmlsh_laneq_s32(v64 a0, v64 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Vd.4S,Vn.4S,Vm.S[lane]
/// 128-bit vector a0 /// 128-bit vector a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// 128-bit vector [DebuggerStepThrough] public static v128 vqrdmlshq_laneq_s32(v128 a0, v128 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Hd,Hn,Hm
/// Int16 a0 /// Int16 a1 /// Int16 a2 /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlahh_s16(Int16 a0, Int16 a1, Int16 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Sd,Sn,Sm
/// Int32 a0 /// Int32 a1 /// Int32 a2 /// Int32 [DebuggerStepThrough] public static Int32 vqrdmlahs_s32(Int32 a0, Int32 a1, Int32 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Hd,Hn,Hm
/// Int16 a0 /// Int16 a1 /// Int16 a2 /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlshh_s16(Int16 a0, Int16 a1, Int16 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Sd,Sn,Sm
/// Int32 a0 /// Int32 a1 /// Int32 a2 /// Int32 [DebuggerStepThrough] public static Int32 vqrdmlshs_s32(Int32 a0, Int32 a1, Int32 a2) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Hd,Hn,Vm.H[lane]
/// Int16 a0 /// Int16 a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlahh_lane_s16(Int16 a0, Int16 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Hd,Hn,Vm.H[lane]
/// Int16 a0 /// Int16 a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlahh_laneq_s16(Int16 a0, Int16 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Accumulate returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and accumulates the most significant half of the final results with the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLAH Sd,Sn,Vm.S[lane]
/// Int32 a0 /// Int32 a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..1] /// Int32 [DebuggerStepThrough] public static Int32 vqrdmlahs_lane_s32(Int32 a0, Int32 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Hd,Hn,Vm.H[lane]
/// Int16 a0 /// Int16 a1 /// 64-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlshh_lane_s16(Int16 a0, Int16 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Hd,Hn,Vm.H[lane]
/// Int16 a0 /// Int16 a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..7] /// Int16 [DebuggerStepThrough] public static Int16 vqrdmlshh_laneq_s16(Int16 a0, Int16 a1, v128 a2, Int32 a3) { throw new NotImplementedException(); } /// Signed Saturating Rounding Doubling Multiply Subtract returning High Half (by element). This instruction multiplies the vector elements of the first source SIMD&FP register with the value of a vector element of the second source SIMD&FP register without saturating the multiply results, doubles the results, and subtracts the most significant half of the final results from the vector elements of the destination SIMD&FP register. The results are rounded.If any of the results overflow, they are saturated. The cumulative saturation bit, FPSR.QC, is set if saturation occurs.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped. ///
Equivalent instruction: SQRDMLSH Sd,Sn,Vm.S[lane]
/// Int32 a0 /// Int32 a1 /// 128-bit vector a2 /// Lane index to a2. Must be an immediate in the range of [0..3] /// Int32 [DebuggerStepThrough] public static Int32 vqrdmlshs_lane_s32(Int32 a0, Int32 a1, v64 a2, Int32 a3) { throw new NotImplementedException(); } } } }