mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +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
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -306,7 +306,7 @@ class Space: public CHeapObj {
|
|||
}
|
||||
|
||||
// Debugging
|
||||
virtual void verify(bool allow_dirty) const = 0;
|
||||
virtual void verify() const = 0;
|
||||
};
|
||||
|
||||
// A MemRegionClosure (ResourceObj) whose "do_MemRegion" function applies an
|
||||
|
@ -948,7 +948,7 @@ class ContiguousSpace: public CompactibleSpace {
|
|||
}
|
||||
|
||||
// Debugging
|
||||
virtual void verify(bool allow_dirty) const;
|
||||
virtual void verify() const;
|
||||
|
||||
// Used to increase collection frequency. "factor" of 0 means entire
|
||||
// space.
|
||||
|
@ -1100,7 +1100,7 @@ class OffsetTableContigSpace: public ContiguousSpace {
|
|||
virtual void print_on(outputStream* st) const;
|
||||
|
||||
// Debugging
|
||||
void verify(bool allow_dirty) const;
|
||||
void verify() const;
|
||||
|
||||
// Shared space support
|
||||
void serialize_block_offset_array_offsets(SerializeOopClosure* soc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue