From 2a256bd066b980e39a96c8fbc217131bb2f88ee5 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Sat, 30 Dec 2017 10:34:44 -0800 Subject: Adding tests for the SSE ConvertTo Int32, Int32WithTruncation, Int64WithTruncation, Single, and Vector128Single scalar intrinsics --- .../HardwareIntrinsics/X86/Sse/ConvertToInt32.cs | 63 +++++++++++++++++ .../X86/Sse/ConvertToInt32WithTruncation.cs | 63 +++++++++++++++++ .../X86/Sse/ConvertToInt32WithTruncation_r.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt32WithTruncation_ro.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt32_r.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt32_ro.csproj | 34 ++++++++++ .../HardwareIntrinsics/X86/Sse/ConvertToInt64.cs | 73 ++++++++++++++++++++ .../X86/Sse/ConvertToInt64WithTruncation.cs | 73 ++++++++++++++++++++ .../X86/Sse/ConvertToInt64WithTruncation_r.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt64WithTruncation_ro.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt64_r.csproj | 34 ++++++++++ .../X86/Sse/ConvertToInt64_ro.csproj | 34 ++++++++++ .../HardwareIntrinsics/X86/Sse/ConvertToSingle.cs | 63 +++++++++++++++++ .../X86/Sse/ConvertToSingle_r.csproj | 34 ++++++++++ .../X86/Sse/ConvertToSingle_ro.csproj | 34 ++++++++++ .../X86/Sse/ConvertToVector128SingleScalar.cs | 79 ++++++++++++++++++++++ .../Sse/ConvertToVector128SingleScalar_r.csproj | 34 ++++++++++ .../Sse/ConvertToVector128SingleScalar_ro.csproj | 34 ++++++++++ 18 files changed, 822 insertions(+) create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_ro.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_ro.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_ro.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_ro.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_ro.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar.cs create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_r.csproj create mode 100644 tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_ro.csproj (limited to 'tests') diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32.cs new file mode 100644 index 0000000000..e9f42223e6 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32.cs @@ -0,0 +1,63 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 })) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var i2 = Sse.ConvertToInt32(vf1); + + if (i2 != ((int)floatTable.inArray[0])) + { + Console.WriteLine("SSE ConvertToInt32 failed on float:"); + Console.WriteLine(i2); + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + public TestTable(T[] a) + { + this.inArray = a; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + } + + public void Dispose() + { + inHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation.cs new file mode 100644 index 0000000000..9643a2c3c6 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation.cs @@ -0,0 +1,63 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 })) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var i2 = Sse.ConvertToInt32WithTruncation(vf1); + + if (i2 != ((int)floatTable.inArray[0])) + { + Console.WriteLine("SSE ConvertToInt32WithTruncation failed on float:"); + Console.WriteLine(i2); + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + public TestTable(T[] a) + { + this.inArray = a; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + } + + public void Dispose() + { + inHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_r.csproj new file mode 100644 index 0000000000..afe1421a9a --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_ro.csproj new file mode 100644 index 0000000000..3ce2dc4203 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32WithTruncation_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_r.csproj new file mode 100644 index 0000000000..c4ffeb6b80 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_ro.csproj new file mode 100644 index 0000000000..b9ac5abe6c --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt32_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64.cs new file mode 100644 index 0000000000..60b2b58b1b --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64.cs @@ -0,0 +1,73 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + try + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 })) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var l2 = Sse.ConvertToInt64(vf1); + + if (l2 != ((long)floatTable.inArray[0])) + { + Console.WriteLine("SSE ConvertToInt64 failed on float:"); + Console.WriteLine(l2); + testResult = Fail; + } + } + } + catch (PlatformNotSupportedException) + { + if (Environment.Is64BitProcess) + { + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + public TestTable(T[] a) + { + this.inArray = a; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + } + + public void Dispose() + { + inHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation.cs new file mode 100644 index 0000000000..466952377c --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation.cs @@ -0,0 +1,73 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + try + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 })) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var l2 = Sse.ConvertToInt64WithTruncation(vf1); + + if (l2 != ((long)floatTable.inArray[0])) + { + Console.WriteLine("SSE ConvertToInt64WithTruncation failed on float:"); + Console.WriteLine(l2); + testResult = Fail; + } + } + } + catch (PlatformNotSupportedException) + { + if (Environment.Is64BitProcess) + { + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + public TestTable(T[] a) + { + this.inArray = a; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + } + + public void Dispose() + { + inHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_r.csproj new file mode 100644 index 0000000000..6ac29673c8 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_ro.csproj new file mode 100644 index 0000000000..4798a9d20f --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64WithTruncation_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_r.csproj new file mode 100644 index 0000000000..16fdca14d0 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_ro.csproj new file mode 100644 index 0000000000..48acf706c9 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToInt64_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle.cs new file mode 100644 index 0000000000..9f5abfc070 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle.cs @@ -0,0 +1,63 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 })) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var f2 = Sse.ConvertToSingle(vf1); + + if (f2 != floatTable.inArray[0]) + { + Console.WriteLine("SSE ConvertToSingle failed on float:"); + Console.WriteLine(f2); + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + public TestTable(T[] a) + { + this.inArray = a; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + } + + public void Dispose() + { + inHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_r.csproj new file mode 100644 index 0000000000..3c7cb498ff --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_ro.csproj new file mode 100644 index 0000000000..0615b63584 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToSingle_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar.cs new file mode 100644 index 0000000000..d7bc727f84 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar.cs @@ -0,0 +1,79 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +// + +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Intrinsics.X86; +using System.Runtime.Intrinsics; + +namespace IntelHardwareIntrinsicTest +{ + class Program + { + const int Pass = 100; + const int Fail = 0; + + static unsafe int Main(string[] args) + { + int testResult = Pass; + + if (Sse.IsSupported) + { + using (TestTable floatTable = new TestTable(new float[4] { 1, -5, 100, 0 }, new float[4])) + { + var vf1 = Unsafe.Read>(floatTable.inArrayPtr); + var vf2 = Sse.ConvertToVector128SingleScalar(vf1, 5); + Unsafe.Write(floatTable.outArrayPtr, vf2); + + if (!floatTable.CheckResult((x, y) => (y[0] == 5) + && (y[1] == x[1]) && (y[2] == x[2]) && (y[3] == x[3]))) + { + Console.WriteLine("SSE ConvertToVector128SingleScalar failed on float:"); + foreach (var item in floatTable.outArray) + { + Console.Write(item + ", "); + } + Console.WriteLine(); + testResult = Fail; + } + } + } + + return testResult; + } + + public unsafe struct TestTable : IDisposable where T : struct + { + public T[] inArray; + public T[] outArray; + + public void* inArrayPtr => inHandle.AddrOfPinnedObject().ToPointer(); + public void* outArrayPtr => outHandle.AddrOfPinnedObject().ToPointer(); + + GCHandle inHandle; + GCHandle outHandle; + public TestTable(T[] a, T[] b) + { + this.inArray = a; + this.outArray = b; + + inHandle = GCHandle.Alloc(inArray, GCHandleType.Pinned); + outHandle = GCHandle.Alloc(outArray, GCHandleType.Pinned); + } + public bool CheckResult(Func check) + { + return check(inArray, outArray); + } + + public void Dispose() + { + inHandle.Free(); + outHandle.Free(); + } + } + + } +} diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_r.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_r.csproj new file mode 100644 index 0000000000..92d8c17320 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_r.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + + + + + + + + + + + diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_ro.csproj b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_ro.csproj new file mode 100644 index 0000000000..6324e3c132 --- /dev/null +++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse/ConvertToVector128SingleScalar_ro.csproj @@ -0,0 +1,34 @@ + + + + + Debug + AnyCPU + 2.0 + {95DFC527-4DC1-495E-97D7-E94EE1F7140D} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + true + + + + + + + False + + + + None + True + + + + + + + + + + -- cgit v1.2.3