comparison agent/src/share/classes/sun/jvm/hotspot/oops/ObjectHeap.java @ 8059:49618582fc5b

8004840: Jstack seems to output unnecessary information in 7u9 Reviewed-by: dholmes, coleenp, sspitsyn, rbackman
author sla
date Thu, 14 Feb 2013 13:08:15 +0100
parents ec0c4951286c
children a4f036ef52e8
comparison
equal deleted inserted replaced
8058:2394a89e89f4 8059:49618582fc5b
333 throw new RuntimeException(" UnknownOopException " + exp); 333 throw new RuntimeException(" UnknownOopException " + exp);
334 } 334 }
335 } 335 }
336 if (obj == null) { 336 if (obj == null) {
337 //Find the object size using Printezis bits and skip over 337 //Find the object size using Printezis bits and skip over
338 System.err.println("Finding object size using Printezis bits and skipping over...");
339 long size = 0; 338 long size = 0;
340 339
341 if ( (cmsSpaceOld != null) && cmsSpaceOld.contains(handle) ){ 340 if ( (cmsSpaceOld != null) && cmsSpaceOld.contains(handle) ){
342 size = cmsSpaceOld.collector().blockSizeUsingPrintezisBits(handle); 341 size = cmsSpaceOld.collector().blockSizeUsingPrintezisBits(handle);
343 } 342 }