comparison src/share/vm/gc_implementation/shared/mutableNUMASpace.cpp @ 6008:b632e80fc9dc

4988100: oop_verify_old_oop appears to be dead Summary: removed oop_verify_old_oop and allow_dirty. Also reviewed by: alexlamsl@gmail.com Reviewed-by: jmasa, jwilhelm
author brutisso
date Mon, 16 Apr 2012 08:57:18 +0200
parents cc74fa5a91a9
children d2a62e0f25eb
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
889 ls->space_stats()->_small_pages); 889 ls->space_stats()->_small_pages);
890 } 890 }
891 } 891 }
892 } 892 }
893 893
894 void MutableNUMASpace::verify(bool allow_dirty) { 894 void MutableNUMASpace::verify() {
895 // This can be called after setting an arbitary value to the space's top, 895 // This can be called after setting an arbitary value to the space's top,
896 // so an object can cross the chunk boundary. We ensure the parsablity 896 // so an object can cross the chunk boundary. We ensure the parsablity
897 // of the space and just walk the objects in linear fashion. 897 // of the space and just walk the objects in linear fashion.
898 ensure_parsability(); 898 ensure_parsability();
899 MutableSpace::verify(allow_dirty); 899 MutableSpace::verify();
900 } 900 }
901 901
902 // Scan pages and gather stats about page placement and size. 902 // Scan pages and gather stats about page placement and size.
903 void MutableNUMASpace::LGRPSpace::accumulate_statistics(size_t page_size) { 903 void MutableNUMASpace::LGRPSpace::accumulate_statistics(size_t page_size) {
904 clear_space_stats(); 904 clear_space_stats();