< prev index next >

src/share/vm/gc/g1/youngList.cpp

Print this page

        

*** 97,107 **** uint length = 0; HeapRegion* curr = _head; HeapRegion* last = NULL; while (curr != NULL) { if (!curr->is_young()) { ! log_info(gc, verify)("### YOUNG REGION " PTR_FORMAT "-" PTR_FORMAT " " "incorrectly tagged (y: %d, surv: %d)", p2i(curr->bottom()), p2i(curr->end()), curr->is_young(), curr->is_survivor()); ret = false; } --- 97,107 ---- uint length = 0; HeapRegion* curr = _head; HeapRegion* last = NULL; while (curr != NULL) { if (!curr->is_young()) { ! log_error(gc, verify)("### YOUNG REGION " PTR_FORMAT "-" PTR_FORMAT " " "incorrectly tagged (y: %d, surv: %d)", p2i(curr->bottom()), p2i(curr->end()), curr->is_young(), curr->is_survivor()); ret = false; }
*** 110,143 **** curr = curr->get_next_young_region(); } ret = ret && (length == _length); if (!ret) { ! log_info(gc, verify)("### YOUNG LIST seems not well formed!"); ! log_info(gc, verify)("### list has %u entries, _length is %u", length, _length); } return ret; } bool YoungList::check_list_empty(bool check_sample) { bool ret = true; if (_length != 0) { ! log_info(gc, verify)("### YOUNG LIST should have 0 length, not %u", _length); ret = false; } if (check_sample && _last_sampled_rs_lengths != 0) { ! log_info(gc, verify)("### YOUNG LIST has non-zero last sampled RS lengths"); ret = false; } if (_head != NULL) { ! log_info(gc, verify)("### YOUNG LIST does not have a NULL head"); ret = false; } if (!ret) { ! log_info(gc, verify)("### YOUNG LIST does not seem empty"); } return ret; } --- 110,143 ---- curr = curr->get_next_young_region(); } ret = ret && (length == _length); if (!ret) { ! log_error(gc, verify)("### YOUNG LIST seems not well formed!"); ! log_error(gc, verify)("### list has %u entries, _length is %u", length, _length); } return ret; } bool YoungList::check_list_empty(bool check_sample) { bool ret = true; if (_length != 0) { ! log_error(gc, verify)("### YOUNG LIST should have 0 length, not %u", _length); ret = false; } if (check_sample && _last_sampled_rs_lengths != 0) { ! log_error(gc, verify)("### YOUNG LIST has non-zero last sampled RS lengths"); ret = false; } if (_head != NULL) { ! log_error(gc, verify)("### YOUNG LIST does not have a NULL head"); ret = false; } if (!ret) { ! log_error(gc, verify)("### YOUNG LIST does not seem empty"); } return ret; }
< prev index next >