summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Directed/shift/uint64.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Directed/shift/uint64.cs')
-rw-r--r--tests/src/JIT/Directed/shift/uint64.cs155
1 files changed, 155 insertions, 0 deletions
diff --git a/tests/src/JIT/Directed/shift/uint64.cs b/tests/src/JIT/Directed/shift/uint64.cs
new file mode 100644
index 0000000000..473dc225e5
--- /dev/null
+++ b/tests/src/JIT/Directed/shift/uint64.cs
@@ -0,0 +1,155 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+
+namespace ShiftTest
+{
+ public class CL
+ {
+ public ulong clm_data = 0xFFFFFFFFFFFFFFFF;
+ }
+ public struct VT
+ {
+ public ulong vtm_data;
+ }
+ public class ulong32Test
+ {
+ private static ulong s_data = 0xFFFFFFFFFFFFFFFF;
+ public static ulong f1(ulong arg_data)
+ {
+ arg_data >>= 8;
+ return arg_data;
+ }
+ public static ulong f2(ulong arg_data)
+ {
+ arg_data <<= 8;
+ return arg_data;
+ }
+ public static int Main()
+ {
+ ulong loc_data = 0xFFFFFFFFFFFFFFFF;
+
+ ulong[] arr_data = new ulong[1];
+
+ CL cl = new CL();
+ VT vt;
+
+ s_data = 0xFFFFFFFFFFFFFFFF;
+ loc_data = 0xFFFFFFFFFFFFFFFF;
+ arr_data[0] = 0xFFFFFFFFFFFFFFFF;
+ cl.clm_data = 0xFFFFFFFFFFFFFFFF;
+ vt.vtm_data = 0xFFFFFFFFFFFFFFFF;
+
+ // Test >>
+
+ Console.WriteLine("The expected result of (0xFFFFFFFFFFFFFFFF>>8) is: {0}", (0xFFFFFFFFFFFFFFFF >> 8));
+ Console.WriteLine();
+
+ Console.WriteLine("The actual result for funciton argument is: {0}", f1(0xFFFFFFFFFFFFFFFF));
+ loc_data >>= 8;
+ Console.WriteLine("The actual result for local variable is: {0}", loc_data);
+ s_data >>= 8;
+ Console.WriteLine("The actual result for static field is: {0}", s_data);
+ arr_data[0] >>= 8;
+ Console.WriteLine("The actual result for array element is: {0}", arr_data[0]);
+ cl.clm_data >>= 8;
+ Console.WriteLine("The actual result for class member is: {0}", cl.clm_data);
+ vt.vtm_data >>= 8;
+ Console.WriteLine("The actual result for valuestruct member is: {0}", vt.vtm_data);
+
+ Console.WriteLine();
+
+ if (loc_data != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for local variable");
+ return -1;
+ }
+ if (f1(0xFFFFFFFFFFFFFFFF) != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for function argument");
+ return -1;
+ }
+ if (s_data != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for static field");
+ return -1;
+ }
+ if (arr_data[0] != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for array element");
+ return -1;
+ }
+ if (cl.clm_data != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for class member");
+ return -1;
+ }
+ if (vt.vtm_data != (0xFFFFFFFFFFFFFFFF >> 8))
+ {
+ Console.WriteLine("FAILED for valuestruct member");
+ return -1;
+ }
+
+ // Test <<
+
+ s_data = 0x1;
+ loc_data = 0x1;
+ arr_data[0] = 0x1;
+ cl.clm_data = 0x1;
+ vt.vtm_data = 0x1;
+
+ Console.WriteLine("The expected result of (0x1<<8) is: {0}", ((ulong)0x1 << 8));
+ Console.WriteLine();
+
+ Console.WriteLine("The actual result for funciton argument is: {0}", f2(0x1));
+ loc_data <<= 8;
+ Console.WriteLine("The actual result for local variable is: {0}", loc_data);
+ s_data <<= 8;
+ Console.WriteLine("The actual result for static field is: {0}", s_data);
+ arr_data[0] <<= 8;
+ Console.WriteLine("The actual result for array element is: {0}", arr_data[0]);
+ cl.clm_data <<= 8;
+ Console.WriteLine("The actual result for class member is: {0}", cl.clm_data);
+ vt.vtm_data <<= 8;
+ Console.WriteLine("The actual result for valuestruct member is: {0}", vt.vtm_data);
+
+ Console.WriteLine();
+
+ if (loc_data != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for local variable");
+ return -1;
+ }
+ if (f2(0x1) != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for function argument");
+ return -1;
+ }
+ if (s_data != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for static field");
+ return -1;
+ }
+ if (arr_data[0] != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for array element");
+ return -1;
+ }
+ if (cl.clm_data != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for class member");
+ return -1;
+ }
+ if (vt.vtm_data != (0x1 << 8))
+ {
+ Console.WriteLine("FAILED for valuestruct member");
+ return -1;
+ }
+
+ Console.WriteLine("PASSED");
+ return 100;
+ }
+ }
+}