comparison agent/src/share/classes/sun/jvm/hotspot/types/Type.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
120 public JIntField getJIntField (String fieldName) throws WrongTypeException; 120 public JIntField getJIntField (String fieldName) throws WrongTypeException;
121 public JLongField getJLongField (String fieldName) throws WrongTypeException; 121 public JLongField getJLongField (String fieldName) throws WrongTypeException;
122 public JShortField getJShortField (String fieldName) throws WrongTypeException; 122 public JShortField getJShortField (String fieldName) throws WrongTypeException;
123 public CIntegerField getCIntegerField (String fieldName) throws WrongTypeException; 123 public CIntegerField getCIntegerField (String fieldName) throws WrongTypeException;
124 public OopField getOopField (String fieldName) throws WrongTypeException; 124 public OopField getOopField (String fieldName) throws WrongTypeException;
125 public NarrowOopField getNarrowOopField (String fieldName) throws WrongTypeException;
125 public AddressField getAddressField (String fieldName); 126 public AddressField getAddressField (String fieldName);
126 } 127 }