mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
8204097: Simplify OopStorage::AllocateList block entry access
Removed obsolete support for blocks being in multiple lists. Reviewed-by: coleenp, tschatzl
This commit is contained in:
parent
d51c1b87d2
commit
d3e96fdd91
4 changed files with 27 additions and 30 deletions
|
@ -178,14 +178,13 @@ NOT_AIX( private: )
|
|||
class AllocateList {
|
||||
const Block* _head;
|
||||
const Block* _tail;
|
||||
const AllocateEntry& (*_get_entry)(const Block& block);
|
||||
|
||||
// Noncopyable.
|
||||
AllocateList(const AllocateList&);
|
||||
AllocateList& operator=(const AllocateList&);
|
||||
|
||||
public:
|
||||
AllocateList(const AllocateEntry& (*get_entry)(const Block& block));
|
||||
AllocateList();
|
||||
~AllocateList();
|
||||
|
||||
Block* head();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue