src/hotspot/share/memory/metaspace/spaceManager.hpp
branchstuefe-new-metaspace-branch
changeset 59155 b537e6386306
parent 58883 08102295011d
child 59257 990b1fed3b47
--- a/src/hotspot/share/memory/metaspace/spaceManager.hpp	Tue Nov 19 20:01:05 2019 +0100
+++ b/src/hotspot/share/memory/metaspace/spaceManager.hpp	Fri Nov 01 10:28:15 2019 +0100
@@ -40,6 +40,9 @@
 
 namespace metaspace {
 
+class BlockFreeList;
+class LeftOverManager;
+
 struct sm_stats_t;
 
 // The SpaceManager:
@@ -71,6 +74,7 @@
 
   // Prematurely released metablocks.
   BlockFreelist* _block_freelist;
+  LeftOverManager* _lom;
 
   // Points to outside size counter which we are to increase/decrease when we allocate memory
   // on behalf of a user or when we are destroyed.
@@ -89,6 +93,10 @@
   void create_block_freelist();
   void add_allocation_to_block_freelist(MetaWord* p, size_t word_size);
 
+  LeftOverManager* lom() const                  { return _lom; }
+  void create_lom();
+  void add_allocation_to_lom(MetaWord* p, size_t word_size);
+
   // The remaining committed free space in the current chunk is chopped up and stored in the block
   // free list for later use. As a result, the current chunk will remain current but completely
   // used up. This is a preparation for calling allocate_new_current_chunk().