3 using System
.Reflection
;
4 using System
.Collections
.Generic
;
5 using System
.Runtime
.InteropServices
;
6 using System
.Runtime
.CompilerServices
;
9 * Regression tests for the mono JIT.
11 * Each test needs to be of the form:
13 * static int test_<result>_<name> ();
15 * where <result> is an integer (the value that needs to be returned by
16 * the method to make it pass.
17 * <name> is a user-displayed name used to identify the test.
19 * The tests can be driven in two ways:
20 * *) running the program directly: Main() uses reflection to find and invoke
21 * the test methods (this is useful mostly to check that the tests are correct)
22 * *) with the --regression switch of the jit (this is the preferred way since
23 * all the tests will be run with optimizations on and off)
25 * The reflection logic could be moved to a .dll since we need at least another
26 * regression test file written in IL code to have better control on how
65 public void populate ()
75 return one
== 1 && two
== 2 &&
76 three
== 3 && four
== 4 &&
77 five
== 5 && six
== 6 &&
78 seven
== 7 && eight
== 8 &&
79 nine
== 9 && ten
== 10;
85 public Sample (int v
) {
90 [StructLayout ( LayoutKind
.Explicit
)]
91 struct StructWithBigOffsets
{
92 [ FieldOffset(10000) ] public byte b
;
93 [ FieldOffset(10001) ] public sbyte sb
;
94 [ FieldOffset(11000) ] public short s
;
95 [ FieldOffset(11002) ] public ushort us
;
96 [ FieldOffset(12000) ] public uint i
;
97 [ FieldOffset(12004) ] public int si
;
98 [ FieldOffset(13000) ] public long l
;
99 [ FieldOffset(14000) ] public float f
;
100 [ FieldOffset(15000) ] public double d
;
110 public long a
,b
,c
,d
,e
,f
,g
,h
,i
,j
,k
,l
,m
,n
,o
,p
,q
,r
,s
,t
,u
,v
;
114 public Alpha a
,b
,c
,d
,e
,f
,g
,h
,i
,j
,k
,l
,m
,n
,o
,p
,q
,r
,s
,t
,u
,v
;
118 public Beta a
,b
,c
,d
,e
,f
,g
,h
,i
,j
,k
,l
,m
,n
,o
,p
,q
,r
,s
,t
,u
,v
;
124 public static int Main (string[] args
) {
125 return TestDriver
.RunTests (typeof (Tests
), args
);
129 public static int test_0_return () {
133 s
.c
= (short)(s
.a
+ s
.b
);
138 public static int test_0_string_access () {
145 public static int test_0_string_virtual_call () {
147 string s2
= s
.ToString ();
153 public static int test_0_iface_call () {
155 object o
= ((ICloneable
)s
).Clone ();
159 public static int test_5_newobj () {
160 Sample s
= new Sample (5);
164 public static int test_4_box () {
169 public static int test_0_enum_unbox () {
170 SampleEnum x
= SampleEnum
.A
;
180 static Simple
get_simple (int v
) {
181 Simple r
= new Simple ();
184 r
.c
= (short)(v
+ 2);
190 public static int test_3_return_struct () {
191 Simple v
= get_simple (1);
204 public virtual Simple
v_get_simple (int v
)
206 return get_simple (v
);
209 public static int test_2_return_struct_virtual () {
210 Tests t
= new Tests ();
211 Simple v
= t
.v_get_simple (2);
224 static int receive_simple (int a
, Simple v
, int b
) {
240 public static int test_5_pass_struct () {
241 Simple v
= get_simple (1);
242 if (receive_simple (7, v
, 9) != 0)
244 if (receive_simple (7, get_simple (1), 9) != 0)
250 public static int test_5_pass_static_struct () {
251 s_v
= get_simple (1);
252 if (receive_simple (7, s_v
, 9) != 0)
257 // Test alignment of small structs
259 static Small
get_small (byte v
) {
260 Small r
= new Small ();
263 r
.b2
= (byte)(v
+ 1);
268 static Small
return_small (Small s
) {
272 static int receive_small (int a
, Small v
, int b
) {
280 static int receive_small_sparc_many_args (int a
, int a2
, int a3
, int a4
, int a5
, int a6
, Small v
, int b
) {
288 public static int test_5_pass_small_struct () {
289 Small v
= get_small (1);
290 if (receive_small (7, v
, 9) != 0)
292 if (receive_small (7, get_small (1), 9) != 0)
294 if (receive_small_sparc_many_args (1, 2, 3, 4, 5, 6, v
, 9) != 0)
296 v
= return_small (v
);
304 // 64-bits, 32-bit aligned
310 static int check_struct1(struct1 x
) {
318 static int pass_struct1(int a
, int b
, struct1 x
) {
323 return check_struct1(x
);
326 static int pass_struct1(int a
, struct1 x
) {
329 return check_struct1(x
);
332 static int pass_struct1(struct1 x
) {
333 return check_struct1(x
);
336 public static int test_0_struct1_args () {
342 if ((r
= check_struct1(x
)) != 0)
344 if ((r
= pass_struct1(x
)) != 0)
346 if ((r
= pass_struct1(3, x
)) != 0)
348 if ((r
= pass_struct1(3, 4, x
)) != 0)
353 // 64-bits, 64-bit aligned
358 static int check_struct2(struct2 x
) {
364 static int pass_struct2(int a
, int b
, int c
, struct2 x
) {
371 return check_struct2(x
);
374 static int pass_struct2(int a
, int b
, struct2 x
) {
379 return check_struct2(x
);
382 static int pass_struct2(int a
, struct2 x
) {
385 return check_struct2(x
);
388 static int pass_struct2(struct2 x
) {
389 return check_struct2(x
);
392 public static int test_0_struct2_args () {
397 if ((r
= check_struct2(x
)) != 0)
399 if ((r
= pass_struct2(x
)) != 0)
401 if ((r
= pass_struct2(3, x
)) != 0)
403 if ((r
= pass_struct2(3, 4, x
)) != 0)
405 if ((r
= pass_struct2(3, 4, 5, x
)) != 0)
412 public long i
, j
, k
, l
;
415 static int pass_struct3 (int i
, int j
, int k
, int l
, int m
, int n
, int o
, int p
, Struct3 s
, int q
) {
416 if (s
.i
+ s
.j
+ s
.k
+ s
.l
!= 10)
422 public static int test_0_struct3_args () {
423 Struct3 s
= new Struct3 ();
429 return pass_struct3 (1, 2, 3, 4, 5, 6, 7, 8, s
, 9);
432 // Struct with unaligned size on 64 bit machines
434 public int i
, j
, k
, l
, m
;
435 public int i1
, i2
, i3
, i4
, i5
, i6
;
438 static int pass_struct4 (Struct4 s
) {
439 if (s
.i
+ s
.j
+ s
.k
+ s
.l
+ s
.m
!= 15)
445 public static int test_0_struct4_args () {
446 Struct4 s
= new Struct4 ();
453 return pass_struct4 (s
);
461 public AStruct (int i
) {
465 public override int GetHashCode () {
470 // Test that vtypes are unboxed during a virtual call
471 public static int test_44_unbox_trampoline () {
472 AStruct s
= new AStruct (44);
474 return o
.GetHashCode ();
477 public static int test_0_unbox_trampoline2 () {
481 if (i
.ToString () != "12")
483 if (((Int32
)o
).ToString () != "12")
485 if (o
.ToString () != "12")
490 // Test fields with big offsets
491 public static int test_0_fields_with_big_offsets () {
492 StructWithBigOffsets s
= new StructWithBigOffsets ();
493 StructWithBigOffsets s2
= new StructWithBigOffsets ();
519 if (s2
.i
!= 0xdeadbeef)
521 if (s2
.l
!= 0xcafebabe)
540 int buf_length
, buf_offset
;
548 public long Seek (long position
) {
550 /* interaction between the register allocator and
551 * allocating arguments to registers */
552 if (pos
>= buf_start
&& pos
<= buf_start
+ buf_length
) {
553 buf_offset
= (int) (pos
- buf_start
);
561 public static int test_0_seektest () {
562 TestRegA t
= new TestRegA ();
563 return (int)t
.Seek (0);
566 class Super
: ICloneable
{
567 public virtual object Clone () {
574 public static int test_0_null_cast () {
582 public static int test_0_super_cast () {
583 Duper d
= new Duper ();
597 d
= (Duper
)(object)sup
;
604 public static int test_0_super_cast_array () {
605 Duper
[] d
= new Duper
[0];
616 if (!(d
is Object
[]))
619 d
= (Duper
[])(object[])sup
;
626 public static int test_0_multi_array_cast () {
627 Duper
[,] d
= new Duper
[1, 1];
631 o
[0, 0] = new Super ();
634 catch (ArrayTypeMismatchException
) {
640 public static int test_0_vector_array_cast () {
641 Array arr1
= Array
.CreateInstance (typeof (int), new int[] {1}
, new int[] {0}
);
642 Array arr2
= Array
.CreateInstance (typeof (int), new int[] {1}
, new int[] {10}
);
643 Array arr5
= Array
.CreateInstance (typeof (string), new int[] {1}
, new int[] {10}
);
645 if (arr1
.GetType () != typeof (int[]))
648 if (arr2
.GetType () == typeof (int[]))
659 catch (InvalidCastException
) {
664 var as_object_arr
= arr5
as object [];
665 if (as_object_arr
!= null)
668 int [,] [] arr3
= new int [1, 1] [];
670 int [,] [] arr4
= (int [,] [])o
;
675 public static int test_0_enum_array_cast () {
676 TypeCode
[] tc
= new TypeCode
[0];
685 if (a
is ValueType
[])
699 vta
= (ValueType
[])a
;
716 public static int test_0_more_cast_corner_cases () {
717 ValueType
[] vta
= new ValueType
[0];
718 Enum
[] ea
= new Enum
[0];
723 if (!(a
is object[]))
725 if (!(a
is ValueType
[]))
730 if (!(a
is object[]))
732 if (!(a
is ValueType
[]))
792 object arr
= new int [10];
793 if (arr
is IList
<int?>)
799 public static int test_0_cast_iface_array () {
800 object o
= new ICloneable
[0];
801 object o2
= new Duper
[0];
805 if (!(o
is object[]))
807 if (!(o2
is ICloneable
[]))
821 t
= (ICloneable
[])o2
;
837 if (!(o
is ICloneable
[]))
840 /* add tests for interfaces that 'inherit' interfaces */
844 private static int[] daysmonthleap
= { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
;
846 private static int AbsoluteDays (int year
, int month
, int day
)
849 int[] days
= daysmonthleap
;
852 return ((day
-1) + temp
+ (365* (year
-1)) + ((year
-1)/4) - ((year
-1)/100) + ((year
-1)/400));
855 public static int test_719162_complex_div () {
856 int adays
= AbsoluteDays (1970, 1, 1);
860 delegate int GetIntDel ();
862 static int return4 () {
870 public static int test_2_static_delegate () {
871 GetIntDel del
= new GetIntDel (return4
);
878 public static int test_2_instance_delegate () {
879 Tests t
= new Tests ();
880 GetIntDel del
= new GetIntDel (t
.return5
);
887 class InstanceDelegateTest
{
890 public int return_field () {
895 public static int test_2_instance_delegate_with_field () {
896 InstanceDelegateTest t
= new InstanceDelegateTest () { a = 1337 }
;
897 GetIntDel del
= new GetIntDel (t
.return_field
);
904 interface IFaceVirtualDel
{
908 struct VtypeVirtualDelStruct
: IFaceVirtualDel
{
910 public int return_field_nonvirt () {
913 public int return_field () {
918 public static int test_42_vtype_delegate () {
919 var s
= new VtypeVirtualDelStruct () { f = 42 }
;
920 Func
<int> f
= s
.return_field_nonvirt
;
924 public static int test_42_vtype_virtual_delegate () {
925 IFaceVirtualDel s
= new VtypeVirtualDelStruct () { f = 42 }
;
926 Func
<int> f
= s
.return_field
;
930 public static int test_1_store_decimal () {
931 decimal[,] a
= {{1}}
;
938 public static int test_2_intptr_stobj () {
939 System
.IntPtr
[] arr
= { new System.IntPtr () }
;
941 if (arr
[0] != (System
.IntPtr
)0)
946 static int llmult (int a
, int b
, int c
, int d
) {
947 return a
+ b
+ c
+ d
;
951 * Test that evaluation of complex arguments does not overwrite the
952 * arguments already in outgoing registers.
954 public static int test_155_regalloc () {
960 int[] arr
= new int [5];
962 return llmult (arr
[c
+ d
], 150, 5, 0);
965 static bool large_struct_test (Large a
, Large b
, Large c
, Large d
)
967 if (!a
.check ()) return false;
968 if (!b
.check ()) return false;
969 if (!c
.check ()) return false;
970 if (!d
.check ()) return false;
974 public static int test_2_large_struct_pass ()
985 if (large_struct_test (a
, b
, c
, d
))
990 public static unsafe int test_0_pin_string () {
992 fixed (char *c
= x
) {
999 public static int my_flags
;
1000 public static int test_0_and_cmp_static ()
1003 /* various forms of test [mem], imm */
1005 my_flags
= 0x01020304;
1007 if ((my_flags
& 0x01020304) == 0)
1010 if ((my_flags
& 0x00000304) == 0)
1013 if ((my_flags
& 0x00000004) == 0)
1016 if ((my_flags
& 0x00000300) == 0)
1019 if ((my_flags
& 0x00020000) == 0)
1022 if ((my_flags
& 0x01000000) == 0)
1029 public static int test_0_byte_compares ()
1035 if (!(b
< System
.Byte
.MaxValue
))
1038 if (!(b
<= System
.Byte
.MaxValue
))
1044 static Nullable
<bool> s_nullb
;
1045 static AStruct s_struct1
;
1047 /* test if VES uses correct sizes for value type write to static field */
1048 public static int test_0_static_nullable_bool () {
1049 s_struct1
= new AStruct (0x1337dead);
1051 /* make sure that the write to s_nullb didn't smash the value after it */
1052 if (s_struct1
.i
!= 0x1337dead)
1057 public static int test_71_long_shift_right () {
1058 ulong value = 38654838087;
1060 byte [] buffer
= new byte [1];
1061 buffer
[x
] = ((byte)(value >> x
));
1066 public static int test_0_addsub_mem ()
1083 public static int test_0_sh32_mem ()
1085 y
= 0x0102130405060708;
1088 if (y
!= 0x01021304)
1091 y
= 0x0102130405060708;
1094 if (y
!= 0x0506070800000000)
1097 x
= 0x0102130405060708;
1100 if (x
!= 0x0506070800000000)
1107 static uint dum_de_dum
= 1;
1108 public static int test_0_long_arg_opt ()
1110 return Foo (0x1234567887654321, dum_de_dum
);
1113 static int Foo (ulong x
, ulong y
)
1115 if (x
!= 0x1234567887654321)
1124 public static int test_0_long_ret_opt ()
1127 if (x
!= 0x1234567887654321)
1138 return 0x1234567887654321;
1146 /* from bug# 71515 */
1147 static int counter
= 0;
1148 static bool WriteStuff () {
1152 public static int test_0_cond_branch_side_effects () {
1162 public static int arg_only_written (string file_name
, int[]
1164 if (file_name
== null)
1173 public static int[] foo () {
1177 public static void bar (int i
) {
1181 public static int test_0_arg_only_written ()
1183 return arg_only_written ("md.in", null);
1186 static long position
= 0;
1188 public static int test_4_static_inc_long () {
1196 return (int)position
;
1201 public FooStruct (long l
) {
1205 public static int test_0_calls_opcode_emulation () {
1206 // Test that emulated opcodes do not clobber arguments already in
1210 new FooStruct (val
* 10000);
1215 public static int test_0_intrins_string_length () {
1218 return (s
.Length
== 3) ? 0 : 1;
1221 public static int test_0_intrins_string_chars () {
1224 return (s
[0] == 'A' && s
[1] == 'B' && s
[2] == 'C') ? 0 : 1;
1227 public static int test_0_intrins_object_gettype () {
1230 return (o
.GetType () == typeof (int)) ? 0 : 1;
1233 public static int test_0_intrins_object_gethashcode () {
1234 object o
= new Object ();
1236 return (o
.GetHashCode () == o
.GetHashCode ()) ? 0 : 1;
1242 public static int test_0_intrins_object_ctor () {
1243 object o
= new FooClass ();
1245 return (o
!= null) ? 0 : 1;
1248 public static int test_0_intrins_array_rank () {
1249 int[,] a
= new int [10, 10];
1251 return (a
.Rank
== 2) ? 0 : 1;
1254 public static int test_0_intrins_array_length () {
1255 int[,] a
= new int [10, 10];
1258 return (a2
.Length
== 100) ? 0 : 1;
1261 public static int test_0_intrins_runtimehelpers_offset_to_string_data () {
1262 int i
= RuntimeHelpers
.OffsetToStringData
;
1267 public static int test_0_intrins_string_setchar () {
1268 StringBuilder sb
= new StringBuilder ("ABC");
1272 return sb
.ToString () == "ADC" ? 0 : 1;
1282 public static int test_0_intrins_enum_hasflag () {
1283 var e
= FlagsEnum
.A
| FlagsEnum
.B
;
1285 if (!e
.HasFlag (FlagsEnum
.A
))
1287 if (!e
.HasFlag (FlagsEnum
.A
| FlagsEnum
.B
))
1289 if (!e
.HasFlag (FlagsEnum
.None
))
1291 if (e
.HasFlag (FlagsEnum
.C
))
1297 bool allowLocation
= true;
1301 public static int test_0_regress_78990_unaligned_structs () {
1307 public static unsafe int test_97_negative_index () {
1308 char[] arr
= new char[] {'a', 'b'}
;
1309 fixed (char *p
= arr
) {
1317 public static int test_0_unsigned_right_shift_imm0 () {
1319 byte[] data
= new byte[256];
1320 for (int i
= 0; i
< 1; i
++)
1321 temp
= (uint)(data
[temp
>> 24] | data
[temp
>> 0]);
1326 public virtual int foo () {
1331 sealed class Bar2
: Foo2
{
1332 public override int foo () {
1337 public static int test_0_abcrem_check_this_removal () {
1338 Bar2 b
= new Bar2 ();
1340 // The check_this generated here by the JIT should be removed
1346 static int invoke_twice (Bar2 b
) {
1348 // The check_this generated here by the JIT should be removed
1354 public static int test_0_abcrem_check_this_removal2 () {
1355 Bar2 b
= new Bar2 ();
1363 public static int test_0_array_access_64_bit () {
1364 int[] arr2
= new int [10];
1365 for (int i
= 0; i
< 10; ++i
)
1367 string s
= "ABCDEFGH";
1369 byte[] arr
= new byte [4];
1375 int len
= arr
[0] | (arr
[1] << 8) | (arr
[2] << 16) | (arr
[3] << 24);
1376 int len2
= - (len
+ 2);
1378 // Test array and string access with a 32 bit value whose upper 32 bits are
1381 if (arr2
[len2
] != 2)
1383 if (s
[len2
] != 'C')
1388 public static float return_float () {
1392 [Category ("!BITCODE")] // bug #59953
1393 public static int test_0_float_return_spill () {
1394 // The return value of return_float () is spilled because of the
1396 object o
= return_float ();
1397 float f
= return_float ();
1398 return (float)o
== f
? 0 : 1;
1402 public static float pi
= 3.14f
;
1404 public float float_field
;
1407 public static int test_0_ldsfld_soft_float () {
1408 if (R4Holder
.pi
== 3.14f
)
1414 public static int test_0_ldfld_stfld_soft_float () {
1415 R4Holder h
= new R4Holder ();
1416 h
.float_field
= 3.14f
;
1418 if (h
.float_field
== 3.14f
)
1424 class R4HolderRemote
: MarshalByRefObject
{
1425 public static float pi
= 3.14f
;
1427 public float float_field
;
1430 public static int test_0_ldfld_stfld_soft_float_remote () {
1431 R4HolderRemote h
= new R4HolderRemote ();
1432 h
.float_field
= 3.14f
;
1434 if (h
.float_field
== 3.14f
)
1440 public static int test_0_locals_soft_float () {
1456 static float pass_vtype_return_float (AStruct2 s
) {
1457 return s
.i
+ s
.j
== 6 ? 1.0f
: -1.0f
;
1460 public static int test_0_vtype_arg_soft_float () {
1461 return pass_vtype_return_float (new AStruct2 () { i = 2, j = 4 }
) > 0.0 ? 0 : 1;
1464 static int range_check_strlen (int i
, string s
) {
1465 if (i
< 0 || i
> s
.Length
)
1471 public static int test_0_range_check_opt () {
1472 if (range_check_strlen (0, "A") != 0)
1474 if (range_check_strlen (1, "A") != 0)
1476 if (range_check_strlen (2, "A") != 1)
1478 if (range_check_strlen (-100, "A") != 1)
1483 static int test_0_array_get_set_soft_float () {
1484 float[,] arr
= new float [2, 2];
1486 return arr
[0, 0] == 256f
? 0 : 1;
1490 struct Bug506915 { public int val; }
1491 static int test_2_ldobj_stobj_optization ()
1494 var a
= new Bug506915 ();
1495 var b
= new Bug506915 ();
1496 if (i
.GetHashCode () == 99)
1498 var array
= new Bug506915
[2];
1500 array
[1] = (i
== 0) ? a
: array
[0];
1502 return array
[1].val
;
1505 /* mcs can't compile this (#646744) */
1507 static void InitMe (out Gamma noMercyWithTheStack
) {
1508 noMercyWithTheStack
= new Gamma ();
1511 static int FunNoInline () {
1513 if (x
> 344 && x
< 22)
1518 static float DoNothingButDontInline (float a
, int b
) {
1521 else if (b
< 0 && b
> 10)
1527 * The local register allocator emits loadr8_membase and storer8_membase
1528 * to do spilling. This code is generated after mono_arch_lowering_pass so
1529 * mono_arch_output_basic_block must know how to deal with big offsets.
1530 * This only happens because the call in middle forces the temp for "(float)obj"
1533 public static int test_0_float_load_and_store_with_big_offset ()
1536 Gamma noMercyWithTheStack
;
1539 InitMe (out noMercyWithTheStack
);
1541 res
= DoNothingButDontInline ((float)obj
, FunNoInline ());
1553 static int vtype_phi (VTypePhi v1
, VTypePhi v2
, bool first
) {
1554 VTypePhi v
= first
? v1
: v2
;
1559 static int test_0_vtype_phi ()
1561 VTypePhi v1
= new VTypePhi () { i = 1 }
;
1562 VTypePhi v2
= new VTypePhi () { i = 2 }
;
1564 if (vtype_phi (v1
, v2
, true) != 1)
1566 if (vtype_phi (v1
, v2
, false) != 2)
1572 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1573 static void UseValue (int index
)
1577 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1578 static bool IsFalse ()
1583 static int test_0_llvm_moving_faulting_loads ()
1585 int[] indexes
= null;
1588 indexes
= new int[0];
1591 while (IsFalse ()) {
1592 UseValue (indexes
[0]);
1593 UseValue (indexes
[0]);
1599 public static bool flag
;
1603 internal static B
[] d
;
1610 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1611 static int regress_679467_inner () {
1620 * FIXME: This fails with AOT #703317.
1623 static int test_0_multiple_cctor_calls_regress_679467 () {
1625 return regress_679467_inner ();
1629 static int test_0_char_ctor () {
1630 string s
= new String (new char[] { 'A', 'B' }
, 0, 1);
1634 static object mInstance
= null;
1636 [MethodImpl(MethodImplOptions
.Synchronized
)]
1637 public static object getInstance() {
1638 if (mInstance
== null)
1639 mInstance
= new object();
1643 static int test_0_synchronized () {
1653 public static BStruct
foo () {
1654 return new BStruct () { t = typeof (T) }
;
1658 delegate BStruct
ADelegate ();
1660 static int test_0_regress_10601 () {
1661 var act
= (ADelegate
)(Del
<string>.foo
);
1663 if (b
.t
!= typeof (string))
1668 static int test_0_regress_11058 () {
1669 int foo
= -252674008;
1670 int foo2
= (int)(foo ^
0xF0F0F0F0); // = 28888
1671 var arr
= new byte[foo2
].Length
;
1675 public static void do_throw () {
1676 throw new Exception ();
1679 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1680 static void empty () {
1684 public static int test_0_llvm_inline_throw () {
1687 } catch (Exception
) {
1694 enum ByteEnum
: byte {
1708 public static int test_0_14217 () {
1709 t_14217_inner (new BugStruct ());
1713 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1714 static void t_14217_inner (BugStruct bug
) {
1717 [StructLayout(LayoutKind
.Sequential
)]
1718 public struct EmptyStruct
{
1722 public static EmptyStruct s
;
1726 static int test_0_empty_struct_as_static () {
1727 var s
= EmptyClass
.s
;
1732 static int test_0_int_to_r4 () {
1733 return int_to_r4_inner (255);
1736 static int int_to_r4_inner (int value1
) {
1738 float mult
= sub
* 1f
;
1739 if (mult
!= -255.0f
)
1746 public double a
, b
, c
, d
;
1749 static double arm64_hfa_on_stack_inner (double d1
, double d2
, double d3
, double d4
, double d5
, double d6
, double d7
, double d8
, HFA4D s
) {
1750 return s
.a
+ s
.b
+ s
.c
+ s
.d
;
1753 static int test_0_arm64_hfa_on_stack () {
1754 var s
= new HFA4D () { a = 1.0, b = 2.0, c = 3.0, d = 4.0 }
;
1755 var res
= arm64_hfa_on_stack_inner (1, 2, 3, 4, 5, 6, 7, 8, s
);
1756 return res
== 10.0 ? 0 : 1;
1760 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1761 public unsafe void EncodeIntoBuffer(char* value, int valueLength
, char* buffer
, int bufferLength
) {
1765 static unsafe int test_0_mul_ovf_regress_36052 () {
1766 var p
= new MulOvfClass ();
1768 string typeName
= typeof(int).Name
;
1769 int bufferSize
= 45;
1771 fixed (char* value = typeName
) {
1772 char* buffer
= stackalloc char[bufferSize
];
1773 p
.EncodeIntoBuffer(value, typeName
.Length
, buffer
, bufferSize
);
1779 public int a
, b
, c
, d
;
1782 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1783 static int pass_struct16 (object o0
, object o2
, object o3
, object o4
, object o5
, object o6
, object o7
, Struct16 o8
) {
1784 // This disables LLVM
1791 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1792 static int pass_struct16 (object o0
, object o2
, object o3
, object o6
, object o7
, Struct16 o8
) {
1793 return pass_struct16 (o0
, o2
, null, o3
, null, o6
, o7
, o8
);
1796 public static int test_42_pass_16byte_struct_split () {
1797 return pass_struct16 (null, null, null, null, null, new Struct16 () { a = 42 }
);
1800 public interface IComparer2
1805 public class AClass
: IComparer2
{
1806 public Type foo
<T
> () {
1811 public static int test_0_delegate_to_virtual_generic_on_ifaces () {
1812 IComparer2 c
= new AClass ();
1814 Func
<Type
> f
= c
.foo
<string>;
1815 return f () == typeof(string) ? 0 : 1;
1818 public enum ByteEnum2
: byte {
1822 [MethodImplAttribute (MethodImplOptions
.NoInlining
)]
1823 public static int enum_arg_zero_extend (ByteEnum2 b
) {
1827 public static int test_142_byte_enum_arg_zero_extend () {
1828 return enum_arg_zero_extend (ByteEnum2
.High
);
1831 enum Mine { One, Two }
1833 public static int test_0_enum_gethashcode_opt () {
1835 for (int i
= 0; i
< 1000000; ++i
)
1836 sum
+= Mine
.Two
.GetHashCode();
1841 public static int test_0_typedref () {
1843 System
.TypedReference r
= __makeref(i
);
1844 System
.Type t
= __reftype(r
);
1846 if (t
!= typeof (int))
1848 int j
= __refvalue(r
, int);
1853 object o
= __refvalue (r
, object);
1854 } catch (InvalidCastException
) {
1860 enum FooEnum { Bar }
1861 //https://github.com/mono/mono/issues/6666
1862 public static int test_0_bad_unbox_nullable_of_enum () {
1864 var enumValue
= FooEnum
.Bar
;
1865 object value = (int)enumValue
;
1866 var res
= (FooEnum
?)value; // Should throw
1867 } catch (InvalidCastException
) {
1873 //https://github.com/mono/mono/issues/6666
1874 public static int test_0_unbox_nullable_of_enum () {
1876 var enumValue
= FooEnum
.Bar
;
1877 object value = (object)enumValue
;
1878 var res
= (FooEnum
?)value; // Should not throw
1879 } catch (InvalidCastException
) {
1885 static void decode (out sbyte v
) {
1891 public static int test_0_alias_analysis_sign_extend () {
1895 return t
== -122 ? 0 : 1;
1898 public interface IFoo
1903 public class IFooImpl
: IFoo
1905 public int MyInt
=> 0;
1909 public static int test_0_store_to_magic_iface_array ()
1911 ICollection
<IFoo
> arr1
= new IFooImpl
[1] { new IFooImpl() }
;
1912 ICollection
<IFoo
> arr2
= new IFooImpl
[1] { new IFooImpl() }
;
1914 ICollection
<IFoo
>[] a2d
= new ICollection
<IFoo
>[2] {
1922 static volatile bool abool
;
1924 public static unsafe int test_0_stind_r4_float32_stack_merge () {
1925 Single
* dataPtr
= stackalloc Single
[4];
1927 dataPtr
[0] = abool
? 1.0f
: 2.0f
;
1928 return dataPtr
[0] == 1.0f
? 0 : 1;
1934 class BClass1
: AClass1
{
1940 public static int test_0_array_of_magic_iface () {
1941 // Need to make this an object otherwise csc removes the cast
1942 object d
= new [] { new [] { new BClass1 () }
};
1943 if (!(d
is IList
<AClass1
> []))
1945 if (d
is IList
<CClass1
> [])
1947 var e2
= (IList
<AClass1
> []) d
;