comparison src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents 9766f73e770d
children 2b8e28fdf503
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
223 // This code must come after the CAS test, or it will print incorrect 223 // This code must come after the CAS test, or it will print incorrect
224 // information. 224 // information.
225 if (TraceScavenge) { 225 if (TraceScavenge) {
226 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}", 226 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
227 PSScavenge::should_scavenge(&new_obj) ? "copying" : "tenuring", 227 PSScavenge::should_scavenge(&new_obj) ? "copying" : "tenuring",
228 new_obj->klass()->internal_name(), o, new_obj, new_obj->size()); 228 new_obj->klass()->internal_name(), (void *)o, (void *)new_obj, new_obj->size());
229 } 229 }
230 #endif 230 #endif
231 231
232 return new_obj; 232 return new_obj;
233 } 233 }