1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 /******************************************************************************
6 * This file is auto-generated from a template file by the GenerateTests.csx *
7 * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make *
8 * changes, please update the corresponding template and run according to the *
9 * directions listed in the file. *
10 ******************************************************************************/
13 using System.Runtime.CompilerServices;
14 using System.Runtime.InteropServices;
15 using System.Runtime.Intrinsics;
16 using System.Runtime.Intrinsics.X86;
18 namespace JIT.HardwareIntrinsics.X86
20 public static partial class Program
22 private static void InsertUInt16129()
24 var test = new SimpleUnaryOpTest__InsertUInt16129();
28 // Validates basic functionality works, using Unsafe.Read
29 test.RunBasicScenario_UnsafeRead();
33 // Validates basic functionality works, using Load
34 test.RunBasicScenario_Load();
36 // Validates basic functionality works, using LoadAligned
37 test.RunBasicScenario_LoadAligned();
40 // Validates calling via reflection works, using Unsafe.Read
41 test.RunReflectionScenario_UnsafeRead();
45 // Validates calling via reflection works, using Load
46 test.RunReflectionScenario_Load();
48 // Validates calling via reflection works, using LoadAligned
49 test.RunReflectionScenario_LoadAligned();
52 // Validates passing a static member works
53 test.RunClsVarScenario();
55 // Validates passing a local works, using Unsafe.Read
56 test.RunLclVarScenario_UnsafeRead();
60 // Validates passing a local works, using Load
61 test.RunLclVarScenario_Load();
63 // Validates passing a local works, using LoadAligned
64 test.RunLclVarScenario_LoadAligned();
67 // Validates passing the field of a local works
68 test.RunLclFldScenario();
70 // Validates passing an instance member works
71 test.RunFldScenario();
75 // Validates we throw on unsupported hardware
76 test.RunUnsupportedScenario();
81 throw new Exception("One or more scenarios did not complete as expected.");
86 public sealed unsafe class SimpleUnaryOpTest__InsertUInt16129
88 private static readonly int LargestVectorSize = 16;
90 private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt16>>() / sizeof(UInt16);
91 private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt16>>() / sizeof(UInt16);
93 private static UInt16[] _data = new UInt16[Op1ElementCount];
95 private static Vector128<UInt16> _clsVar;
97 private Vector128<UInt16> _fld;
99 private SimpleUnaryOpTest__DataTable<UInt16, UInt16> _dataTable;
101 static SimpleUnaryOpTest__InsertUInt16129()
103 var random = new Random();
105 for (var i = 0; i < Op1ElementCount; i++) { _data[i] = (ushort)0; }
106 Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt16>, byte>(ref _clsVar), ref Unsafe.As<UInt16, byte>(ref _data[0]), (uint)Unsafe.SizeOf<Vector128<UInt16>>());
109 public SimpleUnaryOpTest__InsertUInt16129()
113 var random = new Random();
115 for (var i = 0; i < Op1ElementCount; i++) { _data[i] = (ushort)0; }
116 Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt16>, byte>(ref _fld), ref Unsafe.As<UInt16, byte>(ref _data[0]), (uint)Unsafe.SizeOf<Vector128<UInt16>>());
118 for (var i = 0; i < Op1ElementCount; i++) { _data[i] = (ushort)0; }
119 _dataTable = new SimpleUnaryOpTest__DataTable<UInt16, UInt16>(_data, new UInt16[RetElementCount], LargestVectorSize);
122 public bool IsSupported => Sse2.IsSupported && (Environment.Is64BitProcess || ((typeof(UInt16) != typeof(long)) && (typeof(UInt16) != typeof(ulong))));
124 public bool Succeeded { get; set; }
126 public void RunBasicScenario_UnsafeRead()
128 var result = Sse2.Insert(
129 Unsafe.Read<Vector128<UInt16>>(_dataTable.inArrayPtr),
134 Unsafe.Write(_dataTable.outArrayPtr, result);
135 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
138 public void RunBasicScenario_Load()
140 var result = Sse2.Insert(
141 Sse2.LoadVector128((UInt16*)(_dataTable.inArrayPtr)),
146 Unsafe.Write(_dataTable.outArrayPtr, result);
147 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
150 public void RunBasicScenario_LoadAligned()
152 var result = Sse2.Insert(
153 Sse2.LoadAlignedVector128((UInt16*)(_dataTable.inArrayPtr)),
158 Unsafe.Write(_dataTable.outArrayPtr, result);
159 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
162 public void RunReflectionScenario_UnsafeRead()
164 var result = typeof(Sse2).GetMethod(nameof(Sse2.Insert), new Type[] { typeof(Vector128<UInt16>), typeof(UInt16), typeof(byte) })
165 .Invoke(null, new object[] {
166 Unsafe.Read<Vector128<UInt16>>(_dataTable.inArrayPtr),
171 Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt16>)(result));
172 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
175 public void RunReflectionScenario_Load()
177 var result = typeof(Sse2).GetMethod(nameof(Sse2.Insert), new Type[] { typeof(Vector128<UInt16>), typeof(UInt16), typeof(byte) })
178 .Invoke(null, new object[] {
179 Sse2.LoadVector128((UInt16*)(_dataTable.inArrayPtr)),
184 Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt16>)(result));
185 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
188 public void RunReflectionScenario_LoadAligned()
190 var result = typeof(Sse2).GetMethod(nameof(Sse2.Insert), new Type[] { typeof(Vector128<UInt16>), typeof(UInt16), typeof(byte) })
191 .Invoke(null, new object[] {
192 Sse2.LoadAlignedVector128((UInt16*)(_dataTable.inArrayPtr)),
197 Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt16>)(result));
198 ValidateResult(_dataTable.inArrayPtr, _dataTable.outArrayPtr);
201 public void RunClsVarScenario()
203 var result = Sse2.Insert(
209 Unsafe.Write(_dataTable.outArrayPtr, result);
210 ValidateResult(_clsVar, _dataTable.outArrayPtr);
213 public void RunLclVarScenario_UnsafeRead()
215 var firstOp = Unsafe.Read<Vector128<UInt16>>(_dataTable.inArrayPtr);
216 var result = Sse2.Insert(firstOp, (ushort)2, 129);
218 Unsafe.Write(_dataTable.outArrayPtr, result);
219 ValidateResult(firstOp, _dataTable.outArrayPtr);
222 public void RunLclVarScenario_Load()
224 var firstOp = Sse2.LoadVector128((UInt16*)(_dataTable.inArrayPtr));
225 var result = Sse2.Insert(firstOp, (ushort)2, 129);
227 Unsafe.Write(_dataTable.outArrayPtr, result);
228 ValidateResult(firstOp, _dataTable.outArrayPtr);
231 public void RunLclVarScenario_LoadAligned()
233 var firstOp = Sse2.LoadAlignedVector128((UInt16*)(_dataTable.inArrayPtr));
234 var result = Sse2.Insert(firstOp, (ushort)2, 129);
236 Unsafe.Write(_dataTable.outArrayPtr, result);
237 ValidateResult(firstOp, _dataTable.outArrayPtr);
240 public void RunLclFldScenario()
242 var test = new SimpleUnaryOpTest__InsertUInt16129();
243 var result = Sse2.Insert(test._fld, (ushort)2, 129);
245 Unsafe.Write(_dataTable.outArrayPtr, result);
246 ValidateResult(test._fld, _dataTable.outArrayPtr);
249 public void RunFldScenario()
251 var result = Sse2.Insert(_fld, (ushort)2, 129);
253 Unsafe.Write(_dataTable.outArrayPtr, result);
254 ValidateResult(_fld, _dataTable.outArrayPtr);
257 public void RunUnsupportedScenario()
263 RunBasicScenario_UnsafeRead();
265 catch (PlatformNotSupportedException)
271 private void ValidateResult(Vector128<UInt16> firstOp, void* result, [CallerMemberName] string method = "")
273 UInt16[] inArray = new UInt16[Op1ElementCount];
274 UInt16[] outArray = new UInt16[RetElementCount];
276 Unsafe.WriteUnaligned(ref Unsafe.As<UInt16, byte>(ref inArray[0]), firstOp);
277 Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt16>>());
279 ValidateResult(inArray, outArray, method);
282 private void ValidateResult(void* firstOp, void* result, [CallerMemberName] string method = "")
284 UInt16[] inArray = new UInt16[Op1ElementCount];
285 UInt16[] outArray = new UInt16[RetElementCount];
287 Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt16, byte>(ref inArray[0]), ref Unsafe.AsRef<byte>(firstOp), (uint)Unsafe.SizeOf<Vector128<UInt16>>());
288 Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt16>>());
290 ValidateResult(inArray, outArray, method);
293 private void ValidateResult(UInt16[] firstOp, UInt16[] result, [CallerMemberName] string method = "")
296 for (var i = 0; i < RetElementCount; i++)
298 if ((i == 1 ? result[i] != 2 : result[i] != 0))
307 Console.WriteLine($"{nameof(Sse2)}.{nameof(Sse2.Insert)}<UInt16>(Vector128<UInt16><9>): {method} failed:");
308 Console.WriteLine($" firstOp: ({string.Join(", ", firstOp)})");
309 Console.WriteLine($" result: ({string.Join(", ", result)})");