summaryrefslogtreecommitdiff
path: root/tests/src/JIT
diff options
context:
space:
mode:
authorJoseph Tremoulet <JCTremoulet@gmail.com>2016-04-27 14:10:02 -0400
committerJoseph Tremoulet <JCTremoulet@gmail.com>2016-04-27 14:10:02 -0400
commitf049401e96a04eb3828f062b3b2b28d7ffd7f971 (patch)
treef80d4ae6009ec77afdaea808f5d3ac7fd51a653f /tests/src/JIT
parentb11748d264173b7eb65f8463306bb00a5c0e206d (diff)
parent0029475f1bc2cf20aee290d453d9e8e7bc738d84 (diff)
downloadcoreclr-f049401e96a04eb3828f062b3b2b28d7ffd7f971.tar.gz
coreclr-f049401e96a04eb3828f062b3b2b28d7ffd7f971.tar.bz2
coreclr-f049401e96a04eb3828f062b3b2b28d7ffd7f971.zip
Merge pull request #4591 from JosephTremoulet/Filter
Separate TryDsc and ExnFlowDsc
Diffstat (limited to 'tests/src/JIT')
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.cs263
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.csproj50
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_4044/app.config27
3 files changed, 340 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.cs b/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.cs
new file mode 100644
index 0000000000..e4d1e70dc1
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.cs
@@ -0,0 +1,263 @@
+// 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;
+
+class C
+{
+ public static int Main(string[] args)
+ {
+ int error = Test1();
+ error += Test2();
+ error += Test3();
+ error += Test3b();
+ error += Test4();
+ error += Test5();
+ error += Test6();
+ Console.WriteLine(error == 0 ? "Pass" : "Fail");
+ return 100 + error;
+ }
+
+ static int Test1()
+ {
+ try {
+ return Test1Inner();
+ }
+ catch {
+ return 1;
+ }
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test1Inner()
+ {
+ int i = 3;
+ do
+ {
+ try
+ {
+ throw new Exception();
+ }
+ // we should be decrementing i here, it does not happen
+ catch (Exception) when (--i < 0)
+ {
+ Console.Write("e");
+ break;
+ }
+ catch (Exception)
+ {
+ // just printing constant 3 here
+ //000000b5 mov ecx,3
+ //000000ba call 000000005B3CBAF0
+ Print1(i);
+ }
+ } while (true);
+
+ return 0;
+ }
+
+ static int limit = 10;
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static void Print1(int i)
+ {
+ if (limit > 0) {
+ Console.Write(i.ToString());
+ --limit;
+ }
+ else {
+ throw new Exception();
+ }
+ }
+
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test2()
+ {
+ int x = 1, y = 5;
+ try {
+ throw new Exception();
+ } catch when (Print2(Print2(0, --x), ++x) == 1) {
+ } catch {
+ // Need a PHI here for x that includes the decremented
+ // value; doesn't happen if we don't realize that exceptions
+ // at the first call to Print2 can reach here.
+ // Without it, we might const-prop a 1 here which is
+ // incorrect when the first Print2 call throws.
+ y = Print2(1, x);
+ }
+
+ return y;
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Print2(int i, int j)
+ {
+ if (i == 0)
+ throw new Exception();
+
+ Console.WriteLine(j.ToString());
+ return j;
+ }
+
+ static int Test3()
+ {
+ return Test3(0, 50);
+ }
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test3(int x, int y) // must pass 50 for y
+ {
+ try {
+ throw new Exception();
+ }
+ // Need to make sure the increment to y is not
+ // hoisted to before the call to Throw(x). If
+ // the importer doesn't realize that an exception
+ // from Throw(x) can be caught in this method, it
+ // won't separate Throw(x) out from the Ignore(..)
+ // tree, but will still separate out ++y, creating
+ // the bad reordering
+ catch when (Ignore(Throw(x), ++y)) { }
+ catch { Print3(y); }
+
+ return y - 50; // Caller should pass '50'
+ }
+
+ static int Test3b()
+ {
+ return Test3b(new int[5], 50);
+ }
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test3b(int[] x, int y)
+ {
+ try {
+ throw new Exception();
+ }
+ // Same as Test3 except that the tree which raises
+ // an exception is the array access x[100] instead
+ // of a call.
+ catch when (Ignore(x[100], ++y)) { }
+ catch { Print3(y); }
+
+ return y - 50; // Caller should pass '50'
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static bool Ignore(int a, int b) { return false; }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Throw(int n) { throw new Exception(); }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Print3(int i)
+ {
+ Console.WriteLine(i.ToString());
+ return i;
+ }
+
+ class BoxedBool
+ {
+ public bool Field;
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test4()
+ {
+ return Test4(new BoxedBool(), new Exception());
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test4(BoxedBool box, Exception e)
+ {
+ bool b = box.Field;
+
+ try {
+ throw e;
+ }
+ // This filter side-effects the heap and then throws an
+ // exception which is caught by the outer catch; make
+ // sure we recognize the heap modification and don't think
+ // we can value-number the load here the same as the load
+ // on entry to the function.
+ catch when ((box.Field = true) && ((BoxedBool)null).Field) {
+ }
+ catch {
+ b = box.Field;
+ }
+
+ if (b) {
+ Console.WriteLine("true");
+ }
+ else {
+ Console.WriteLine("false");
+ }
+
+ return (b ? 0 : 1);
+ }
+
+
+ static int Test5()
+ {
+ int n = int.MaxValue - 1;
+ int m = Test5(n);
+ return (m == n ? 0 : 1);
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test5(int n)
+ {
+ try {
+ throw new Exception();
+ }
+ catch when (Filter5(ref n)) { }
+ catch { }
+ return n;
+ }
+
+ [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ static bool Filter5(ref int n)
+ {
+ // Codegen'ing this as
+ // add [addr_of_n], 2
+ // jo throw_ovf
+ // would incorrectly modify n on the path where
+ // the exception occurs.
+ n = checked(n + 2);
+ return (n != 0);
+ }
+
+
+ static int Test6()
+ {
+ int n = int.MaxValue - 3;
+ int m = Test6(n);
+ return (m == n + 2 ? 0 : 1);
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int Test6(int n)
+ {
+ try {
+ throw new Exception();
+ }
+ catch when (Filter6(ref n)) { }
+ catch { }
+ return n;
+ }
+
+ [MethodImpl(MethodImplOptions.AggressiveInlining)]
+ static bool Filter6(ref int n)
+ {
+ // Codegen'ing this as
+ // add [addr_of_n], 4
+ // jo throw_ovf
+ // would incorrectly increment n by 4 rather than 2
+ // on the path where the exception occurs.
+ checked {
+ n += 2;
+ n += 2;
+ }
+ return (n != 0);
+ }
+}
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.csproj
new file mode 100644
index 0000000000..1bdafdda22
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_4044/GitHub_4044.csproj
@@ -0,0 +1,50 @@
+<?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>{03791641-ED25-42C4-AD81-FCCF7E47DC2E}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <FileAlignment>512</FileAlignment>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+
+ <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
+ </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></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="$(JitPackagesConfigFileDirectory)minimal\project.json" />
+ <None Include="app.config" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <PropertyGroup>
+ <ProjectJson>$(JitPackagesConfigFileDirectory)minimal\project.json</ProjectJson>
+ <ProjectLockJson>$(JitPackagesConfigFileDirectory)minimal\project.lock.json</ProjectLockJson>
+ </PropertyGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
+ </PropertyGroup>
+</Project>
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_4044/app.config b/tests/src/JIT/Regression/JitBlue/GitHub_4044/app.config
new file mode 100644
index 0000000000..6f7bbd9d2b
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_4044/app.config
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.0.20.0" newVersion="4.0.20.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Text.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.0.10.0" newVersion="4.0.10.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.0.10.0" newVersion="4.0.10.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.0.10.0" newVersion="4.0.10.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.0.10.0" newVersion="4.0.10.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration>