Re: Patch review: fix infinite loop in anonymousClassLoader.checkHostClass

2008-04-18 Thread John Rose
Good fix, Remi. Thanks! Folks, I'm looking forward to a long collaboration with lots of MLVM patches. Let's use the message format described here: http://openjdk.java.net/contribute/ At this early point, since sub-projects like anonk are tracked under omnibus bugs, you do not need to in

Patch review: fix infinite loop in anonymousClassLoader.checkHostClass

2008-04-18 Thread Rémi Forax
Hi all. There is a potential infite loop in the current code of the AnonymousClassLoader. In checkHostClass, the caller and the callee need to be normalized to their top level classes, but outer is not updated in the loop. The attachment is a test case to reproduce the bug. I propose the foll

Re: Da Vinci MLVM: Interest for an very old language running on an extended JVM

2008-04-18 Thread Francis ANDRE
>> byte[] user; >> int value = 32; >> >> user = new byte[9]; >> user[5] = (byte)((value & 0xFF00) >> 24); >> user[6] = (byte)((value & 0x00FF) >> 16); >> user[7] = (byte)((value & 0xFF00) >> 8); >> user[8] = (byte)((value & 0x00FF) >> 0); > > This