-
Bug
-
Resolution: Fixed
-
P2
-
1.1.6
-
1.2fcs
-
x86
-
windows_nt
-
Not verified
This testcase causes a crash on win32 with JIT 3.00.050 and
JIT 3.00.053.
It works with JIT 3.00.045, and it hangs with JIT 3.00.039
The Application error for 3.00.053 is :
The exception unknown software exception (0xc00000fd) occurred in the
application at location 0x01f4b8a7
class t5
{
public static void main (String [] args)
{
byte[] data = new byte[16];
//foo (data, 0, 16, data, 0);
foo();
}
public static int FF (int a, int b, int c, int d, int x, int s, int ac)
{
return (((a += ((b & c) | (~b & d)) + x + ac) << s) | (a >>> (32-s)) + b);
}
//static void foo (byte[] data, int off, int len, byte[] to, int pos)
static void foo ()
{
System.out.println ("Starting foo ...");
int[] W = new int[16];
int a = 0x67452301;
int b = 0xefcdab89;
int c = 0x98badcfe;
int d = 0x10325476;
for (int i = 0; i < 16; i++) {
a = FF (a, b, c, d, W[0], 7, 0xd76aa478);
d = FF (d, a, b, c, W[1], 12, 0xe8c7b756);
c = FF (c, d, a, b, W[2], 17, 0x242070db);
b = FF (b, c, d, a, W[3], 22, 0xc1bdceee);
a = FF (a, b, c, d, W[4], 7, 0xf57c0faf);
d = FF (d, a, b, c, W[5], 12, 0x4787c62a);
c = FF (c, d, a, b, W[6], 17, 0xa8304613);
b = FF (b, c, d, a, W[7], 22, 0xfd469501);
}
System.out.println ("foo ended.");
}
}