void PrintObjectClosure::do_object(memOop obj) { this->obj = obj; obj->print_value(); if (WizardMode) { st->print(" (size = %d)", obj->size()); } st->cr(); }
void rSet::print_set_for_object(memOop obj) { std->print("Remember set for 0x%lx ", obj); obj->print_value(); std->cr(); if (obj->is_new()) { std->print_cr(" object is in new space!"); } else { std->sp(); char* current_byte = byte_for(obj->addr()); char* end_byte = byte_for(obj->addr() + obj->size()); while (current_byte <= end_byte) { if (*current_byte) { std->print("_"); } else { std->print("*"); } current_byte++; } std->cr(); } }