comparison agent/src/share/classes/sun/jvm/hotspot/oops/Klass.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
169 visitor.doCInt(allocCount, true); 169 visitor.doCInt(allocCount, true);
170 } 170 }
171 } 171 }
172 172
173 public long getObjectSize() { 173 public long getObjectSize() {
174 System.out.println("should not reach here"); 174 throw new RuntimeException("should not reach here");
175 return 0;
176 } 175 }
177 176
178 /** Array class with specific rank */ 177 /** Array class with specific rank */
179 public Klass arrayKlass(int rank) { return arrayKlassImpl(false, rank); } 178 public Klass arrayKlass(int rank) { return arrayKlassImpl(false, rank); }
180 /** Array class with this klass as element type */ 179 /** Array class with this klass as element type */