summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2019-04-12 11:31:55 -0700
committerGitHub <noreply@github.com>2019-04-12 11:31:55 -0700
commit855491b895b187bdc396c491884a370b11d999e9 (patch)
tree4b570005f1bfdeebfd66c2724d783d4b9cafbb82 /tests
parent85f584b0ca94a547c03790d471b44c9e36e0fac5 (diff)
downloadcoreclr-855491b895b187bdc396c491884a370b11d999e9.tar.gz
coreclr-855491b895b187bdc396c491884a370b11d999e9.tar.bz2
coreclr-855491b895b187bdc396c491884a370b11d999e9.zip
Don't Free UpperVector (#23889)
* Don't Free UpperVector UpperVector regs are freed at their time of use, and shouldn't be freed when the last RefPosition is encountered. Also, we need to specify all 3 operands for vinsertf128 Fix #23861 Fix #23904 Fix #23804
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.cs69
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.csproj34
2 files changed, 103 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.cs b/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.cs
new file mode 100644
index 0000000000..2bd0d0982d
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.cs
@@ -0,0 +1,69 @@
+// 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.Numerics;
+
+namespace GitHub_23861
+{
+ class Program
+ {
+ static int returnVal = 100;
+ static int Main(string[] args)
+ {
+ LessThanAllDouble();
+
+ if (returnVal == 100)
+ {
+ Console.WriteLine("Pass");
+ }
+ else
+ {
+ Console.WriteLine("FAIL");
+ }
+ return returnVal;
+ }
+
+ public static void LessThanAllDouble() { TestVectorLessThanAll<double>(); }
+
+ private static void TestVectorLessThanAll<T>() where T : struct
+ {
+ T[] values1 = new T[Vector<T>.Count];
+ for (int g = 0; g < Vector<T>.Count; g++)
+ {
+ values1[g] = (T)(dynamic)g;
+ }
+ Vector<T> vec1 = new Vector<T>(values1);
+
+ T[] values2 = new T[Vector<T>.Count];
+ for (int g = 0; g < Vector<T>.Count; g++)
+ {
+ values2[g] = (T)(dynamic)(g + 25);
+ }
+ Vector<T> vec2 = new Vector<T>(values2);
+
+ if (!Vector.LessThanAll(vec1, vec2))
+ {
+ returnVal = -1;
+ }
+ if (!Vector.LessThanAll(Vector<T>.Zero, Vector<T>.One))
+ {
+ returnVal = -1;
+ }
+
+ T[] values3 = new T[Vector<T>.Count];
+ for (int g = 0; g < Vector<T>.Count; g++)
+ {
+ values3[g] = (g < Vector<T>.Count / 2) ? Vector<T>.Zero[0] : Vector<T>.One[0];
+ }
+ Vector<T> vec3 = new Vector<T>(values3);
+ if (Vector.LessThanAll(vec3, Vector<T>.One))
+ {
+ returnVal = -1;
+ }
+ }
+ }
+}
+
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.csproj
new file mode 100644
index 0000000000..e191e01217
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_23861/GitHub_23861.csproj
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "></PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "></PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <PropertyGroup>
+ <DebugType>None</DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "></PropertyGroup>
+</Project>