Merge pull request #2006 from steffen-kiess/posix-sockets-2
[mono.git] / mono / mini / objects.cs
1 using System;
2 using System.Text;
3 using System.Reflection;
4 using System.Runtime.InteropServices;
5 using System.Runtime.CompilerServices;
6
7 /*
8  * Regression tests for the mono JIT.
9  *
10  * Each test needs to be of the form:
11  *
12  * static int test_<result>_<name> ();
13  *
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.
17  *
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)
23  *
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
26  * the IL code looks.
27  */
28
29 #if __MOBILE__
30 namespace ObjectTests
31 {
32 #endif
33
34 struct Simple {
35         public int a;
36         public byte b;
37         public short c;
38         public long d;
39 }
40
41 struct Small {
42         public byte b1;
43         public byte b2;
44 }
45
46 // Size=2, Align=1
47 struct Foo {
48         bool b1;
49         bool b2;
50 }
51
52 struct Large {
53         int one;
54         int two;
55         long three;
56         long four;
57         int five;
58         long six;
59         int seven;
60         long eight;
61         long nine;
62         long ten;
63
64         public void populate ()
65         {
66                 one = 1; two = 2;
67                 three = 3; four = 4;
68                 five = 5; six = 6;
69                 seven = 7; eight = 8;
70                 nine = 9; ten = 10;
71         }
72         public bool check ()
73         {
74                 return one == 1  && two == 2  &&
75                         three == 3  && four == 4  &&
76                         five == 5  && six == 6  &&
77                         seven == 7  && eight == 8  &&
78                         nine == 9  && ten == 10;
79         }
80 }
81
82 class Sample {
83         public int a;
84         public Sample (int v) {
85                 a = v;
86         }
87 }
88
89 [StructLayout ( LayoutKind.Explicit )]
90 struct StructWithBigOffsets {
91                 [ FieldOffset(10000) ] public byte b;
92                 [ FieldOffset(10001) ] public sbyte sb;
93                 [ FieldOffset(11000) ] public short s;
94                 [ FieldOffset(11002) ] public ushort us;
95                 [ FieldOffset(12000) ] public uint i;
96                 [ FieldOffset(12004) ] public int si;
97                 [ FieldOffset(13000) ] public long l;
98                 [ FieldOffset(14000) ] public float f;
99                 [ FieldOffset(15000) ] public double d;
100 }
101
102 enum SampleEnum {
103         A,
104         B,
105         C
106 }
107
108 struct Alpha {
109         public long a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
110 }
111
112 struct Beta {
113         public Alpha a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
114 }
115
116 struct Gamma {
117         public Beta a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v;
118 }
119
120 class Tests {
121
122 #if !__MOBILE__
123         public static int Main (string[] args) {
124                 return TestDriver.RunTests (typeof (Tests), args);
125         }
126 #endif
127         
128         public static int test_0_return () {
129                 Simple s;
130                 s.a = 1;
131                 s.b = 2;
132                 s.c = (short)(s.a + s.b);
133                 s.d = 4;
134                 return s.a - 1;
135         }
136
137         public static int test_0_string_access () {
138                 string s = "Hello";
139                 if (s [1] != 'e')
140                         return 1;
141                 return 0;
142         }
143
144         public static int test_0_string_virtual_call () {
145                 string s = "Hello";
146                 string s2 = s.ToString ();
147                 if (s2 [1] != 'e')
148                         return 1;
149                 return 0;
150         }
151
152         public static int test_0_iface_call () {
153                 string s = "Hello";
154                 object o = ((ICloneable)s).Clone ();
155                 return 0;
156         }
157
158         public static int test_5_newobj () {
159                 Sample s = new Sample (5);
160                 return s.a;
161         }
162
163         public static int test_4_box () {
164                 object obj = 4;
165                 return (int)obj;
166         }
167
168         public static int test_0_enum_unbox () {
169                 SampleEnum x = SampleEnum.A;
170                 object o = x;
171                 
172                 int res = 1;
173
174                 res = (int)o;
175                 
176                 return res;
177         }
178         
179         static Simple get_simple (int v) {
180                 Simple r = new Simple ();
181                 r.a = v;
182                 r.b = (byte)(v + 1);
183                 r.c = (short)(v + 2);
184                 r.d = v + 3;
185
186                 return r;
187         }
188
189         public static int test_3_return_struct () {
190                 Simple v = get_simple (1);
191
192                 if (v.a != 1)
193                         return 0;
194                 if (v.b != 2)
195                         return 0;
196                 if (v.c != 3)
197                         return 0;
198                 if (v.d != 4)
199                         return 0;
200                 return 3;
201         }
202
203         public virtual Simple v_get_simple (int v)
204         {
205                 return get_simple (v);
206         }
207         
208         public static int test_2_return_struct_virtual () {
209                 Tests t = new Tests ();
210                 Simple v = t.v_get_simple (2);
211
212                 if (v.a != 2)
213                         return 0;
214                 if (v.b != 3)
215                         return 0;
216                 if (v.c != 4)
217                         return 0;
218                 if (v.d != 5)
219                         return 0;
220                 return 2;
221         }
222
223         static int receive_simple (int a, Simple v, int b) {
224                 if (v.a != 1)
225                         return 1;
226                 if (v.b != 2)
227                         return 2;
228                 if (v.c != 3)
229                         return 3;
230                 if (v.d != 4)
231                         return 4;
232                 if (a != 7)
233                         return 5;
234                 if (b != 9)
235                         return 6;
236                 return 0;
237         }
238         
239         public static int test_5_pass_struct () {
240                 Simple v = get_simple (1);
241                 if (receive_simple (7, v, 9) != 0)
242                         return 0;
243                 if (receive_simple (7, get_simple (1), 9) != 0)
244                         return 1;
245                 return 5;
246         }
247
248         static Simple s_v;
249         public static int test_5_pass_static_struct () {
250                 s_v = get_simple (1);
251                 if (receive_simple (7, s_v, 9) != 0)
252                         return 0;
253                 return 5;
254         }
255
256         // Test alignment of small structs
257
258         static Small get_small (byte v) {
259                 Small r = new Small ();
260         
261                 r.b1 = v;
262                 r.b2 = (byte)(v + 1);
263
264                 return r;
265         }
266
267         static Small return_small (Small s) {
268                 return s;
269         }
270
271         static int receive_small (int a, Small v, int b) {
272                 if (v.b1 != 1)
273                         return 1;
274                 if (v.b2 != 2)
275                         return 2;
276                 return 0;
277         }
278
279         static int receive_small_sparc_many_args (int a, int a2, int a3, int a4, int a5, int a6, Small v, int b) {
280                 if (v.b1 != 1)
281                         return 1;
282                 if (v.b2 != 2)
283                         return 2;
284                 return 0;
285         }
286
287         public static int test_5_pass_small_struct () {
288                 Small v = get_small (1);
289                 if (receive_small (7, v, 9) != 0)
290                         return 0;
291                 if (receive_small (7, get_small (1), 9) != 0)
292                         return 1;
293                 if (receive_small_sparc_many_args (1, 2, 3, 4, 5, 6, v, 9) != 0)
294                         return 2;
295                 v = return_small (v);
296                 if (v.b1 != 1)
297                         return 3;
298                 if (v.b2 != 2)
299                         return 4;
300                 return 5;
301         }
302
303         // 64-bits, 32-bit aligned
304         struct struct1 {
305                 public int      a;
306                 public int      b;
307         };
308
309         static int check_struct1(struct1 x) {
310                 if (x.a != 1)
311                         return 1;
312                 if (x.b != 2)
313                         return 2;
314                 return 0;
315         }
316
317         static int pass_struct1(int a, int b, struct1 x) {
318                 if (a != 3)
319                         return 3;
320                 if (b != 4)
321                         return 4;
322                 return check_struct1(x);
323         }
324
325         static int pass_struct1(int a, struct1 x) {
326                 if (a != 3)
327                         return 3;
328                 return check_struct1(x);
329         }
330
331         static int pass_struct1(struct1 x) {
332                 return check_struct1(x);
333         }
334
335         public static int test_0_struct1_args () {
336                 int r;
337                 struct1 x;
338
339                 x.a = 1;
340                 x.b = 2;
341                 if ((r = check_struct1(x)) != 0)
342                         return r;
343                 if ((r = pass_struct1(x)) != 0)
344                         return r + 10;
345                 if ((r = pass_struct1(3, x)) != 0)
346                         return r + 20;
347                 if ((r = pass_struct1(3, 4, x)) != 0)
348                         return r + 30;
349                 return 0;
350         }
351
352         // 64-bits, 64-bit aligned
353         struct struct2 {
354                 public long     a;
355         };
356
357         static int check_struct2(struct2 x) {
358                 if (x.a != 1)
359                         return 1;
360                 return 0;
361         }
362
363         static int pass_struct2(int a, int b, int c, struct2 x) {
364                 if (a != 3)
365                         return 3;
366                 if (b != 4)
367                         return 4;
368                 if (c != 5)
369                         return 5;
370                 return check_struct2(x);
371         }
372
373         static int pass_struct2(int a, int b, struct2 x) {
374                 if (a != 3)
375                         return 3;
376                 if (b != 4)
377                         return 4;
378                 return check_struct2(x);
379         }
380
381         static int pass_struct2(int a, struct2 x) {
382                 if (a != 3)
383                         return 3;
384                 return check_struct2(x);
385         }
386
387         static int pass_struct2(struct2 x) {
388                 return check_struct2(x);
389         }
390
391         public static int test_0_struct2_args () {
392                 int r;
393                 struct2 x;
394
395                 x.a = 1;
396                 if ((r = check_struct2(x)) != 0)
397                         return r;
398                 if ((r = pass_struct2(x)) != 0)
399                         return r + 10;
400                 if ((r = pass_struct2(3, x)) != 0)
401                         return r + 20;
402                 if ((r = pass_struct2(3, 4, x)) != 0)
403                         return r + 30;
404                 if ((r = pass_struct2(3, 4, 5, x)) != 0)
405                         return r + 40;
406                 return 0;
407         }
408
409         // 128 bits
410         struct Struct3 {
411                 public long i, j, k, l;
412         }
413
414         static int pass_struct3 (int i, int j, int k, int l, int m, int n, int o, int p, Struct3 s, int q) {
415                 if (s.i + s.j + s.k + s.l != 10)
416                         return 1;
417                 else
418                         return 0;
419         }
420
421         public static int test_0_struct3_args () {
422                 Struct3 s = new Struct3 ();
423                 s.i = 1;
424                 s.j = 2;
425                 s.k = 3;
426                 s.l = 4;
427
428                 return pass_struct3 (1, 2, 3, 4, 5, 6, 7, 8, s, 9);
429         }
430
431         // Struct with unaligned size on 64 bit machines
432         struct Struct4 {
433         public int i, j, k, l, m;
434                 public int i1, i2, i3, i4, i5, i6;
435         }
436
437         static int pass_struct4 (Struct4 s) {
438                 if (s.i + s.j + s.k + s.l + s.m != 15)
439                         return 1;
440                 else
441                         return 0;
442         }
443
444         public static int test_0_struct4_args () {
445                 Struct4 s = new Struct4 ();
446                 s.i = 1;
447                 s.j = 2;
448                 s.k = 3;
449                 s.l = 4;
450                 s.m = 5;
451
452                 return pass_struct4 (s);
453         }
454
455
456
457         struct AStruct {
458                 public int i;
459
460                 public AStruct (int i) {
461                         this.i = i;
462                 }
463
464                 public override int GetHashCode () {
465                         return i;
466                 }
467         }
468
469         // Test that vtypes are unboxed during a virtual call
470         public static int test_44_unbox_trampoline () {
471                 AStruct s = new AStruct (44);
472                 object o = s;
473                 return o.GetHashCode ();
474         }
475
476         public static int test_0_unbox_trampoline2 () {
477                 int i = 12;
478                 object o = i;
479                         
480                 if (i.ToString () != "12")
481                         return 1;
482                 if (((Int32)o).ToString () != "12")
483                         return 2;
484                 if (o.ToString () != "12")
485                         return 3;
486                 return 0;
487         }
488
489         // Test fields with big offsets
490         public static int test_0_fields_with_big_offsets () {
491                 StructWithBigOffsets s = new StructWithBigOffsets ();
492                 StructWithBigOffsets s2 = new StructWithBigOffsets ();
493
494                 s.b = 0xde;
495                 s.sb = 0xe;
496                 s.s = 0x12de;
497                 s.us = 0x12da;
498                 s.i = 0xdeadbeef;
499                 s.si = 0xcafe;
500                 s.l = 0xcafebabe;
501                 s.f = 3.14F;
502                 s.d = 3.14;
503
504                 s2.b = s.b;
505                 s2.sb = s.sb;
506                 s2.s = s.s;
507                 s2.us = s.us;
508                 s2.i = s.i;
509                 s2.si = s.si;
510                 s2.l = s.l;
511                 s2.f = s.f;
512                 s2.d = s.d;
513
514                 if (s2.b != 0xde)
515                         return 1;
516                 if (s2.s != 0x12de)
517                         return 2;
518                 if (s2.i != 0xdeadbeef)
519                         return 3;
520                 if (s2.l != 0xcafebabe)
521                         return 4;
522                 if (s2.f != 3.14F)
523                         return 5;
524                 if (s2.d != 3.14)
525                         return 6;
526                 if (s2.sb != 0xe)
527                         return 7;
528                 if (s2.us != 0x12da)
529                         return 9;
530                 if (s2.si != 0xcafe)
531                         return 10;
532
533                 return 0;
534         }
535
536         class TestRegA {
537
538                 long buf_start;
539                 int buf_length, buf_offset;
540
541                 public TestRegA () {
542                         buf_start = 0;
543                         buf_length = 0;
544                         buf_offset = 0;
545                 }
546         
547                 public long Seek (long position) {
548                         long pos = position;
549                         /* interaction between the register allocator and
550                          * allocating arguments to registers */
551                         if (pos >= buf_start && pos <= buf_start + buf_length) {
552                                 buf_offset = (int) (pos - buf_start);
553                                 return pos;
554                         }
555                         return buf_start;
556                 }
557
558         }
559
560         public static int test_0_seektest () {
561                 TestRegA t = new TestRegA ();
562                 return (int)t.Seek (0);
563         }
564
565         class Super : ICloneable {
566                 public virtual object Clone () {
567                         return null;
568                 }
569         }
570         class Duper: Super {
571         }
572
573         public static int test_0_null_cast () {
574                 object o = null;
575
576                 Super s = (Super)o;
577
578                 return 0;
579         }
580         
581         public static int test_0_super_cast () {
582                 Duper d = new Duper ();
583                 Super sup = d;
584                 Object o = d;
585
586                 if (!(o is Super))
587                         return 1;
588                 try {
589                         d = (Duper)sup;
590                 } catch {
591                         return 2;
592                 }
593                 if (!(d is Object))
594                         return 3;
595                 try {
596                         d = (Duper)(object)sup;
597                 } catch {
598                         return 4;
599                 }
600                 return 0;
601         }
602
603         public static int test_0_super_cast_array () {
604                 Duper[] d = new Duper [0];
605                 Super[] sup = d;
606                 Object[] o = d;
607
608                 if (!(o is Super[]))
609                         return 1;
610                 try {
611                         d = (Duper[])sup;
612                 } catch {
613                         return 2;
614                 }
615                 if (!(d is Object[]))
616                         return 3;
617                 try {
618                         d = (Duper[])(object[])sup;
619                 } catch {
620                         return 4;
621                 }
622                 return 0;
623         }
624
625         public static int test_0_multi_array_cast () {
626                 Duper[,] d = new Duper [1, 1];
627                 object[,] o = d;
628
629                 try {
630                         o [0, 0] = new Super ();
631                         return 1;
632                 }
633                 catch (ArrayTypeMismatchException) {
634                 }
635
636                 return 0;
637         }
638
639         public static int test_0_vector_array_cast () {
640                 Array arr1 = Array.CreateInstance (typeof (int), new int[] {1}, new int[] {0});
641                 Array arr2 = Array.CreateInstance (typeof (int), new int[] {1}, new int[] {10});
642
643                 if (arr1.GetType () != typeof (int[]))
644                         return 1;
645
646                 if (arr2.GetType () == typeof (int[]))
647                         return 2;
648
649                 int[] b;
650
651                 b = (int[])arr1;
652
653                 try {
654                         b = (int[])arr2;
655                         return 3;
656                 }
657                 catch (InvalidCastException) {
658                 }
659
660                 if (arr2 is int[])
661                         return 4;
662
663                 int [,] [] arr3 = new int [1, 1] [];
664                 object o = arr3;
665                 int [,] [] arr4 = (int [,] [])o;
666
667                 return 0;
668         }
669
670         public static int test_0_enum_array_cast () {
671                 TypeCode[] tc = new TypeCode [0];
672                 object[] oa;
673                 ValueType[] vta;
674                 int[] inta;
675                 Array a = tc;
676                 bool ok;
677
678                 if (a is object[])
679                         return 1;
680                 if (a is ValueType[])
681                         return 2;
682                 if (a is Enum[])
683                         return 3;
684                 try {
685                         ok = false;
686                         oa = (object[])a;
687                 } catch {
688                         ok = true;
689                 }
690                 if (!ok)
691                         return 4;
692                 try {
693                         ok = false;
694                         vta = (ValueType[])a;
695                 } catch {
696                         ok = true;
697                 }
698                 if (!ok)
699                         return 5;
700                 try {
701                         ok = true;
702                         inta = (int[])a;
703                 } catch {
704                         ok = false;
705                 }
706                 if (!ok)
707                         return 6;
708                 return 0;
709         }
710
711         public static int test_0_more_cast_corner_cases () {
712                 ValueType[] vta = new ValueType [0];
713                 Enum[] ea = new Enum [0];
714                 Array a = vta;
715                 object[] oa;
716                 bool ok;
717
718                 if (!(a is object[]))
719                         return 1;
720                 if (!(a is ValueType[]))
721                         return 2;
722                 if (a is Enum[])
723                         return 3;
724                 a = ea;
725                 if (!(a is object[]))
726                         return 4;
727                 if (!(a is ValueType[]))
728                         return 5;
729                 if (!(a is Enum[]))
730                         return 6;
731
732                 try {
733                         ok = true;
734                         oa = (object[])a;
735                 } catch {
736                         ok = false;
737                 }
738                 if (!ok)
739                         return 7;
740         
741                 try {
742                         ok = true;
743                         oa = (Enum[])a;
744                 } catch {
745                         ok = false;
746                 }
747                 if (!ok)
748                         return 8;
749         
750                 try {
751                         ok = true;
752                         oa = (ValueType[])a;
753                 } catch {
754                         ok = false;
755                 }
756                 if (!ok)
757                         return 9;
758
759                 a = vta;
760                 try {
761                         ok = true;
762                         oa = (object[])a;
763                 } catch {
764                         ok = false;
765                 }
766                 if (!ok)
767                         return 10;
768         
769                 try {
770                         ok = true;
771                         oa = (ValueType[])a;
772                 } catch {
773                         ok = false;
774                 }
775                 if (!ok)
776                         return 11;
777         
778                 try {
779                         ok = false;
780                         vta = (Enum[])a;
781                 } catch {
782                         ok = true;
783                 }
784                 if (!ok)
785                         return 12;
786                 return 0;
787         }
788
789         public static int test_0_cast_iface_array () {
790                 object o = new ICloneable [0];
791                 object o2 = new Duper [0];
792                 object t;
793                 bool ok;
794
795                 if (!(o is object[]))
796                         return 1;
797                 if (!(o2 is ICloneable[]))
798                         return 2;
799
800                 try {
801                         ok = true;
802                         t = (object[])o;
803                 } catch {
804                         ok = false;
805                 }
806                 if (!ok)
807                         return 3;
808         
809                 try {
810                         ok = true;
811                         t = (ICloneable[])o2;
812                 } catch {
813                         ok = false;
814                 }
815                 if (!ok)
816                         return 4;
817
818                 try {
819                         ok = true;
820                         t = (ICloneable[])o;
821                 } catch {
822                         ok = false;
823                 }
824                 if (!ok)
825                         return 5;
826
827                 if (!(o is ICloneable[]))
828                         return 6;
829
830                 /* add tests for interfaces that 'inherit' interfaces */
831                 return 0;
832         }
833
834         private static int[] daysmonthleap = { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
835
836         private static int AbsoluteDays (int year, int month, int day)
837         {
838                 int temp = 0, m = 1;
839                 int[] days = daysmonthleap;
840                 while (m < month)
841                         temp += days[m++];
842                 return ((day-1) + temp + (365* (year-1)) + ((year-1)/4) - ((year-1)/100) + ((year-1)/400));
843         }
844
845         public static int test_719162_complex_div () {
846                 int adays = AbsoluteDays (1970, 1, 1);
847                 return adays;
848         }
849
850         delegate int GetIntDel ();
851
852         static int return4 () {
853                 return 4;
854         }
855
856         int return5 () {
857                 return 5;
858         }
859
860         public static int test_2_static_delegate () {
861                 GetIntDel del = new GetIntDel (return4);
862                 int v = del ();
863                 if (v != 4)
864                         return 0;
865                 return 2;
866         }
867
868         public static int test_2_instance_delegate () {
869                 Tests t = new Tests ();
870                 GetIntDel del = new GetIntDel (t.return5);
871                 int v = del ();
872                 if (v != 5)
873                         return 0;
874                 return 2;
875         }
876
877         public static int test_1_store_decimal () {
878                 decimal[,] a = {{1}};
879
880                 if (a[0,0] != 1m)
881                         return 0;
882                 return 1;
883         }
884
885         public static int test_2_intptr_stobj () {
886                 System.IntPtr [] arr = { new System.IntPtr () };
887
888                 if (arr [0] != (System.IntPtr)0)
889                         return 1;
890                 return 2;
891         }
892
893         static int llmult (int a, int b, int c, int d) {
894                 return a + b + c + d;
895         }
896
897         /* 
898          * Test that evaluation of complex arguments does not overwrite the
899          * arguments already in outgoing registers.
900          */
901         public static int test_155_regalloc () {
902                 int a = 10;
903                 int b = 10;
904
905                 int c = 0;
906                 int d = 0;
907                 int[] arr = new int [5];
908
909                 return llmult (arr [c + d], 150, 5, 0);
910         }
911
912         static bool large_struct_test (Large a, Large b, Large c, Large d)
913         {
914                 if (!a.check ()) return false;
915                 if (!b.check ()) return false;
916                 if (!c.check ()) return false;
917                 if (!d.check ()) return false;
918                 return true;
919         }
920
921         public static int test_2_large_struct_pass ()
922         {
923                 Large a, b, c, d;
924                 a = new Large ();
925                 b = new Large ();
926                 c = new Large ();
927                 d = new Large ();
928                 a.populate ();
929                 b.populate ();
930                 c.populate ();
931                 d.populate ();
932                 if (large_struct_test (a, b, c, d))
933                         return 2;
934                 return 0;
935         }
936
937         public static unsafe int test_0_pin_string () {
938                 string x = "xxx";
939                 fixed (char *c = x) {
940                         if (*c != 'x')
941                                 return 1;
942                 }
943                 return 0;
944         }
945         
946         public static int my_flags;
947         public static int test_0_and_cmp_static ()
948         {
949                 
950                 /* various forms of test [mem], imm */
951                 
952                 my_flags = 0x01020304;
953                 
954                 if ((my_flags & 0x01020304) == 0)
955                         return 1;
956                 
957                 if ((my_flags & 0x00000304) == 0)
958                         return 2;
959                 
960                 if ((my_flags & 0x00000004) == 0)
961                         return 3;
962                 
963                 if ((my_flags & 0x00000300) == 0)
964                         return 4;
965                 
966                 if ((my_flags & 0x00020000) == 0)
967                         return 5;
968                 
969                 if ((my_flags & 0x01000000) == 0)
970                         return 6;
971                 
972                 return 0;
973         }
974         
975         static byte b;
976         public static int test_0_byte_compares ()
977         {
978                 b = 0xff;
979                 if (b == -1)
980                         return 1;
981                 b = 0;
982                 if (!(b < System.Byte.MaxValue))
983                         return 2;
984                 
985                 if (!(b <= System.Byte.MaxValue))
986                         return 3;
987                 
988                 return 0;
989         }
990
991         public static int test_71_long_shift_right () {
992                 ulong value = 38654838087;
993                 int x = 0;
994                 byte [] buffer = new byte [1];
995                 buffer [x] = ((byte)(value >> x));
996                 return buffer [x];
997         }
998         
999         static long x;
1000         public static int test_0_addsub_mem ()
1001         {
1002                 x = 0;
1003                 x += 5;
1004                 
1005                 if (x != 5)
1006                         return 1;
1007                 
1008                 x -= 10;
1009                 
1010                 if (x != -5)
1011                         return 2;
1012                 
1013                 return 0;
1014         }
1015         
1016         static ulong y;
1017         public static int test_0_sh32_mem ()
1018         {
1019                 y = 0x0102130405060708;
1020                 y >>= 32;
1021                 
1022                 if (y != 0x01021304)
1023                         return 1;
1024                 
1025                 y = 0x0102130405060708;
1026                 y <<= 32;
1027                 
1028                 if (y != 0x0506070800000000)
1029                         return 2;
1030                 
1031                 x = 0x0102130405060708;
1032                 x <<= 32;
1033                 
1034                 if (x != 0x0506070800000000)
1035                         return 2;
1036                 
1037                 return 0;
1038         }
1039
1040
1041         static uint dum_de_dum = 1;
1042         public static int test_0_long_arg_opt ()
1043         {
1044                 return Foo (0x1234567887654321, dum_de_dum);
1045         }
1046         
1047         static int Foo (ulong x, ulong y)
1048         {
1049                 if (x != 0x1234567887654321)
1050                         return 1;
1051                 
1052                 if (y != 1)
1053                         return 2;
1054                 
1055                 return 0;
1056         }
1057         
1058         public static int test_0_long_ret_opt ()
1059         {
1060                 ulong x = X ();
1061                 if (x != 0x1234567887654321)
1062                         return 1;
1063                 ulong y = Y ();
1064                 if (y != 1)
1065                         return 2;
1066                 
1067                 return 0;
1068         }
1069         
1070         static ulong X ()
1071         {
1072                 return 0x1234567887654321;
1073         }
1074         
1075         static ulong Y ()
1076         {
1077                 return dum_de_dum;
1078         }
1079
1080         /* from bug# 71515 */
1081         static int counter = 0;
1082         static bool WriteStuff () {
1083                 counter = 10;
1084                 return true;
1085         }
1086         public static int test_0_cond_branch_side_effects () {
1087                 counter = 5;
1088                 if (WriteStuff()) {
1089                 }
1090                 if (counter == 10)
1091                         return 0;
1092                 return 1;
1093         }
1094
1095         // bug #74992
1096         public static int arg_only_written (string file_name, int[]
1097 ncells ) {
1098                 if (file_name == null)
1099                         return 1;
1100
1101                 ncells = foo ();
1102                 bar (ncells [0]);
1103
1104                 return 0;
1105         }
1106
1107         public static int[] foo () {
1108                 return new int [3];
1109         }
1110
1111         public static void bar (int i) {
1112         }
1113         
1114
1115         public static int test_0_arg_only_written ()
1116         {
1117                 return arg_only_written ("md.in", null);
1118         }               
1119
1120         static long position = 0;
1121
1122         public static int test_4_static_inc_long () {
1123
1124                 int count = 4;
1125
1126                 position = 0;
1127
1128                 position += count;
1129
1130                 return (int)position;
1131         }
1132
1133         struct FooStruct {
1134
1135                 public FooStruct (long l) {
1136                 }
1137         }
1138
1139         public static int test_0_calls_opcode_emulation () {
1140                 // Test that emulated opcodes do not clobber arguments already in
1141                 // out registers
1142                 checked {
1143                         long val = 10000;
1144                         new FooStruct (val * 10000);
1145                 }
1146                 return 0;
1147         }
1148
1149         public static int test_0_intrins_string_length () {
1150                 string s = "ABC";
1151
1152                 return (s.Length == 3) ? 0 : 1;
1153         }
1154
1155         public static int test_0_intrins_string_chars () {
1156                 string s = "ABC";
1157
1158                 return (s [0] == 'A' && s [1] == 'B' && s [2] == 'C') ? 0 : 1;
1159         }
1160
1161         public static int test_0_intrins_object_gettype () {
1162                 object o = 1;
1163
1164                 return (o.GetType () == typeof (int)) ? 0 : 1;
1165         }
1166
1167         public static int test_0_intrins_object_gethashcode () {
1168                 object o = new Object ();
1169
1170                 return (o.GetHashCode () == o.GetHashCode ()) ? 0 : 1;
1171         }
1172
1173         class FooClass {
1174         }
1175
1176         public static int test_0_intrins_object_ctor () {
1177                 object o = new FooClass ();
1178
1179                 return (o != null) ? 0 : 1;
1180         }
1181
1182         public static int test_0_intrins_array_rank () {
1183                 int[,] a = new int [10, 10];
1184
1185                 return (a.Rank == 2) ? 0 : 1;
1186         }
1187
1188         public static int test_0_intrins_array_length () {
1189                 int[,] a = new int [10, 10];
1190                 Array a2 = a;
1191
1192                 return (a2.Length == 100) ? 0 : 1;
1193         }
1194
1195         public static int test_0_intrins_runtimehelpers_offset_to_string_data () {
1196                 int i = RuntimeHelpers.OffsetToStringData;
1197                 
1198                 return i - i;
1199         }
1200
1201         public static int test_0_intrins_string_setchar () {
1202                 StringBuilder sb = new StringBuilder ("ABC");
1203
1204                 sb [1] = 'D';
1205
1206                 return sb.ToString () == "ADC" ? 0 : 1;
1207         }
1208
1209         public class Bar {
1210                 bool allowLocation = true;
1211         Foo f = new Foo ();     
1212         }
1213
1214         public static int test_0_regress_78990_unaligned_structs () {
1215                 new Bar ();
1216
1217                 return 0;
1218         }
1219
1220         public static unsafe int test_97_negative_index () {
1221                 char[] arr = new char[] {'a', 'b'};
1222                 fixed (char *p = arr) {
1223                         char *i = p + 2;
1224                         char a = i[-2];
1225                         return a;
1226                 }
1227         }
1228
1229         /* bug #82281 */
1230         public static int test_0_unsigned_right_shift_imm0 () {
1231                 uint temp = 0;
1232                 byte[] data = new byte[256];
1233                 for (int i = 0; i < 1; i ++)
1234                         temp = (uint)(data[temp >> 24] | data[temp >> 0]);
1235                 return 0;
1236         }
1237
1238         class Foo2 {
1239                 public virtual int foo () {
1240                         return 0;
1241                 }
1242         }
1243
1244         sealed class Bar2 : Foo2 {
1245                 public override int foo () {
1246                         return 0;
1247                 }
1248         }
1249
1250         public static int test_0_abcrem_check_this_removal () {
1251                 Bar2 b = new Bar2 ();
1252
1253                 // The check_this generated here by the JIT should be removed
1254                 b.foo ();
1255
1256                 return 0;
1257         }
1258
1259         static int invoke_twice (Bar2 b) {
1260                 b.foo ();
1261                 // The check_this generated here by the JIT should be removed
1262                 b.foo ();
1263
1264                 return 0;
1265         }
1266
1267         public static int test_0_abcrem_check_this_removal2 () {
1268                 Bar2 b = new Bar2 ();
1269
1270                 invoke_twice (b);
1271
1272                 return 0;
1273         }
1274
1275         /* #346563 */
1276         public static int test_0_array_access_64_bit () {
1277                 int[] arr2 = new int [10];
1278                 for (int i = 0; i < 10; ++i)
1279                         arr2 [i] = i;
1280                 string s = "ABCDEFGH";
1281
1282                 byte[] arr = new byte [4];
1283                 arr [0] = 252;
1284                 arr [1] = 255;
1285                 arr [2] = 255;
1286                 arr [3] = 255;
1287
1288                 int len = arr [0] | (arr [1] << 8) | (arr [2] << 16) | (arr [3] << 24);
1289                 int len2 = - (len + 2);
1290
1291                 // Test array and string access with a 32 bit value whose upper 32 bits are
1292                 // undefined
1293                 // len2 = 3
1294                 if (arr2 [len2] != 2)
1295                         return 1;
1296                 if (s [len2] != 'C')
1297                         return 2;
1298                 return 0;
1299         }
1300
1301         public static float return_float () {
1302                 return 1.4e-45f;
1303         }
1304
1305         public static int test_0_float_return_spill () {
1306                 // The return value of return_float () is spilled because of the
1307                 // boxing call
1308                 object o = return_float ();
1309                 float f = return_float ();
1310                 return (float)o == f ? 0 : 1;
1311         }
1312
1313         class R4Holder {
1314                 public static float pi = 3.14f;
1315
1316                 public float float_field;
1317         }
1318
1319         public static int test_0_ldsfld_soft_float () {
1320                 if (R4Holder.pi == 3.14f)
1321                         return 0;
1322                 else
1323                         return 1;
1324         }
1325
1326         public static int test_0_ldfld_stfld_soft_float () {
1327                 R4Holder h = new R4Holder ();
1328                 h.float_field = 3.14f;
1329
1330                 if (h.float_field == 3.14f)
1331                         return 0;
1332                 else
1333                         return 1;
1334         }
1335
1336         class R4HolderRemote : MarshalByRefObject {
1337                 public static float pi = 3.14f;
1338
1339                 public float float_field;
1340         }
1341
1342         public static int test_0_ldfld_stfld_soft_float_remote () {
1343                 R4HolderRemote h = new R4HolderRemote ();
1344                 h.float_field = 3.14f;
1345
1346                 if (h.float_field == 3.14f)
1347                         return 0;
1348                 else
1349                         return 1;
1350         }
1351
1352         public static int test_0_locals_soft_float () {
1353                 float f = 0.0f;
1354                 
1355                 f = 3.14f;
1356
1357                 if (f == 3.14f)
1358                         return 0;
1359                 else
1360                         return 1;
1361         }
1362
1363         struct AStruct2 {
1364                 public int i;
1365                 public int j;
1366         }
1367
1368         static float pass_vtype_return_float (AStruct2 s) {
1369                 return s.i + s.j == 6 ? 1.0f : -1.0f;
1370         }
1371
1372         public static int test_0_vtype_arg_soft_float () {
1373                 return pass_vtype_return_float (new AStruct2 () { i = 2, j = 4 }) > 0.0 ? 0 : 1;
1374         }
1375
1376         static int range_check_strlen (int i, string s) {
1377                 if (i < 0 || i > s.Length)
1378                         return 1;
1379                 else
1380                         return 0;
1381         }
1382                 
1383         public static int test_0_range_check_opt () {
1384                 if (range_check_strlen (0, "A") != 0)
1385                         return 1;
1386                 if (range_check_strlen (1, "A") != 0)
1387                         return 2;
1388                 if (range_check_strlen (2, "A") != 1)
1389                         return 3;
1390                 if (range_check_strlen (-100, "A") != 1)
1391                         return 4;
1392                 return 0;
1393         }
1394
1395         static int test_0_array_get_set_soft_float () {
1396                 float[,] arr = new float [2, 2];
1397                 arr [0, 0] = 256f;
1398                 return arr [0, 0] == 256f ? 0 : 1;
1399         }
1400
1401         //repro for #506915
1402         struct Bug506915 { public int val; }
1403         static int test_2_ldobj_stobj_optization ()
1404         {
1405                 int i = 99;
1406                 var a = new Bug506915 ();
1407                 var b = new Bug506915 ();
1408                 if (i.GetHashCode () == 99)
1409                         i = 44;
1410                 var array = new Bug506915 [2];
1411                 array [0].val = 2;
1412                 array [1] = (i == 0) ? a : array [0];
1413                 
1414                 return array [1].val;
1415         }
1416
1417         /* mcs can't compile this (#646744) */
1418 #if FALSE
1419         static void InitMe (out Gamma noMercyWithTheStack) {
1420                 noMercyWithTheStack = new Gamma ();
1421         }
1422
1423         static int FunNoInline () {
1424                 int x = 99;
1425                 if (x > 344 && x < 22)
1426                         return 333;
1427                 return x;
1428         }
1429
1430         static float DoNothingButDontInline (float a, int b) {
1431                 if (b > 0)
1432                         return a;
1433                 else if (b < 0 && b > 10)
1434                         return 444.0f;
1435                 return a;
1436         }
1437
1438         /*
1439          * The local register allocator emits loadr8_membase and storer8_membase
1440          * to do spilling. This code is generated after mono_arch_lowering_pass so
1441          * mono_arch_output_basic_block must know how to deal with big offsets.
1442          * This only happens because the call in middle forces the temp for "(float)obj"
1443          * to be spilled.
1444         */
1445         public static int test_0_float_load_and_store_with_big_offset ()
1446         {
1447                 object obj = 1.0f;
1448                 Gamma noMercyWithTheStack;
1449                 float res;
1450
1451                 InitMe (out noMercyWithTheStack);
1452
1453                 res = DoNothingButDontInline ((float)obj, FunNoInline ());
1454
1455                 if (!(res == 1.0f))
1456                         return 1;
1457                 return 0;
1458         }
1459 #endif
1460
1461         struct VTypePhi {
1462                 public int i;
1463         }
1464
1465         static int vtype_phi (VTypePhi v1, VTypePhi v2, bool first) {
1466                 VTypePhi v = first ? v1 : v2;
1467
1468                 return v.i;
1469         }
1470
1471         static int test_0_vtype_phi ()
1472         {
1473                 VTypePhi v1 = new VTypePhi () { i = 1 };
1474                 VTypePhi v2 = new VTypePhi () { i = 2 };
1475
1476                 if (vtype_phi (v1, v2, true) != 1)
1477                         return 1;
1478                 if (vtype_phi (v1, v2, false) != 2)
1479                         return 2;
1480
1481                 return 0;
1482         }
1483
1484         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1485         static void UseValue (int index)
1486         {
1487         }
1488
1489         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1490         static bool IsFalse ()
1491         {
1492                 return false;
1493         }
1494
1495         static int test_0_llvm_moving_faulting_loads ()
1496         {
1497                 int[] indexes = null;
1498
1499                 if (IsFalse ()) {
1500                         indexes = new int[0];
1501                 }
1502                         
1503                 while (IsFalse ()) {
1504                         UseValue (indexes[0]);
1505                         UseValue (indexes[0]);
1506                 }
1507
1508                 return 0;
1509         }
1510
1511         public static bool flag;
1512
1513         class B {
1514
1515                 internal static B[] d;
1516
1517                 static B () {
1518                         flag = true;
1519                 }
1520         }
1521
1522         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1523         static int regress_679467_inner () {
1524                 if (flag == true)
1525                         return 1;
1526                 var o = B.d;
1527                 var o2 = B.d;
1528                 return 0;
1529         }
1530
1531         /*
1532          * FIXME: This fails with AOT #703317.
1533          */
1534         /*
1535         static int test_0_multiple_cctor_calls_regress_679467 () {
1536                 flag = false;
1537                 return regress_679467_inner ();
1538         }
1539         */
1540
1541         static int test_0_char_ctor () {
1542                 string s = new String (new char[] { 'A', 'B' }, 0, 1);
1543                 return 0;
1544         }
1545
1546         static object mInstance = null;
1547
1548         [MethodImpl(MethodImplOptions.Synchronized)]
1549         public static object getInstance() {
1550                 if (mInstance == null)
1551                         mInstance = new object();
1552                 return mInstance;
1553         }
1554
1555         static int test_0_synchronized () {
1556                 getInstance ();
1557                 return 0;
1558         }
1559
1560         struct BStruct {
1561                 public Type t;
1562         }
1563
1564         class Del<T> {
1565                 public static BStruct foo () {
1566                         return new BStruct () { t = typeof (T) };
1567                 }
1568         }
1569
1570         delegate BStruct ADelegate ();
1571
1572         static int test_0_regress_10601 () {
1573                 var act = (ADelegate)(Del<string>.foo);
1574                 BStruct b = act ();
1575                 if (b.t != typeof (string))
1576                         return 1;
1577                 return 0;
1578         }
1579
1580         static int test_0_regress_11058 () {
1581                 int foo = -252674008;
1582                 int foo2 = (int)(foo ^ 0xF0F0F0F0); // = 28888
1583                 var arr = new byte[foo2].Length;
1584                 return 0;
1585         }
1586
1587         public static void do_throw () {
1588                 throw new Exception ();
1589         }
1590
1591         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1592         static void empty () {
1593         }
1594
1595         // #11297
1596         public static int test_0_llvm_inline_throw () {
1597                 try {
1598                         empty ();
1599                 } catch (Exception) {
1600                         do_throw ();
1601                 }
1602
1603                 return 0;
1604         }
1605
1606         enum ByteEnum : byte {
1607         Zero = 0
1608     }
1609
1610     struct BugStruct {
1611         public ByteEnum f1;
1612         public ByteEnum f2;
1613         public ByteEnum f3;
1614         public byte f4;
1615         public byte f5;
1616         public byte f6;
1617         public byte f7;
1618     }
1619
1620         public static int test_0_14217 () {
1621                 t_14217_inner (new BugStruct ());
1622                 return 0;
1623         }
1624
1625         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1626         static void t_14217_inner (BugStruct bug) {
1627     }
1628
1629         [StructLayout(LayoutKind.Sequential)]
1630         public struct EmptyStruct {
1631         }
1632
1633         class EmptyClass {
1634                 public static EmptyStruct s;
1635         }
1636
1637         // #20349
1638         static int test_0_empty_struct_as_static () {
1639                 var s = EmptyClass.s;
1640                 return 0;
1641         }
1642
1643         // #25487
1644         static int test_0_int_to_r4 () {
1645                 return int_to_r4_inner (255);
1646         }
1647
1648         static int int_to_r4_inner (int value1) {
1649                 int sub = -value1;
1650                 float mult = sub * 1f;
1651                 if (mult != -255.0f)
1652                         return 1;
1653                 else
1654                         return 0;
1655         }
1656
1657         struct HFA4D {
1658                 public double a, b, c, d;
1659         }
1660
1661         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) {
1662                 return s.a + s.b + s.c + s.d;
1663         }
1664
1665         static int test_0_arm64_hfa_on_stack () {
1666                 var s = new HFA4D () { a = 1.0, b = 2.0, c = 3.0, d = 4.0 };
1667                 var res = arm64_hfa_on_stack_inner (1, 2, 3, 4, 5, 6, 7, 8, s);
1668                 return res == 10.0 ? 0 : 1;
1669         }
1670
1671         class MulOvfClass {
1672                 [MethodImplAttribute (MethodImplOptions.NoInlining)]
1673                 public unsafe void EncodeIntoBuffer(char* value, int valueLength, char* buffer, int bufferLength) {
1674                 }
1675         }
1676
1677         static unsafe int test_0_mul_ovf_regress_36052 () {
1678                 var p = new MulOvfClass ();
1679
1680                 string typeName = typeof(int).Name;
1681                 int bufferSize = 45;
1682
1683                 fixed (char* value = typeName) {
1684                         char* buffer = stackalloc char[bufferSize];
1685                         p.EncodeIntoBuffer(value, typeName.Length, buffer, bufferSize);
1686                 }
1687                 return 0;
1688         }
1689
1690         struct Struct16 {
1691                 public int a, b, c, d;
1692         }
1693
1694         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1695         static int pass_struct16 (object o0, object o2, object o3, object o4, object o5, object o6, object o7, Struct16 o8) {
1696                 // This disables LLVM
1697                 try {
1698                 } catch {
1699                 }
1700                 return o8.a;
1701         }
1702
1703         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1704         static int pass_struct16 (object o0, object o2, object o3, object o6, object o7, Struct16 o8) {
1705                 return pass_struct16 (o0, o2, null, o3, null, o6, o7, o8);
1706         }
1707
1708         public static int test_42_pass_16byte_struct_split () {
1709                 return pass_struct16 (null, null, null, null, null, new Struct16 () { a = 42 });
1710         }
1711
1712         public interface IComparer2
1713         {
1714                 Type foo<T> ();
1715         }
1716
1717         public class AClass : IComparer2 {
1718                 public Type foo<T> () {
1719                         return typeof(T);
1720                 }
1721         }
1722
1723         public static int test_0_delegate_to_virtual_generic_on_ifaces () {
1724                 IComparer2 c = new AClass ();
1725
1726                 Func<Type> f = c.foo<string>;
1727                 return f () == typeof(string) ? 0 : 1;
1728         }
1729
1730 }
1731
1732 #if __MOBILE__
1733 }
1734 #endif