comparison agent/src/share/classes/sun/jvm/hotspot/code/DebugInfoReadStream.java @ 900:9987d9d5eb0e

6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot Summary: developed a reexecute logic for the interpreter to reexecute the bytecode when deopt happens Reviewed-by: kvn, never, jrose, twisti
author cfang
date Fri, 31 Jul 2009 17:12:33 -0700
parents b109e761e927
children 15bbd3f505c0
comparison
equal deleted inserted replaced
899:55cb84cd1247 900:9987d9d5eb0e
79 } 79 }
80 } 80 }
81 Assert.that(false, "should not reach here"); 81 Assert.that(false, "should not reach here");
82 return null; 82 return null;
83 } 83 }
84
85 public int readBCI() {
86 return readInt() + InvocationEntryBCI;
87 }
88 } 84 }