--- a/test/lib/sun/hotspot/code/CodeBlob.java Fri Oct 30 12:03:08 2015 -0700
+++ b/test/lib/sun/hotspot/code/CodeBlob.java Wed Nov 04 07:01:03 2015 -1000
@@ -47,22 +47,24 @@
return new CodeBlob(obj);
}
protected CodeBlob(Object[] obj) {
- assert obj.length == 3;
+ assert obj.length == 4;
name = (String) obj[0];
size = (Integer) obj[1];
code_blob_type = BlobType.values()[(Integer) obj[2]];
assert code_blob_type.id == (Integer) obj[2];
+ address = (Long) obj[3];
}
public final String name;
public final int size;
public final BlobType code_blob_type;
-
+ public final long address;
@Override
public String toString() {
return "CodeBlob{"
+ "name=" + name
+ ", size=" + size
+ ", code_blob_type=" + code_blob_type
+ + ", address=" + address
+ '}';
}
}