mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +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
|
@ -911,23 +911,23 @@ void ParallelScavengeHeap::print_tracing_info() const {
|
|||
}
|
||||
|
||||
|
||||
void ParallelScavengeHeap::verify(bool allow_dirty, bool silent, VerifyOption option /* ignored */) {
|
||||
void ParallelScavengeHeap::verify(bool silent, VerifyOption option /* ignored */) {
|
||||
// Why do we need the total_collections()-filter below?
|
||||
if (total_collections() > 0) {
|
||||
if (!silent) {
|
||||
gclog_or_tty->print("permanent ");
|
||||
}
|
||||
perm_gen()->verify(allow_dirty);
|
||||
perm_gen()->verify();
|
||||
|
||||
if (!silent) {
|
||||
gclog_or_tty->print("tenured ");
|
||||
}
|
||||
old_gen()->verify(allow_dirty);
|
||||
old_gen()->verify();
|
||||
|
||||
if (!silent) {
|
||||
gclog_or_tty->print("eden ");
|
||||
}
|
||||
young_gen()->verify(allow_dirty);
|
||||
young_gen()->verify();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue