mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
4988100: oop_verify_old_oop appears to be dead
Removed oop_verify_old_oop and allow_dirty. Also reviewed by: alexlamsl@gmail.com Reviewed-by: jmasa, jwilhelm
This commit is contained in:
parent
bb59715dae
commit
f695b75d78
43 changed files with 110 additions and 197 deletions
|
@ -891,12 +891,12 @@ void MutableNUMASpace::print_on(outputStream* st) const {
|
|||
}
|
||||
}
|
||||
|
||||
void MutableNUMASpace::verify(bool allow_dirty) {
|
||||
void MutableNUMASpace::verify() {
|
||||
// This can be called after setting an arbitary value to the space's top,
|
||||
// so an object can cross the chunk boundary. We ensure the parsablity
|
||||
// of the space and just walk the objects in linear fashion.
|
||||
ensure_parsability();
|
||||
MutableSpace::verify(allow_dirty);
|
||||
MutableSpace::verify();
|
||||
}
|
||||
|
||||
// Scan pages and gather stats about page placement and size.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue