comparison agent/src/share/classes/sun/jvm/hotspot/memory/CompactibleFreeListSpace.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 6cf2530f7fd3
children f6490a5f084a
comparison
equal deleted inserted replaced
8058:2394a89e89f4 8059:49618582fc5b
189 // FIXME: need to do a better job here. 189 // FIXME: need to do a better job here.
190 // can I use bitMap here? 190 // can I use bitMap here?
191 //Find the object size using Printezis bits and skip over 191 //Find the object size using Printezis bits and skip over
192 long size = collector().blockSizeUsingPrintezisBits(cur); 192 long size = collector().blockSizeUsingPrintezisBits(cur);
193 if (size == -1) { 193 if (size == -1) {
194 System.err.println("Printezis bits not set...");
195 break; 194 break;
196 } 195 }
197 cur = cur.addOffsetTo(adjustObjectSizeInBytes(size)); 196 cur = cur.addOffsetTo(adjustObjectSizeInBytes(size));
198 } 197 }
199 } 198 }