--- old/test/lib/sun/hotspot/code/NMethod.java 2015-10-08 07:22:38.000000000 -1000 +++ new/test/lib/sun/hotspot/code/NMethod.java 2015-10-08 07:22:38.000000000 -1000 @@ -35,14 +35,16 @@ } private NMethod(Object[] obj) { super((Object[])obj[0]); - assert obj.length == 4; + assert obj.length == 5; comp_level = (Integer) obj[1]; insts = (byte[]) obj[2]; compile_id = (Integer) obj[3]; + address = (Long) obj[4]; } public final byte[] insts; public final int comp_level; public final int compile_id; + public final long address; @Override public String toString() { @@ -51,6 +53,7 @@ + ", insts=" + insts + ", comp_level=" + comp_level + ", compile_id=" + compile_id + + ", address=" + address + '}'; } }