src/hotspot/share/gc/serial/defNewGeneration.cpp
changeset 50634 c349d409262a
parent 50605 7f63c74f0974
child 50752 9d62da00bf15
equal deleted inserted replaced
50633:b8055b38b252 50634:c349d409262a
   126 
   126 
   127 void CLDScanClosure::do_cld(ClassLoaderData* cld) {
   127 void CLDScanClosure::do_cld(ClassLoaderData* cld) {
   128   NOT_PRODUCT(ResourceMark rm);
   128   NOT_PRODUCT(ResourceMark rm);
   129   log_develop_trace(gc, scavenge)("CLDScanClosure::do_cld " PTR_FORMAT ", %s, dirty: %s",
   129   log_develop_trace(gc, scavenge)("CLDScanClosure::do_cld " PTR_FORMAT ", %s, dirty: %s",
   130                                   p2i(cld),
   130                                   p2i(cld),
   131                                   cld->loader_name(),
   131                                   cld->loader_name_and_id(),
   132                                   cld->has_modified_oops() ? "true" : "false");
   132                                   cld->has_modified_oops() ? "true" : "false");
   133 
   133 
   134   // If the cld has not been dirtied we know that there's
   134   // If the cld has not been dirtied we know that there's
   135   // no references into  the young gen and we can skip it.
   135   // no references into  the young gen and we can skip it.
   136   if (cld->has_modified_oops()) {
   136   if (cld->has_modified_oops()) {