3 using System
.Reflection
;
4 using System
.Runtime
.InteropServices
;
5 using System
.Runtime
.CompilerServices
;
8 * Regression tests for the mono JIT.
10 * Each test needs to be of the form:
12 * static int test_<result>_<name> ();
14 * where <result> is an integer (the value that needs to be returned by
15 * the method to make it pass.
16 * <name> is a user-displayed name used to identify the test.
18 * The tests can be driven in two ways:
19 * *) running the program directly: Main() uses reflection to find and invoke
20 * the test methods (this is useful mostly to check that the tests are correct)
21 * *) with the --regression switch of the jit (this is the preferred way since
22 * all the tests will be run with optimizations on and off)
24 * The reflection logic could be moved to a .dll since we need at least another
25 * regression test file written in IL code to have better control on how
59 public void populate ()
69 return one
== 1 && two
== 2 &&
70 three
== 3 && four
== 4 &&
71 five
== 5 && six
== 6 &&
72 seven
== 7 && eight
== 8 &&
73 nine
== 9 && ten
== 10;
79 public Sample (int v
) {
84 [StructLayout ( LayoutKind
.Explicit
)]
85 struct StructWithBigOffsets
{
86 [ FieldOffset(10000) ] public byte b
;
87 [ FieldOffset(10001) ] public sbyte sb
;
88 [ FieldOffset(11000) ] public short s
;
89 [ FieldOffset(11002) ] public ushort us
;
90 [ FieldOffset(12000) ] public uint i
;
91 [ FieldOffset(12004) ] public int si
;
92 [ FieldOffset(13000) ] public long l
;
93 [ FieldOffset(14000) ] public float f
;
94 [ FieldOffset(15000) ] public double d
;
106 return TestDriver
.RunTests (typeof (Tests
));
109 public static int test_0_return () {
113 s
.c
= (short)(s
.a
+ s
.b
);
118 public static int test_0_string_access () {
125 public static int test_0_string_virtual_call () {
127 string s2
= s
.ToString ();
133 public static int test_0_iface_call () {
135 object o
= ((ICloneable
)s
).Clone ();
139 public static int test_5_newobj () {
140 Sample s
= new Sample (5);
144 public static int test_4_box () {
149 public static int test_0_enum_unbox () {
150 SampleEnum x
= SampleEnum
.A
;
160 static Simple
get_simple (int v
) {
161 Simple r
= new Simple ();
164 r
.c
= (short)(v
+ 2);
170 public static int test_3_return_struct () {
171 Simple v
= get_simple (1);
184 public virtual Simple
v_get_simple (int v
)
186 return get_simple (v
);
189 public static int test_2_return_struct_virtual () {
190 Tests t
= new Tests ();
191 Simple v
= t
.v_get_simple (2);
204 static int receive_simple (int a
, Simple v
, int b
) {
220 public static int test_5_pass_struct () {
221 Simple v
= get_simple (1);
222 if (receive_simple (7, v
, 9) != 0)
224 if (receive_simple (7, get_simple (1), 9) != 0)
230 public static int test_5_pass_static_struct () {
231 s_v
= get_simple (1);
232 if (receive_simple (7, s_v
, 9) != 0)
237 // Test alignment of small structs
239 static Small
get_small (byte v
) {
240 Small r
= new Small ();
243 r
.b2
= (byte)(v
+ 1);
248 static Small
return_small (Small s
) {
252 static int receive_small (int a
, Small v
, int b
) {
260 static int receive_small_sparc_many_args (int a
, int a2
, int a3
, int a4
, int a5
, int a6
, Small v
, int b
) {
268 public static int test_5_pass_small_struct () {
269 Small v
= get_small (1);
270 if (receive_small (7, v
, 9) != 0)
272 if (receive_small (7, get_small (1), 9) != 0)
274 if (receive_small_sparc_many_args (1, 2, 3, 4, 5, 6, v
, 9) != 0)
276 v
= return_small (v
);
284 // 64-bits, 32-bit aligned
290 static int check_struct1(struct1 x
) {
298 static int pass_struct1(int a
, int b
, struct1 x
) {
303 return check_struct1(x
);
306 static int pass_struct1(int a
, struct1 x
) {
309 return check_struct1(x
);
312 static int pass_struct1(struct1 x
) {
313 return check_struct1(x
);
316 public static int test_0_struct1_args () {
322 if ((r
= check_struct1(x
)) != 0)
324 if ((r
= pass_struct1(x
)) != 0)
326 if ((r
= pass_struct1(3, x
)) != 0)
328 if ((r
= pass_struct1(3, 4, x
)) != 0)
333 // 64-bits, 64-bit aligned
338 static int check_struct2(struct2 x
) {
344 static int pass_struct2(int a
, int b
, int c
, struct2 x
) {
351 return check_struct2(x
);
354 static int pass_struct2(int a
, int b
, struct2 x
) {
359 return check_struct2(x
);
362 static int pass_struct2(int a
, struct2 x
) {
365 return check_struct2(x
);
368 static int pass_struct2(struct2 x
) {
369 return check_struct2(x
);
372 public static int test_0_struct2_args () {
377 if ((r
= check_struct2(x
)) != 0)
379 if ((r
= pass_struct2(x
)) != 0)
381 if ((r
= pass_struct2(3, x
)) != 0)
383 if ((r
= pass_struct2(3, 4, x
)) != 0)
385 if ((r
= pass_struct2(3, 4, 5, x
)) != 0)
392 public long i
, j
, k
, l
;
395 static int pass_struct3 (int i
, int j
, int k
, int l
, int m
, int n
, int o
, int p
, Struct3 s
, int q
) {
396 if (s
.i
+ s
.j
+ s
.k
+ s
.l
!= 10)
402 public static int test_0_struct3_args () {
403 Struct3 s
= new Struct3 ();
409 return pass_struct3 (1, 2, 3, 4, 5, 6, 7, 8, s
, 9);
412 // Struct with unaligned size on 64 bit machines
414 public int i
, j
, k
, l
, m
;
415 public int i1
, i2
, i3
, i4
, i5
, i6
;
418 static int pass_struct4 (Struct4 s
) {
419 if (s
.i
+ s
.j
+ s
.k
+ s
.l
+ s
.m
!= 15)
425 public static int test_0_struct4_args () {
426 Struct4 s
= new Struct4 ();
433 return pass_struct4 (s
);
441 public AStruct (int i
) {
445 public override int GetHashCode () {
450 // Test that vtypes are unboxed during a virtual call
451 public static int test_44_unbox_trampoline () {
452 AStruct s
= new AStruct (44);
454 return o
.GetHashCode ();
457 public static int test_0_unbox_trampoline2 () {
461 if (i
.ToString () != "12")
463 if (((Int32
)o
).ToString () != "12")
465 if (o
.ToString () != "12")
470 // Test fields with big offsets
471 public static int test_0_fields_with_big_offsets () {
472 StructWithBigOffsets s
= new StructWithBigOffsets ();
473 StructWithBigOffsets s2
= new StructWithBigOffsets ();
499 if (s2
.i
!= 0xdeadbeef)
501 if (s2
.l
!= 0xcafebabe)
520 int buf_length
, buf_offset
;
528 public long Seek (long position
) {
530 /* interaction between the register allocator and
531 * allocating arguments to registers */
532 if (pos
>= buf_start
&& pos
<= buf_start
+ buf_length
) {
533 buf_offset
= (int) (pos
- buf_start
);
541 public static int test_0_seektest () {
542 TestRegA t
= new TestRegA ();
543 return (int)t
.Seek (0);
546 class Super
: ICloneable
{
547 public virtual object Clone () {
554 public static int test_0_null_cast () {
562 public static int test_0_super_cast () {
563 Duper d
= new Duper ();
577 d
= (Duper
)(object)sup
;
584 public static int test_0_super_cast_array () {
585 Duper
[] d
= new Duper
[0];
596 if (!(d
is Object
[]))
599 d
= (Duper
[])(object[])sup
;
606 public static int test_0_multi_array_cast () {
607 Duper
[,] d
= new Duper
[1, 1];
611 o
[0, 0] = new Super ();
614 catch (ArrayTypeMismatchException
) {
620 public static int test_0_vector_array_cast () {
621 Array arr1
= Array
.CreateInstance (typeof (int), new int[] {1}
, new int[] {0}
);
622 Array arr2
= Array
.CreateInstance (typeof (int), new int[] {1}
, new int[] {10}
);
624 if (arr1
.GetType () != typeof (int[]))
627 if (arr2
.GetType () == typeof (int[]))
638 catch (InvalidCastException
) {
644 int [,] [] arr3
= new int [1, 1] [];
646 int [,] [] arr4
= (int [,] [])o
;
651 public static int test_0_enum_array_cast () {
652 TypeCode
[] tc
= new TypeCode
[0];
661 if (a
is ValueType
[])
675 vta
= (ValueType
[])a
;
692 public static int test_0_more_cast_corner_cases () {
693 ValueType
[] vta
= new ValueType
[0];
694 Enum
[] ea
= new Enum
[0];
699 if (!(a
is object[]))
701 if (!(a
is ValueType
[]))
706 if (!(a
is object[]))
708 if (!(a
is ValueType
[]))
770 public static int test_0_cast_iface_array () {
771 object o
= new ICloneable
[0];
772 object o2
= new Duper
[0];
776 if (!(o
is object[]))
778 if (!(o2
is ICloneable
[]))
792 t
= (ICloneable
[])o2
;
808 if (!(o
is ICloneable
[]))
811 /* add tests for interfaces that 'inherit' interfaces */
815 private static int[] daysmonthleap
= { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
;
817 private static int AbsoluteDays (int year
, int month
, int day
)
820 int[] days
= daysmonthleap
;
823 return ((day
-1) + temp
+ (365* (year
-1)) + ((year
-1)/4) - ((year
-1)/100) + ((year
-1)/400));
826 public static int test_719162_complex_div () {
827 int adays
= AbsoluteDays (1970, 1, 1);
831 delegate int GetIntDel ();
833 static int return4 () {
841 public static int test_2_static_delegate () {
842 GetIntDel del
= new GetIntDel (return4
);
849 public static int test_2_instance_delegate () {
850 Tests t
= new Tests ();
851 GetIntDel del
= new GetIntDel (t
.return5
);
858 public static int test_1_store_decimal () {
859 decimal[,] a
= {{1}}
;
866 public static int test_2_intptr_stobj () {
867 System
.IntPtr
[] arr
= { new System.IntPtr () }
;
869 if (arr
[0] != (System
.IntPtr
)0)
874 static int llmult (int a
, int b
, int c
, int d
) {
875 return a
+ b
+ c
+ d
;
879 * Test that evaluation of complex arguments does not overwrite the
880 * arguments already in outgoing registers.
882 public static int test_155_regalloc () {
888 int[] arr
= new int [5];
890 return llmult (arr
[c
+ d
], 150, 5, 0);
893 static bool large_struct_test (Large a
, Large b
, Large c
, Large d
)
895 if (!a
.check ()) return false;
896 if (!b
.check ()) return false;
897 if (!c
.check ()) return false;
898 if (!d
.check ()) return false;
902 public static int test_2_large_struct_pass ()
913 if (large_struct_test (a
, b
, c
, d
))
918 public static unsafe int test_0_pin_string () {
920 fixed (char *c
= x
) {
927 public static int my_flags
;
928 public static int test_0_and_cmp_static ()
931 /* various forms of test [mem], imm */
933 my_flags
= 0x01020304;
935 if ((my_flags
& 0x01020304) == 0)
938 if ((my_flags
& 0x00000304) == 0)
941 if ((my_flags
& 0x00000004) == 0)
944 if ((my_flags
& 0x00000300) == 0)
947 if ((my_flags
& 0x00020000) == 0)
950 if ((my_flags
& 0x01000000) == 0)
957 public static int test_0_byte_compares ()
963 if (!(b
< System
.Byte
.MaxValue
))
966 if (!(b
<= System
.Byte
.MaxValue
))
972 public static int test_71_long_shift_right () {
973 ulong value = 38654838087;
975 byte [] buffer
= new byte [1];
976 buffer
[x
] = ((byte)(value >> x
));
981 public static int test_0_addsub_mem ()
998 public static int test_0_sh32_mem ()
1000 y
= 0x0102130405060708;
1003 if (y
!= 0x01021304)
1006 y
= 0x0102130405060708;
1009 if (y
!= 0x0506070800000000)
1012 x
= 0x0102130405060708;
1015 if (x
!= 0x0506070800000000)
1022 static uint dum_de_dum
= 1;
1023 public static int test_0_long_arg_opt ()
1025 return Foo (0x1234567887654321, dum_de_dum
);
1028 static int Foo (ulong x
, ulong y
)
1030 if (x
!= 0x1234567887654321)
1039 public static int test_0_long_ret_opt ()
1042 if (x
!= 0x1234567887654321)
1053 return 0x1234567887654321;
1061 /* from bug# 71515 */
1062 static int counter
= 0;
1063 static bool WriteStuff () {
1067 public static int test_0_cond_branch_side_effects () {
1076 public static int arg_only_written (string file_name
, int[]
1078 if (file_name
== null)
1087 public static int[] foo () {
1091 public static void bar (int i
) {
1095 public static int test_0_arg_only_written ()
1097 return arg_only_written ("md.in", null);
1100 static long position
= 0;
1102 public static int test_4_static_inc_long () {
1110 return (int)position
;
1115 public FooStruct (long l
) {
1119 public static int test_0_calls_opcode_emulation () {
1120 // Test that emulated opcodes do not clobber arguments already in
1124 new FooStruct (val
* 10000);
1129 public static int test_0_intrins_string_length () {
1132 return (s
.Length
== 3) ? 0 : 1;
1135 public static int test_0_intrins_string_chars () {
1138 return (s
[0] == 'A' && s
[1] == 'B' && s
[2] == 'C') ? 0 : 1;
1141 public static int test_0_intrins_object_gettype () {
1144 return (o
.GetType () == typeof (int)) ? 0 : 1;
1147 public static int test_0_intrins_object_gethashcode () {
1148 object o
= new Object ();
1150 return (o
.GetHashCode () == o
.GetHashCode ()) ? 0 : 1;
1156 public static int test_0_intrins_object_ctor () {
1157 object o
= new FooClass ();
1159 return (o
!= null) ? 0 : 1;
1162 public static int test_0_intrins_array_rank () {
1163 int[,] a
= new int [10, 10];
1165 return (a
.Rank
== 2) ? 0 : 1;
1168 public static int test_0_intrins_array_length () {
1169 int[,] a
= new int [10, 10];
1172 return (a2
.Length
== 100) ? 0 : 1;
1175 public static int test_0_intrins_runtimehelpers_offset_to_string_data () {
1176 int i
= RuntimeHelpers
.OffsetToStringData
;
1181 public static int test_0_intrins_string_setchar () {
1182 StringBuilder sb
= new StringBuilder ("ABC");
1186 return sb
.ToString () == "ADC" ? 0 : 1;
1190 bool allowLocation
= true;
1194 public static int test_0_regress_78990_unaligned_structs () {
1200 public static unsafe int test_97_negative_index () {
1201 char[] arr
= new char[] {'a', 'b'}
;
1202 fixed (char *p
= arr
) {
1210 public static int test_0_unsigned_right_shift_imm0 () {
1212 byte[] data
= new byte[256];
1213 for (int i
= 0; i
< 1; i
++)
1214 temp
= (uint)(data
[temp
>> 24] | data
[temp
>> 0]);
1219 public virtual int foo () {
1224 sealed class Bar2
: Foo2
{
1225 public override int foo () {
1230 public static int test_0_abcrem_check_this_removal () {
1231 Bar2 b
= new Bar2 ();
1233 // The check_this generated here by the JIT should be removed
1239 static int invoke_twice (Bar2 b
) {
1241 // The check_this generated here by the JIT should be removed
1247 public static int test_0_abcrem_check_this_removal2 () {
1248 Bar2 b
= new Bar2 ();
1256 public static int test_0_array_access_64_bit () {
1257 int[] arr2
= new int [10];
1258 for (int i
= 0; i
< 10; ++i
)
1260 string s
= "ABCDEFGH";
1262 byte[] arr
= new byte [4];
1268 int len
= arr
[0] | (arr
[1] << 8) | (arr
[2] << 16) | (arr
[3] << 24);
1269 int len2
= - (len
+ 2);
1271 // Test array and string access with a 32 bit value whose upper 32 bits are
1274 if (arr2
[len2
] != 2)
1276 if (s
[len2
] != 'C')
1281 public static float return_float () {
1285 public static int test_0_float_return_spill () {
1286 // The return value of return_float () is spilled because of the
1288 object o
= return_float ();
1289 float f
= return_float ();
1290 return (float)o
== f
? 0 : 1;
1294 public static float pi
= 3.14f
;
1296 public float float_field
;
1299 public static int test_0_ldsfld_soft_float () {
1300 if (R4Holder
.pi
== 3.14f
)
1306 public static int test_0_ldfld_stfld_soft_float () {
1307 R4Holder h
= new R4Holder ();
1308 h
.float_field
= 3.14f
;
1310 if (h
.float_field
== 3.14f
)
1316 class R4HolderRemote
: MarshalByRefObject
{
1317 public static float pi
= 3.14f
;
1319 public float float_field
;
1322 public static int test_0_ldfld_stfld_soft_float_remote () {
1323 R4HolderRemote h
= new R4HolderRemote ();
1324 h
.float_field
= 3.14f
;
1326 if (h
.float_field
== 3.14f
)
1332 public static int test_0_locals_soft_float () {
1343 static int range_check_strlen (int i
, string s
) {
1344 if (i
< 0 || i
> s
.Length
)
1350 public static int test_0_range_check_opt () {
1351 if (range_check_strlen (0, "A") != 0)
1353 if (range_check_strlen (1, "A") != 0)
1355 if (range_check_strlen (2, "A") != 1)
1357 if (range_check_strlen (-100, "A") != 1)
1362 static int test_0_array_get_set_soft_float () {
1363 float[,] arr
= new float [2, 2];
1365 return arr
[0, 0] == 256f
? 0 : 1;