summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs')
-rw-r--r--tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs b/tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs
new file mode 100644
index 0000000000..da0de8fadf
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/Runtime_1104/Runtime_1104.cs
@@ -0,0 +1,62 @@
+// 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.Diagnostics;
+using System.Runtime.CompilerServices;
+
+class Runtime_1104
+{
+ static int TestOutOfBoundProxy(Func<int> actualTest)
+ {
+ try
+ {
+ actualTest();
+ }
+ catch (IndexOutOfRangeException)
+ {
+ Console.WriteLine("caught IndexOutOfRangeException");
+ return 100;
+ }
+ Debug.Fail("unreached");
+ return 101;
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ static int TestOutOfBoundLowerDecreasing()
+ {
+ int[] arr = new int[10];
+ int i = 9;
+ int j = 15;
+ int sum = 0;
+
+ // our range check optimizer is very naive, so if you don't have
+ // i < 10, then it thinks `i` can overflow and doesn't bother
+ // calling `Widen` at all.
+ //
+ while (j >= 0 && i < 10)
+ {
+ --j;
+ --i;
+ sum += arr[i]; // range check will use 9 as lower bound.
+
+ Console.WriteLine("i = " + i + ", j = " + j);
+ }
+ return sum;
+ }
+
+ public static int Main()
+ {
+ try
+ {
+ TestOutOfBoundProxy(TestOutOfBoundLowerDecreasing);
+ }
+ catch (Exception)
+ {
+ return 101;
+ }
+
+ return 100;
+ }
+}