< prev index next >

src/hotspot/share/memory/metaspace/metachunk.hpp

Print this page
rev 57511 : [mq]: metaspace-improvement


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 #ifndef SHARE_MEMORY_METASPACE_METACHUNK_HPP
  25 #define SHARE_MEMORY_METASPACE_METACHUNK_HPP
  26 
  27 #include "memory/metaspace/metabase.hpp"
  28 #include "memory/metaspace/metaspaceCommon.hpp"


  29 #include "utilities/debug.hpp"
  30 #include "utilities/globalDefinitions.hpp"
  31 
  32 class MetachunkTest;
  33 
  34 namespace metaspace {
  35 
  36 class VirtualSpaceNode;
  37 
  38 //  Metachunk - Quantum of allocation from a Virtualspace
  39 //    Metachunks are reused (when freed are put on a global freelist) and
  40 //    have no permanent association to a SpaceManager.
  41 
  42 //            +--------------+ <- end    --+       --+
  43 //            |              |             |         |
  44 //            |              |             | free    |


  45 //            |              |             |         |
  46 //            |              |             |         | size | capacity
  47 //            |              |             |         |
  48 //            |              | <- top   -- +         |
  49 //            |              |             |         |
  50 //            |              |             | used    |
  51 //            |              |             |         |
  52 //            |              |             |         |
  53 //            +--------------+ <- bottom --+       --+
  54 
  55 enum ChunkOrigin {
  56   // Chunk normally born (via take_from_committed)
  57   origin_normal = 1,
  58   // Chunk was born as padding chunk
  59   origin_pad = 2,
  60   // Chunk was born as leftover chunk in VirtualSpaceNode::retire
  61   origin_leftover = 3,
  62   // Chunk was born as result of a merge of smaller chunks
  63   origin_merge = 4,
  64   // Chunk was born as result of a split of a larger chunk
  65   origin_split = 5,
  66 
  67   origin_minimum = origin_normal,
  68   origin_maximum = origin_split,
  69   origins_count = origin_maximum + 1
  70 };
  71 
  72 inline bool is_valid_chunkorigin(ChunkOrigin origin) {
  73   return origin == origin_normal ||
  74     origin == origin_pad ||
  75     origin == origin_leftover ||
  76     origin == origin_merge ||
  77     origin == origin_split;
  78 }
  79 
  80 class Metachunk : public Metabase<Metachunk> {
  81 
  82   friend class ::MetachunkTest;
  83 
  84   // The VirtualSpaceNode containing this chunk.
  85   VirtualSpaceNode* const _container;
  86 
  87   // Current allocation top.
  88   MetaWord* _top;
  89 
  90   // A 32bit sentinel for debugging purposes.
  91   enum { CHUNK_SENTINEL = 0x4d4554EF,  // "MET"
  92          CHUNK_SENTINEL_INVALID = 0xFEEEEEEF
  93   };
  94 
  95   uint32_t _sentinel;
  96 
  97   const ChunkIndex _chunk_type;
  98   const bool _is_class;
  99   // Whether the chunk is free (in freelist) or in use by some class loader.
 100   bool _is_tagged_free;
 101 
 102   ChunkOrigin _origin;
 103   int _use_count;

























































































































 104 
 105   MetaWord* initial_top() const { return (MetaWord*)this + overhead(); }
 106   MetaWord* top() const         { return _top; }
 107 
 108  public:
 109   // Metachunks are allocated out of a MetadataVirtualSpace and
 110   // and use some of its space to describe itself (plus alignment
 111   // considerations).  Metadata is allocated in the rest of the chunk.
 112   // This size is the overhead of maintaining the Metachunk within
 113   // the space.
 114 
 115   // Alignment of each allocation in the chunks.
 116   static size_t object_alignment();
 117 
 118   // Size of the Metachunk header, in words, including alignment.
 119   static size_t overhead();
 120 
 121   Metachunk(ChunkIndex chunktype, bool is_class, size_t word_size, VirtualSpaceNode* container);
 122 
 123   MetaWord* allocate(size_t word_size);
 124 
 125   VirtualSpaceNode* container() const { return _container; }
 126 
 127   MetaWord* bottom() const { return (MetaWord*) this; }
 128 
 129   // Reset top to bottom so chunk can be reused.
 130   void reset_empty() { _top = initial_top(); clear_next(); clear_prev(); }
 131   bool is_empty() { return _top == initial_top(); }
 132 
 133   // used (has been allocated)
 134   // free (available for future allocations)
 135   size_t word_size() const { return size(); }
 136   size_t used_word_size() const;
 137   size_t free_word_size() const;
 138 
 139   bool is_tagged_free() { return _is_tagged_free; }
 140   void set_is_tagged_free(bool v) { _is_tagged_free = v; }
 141 
 142   bool contains(const void* ptr) { return bottom() <= ptr && ptr < _top; }
 143 
 144   void print_on(outputStream* st) const;
 145 
 146   bool is_valid_sentinel() const        { return _sentinel == CHUNK_SENTINEL; }
 147   void remove_sentinel()                { _sentinel = CHUNK_SENTINEL_INVALID; }
 148 
 149   int get_use_count() const             { return _use_count; }
 150   void inc_use_count()                  { _use_count ++; }
 151 
 152   ChunkOrigin get_origin() const        { return _origin; }
 153   void set_origin(ChunkOrigin orig)     { _origin = orig; }
 154 
 155   ChunkIndex get_chunk_type() const     { return _chunk_type; }
 156   bool is_class() const                 { return _is_class; }
 157 
 158   DEBUG_ONLY(void mangle(juint word_value);)
 159   DEBUG_ONLY(void verify() const;)



































 160 
 161 };
 162 
 163 
 164 // Helper function that does a bunch of checks for a chunk.
 165 DEBUG_ONLY(void do_verify_chunk(Metachunk* chunk);)
 166 
 167 // Given a Metachunk, update its in-use information (both in the
 168 // chunk and the occupancy map).
 169 void do_update_in_use_info_for_chunk(Metachunk* chunk, bool inuse);
 170 
 171 } // namespace metaspace
 172 
 173 #endif // SHARE_MEMORY_METASPACE_METACHUNK_HPP


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 #ifndef SHARE_MEMORY_METASPACE_METACHUNK_HPP
  25 #define SHARE_MEMORY_METASPACE_METACHUNK_HPP
  26 
  27 
  28 #include "memory/metaspace/counter.hpp"
  29 #include "memory/metaspace/abstractPool.hpp"
  30 #include "memory/metaspace/chunkLevel.hpp"
  31 #include "utilities/debug.hpp"
  32 #include "utilities/globalDefinitions.hpp"
  33 
  34 
  35 
  36 namespace metaspace {
  37 
  38 class VirtualSpaceNode;
  39 
  40 //  Metachunk - Quantum of allocation from a Virtualspace
  41 //    Metachunks are reused (when freed are put on a global freelist) and
  42 //    have no permanent association to a SpaceManager.
  43 
  44 //            +--------------+ <- end    ----+         --+
  45 //            |              |               |           |
  46 //            |              |               | free      |
  47 //            |              |               |
  48 //            |              |               |           | size (aka capacity)
  49 //            |              |               |           |
  50 //            | -----------  | <- top     -- +           |


  51 //            |              |               |           |
  52 //            |              |               | used      |
  53 //            +--------------+ <- start   -- +        -- +

















































  54 
  55 // Note: this is a chunk **descriptor**. The real Payload area lives in metaspace,
  56 // this class lives somewhere else.
  57 class Metachunk {
  58 
  59   // Todo: compact this node. A lot of things can be expressed more tighter.
  60 
  61   // A chunk header is kept in a list:
  62   // - in the list of used chunks inside a SpaceManager, if it is in use
  63   // - in the list of free chunks inside a ChunkManager, if it is free
  64   // - in the freelist of dead headers inside the MetaChunkHeaderPool,
  65   //   if it is dead (e.g. result of chunk merging).
  66   Metachunk* _prev;
  67   Metachunk* _next;
  68 
  69   chklvl_t _level; // aka size.
  70 
  71   // true: free, owned by ChunkManager
  72   // false: in-use, owned by SpaceManager
  73   // if dead, meaningless
  74   bool _is_free;
  75 
  76   // start of chunk memory; NULL if dead.
  77   MetaWord* _base;
  78 
  79   // Used words.
  80   size_t _used_words;
  81 
  82   // Guaranteed-to-be-committed-words, counted from base
  83   //  (This is a performance optimization. The underlying VirtualSpaceNode knows
  84   //  which granules are committed; but we want to avoid asking it unnecessarily
  85   //  in Metachunk::allocate(), so we keep a limit until which we are guaranteed
  86   //  to have committed memory under us.)
  87   size_t _committed_words;
  88 
  89   // the chunk tree node this header is hanging under; NULL if dead.
  90   u2 _tree_node_ref;
  91 
  92   // We need unfortunately a back link to the virtual space node
  93   // for splitting and merging nodes.
  94   VirtualSpaceNode* _vsnode;
  95 
  96   MetaWord* top() const           { return base() + _used_words; }
  97 
  98 public:
  99 
 100   Metachunk()
 101     : _prev(NULL), _next(NULL),
 102       _level(chklvl::ROOT_CHUNK_LEVEL),
 103       _is_free(true),
 104       _base(NULL),
 105       _used_words(0),
 106       _committed_words(0),
 107       _tree_node_ref(0),
 108       _vsnode(NULL)
 109   {}
 110 
 111   size_t word_size() const        { return chklvl::word_size_for_level(_level); }
 112 
 113   MetaWord* base() const          { return _base; }
 114   void set_base(MetaWord* p)      { _base = p; }
 115   MetaWord* end() const           { return base() + word_size(); }
 116 
 117   void set_prev(Metachunk* c)     { _prev = c; }
 118   Metachunk* prev() const         { return _prev; }
 119   void set_next(Metachunk* c)     { _next = c; }
 120   Metachunk* next() const         { return _next; }
 121   // Remove chunk from whatever list it lives in by wiring next with previous.
 122   void remove_from_list();
 123 
 124   bool is_free() const            { return _is_free; }
 125   bool is_in_use() const          { return !_is_free; }
 126   void set_free(bool v)           { _is_free = v; }
 127 
 128 
 129   void inc_level()                { _level ++; DEBUG_ONLY(chklvl::is_valid_level(_level);) }
 130   void dec_level()                { _level --; DEBUG_ONLY(chklvl::is_valid_level(_level);) }
 131   void set_level(chklvl_t v)      { _level = v; DEBUG_ONLY(chklvl::is_valid_level(_level);) }
 132   chklvl_t level() const          { return _level; }
 133 
 134   void set_tree_node_ref(u2 v)    { _tree_node_ref = v; }
 135   u2 tree_node_ref() const        { return _tree_node_ref; }
 136 
 137   VirtualSpaceNode* vsnode() const        { return _vsnode; }
 138   void set_vsnode(VirtualSpaceNode* n)    { _vsnode = n; }
 139 
 140   size_t used_words() const       { return _used_words; }
 141   size_t free_words() const       { return word_size() - used_words(); }
 142   size_t free_below_committed_words() const   { return committed_words() - used_words(); }
 143   void reset_used_words()         { _used_words = 0; }
 144 
 145   size_t committed_words() const      { return _committed_words; }
 146   void set_committed_words(size_t v)  { _committed_words = v; }
 147   bool is_fully_committed() const     { return committed_words() == word_size(); }
 148 
 149   // Ensure that chunk is committed up to at least word_size words.
 150   // Fails if we hit a commit limit.
 151   bool ensure_committed(size_t word_size);
 152 
 153   // Alignment of an allocation.
 154   static const size_t allocation_alignment_bytes = 8;
 155   static const size_t allocation_alignment_words = allocation_alignment_bytes / BytesPerWord;
 156 
 157   // Allocation from a chunk
 158 
 159   // Allocate word_size words from this chunk.
 160   //
 161   // May cause memory to be committed. That may fail if we hit a commit limit. In that case,
 162   //  NULL is returned and p_did_hit_commit_limit will be set to true.
 163   // If the remainder portion of the chunk was too small to hold the allocation,
 164   //  NULL is returned and p_did_hit_commit_limit will be set to false.
 165   MetaWord* allocate(size_t word_size, bool* p_did_hit_commit_limit);
 166 
 167   // Wipe this object to look as if it were default constructed.
 168   void wipe() {
 169     _prev = NULL; _next = NULL;
 170     _level = chklvl::ROOT_CHUNK_LEVEL;
 171     _is_free = true;
 172     _base = NULL;
 173     _used_words = 0;
 174     _committed_words = 0;
 175     _tree_node_ref = 0;
 176     _vsnode = NULL;
 177   }
 178 
 179   //// Debug stuff ////
 180   DEBUG_ONLY(void verify(bool slow) const;)
 181 
 182 };


































 183 

 184 
 185 class MetachunkList {

 186 
 187   Metachunk* _first;
 188   IntCounter _num;
 189 
 190 public:

 191 
 192   MetachunkList() : _first(NULL), _num() {}

 193 
 194   Metachunk* first() const { return _first; }
 195   int size() const { return _num.get(); }
 196 
 197   void add(Metachunk* c) {
 198     c->set_next(_first);
 199     _first = c;
 200     _num.increment();
 201   }
 202 
 203   // Remove first node unless empty. Returns node or NULL.
 204   Metachunk* remove_first() {
 205     Metachunk* c = _first;
 206     if (c != NULL) {
 207       _first = c->next();
 208       _num.decrement();
 209     }
 210     return c;
 211   }
 212 
 213   // Remove given chunk from list. List must contain that chunk.
 214   void remove(Metachunk* c) {
 215     assert(contains(c), "Does not contain this chunk");
 216     c->remove_from_list();
 217     _num.decrement();
 218   }
 219 
 220   // Manually decrement counter; needed for cases where chunks
 221   // have been manually removed from the list without informing
 222   // the list, e.g. chunk merging, see chunkManager::return_chunk().
 223   void dec_counter_by(int v) {
 224     _num.decrement_by(v);
 225   }
 226 
 227 #ifdef ASSERT
 228   bool contains(const Metachunk* c) const;
 229   void verify(bool slow) const;
 230 #endif
 231 
 232 };








 233 
 234 } // namespace metaspace
 235 
 236 #endif // SHARE_MEMORY_METASPACE_METACHUNK_HPP
< prev index next >