X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fbasic.cs;h=477af333e9b4a8401a8b6ec5ab4e7646e6044ac3;hb=8fad4b7607c3ade6102de2341783f7db22208ad4;hp=74d1ede1fad72f11ac21e1b961f698dae738bf77;hpb=309720b294541161faa8c12695da6487534cefc1;p=mono.git diff --git a/mono/mini/basic.cs b/mono/mini/basic.cs index 74d1ede1fad..477af333e9b 100644 --- a/mono/mini/basic.cs +++ b/mono/mini/basic.cs @@ -23,11 +23,18 @@ using System.Reflection; * the IL code looks. */ -class Tests { - - static int Main () { - return TestDriver.RunTests (typeof (Tests)); - } +#if MOBILE +class BasicTests +#else +class Tests +#endif +{ + +#if !MOBILE + public static int Main (string[] args) { + return TestDriver.RunTests (typeof (Tests), args); + } +#endif public static int test_0_return () { return 0; @@ -195,6 +202,11 @@ class Tests { return b % 1; } + public static int test_0_rem_imm_0_neg () { + int b = -2; + return b % 1; + } + public static int test_4_rem_big_imm () { int b = 10004; return b % 10000; @@ -1235,8 +1247,9 @@ class Tests { // Avoid cfolding this i = 0; - for (int j = 0; j < 1234567; ++j) + for (int j = 0; j < 567; ++j) i ++; + i += 1234000; if ((i / 2) != 617283) return 1; if ((i / 4) != 308641) @@ -1248,8 +1261,9 @@ class Tests { // Avoid cfolding this i = 0; - for (int j = 0; j < 1234567; ++j) + for (int j = 0; j < 567; ++j) i --; + i -= 1234000; if ((i / 2) != -617283) return 5; if ((i / 4) != -308641) @@ -1325,4 +1339,33 @@ class Tests { return 2; return 0; } + + public static unsafe int test_0_ishr_sign_extend () { + // Check that ishr does sign extension from bit 31 on 64 bit platforms + uint val = 0xF0000000u; + + uint *a = &val; + uint ui = (uint)((int)(*a) >> 2); + + if (ui != 0xfc000000) + return 1; + + // Same with non-immediates + int amount = 2; + + ui = (uint)((int)(*a) >> amount); + + if (ui != 0xfc000000) + return 2; + + return 0; + } + + public static unsafe int test_0_ishr_sign_extend_cfold () { + int i = 32768; + int j = i << 16; + int k = j >> 16; + + return k == -32768 ? 0 : 1; + } }