From ccaf35e1e0dc6bbfb86e4fe6b8c24fe8fe346e55 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Mon, 7 Jan 2019 16:57:34 -0800 Subject: Fixing ContainCheckHWIntrinsic to ensure that scalar integer operands are the appropriate size (#21641) * Fixing ContainCheckHWIntrinsic to ensure that scalar integer operands are the appropriate size * Adding a regression test for issue 21625 * Fixing IsContainableHWIntrinsicOp to use the containing node type (rather than the simd base type) for Scalar intrinsics * Fixing the containment check for `Sse41.Insert(V128, V128, byte)` * Cleaning up the isContainableHWIntrinsicOp logic in lowerxarch.cpp * Restrict containment to genActualType(baseType) * Formatting * Removing some comments and simplifying the supportsContainment checks for various HWIntrinsics that take a scalar operand * Applying formatting patch --- .../JitBlue/GitHub_21625/GitHub_21625.cs | 52 ++++++++++++++++++++++ .../JitBlue/GitHub_21625/GitHub_21625.csproj | 36 +++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.cs create mode 100644 tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.csproj (limited to 'tests/src/JIT') diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.cs b/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.cs new file mode 100644 index 0000000000..405d6ff5f7 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.cs @@ -0,0 +1,52 @@ +// 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.Intrinsics; +using System.Runtime.Intrinsics.X86; + +namespace GitHub_21625 +{ + public class test + { + public static Vector128 CreateScalar(ushort value) + { + if (Sse2.IsSupported) + { + return Sse2.ConvertScalarToVector128UInt32(value).AsUInt16(); + } + + return SoftwareFallback(value); + + Vector128 SoftwareFallback(ushort x) + { + var result = Vector128.Zero; + Unsafe.WriteUnaligned(ref Unsafe.As, byte>(ref result), value); + return result; + } + } + + static int Main() + { + ushort value = TestLibrary.Generator.GetUInt16(); + Vector128 result = CreateScalar(value); + + if (result.GetElement(0) != value) + { + return 0; + } + + for (int i = 1; i < Vector128.Count; i++) + { + if (result.GetElement(i) != 0) + { + return 0; + } + } + + return 100; + } + } +} diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.csproj new file mode 100644 index 0000000000..17a6d4efe0 --- /dev/null +++ b/tests/src/JIT/Regression/JitBlue/GitHub_21625/GitHub_21625.csproj @@ -0,0 +1,36 @@ + + + + + Debug + AnyCPU + 2.0 + {2649FAFE-07BF-4F93-8120-BA9A69285ABB} + Exe + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\..\ + + + + + + None + True + + + + False + + + + + + + + + + + + + + -- cgit v1.2.3