comparison agent/src/share/classes/sun/jvm/hotspot/types/basic/BasicOopField.java @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children d1605aabd0a1
comparison
equal deleted inserted replaced
110:a49a647afe9a 113:ba764ed4b6f2
30 /** A specialization of BasicField which represents a field containing 30 /** A specialization of BasicField which represents a field containing
31 an oop value and which adds typechecked getValue() routines 31 an oop value and which adds typechecked getValue() routines
32 returning OopHandles. */ 32 returning OopHandles. */
33 33
34 public class BasicOopField extends BasicField implements OopField { 34 public class BasicOopField extends BasicField implements OopField {
35
36
37 public BasicOopField(OopField oopf) {
38 super(oopf);
39 }
40
35 public BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, 41 public BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type,
36 boolean isStatic, long offset, Address staticFieldAddress) { 42 boolean isStatic, long offset, Address staticFieldAddress) {
37 super(db, containingType, name, type, isStatic, offset, staticFieldAddress); 43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
38 44
39 if (!type.isOopType()) { 45 if (!type.isOopType()) {