Updated: 3/13/2003; 2:19:51 PM.
IKVM.NET Weblog
The development of a Java VM for .NET
        

Monday, July 29, 2002
This weblog has moved to http://weblog.ikvm.net/

I found an interesting paper on jsr/ret verification. It contains the following example of valid Java code that is not verifiable with the verification algorithm described in the JVM spec:

static int m(boolean x) {
  int y;
  try {
    if(x) return 1;
    y = 2;
  } finally {
    if(x) y = 3;
  }
  return y;
}

5:12:48 PM    Comments

© Copyright 2003 Jeroen Frijters.
 
July 2002
Sun Mon Tue Wed Thu Fri Sat
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      
Jun   Aug