src/share/vm/memory/metaspace.cpp

Fri, 08 Mar 2013 11:47:57 -0500

author
coleenp
date
Fri, 08 Mar 2013 11:47:57 -0500
changeset 4712
3efdfd6ddbf2
parent 4581
a83cd101fd62
child 4744
15401203db6b
child 4752
82f49e8e2c28
permissions
-rw-r--r--

8003553: NPG: metaspace objects should be zeroed in constructors
Summary: Zero metadata in constructors, not in allocation (and some in constructors)
Reviewed-by: jmasa, sspitsyn

     1 /*
     2  * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     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 #include "precompiled.hpp"
    25 #include "gc_interface/collectedHeap.hpp"
    26 #include "memory/binaryTreeDictionary.hpp"
    27 #include "memory/freeList.hpp"
    28 #include "memory/collectorPolicy.hpp"
    29 #include "memory/filemap.hpp"
    30 #include "memory/freeList.hpp"
    31 #include "memory/metablock.hpp"
    32 #include "memory/metachunk.hpp"
    33 #include "memory/metaspace.hpp"
    34 #include "memory/metaspaceShared.hpp"
    35 #include "memory/resourceArea.hpp"
    36 #include "memory/universe.hpp"
    37 #include "runtime/globals.hpp"
    38 #include "runtime/mutex.hpp"
    39 #include "runtime/orderAccess.hpp"
    40 #include "services/memTracker.hpp"
    41 #include "utilities/copy.hpp"
    42 #include "utilities/debug.hpp"
    44 typedef BinaryTreeDictionary<Metablock, FreeList> BlockTreeDictionary;
    45 typedef BinaryTreeDictionary<Metachunk, FreeList> ChunkTreeDictionary;
    46 // Define this macro to enable slow integrity checking of
    47 // the free chunk lists
    48 const bool metaspace_slow_verify = false;
    51 // Parameters for stress mode testing
    52 const uint metadata_deallocate_a_lot_block = 10;
    53 const uint metadata_deallocate_a_lock_chunk = 3;
    54 size_t const allocation_from_dictionary_limit = 64 * K;
    56 MetaWord* last_allocated = 0;
    58 // Used in declarations in SpaceManager and ChunkManager
    59 enum ChunkIndex {
    60   ZeroIndex = 0,
    61   SpecializedIndex = ZeroIndex,
    62   SmallIndex = SpecializedIndex + 1,
    63   MediumIndex = SmallIndex + 1,
    64   HumongousIndex = MediumIndex + 1,
    65   NumberOfFreeLists = 3,
    66   NumberOfInUseLists = 4
    67 };
    69 enum ChunkSizes {    // in words.
    70   ClassSpecializedChunk = 128,
    71   SpecializedChunk = 128,
    72   ClassSmallChunk = 256,
    73   SmallChunk = 512,
    74   ClassMediumChunk = 1 * K,
    75   MediumChunk = 8 * K,
    76   HumongousChunkGranularity = 8
    77 };
    79 static ChunkIndex next_chunk_index(ChunkIndex i) {
    80   assert(i < NumberOfInUseLists, "Out of bound");
    81   return (ChunkIndex) (i+1);
    82 }
    84 // Originally _capacity_until_GC was set to MetaspaceSize here but
    85 // the default MetaspaceSize before argument processing was being
    86 // used which was not the desired value.  See the code
    87 // in should_expand() to see how the initialization is handled
    88 // now.
    89 size_t MetaspaceGC::_capacity_until_GC = 0;
    90 bool MetaspaceGC::_expand_after_GC = false;
    91 uint MetaspaceGC::_shrink_factor = 0;
    92 bool MetaspaceGC::_should_concurrent_collect = false;
    94 // Blocks of space for metadata are allocated out of Metachunks.
    95 //
    96 // Metachunk are allocated out of MetadataVirtualspaces and once
    97 // allocated there is no explicit link between a Metachunk and
    98 // the MetadataVirtualspaces from which it was allocated.
    99 //
   100 // Each SpaceManager maintains a
   101 // list of the chunks it is using and the current chunk.  The current
   102 // chunk is the chunk from which allocations are done.  Space freed in
   103 // a chunk is placed on the free list of blocks (BlockFreelist) and
   104 // reused from there.
   106 // Pointer to list of Metachunks.
   107 class ChunkList VALUE_OBJ_CLASS_SPEC {
   108   // List of free chunks
   109   Metachunk* _head;
   111  public:
   112   // Constructor
   113   ChunkList() : _head(NULL) {}
   115   // Accessors
   116   Metachunk* head() { return _head; }
   117   void set_head(Metachunk* v) { _head = v; }
   119   // Link at head of the list
   120   void add_at_head(Metachunk* head, Metachunk* tail);
   121   void add_at_head(Metachunk* head);
   123   size_t sum_list_size();
   124   size_t sum_list_count();
   125   size_t sum_list_capacity();
   126 };
   128 // Manages the global free lists of chunks.
   129 // Has three lists of free chunks, and a total size and
   130 // count that includes all three
   132 class ChunkManager VALUE_OBJ_CLASS_SPEC {
   134   // Free list of chunks of different sizes.
   135   //   SmallChunk
   136   //   MediumChunk
   137   //   HumongousChunk
   138   ChunkList _free_chunks[NumberOfFreeLists];
   141   //   HumongousChunk
   142   ChunkTreeDictionary _humongous_dictionary;
   144   // ChunkManager in all lists of this type
   145   size_t _free_chunks_total;
   146   size_t _free_chunks_count;
   148   void dec_free_chunks_total(size_t v) {
   149     assert(_free_chunks_count > 0 &&
   150              _free_chunks_total > 0,
   151              "About to go negative");
   152     Atomic::add_ptr(-1, &_free_chunks_count);
   153     jlong minus_v = (jlong) - (jlong) v;
   154     Atomic::add_ptr(minus_v, &_free_chunks_total);
   155   }
   157   // Debug support
   159   size_t sum_free_chunks();
   160   size_t sum_free_chunks_count();
   162   void locked_verify_free_chunks_total();
   163   void slow_locked_verify_free_chunks_total() {
   164     if (metaspace_slow_verify) {
   165       locked_verify_free_chunks_total();
   166     }
   167   }
   168   void locked_verify_free_chunks_count();
   169   void slow_locked_verify_free_chunks_count() {
   170     if (metaspace_slow_verify) {
   171       locked_verify_free_chunks_count();
   172     }
   173   }
   174   void verify_free_chunks_count();
   176  public:
   178   ChunkManager() : _free_chunks_total(0), _free_chunks_count(0) {}
   180   // add or delete (return) a chunk to the global freelist.
   181   Metachunk* chunk_freelist_allocate(size_t word_size);
   182   void chunk_freelist_deallocate(Metachunk* chunk);
   184   // Map a size to a list index assuming that there are lists
   185   // for special, small, medium, and humongous chunks.
   186   static ChunkIndex list_index(size_t size);
   188   // Total of the space in the free chunks list
   189   size_t free_chunks_total();
   190   size_t free_chunks_total_in_bytes();
   192   // Number of chunks in the free chunks list
   193   size_t free_chunks_count();
   195   void inc_free_chunks_total(size_t v, size_t count = 1) {
   196     Atomic::add_ptr(count, &_free_chunks_count);
   197     Atomic::add_ptr(v, &_free_chunks_total);
   198   }
   199   ChunkTreeDictionary* humongous_dictionary() {
   200     return &_humongous_dictionary;
   201   }
   203   ChunkList* free_chunks(ChunkIndex index);
   205   // Returns the list for the given chunk word size.
   206   ChunkList* find_free_chunks_list(size_t word_size);
   208   // Add and remove from a list by size.  Selects
   209   // list based on size of chunk.
   210   void free_chunks_put(Metachunk* chuck);
   211   Metachunk* free_chunks_get(size_t chunk_word_size);
   213   // Debug support
   214   void verify();
   215   void slow_verify() {
   216     if (metaspace_slow_verify) {
   217       verify();
   218     }
   219   }
   220   void locked_verify();
   221   void slow_locked_verify() {
   222     if (metaspace_slow_verify) {
   223       locked_verify();
   224     }
   225   }
   226   void verify_free_chunks_total();
   228   void locked_print_free_chunks(outputStream* st);
   229   void locked_print_sum_free_chunks(outputStream* st);
   231   void print_on(outputStream* st);
   232 };
   235 // Used to manage the free list of Metablocks (a block corresponds
   236 // to the allocation of a quantum of metadata).
   237 class BlockFreelist VALUE_OBJ_CLASS_SPEC {
   238   BlockTreeDictionary* _dictionary;
   239   static Metablock* initialize_free_chunk(MetaWord* p, size_t word_size);
   241   // Accessors
   242   BlockTreeDictionary* dictionary() const { return _dictionary; }
   244  public:
   245   BlockFreelist();
   246   ~BlockFreelist();
   248   // Get and return a block to the free list
   249   MetaWord* get_block(size_t word_size);
   250   void return_block(MetaWord* p, size_t word_size);
   252   size_t total_size() {
   253   if (dictionary() == NULL) {
   254     return 0;
   255   } else {
   256     return dictionary()->total_size();
   257   }
   258 }
   260   void print_on(outputStream* st) const;
   261 };
   263 class VirtualSpaceNode : public CHeapObj<mtClass> {
   264   friend class VirtualSpaceList;
   266   // Link to next VirtualSpaceNode
   267   VirtualSpaceNode* _next;
   269   // total in the VirtualSpace
   270   MemRegion _reserved;
   271   ReservedSpace _rs;
   272   VirtualSpace _virtual_space;
   273   MetaWord* _top;
   275   // Convenience functions for logical bottom and end
   276   MetaWord* bottom() const { return (MetaWord*) _virtual_space.low(); }
   277   MetaWord* end() const { return (MetaWord*) _virtual_space.high(); }
   279   // Convenience functions to access the _virtual_space
   280   char* low()  const { return virtual_space()->low(); }
   281   char* high() const { return virtual_space()->high(); }
   283  public:
   285   VirtualSpaceNode(size_t byte_size);
   286   VirtualSpaceNode(ReservedSpace rs) : _top(NULL), _next(NULL), _rs(rs) {}
   287   ~VirtualSpaceNode();
   289   // address of next available space in _virtual_space;
   290   // Accessors
   291   VirtualSpaceNode* next() { return _next; }
   292   void set_next(VirtualSpaceNode* v) { _next = v; }
   294   void set_reserved(MemRegion const v) { _reserved = v; }
   295   void set_top(MetaWord* v) { _top = v; }
   297   // Accessors
   298   MemRegion* reserved() { return &_reserved; }
   299   VirtualSpace* virtual_space() const { return (VirtualSpace*) &_virtual_space; }
   301   // Returns true if "word_size" is available in the virtual space
   302   bool is_available(size_t word_size) { return _top + word_size <= end(); }
   304   MetaWord* top() const { return _top; }
   305   void inc_top(size_t word_size) { _top += word_size; }
   307   // used and capacity in this single entry in the list
   308   size_t used_words_in_vs() const;
   309   size_t capacity_words_in_vs() const;
   311   bool initialize();
   313   // get space from the virtual space
   314   Metachunk* take_from_committed(size_t chunk_word_size);
   316   // Allocate a chunk from the virtual space and return it.
   317   Metachunk* get_chunk_vs(size_t chunk_word_size);
   318   Metachunk* get_chunk_vs_with_expand(size_t chunk_word_size);
   320   // Expands/shrinks the committed space in a virtual space.  Delegates
   321   // to Virtualspace
   322   bool expand_by(size_t words, bool pre_touch = false);
   323   bool shrink_by(size_t words);
   325 #ifdef ASSERT
   326   // Debug support
   327   static void verify_virtual_space_total();
   328   static void verify_virtual_space_count();
   329   void mangle();
   330 #endif
   332   void print_on(outputStream* st) const;
   333 };
   335   // byte_size is the size of the associated virtualspace.
   336 VirtualSpaceNode::VirtualSpaceNode(size_t byte_size) : _top(NULL), _next(NULL), _rs(0) {
   337   // This allocates memory with mmap.  For DumpSharedspaces, allocate the
   338   // space at low memory so that other shared images don't conflict.
   339   // This is the same address as memory needed for UseCompressedOops but
   340   // compressed oops don't work with CDS (offsets in metadata are wrong), so
   341   // borrow the same address.
   342   if (DumpSharedSpaces) {
   343     char* shared_base = (char*)HeapBaseMinAddress;
   344     _rs = ReservedSpace(byte_size, 0, false, shared_base, 0);
   345     if (_rs.is_reserved()) {
   346       assert(_rs.base() == shared_base, "should match");
   347     } else {
   348       // If we are dumping the heap, then allocate a wasted block of address
   349       // space in order to push the heap to a lower address.  This extra
   350       // address range allows for other (or larger) libraries to be loaded
   351       // without them occupying the space required for the shared spaces.
   352       uintx reserved = 0;
   353       uintx block_size = 64*1024*1024;
   354       while (reserved < SharedDummyBlockSize) {
   355         char* dummy = os::reserve_memory(block_size);
   356         reserved += block_size;
   357       }
   358       _rs = ReservedSpace(byte_size);
   359     }
   360     MetaspaceShared::set_shared_rs(&_rs);
   361   } else {
   362     _rs = ReservedSpace(byte_size);
   363   }
   365   MemTracker::record_virtual_memory_type((address)_rs.base(), mtClass);
   366 }
   368 // List of VirtualSpaces for metadata allocation.
   369 // It has a  _next link for singly linked list and a MemRegion
   370 // for total space in the VirtualSpace.
   371 class VirtualSpaceList : public CHeapObj<mtClass> {
   372   friend class VirtualSpaceNode;
   374   enum VirtualSpaceSizes {
   375     VirtualSpaceSize = 256 * K
   376   };
   378   // Global list of virtual spaces
   379   // Head of the list
   380   VirtualSpaceNode* _virtual_space_list;
   381   // virtual space currently being used for allocations
   382   VirtualSpaceNode* _current_virtual_space;
   383   // Free chunk list for all other metadata
   384   ChunkManager      _chunk_manager;
   386   // Can this virtual list allocate >1 spaces?  Also, used to determine
   387   // whether to allocate unlimited small chunks in this virtual space
   388   bool _is_class;
   389   bool can_grow() const { return !is_class() || !UseCompressedKlassPointers; }
   391   // Sum of space in all virtual spaces and number of virtual spaces
   392   size_t _virtual_space_total;
   393   size_t _virtual_space_count;
   395   ~VirtualSpaceList();
   397   VirtualSpaceNode* virtual_space_list() const { return _virtual_space_list; }
   399   void set_virtual_space_list(VirtualSpaceNode* v) {
   400     _virtual_space_list = v;
   401   }
   402   void set_current_virtual_space(VirtualSpaceNode* v) {
   403     _current_virtual_space = v;
   404   }
   406   void link_vs(VirtualSpaceNode* new_entry, size_t vs_word_size);
   408   // Get another virtual space and add it to the list.  This
   409   // is typically prompted by a failed attempt to allocate a chunk
   410   // and is typically followed by the allocation of a chunk.
   411   bool grow_vs(size_t vs_word_size);
   413  public:
   414   VirtualSpaceList(size_t word_size);
   415   VirtualSpaceList(ReservedSpace rs);
   417   Metachunk* get_new_chunk(size_t word_size,
   418                            size_t grow_chunks_by_words,
   419                            size_t medium_chunk_bunch);
   421   // Get the first chunk for a Metaspace.  Used for
   422   // special cases such as the boot class loader, reflection
   423   // class loader and anonymous class loader.
   424   Metachunk* get_initialization_chunk(size_t word_size, size_t chunk_bunch);
   426   VirtualSpaceNode* current_virtual_space() {
   427     return _current_virtual_space;
   428   }
   430   ChunkManager* chunk_manager() { return &_chunk_manager; }
   431   bool is_class() const { return _is_class; }
   433   // Allocate the first virtualspace.
   434   void initialize(size_t word_size);
   436   size_t virtual_space_total() { return _virtual_space_total; }
   437   void inc_virtual_space_total(size_t v) {
   438     Atomic::add_ptr(v, &_virtual_space_total);
   439   }
   441   size_t virtual_space_count() { return _virtual_space_count; }
   442   void inc_virtual_space_count() {
   443     Atomic::inc_ptr(&_virtual_space_count);
   444   }
   446   // Used and capacity in the entire list of virtual spaces.
   447   // These are global values shared by all Metaspaces
   448   size_t capacity_words_sum();
   449   size_t capacity_bytes_sum() { return capacity_words_sum() * BytesPerWord; }
   450   size_t used_words_sum();
   451   size_t used_bytes_sum() { return used_words_sum() * BytesPerWord; }
   453   bool contains(const void *ptr);
   455   void print_on(outputStream* st) const;
   457   class VirtualSpaceListIterator : public StackObj {
   458     VirtualSpaceNode* _virtual_spaces;
   459    public:
   460     VirtualSpaceListIterator(VirtualSpaceNode* virtual_spaces) :
   461       _virtual_spaces(virtual_spaces) {}
   463     bool repeat() {
   464       return _virtual_spaces != NULL;
   465     }
   467     VirtualSpaceNode* get_next() {
   468       VirtualSpaceNode* result = _virtual_spaces;
   469       if (_virtual_spaces != NULL) {
   470         _virtual_spaces = _virtual_spaces->next();
   471       }
   472       return result;
   473     }
   474   };
   475 };
   477 class Metadebug : AllStatic {
   478   // Debugging support for Metaspaces
   479   static int _deallocate_block_a_lot_count;
   480   static int _deallocate_chunk_a_lot_count;
   481   static int _allocation_fail_alot_count;
   483  public:
   484   static int deallocate_block_a_lot_count() {
   485     return _deallocate_block_a_lot_count;
   486   }
   487   static void set_deallocate_block_a_lot_count(int v) {
   488     _deallocate_block_a_lot_count = v;
   489   }
   490   static void inc_deallocate_block_a_lot_count() {
   491     _deallocate_block_a_lot_count++;
   492   }
   493   static int deallocate_chunk_a_lot_count() {
   494     return _deallocate_chunk_a_lot_count;
   495   }
   496   static void reset_deallocate_chunk_a_lot_count() {
   497     _deallocate_chunk_a_lot_count = 1;
   498   }
   499   static void inc_deallocate_chunk_a_lot_count() {
   500     _deallocate_chunk_a_lot_count++;
   501   }
   503   static void init_allocation_fail_alot_count();
   504 #ifdef ASSERT
   505   static bool test_metadata_failure();
   506 #endif
   508   static void deallocate_chunk_a_lot(SpaceManager* sm,
   509                                      size_t chunk_word_size);
   510   static void deallocate_block_a_lot(SpaceManager* sm,
   511                                      size_t chunk_word_size);
   513 };
   515 int Metadebug::_deallocate_block_a_lot_count = 0;
   516 int Metadebug::_deallocate_chunk_a_lot_count = 0;
   517 int Metadebug::_allocation_fail_alot_count = 0;
   519 //  SpaceManager - used by Metaspace to handle allocations
   520 class SpaceManager : public CHeapObj<mtClass> {
   521   friend class Metaspace;
   522   friend class Metadebug;
   524  private:
   526   // protects allocations and contains.
   527   Mutex* const _lock;
   529   // Chunk related size
   530   size_t _medium_chunk_bunch;
   532   // List of chunks in use by this SpaceManager.  Allocations
   533   // are done from the current chunk.  The list is used for deallocating
   534   // chunks when the SpaceManager is freed.
   535   Metachunk* _chunks_in_use[NumberOfInUseLists];
   536   Metachunk* _current_chunk;
   538   // Virtual space where allocation comes from.
   539   VirtualSpaceList* _vs_list;
   541   // Number of small chunks to allocate to a manager
   542   // If class space manager, small chunks are unlimited
   543   static uint const _small_chunk_limit;
   544   bool has_small_chunk_limit() { return !vs_list()->is_class(); }
   546   // Sum of all space in allocated chunks
   547   size_t _allocation_total;
   549   // Free lists of blocks are per SpaceManager since they
   550   // are assumed to be in chunks in use by the SpaceManager
   551   // and all chunks in use by a SpaceManager are freed when
   552   // the class loader using the SpaceManager is collected.
   553   BlockFreelist _block_freelists;
   555   // protects virtualspace and chunk expansions
   556   static const char*  _expand_lock_name;
   557   static const int    _expand_lock_rank;
   558   static Mutex* const _expand_lock;
   560  private:
   561   // Accessors
   562   Metachunk* chunks_in_use(ChunkIndex index) const { return _chunks_in_use[index]; }
   563   void set_chunks_in_use(ChunkIndex index, Metachunk* v) { _chunks_in_use[index] = v; }
   565   BlockFreelist* block_freelists() const {
   566     return (BlockFreelist*) &_block_freelists;
   567   }
   569   VirtualSpaceList* vs_list() const    { return _vs_list; }
   571   Metachunk* current_chunk() const { return _current_chunk; }
   572   void set_current_chunk(Metachunk* v) {
   573     _current_chunk = v;
   574   }
   576   Metachunk* find_current_chunk(size_t word_size);
   578   // Add chunk to the list of chunks in use
   579   void add_chunk(Metachunk* v, bool make_current);
   581   Mutex* lock() const { return _lock; }
   583   const char* chunk_size_name(ChunkIndex index) const;
   585  protected:
   586   void initialize();
   588  public:
   589   SpaceManager(Mutex* lock,
   590                VirtualSpaceList* vs_list);
   591   ~SpaceManager();
   593   enum ChunkMultiples {
   594     MediumChunkMultiple = 4
   595   };
   597   // Accessors
   598   size_t specialized_chunk_size() { return SpecializedChunk; }
   599   size_t small_chunk_size() { return (size_t) vs_list()->is_class() ? ClassSmallChunk : SmallChunk; }
   600   size_t medium_chunk_size() { return (size_t) vs_list()->is_class() ? ClassMediumChunk : MediumChunk; }
   601   size_t medium_chunk_bunch() { return medium_chunk_size() * MediumChunkMultiple; }
   603   size_t allocation_total() const { return _allocation_total; }
   604   void inc_allocation_total(size_t v) { Atomic::add_ptr(v, &_allocation_total); }
   605   bool is_humongous(size_t word_size) { return word_size > medium_chunk_size(); }
   607   static Mutex* expand_lock() { return _expand_lock; }
   609   // Set the sizes for the initial chunks.
   610   void get_initial_chunk_sizes(Metaspace::MetaspaceType type,
   611                                size_t* chunk_word_size,
   612                                size_t* class_chunk_word_size);
   614   size_t sum_capacity_in_chunks_in_use() const;
   615   size_t sum_used_in_chunks_in_use() const;
   616   size_t sum_free_in_chunks_in_use() const;
   617   size_t sum_waste_in_chunks_in_use() const;
   618   size_t sum_waste_in_chunks_in_use(ChunkIndex index ) const;
   620   size_t sum_count_in_chunks_in_use();
   621   size_t sum_count_in_chunks_in_use(ChunkIndex i);
   623   Metachunk* get_new_chunk(size_t word_size, size_t grow_chunks_by_words);
   625   // Block allocation and deallocation.
   626   // Allocates a block from the current chunk
   627   MetaWord* allocate(size_t word_size);
   629   // Helper for allocations
   630   MetaWord* allocate_work(size_t word_size);
   632   // Returns a block to the per manager freelist
   633   void deallocate(MetaWord* p, size_t word_size);
   635   // Based on the allocation size and a minimum chunk size,
   636   // returned chunk size (for expanding space for chunk allocation).
   637   size_t calc_chunk_size(size_t allocation_word_size);
   639   // Called when an allocation from the current chunk fails.
   640   // Gets a new chunk (may require getting a new virtual space),
   641   // and allocates from that chunk.
   642   MetaWord* grow_and_allocate(size_t word_size);
   644   // debugging support.
   646   void dump(outputStream* const out) const;
   647   void print_on(outputStream* st) const;
   648   void locked_print_chunks_in_use_on(outputStream* st) const;
   650   void verify();
   651   void verify_chunk_size(Metachunk* chunk);
   652   NOT_PRODUCT(void mangle_freed_chunks();)
   653 #ifdef ASSERT
   654   void verify_allocation_total();
   655 #endif
   656 };
   658 uint const SpaceManager::_small_chunk_limit = 4;
   660 const char* SpaceManager::_expand_lock_name =
   661   "SpaceManager chunk allocation lock";
   662 const int SpaceManager::_expand_lock_rank = Monitor::leaf - 1;
   663 Mutex* const SpaceManager::_expand_lock =
   664   new Mutex(SpaceManager::_expand_lock_rank,
   665             SpaceManager::_expand_lock_name,
   666             Mutex::_allow_vm_block_flag);
   668 // BlockFreelist methods
   670 BlockFreelist::BlockFreelist() : _dictionary(NULL) {}
   672 BlockFreelist::~BlockFreelist() {
   673   if (_dictionary != NULL) {
   674     if (Verbose && TraceMetadataChunkAllocation) {
   675       _dictionary->print_free_lists(gclog_or_tty);
   676     }
   677     delete _dictionary;
   678   }
   679 }
   681 Metablock* BlockFreelist::initialize_free_chunk(MetaWord* p, size_t word_size) {
   682   Metablock* block = (Metablock*) p;
   683   block->set_word_size(word_size);
   684   block->set_prev(NULL);
   685   block->set_next(NULL);
   687   return block;
   688 }
   690 void BlockFreelist::return_block(MetaWord* p, size_t word_size) {
   691   Metablock* free_chunk = initialize_free_chunk(p, word_size);
   692   if (dictionary() == NULL) {
   693    _dictionary = new BlockTreeDictionary();
   694   }
   695   dictionary()->return_chunk(free_chunk);
   696 }
   698 MetaWord* BlockFreelist::get_block(size_t word_size) {
   699   if (dictionary() == NULL) {
   700     return NULL;
   701   }
   703   if (word_size < TreeChunk<Metablock, FreeList>::min_size()) {
   704     // Dark matter.  Too small for dictionary.
   705     return NULL;
   706   }
   708   Metablock* free_block =
   709     dictionary()->get_chunk(word_size, FreeBlockDictionary<Metablock>::exactly);
   710   if (free_block == NULL) {
   711     return NULL;
   712   }
   714   return (MetaWord*) free_block;
   715 }
   717 void BlockFreelist::print_on(outputStream* st) const {
   718   if (dictionary() == NULL) {
   719     return;
   720   }
   721   dictionary()->print_free_lists(st);
   722 }
   724 // VirtualSpaceNode methods
   726 VirtualSpaceNode::~VirtualSpaceNode() {
   727   _rs.release();
   728 }
   730 size_t VirtualSpaceNode::used_words_in_vs() const {
   731   return pointer_delta(top(), bottom(), sizeof(MetaWord));
   732 }
   734 // Space committed in the VirtualSpace
   735 size_t VirtualSpaceNode::capacity_words_in_vs() const {
   736   return pointer_delta(end(), bottom(), sizeof(MetaWord));
   737 }
   740 // Allocates the chunk from the virtual space only.
   741 // This interface is also used internally for debugging.  Not all
   742 // chunks removed here are necessarily used for allocation.
   743 Metachunk* VirtualSpaceNode::take_from_committed(size_t chunk_word_size) {
   744   // Bottom of the new chunk
   745   MetaWord* chunk_limit = top();
   746   assert(chunk_limit != NULL, "Not safe to call this method");
   748   if (!is_available(chunk_word_size)) {
   749     if (TraceMetadataChunkAllocation) {
   750       tty->print("VirtualSpaceNode::take_from_committed() not available %d words ", chunk_word_size);
   751       // Dump some information about the virtual space that is nearly full
   752       print_on(tty);
   753     }
   754     return NULL;
   755   }
   757   // Take the space  (bump top on the current virtual space).
   758   inc_top(chunk_word_size);
   760   // Point the chunk at the space
   761   Metachunk* result = Metachunk::initialize(chunk_limit, chunk_word_size);
   762   return result;
   763 }
   766 // Expand the virtual space (commit more of the reserved space)
   767 bool VirtualSpaceNode::expand_by(size_t words, bool pre_touch) {
   768   size_t bytes = words * BytesPerWord;
   769   bool result =  virtual_space()->expand_by(bytes, pre_touch);
   770   if (TraceMetavirtualspaceAllocation && !result) {
   771     gclog_or_tty->print_cr("VirtualSpaceNode::expand_by() failed "
   772                            "for byte size " SIZE_FORMAT, bytes);
   773     virtual_space()->print();
   774   }
   775   return result;
   776 }
   778 // Shrink the virtual space (commit more of the reserved space)
   779 bool VirtualSpaceNode::shrink_by(size_t words) {
   780   size_t bytes = words * BytesPerWord;
   781   virtual_space()->shrink_by(bytes);
   782   return true;
   783 }
   785 // Add another chunk to the chunk list.
   787 Metachunk* VirtualSpaceNode::get_chunk_vs(size_t chunk_word_size) {
   788   assert_lock_strong(SpaceManager::expand_lock());
   789   Metachunk* result = NULL;
   791   return take_from_committed(chunk_word_size);
   792 }
   794 Metachunk* VirtualSpaceNode::get_chunk_vs_with_expand(size_t chunk_word_size) {
   795   assert_lock_strong(SpaceManager::expand_lock());
   797   Metachunk* new_chunk = get_chunk_vs(chunk_word_size);
   799   if (new_chunk == NULL) {
   800     // Only a small part of the virtualspace is committed when first
   801     // allocated so committing more here can be expected.
   802     size_t page_size_words = os::vm_page_size() / BytesPerWord;
   803     size_t aligned_expand_vs_by_words = align_size_up(chunk_word_size,
   804                                                     page_size_words);
   805     expand_by(aligned_expand_vs_by_words, false);
   806     new_chunk = get_chunk_vs(chunk_word_size);
   807   }
   808   return new_chunk;
   809 }
   811 bool VirtualSpaceNode::initialize() {
   813   if (!_rs.is_reserved()) {
   814     return false;
   815   }
   817   // An allocation out of this Virtualspace that is larger
   818   // than an initial commit size can waste that initial committed
   819   // space.
   820   size_t committed_byte_size = 0;
   821   bool result = virtual_space()->initialize(_rs, committed_byte_size);
   822   if (result) {
   823     set_top((MetaWord*)virtual_space()->low());
   824     set_reserved(MemRegion((HeapWord*)_rs.base(),
   825                  (HeapWord*)(_rs.base() + _rs.size())));
   827     assert(reserved()->start() == (HeapWord*) _rs.base(),
   828       err_msg("Reserved start was not set properly " PTR_FORMAT
   829         " != " PTR_FORMAT, reserved()->start(), _rs.base()));
   830     assert(reserved()->word_size() == _rs.size() / BytesPerWord,
   831       err_msg("Reserved size was not set properly " SIZE_FORMAT
   832         " != " SIZE_FORMAT, reserved()->word_size(),
   833         _rs.size() / BytesPerWord));
   834   }
   836   return result;
   837 }
   839 void VirtualSpaceNode::print_on(outputStream* st) const {
   840   size_t used = used_words_in_vs();
   841   size_t capacity = capacity_words_in_vs();
   842   VirtualSpace* vs = virtual_space();
   843   st->print_cr("   space @ " PTR_FORMAT " " SIZE_FORMAT "K, %3d%% used "
   844            "[" PTR_FORMAT ", " PTR_FORMAT ", "
   845            PTR_FORMAT ", " PTR_FORMAT ")",
   846            vs, capacity / K,
   847            capacity == 0 ? 0 : used * 100 / capacity,
   848            bottom(), top(), end(),
   849            vs->high_boundary());
   850 }
   852 #ifdef ASSERT
   853 void VirtualSpaceNode::mangle() {
   854   size_t word_size = capacity_words_in_vs();
   855   Copy::fill_to_words((HeapWord*) low(), word_size, 0xf1f1f1f1);
   856 }
   857 #endif // ASSERT
   859 // VirtualSpaceList methods
   860 // Space allocated from the VirtualSpace
   862 VirtualSpaceList::~VirtualSpaceList() {
   863   VirtualSpaceListIterator iter(virtual_space_list());
   864   while (iter.repeat()) {
   865     VirtualSpaceNode* vsl = iter.get_next();
   866     delete vsl;
   867   }
   868 }
   870 size_t VirtualSpaceList::used_words_sum() {
   871   size_t allocated_by_vs = 0;
   872   VirtualSpaceListIterator iter(virtual_space_list());
   873   while (iter.repeat()) {
   874     VirtualSpaceNode* vsl = iter.get_next();
   875     // Sum used region [bottom, top) in each virtualspace
   876     allocated_by_vs += vsl->used_words_in_vs();
   877   }
   878   assert(allocated_by_vs >= chunk_manager()->free_chunks_total(),
   879     err_msg("Total in free chunks " SIZE_FORMAT
   880             " greater than total from virtual_spaces " SIZE_FORMAT,
   881             allocated_by_vs, chunk_manager()->free_chunks_total()));
   882   size_t used =
   883     allocated_by_vs - chunk_manager()->free_chunks_total();
   884   return used;
   885 }
   887 // Space available in all MetadataVirtualspaces allocated
   888 // for metadata.  This is the upper limit on the capacity
   889 // of chunks allocated out of all the MetadataVirtualspaces.
   890 size_t VirtualSpaceList::capacity_words_sum() {
   891   size_t capacity = 0;
   892   VirtualSpaceListIterator iter(virtual_space_list());
   893   while (iter.repeat()) {
   894     VirtualSpaceNode* vsl = iter.get_next();
   895     capacity += vsl->capacity_words_in_vs();
   896   }
   897   return capacity;
   898 }
   900 VirtualSpaceList::VirtualSpaceList(size_t word_size ) :
   901                                    _is_class(false),
   902                                    _virtual_space_list(NULL),
   903                                    _current_virtual_space(NULL),
   904                                    _virtual_space_total(0),
   905                                    _virtual_space_count(0) {
   906   MutexLockerEx cl(SpaceManager::expand_lock(),
   907                    Mutex::_no_safepoint_check_flag);
   908   bool initialization_succeeded = grow_vs(word_size);
   910   assert(initialization_succeeded,
   911     " VirtualSpaceList initialization should not fail");
   912 }
   914 VirtualSpaceList::VirtualSpaceList(ReservedSpace rs) :
   915                                    _is_class(true),
   916                                    _virtual_space_list(NULL),
   917                                    _current_virtual_space(NULL),
   918                                    _virtual_space_total(0),
   919                                    _virtual_space_count(0) {
   920   MutexLockerEx cl(SpaceManager::expand_lock(),
   921                    Mutex::_no_safepoint_check_flag);
   922   VirtualSpaceNode* class_entry = new VirtualSpaceNode(rs);
   923   bool succeeded = class_entry->initialize();
   924   assert(succeeded, " VirtualSpaceList initialization should not fail");
   925   link_vs(class_entry, rs.size()/BytesPerWord);
   926 }
   928 // Allocate another meta virtual space and add it to the list.
   929 bool VirtualSpaceList::grow_vs(size_t vs_word_size) {
   930   assert_lock_strong(SpaceManager::expand_lock());
   931   if (vs_word_size == 0) {
   932     return false;
   933   }
   934   // Reserve the space
   935   size_t vs_byte_size = vs_word_size * BytesPerWord;
   936   assert(vs_byte_size % os::vm_page_size() == 0, "Not aligned");
   938   // Allocate the meta virtual space and initialize it.
   939   VirtualSpaceNode* new_entry = new VirtualSpaceNode(vs_byte_size);
   940   if (!new_entry->initialize()) {
   941     delete new_entry;
   942     return false;
   943   } else {
   944     // ensure lock-free iteration sees fully initialized node
   945     OrderAccess::storestore();
   946     link_vs(new_entry, vs_word_size);
   947     return true;
   948   }
   949 }
   951 void VirtualSpaceList::link_vs(VirtualSpaceNode* new_entry, size_t vs_word_size) {
   952   if (virtual_space_list() == NULL) {
   953       set_virtual_space_list(new_entry);
   954   } else {
   955     current_virtual_space()->set_next(new_entry);
   956   }
   957   set_current_virtual_space(new_entry);
   958   inc_virtual_space_total(vs_word_size);
   959   inc_virtual_space_count();
   960 #ifdef ASSERT
   961   new_entry->mangle();
   962 #endif
   963   if (TraceMetavirtualspaceAllocation && Verbose) {
   964     VirtualSpaceNode* vsl = current_virtual_space();
   965     vsl->print_on(tty);
   966   }
   967 }
   969 Metachunk* VirtualSpaceList::get_new_chunk(size_t word_size,
   970                                            size_t grow_chunks_by_words,
   971                                            size_t medium_chunk_bunch) {
   973   // Get a chunk from the chunk freelist
   974   Metachunk* next = chunk_manager()->chunk_freelist_allocate(grow_chunks_by_words);
   976   // Allocate a chunk out of the current virtual space.
   977   if (next == NULL) {
   978     next = current_virtual_space()->get_chunk_vs(grow_chunks_by_words);
   979   }
   981   if (next == NULL) {
   982     // Not enough room in current virtual space.  Try to commit
   983     // more space.
   984     size_t expand_vs_by_words = MAX2(medium_chunk_bunch,
   985                                      grow_chunks_by_words);
   986     size_t page_size_words = os::vm_page_size() / BytesPerWord;
   987     size_t aligned_expand_vs_by_words = align_size_up(expand_vs_by_words,
   988                                                         page_size_words);
   989     bool vs_expanded =
   990       current_virtual_space()->expand_by(aligned_expand_vs_by_words, false);
   991     if (!vs_expanded) {
   992       // Should the capacity of the metaspaces be expanded for
   993       // this allocation?  If it's the virtual space for classes and is
   994       // being used for CompressedHeaders, don't allocate a new virtualspace.
   995       if (can_grow() && MetaspaceGC::should_expand(this, word_size)) {
   996         // Get another virtual space.
   997           size_t grow_vs_words =
   998             MAX2((size_t)VirtualSpaceSize, aligned_expand_vs_by_words);
   999         if (grow_vs(grow_vs_words)) {
  1000           // Got it.  It's on the list now.  Get a chunk from it.
  1001           next = current_virtual_space()->get_chunk_vs_with_expand(grow_chunks_by_words);
  1003       } else {
  1004         // Allocation will fail and induce a GC
  1005         if (TraceMetadataChunkAllocation && Verbose) {
  1006           gclog_or_tty->print_cr("VirtualSpaceList::get_new_chunk():"
  1007             " Fail instead of expand the metaspace");
  1010     } else {
  1011       // The virtual space expanded, get a new chunk
  1012       next = current_virtual_space()->get_chunk_vs(grow_chunks_by_words);
  1013       assert(next != NULL, "Just expanded, should succeed");
  1017   assert(next == NULL || (next->next() == NULL && next->prev() == NULL),
  1018          "New chunk is still on some list");
  1019   return next;
  1022 Metachunk* VirtualSpaceList::get_initialization_chunk(size_t chunk_word_size,
  1023                                                       size_t chunk_bunch) {
  1024   // Get a chunk from the chunk freelist
  1025   Metachunk* new_chunk = get_new_chunk(chunk_word_size,
  1026                                        chunk_word_size,
  1027                                        chunk_bunch);
  1028   return new_chunk;
  1031 void VirtualSpaceList::print_on(outputStream* st) const {
  1032   if (TraceMetadataChunkAllocation && Verbose) {
  1033     VirtualSpaceListIterator iter(virtual_space_list());
  1034     while (iter.repeat()) {
  1035       VirtualSpaceNode* node = iter.get_next();
  1036       node->print_on(st);
  1041 bool VirtualSpaceList::contains(const void *ptr) {
  1042   VirtualSpaceNode* list = virtual_space_list();
  1043   VirtualSpaceListIterator iter(list);
  1044   while (iter.repeat()) {
  1045     VirtualSpaceNode* node = iter.get_next();
  1046     if (node->reserved()->contains(ptr)) {
  1047       return true;
  1050   return false;
  1054 // MetaspaceGC methods
  1056 // VM_CollectForMetadataAllocation is the vm operation used to GC.
  1057 // Within the VM operation after the GC the attempt to allocate the metadata
  1058 // should succeed.  If the GC did not free enough space for the metaspace
  1059 // allocation, the HWM is increased so that another virtualspace will be
  1060 // allocated for the metadata.  With perm gen the increase in the perm
  1061 // gen had bounds, MinMetaspaceExpansion and MaxMetaspaceExpansion.  The
  1062 // metaspace policy uses those as the small and large steps for the HWM.
  1063 //
  1064 // After the GC the compute_new_size() for MetaspaceGC is called to
  1065 // resize the capacity of the metaspaces.  The current implementation
  1066 // is based on the flags MinMetaspaceFreeRatio and MaxHeapFreeRatio used
  1067 // to resize the Java heap by some GC's.  New flags can be implemented
  1068 // if really needed.  MinHeapFreeRatio is used to calculate how much
  1069 // free space is desirable in the metaspace capacity to decide how much
  1070 // to increase the HWM.  MaxMetaspaceFreeRatio is used to decide how much
  1071 // free space is desirable in the metaspace capacity before decreasing
  1072 // the HWM.
  1074 // Calculate the amount to increase the high water mark (HWM).
  1075 // Increase by a minimum amount (MinMetaspaceExpansion) so that
  1076 // another expansion is not requested too soon.  If that is not
  1077 // enough to satisfy the allocation (i.e. big enough for a word_size
  1078 // allocation), increase by MaxMetaspaceExpansion.  If that is still
  1079 // not enough, expand by the size of the allocation (word_size) plus
  1080 // some.
  1081 size_t MetaspaceGC::delta_capacity_until_GC(size_t word_size) {
  1082   size_t before_inc = MetaspaceGC::capacity_until_GC();
  1083   size_t min_delta_words = MinMetaspaceExpansion / BytesPerWord;
  1084   size_t max_delta_words = MaxMetaspaceExpansion / BytesPerWord;
  1085   size_t page_size_words = os::vm_page_size() / BytesPerWord;
  1086   size_t size_delta_words = align_size_up(word_size, page_size_words);
  1087   size_t delta_words = MAX2(size_delta_words, min_delta_words);
  1088   if (delta_words > min_delta_words) {
  1089     // Don't want to hit the high water mark on the next
  1090     // allocation so make the delta greater than just enough
  1091     // for this allocation.
  1092     delta_words = MAX2(delta_words, max_delta_words);
  1093     if (delta_words > max_delta_words) {
  1094       // This allocation is large but the next ones are probably not
  1095       // so increase by the minimum.
  1096       delta_words = delta_words + min_delta_words;
  1099   return delta_words;
  1102 bool MetaspaceGC::should_expand(VirtualSpaceList* vsl, size_t word_size) {
  1104   // Class virtual space should always be expanded.  Call GC for the other
  1105   // metadata virtual space.
  1106   if (vsl == Metaspace::class_space_list()) return true;
  1108   // If the user wants a limit, impose one.
  1109   size_t max_metaspace_size_words = MaxMetaspaceSize / BytesPerWord;
  1110   size_t metaspace_size_words = MetaspaceSize / BytesPerWord;
  1111   if (!FLAG_IS_DEFAULT(MaxMetaspaceSize) &&
  1112       vsl->capacity_words_sum() >= max_metaspace_size_words) {
  1113     return false;
  1116   // If this is part of an allocation after a GC, expand
  1117   // unconditionally.
  1118   if(MetaspaceGC::expand_after_GC()) {
  1119     return true;
  1122   // If the capacity is below the minimum capacity, allow the
  1123   // expansion.  Also set the high-water-mark (capacity_until_GC)
  1124   // to that minimum capacity so that a GC will not be induced
  1125   // until that minimum capacity is exceeded.
  1126   if (vsl->capacity_words_sum() < metaspace_size_words ||
  1127       capacity_until_GC() == 0) {
  1128     set_capacity_until_GC(metaspace_size_words);
  1129     return true;
  1130   } else {
  1131     if (vsl->capacity_words_sum() < capacity_until_GC()) {
  1132       return true;
  1133     } else {
  1134       if (TraceMetadataChunkAllocation && Verbose) {
  1135         gclog_or_tty->print_cr("  allocation request size " SIZE_FORMAT
  1136                         "  capacity_until_GC " SIZE_FORMAT
  1137                         "  capacity_words_sum " SIZE_FORMAT
  1138                         "  used_words_sum " SIZE_FORMAT
  1139                         "  free chunks " SIZE_FORMAT
  1140                         "  free chunks count %d",
  1141                         word_size,
  1142                         capacity_until_GC(),
  1143                         vsl->capacity_words_sum(),
  1144                         vsl->used_words_sum(),
  1145                         vsl->chunk_manager()->free_chunks_total(),
  1146                         vsl->chunk_manager()->free_chunks_count());
  1148       return false;
  1153 // Variables are in bytes
  1155 void MetaspaceGC::compute_new_size() {
  1156   assert(_shrink_factor <= 100, "invalid shrink factor");
  1157   uint current_shrink_factor = _shrink_factor;
  1158   _shrink_factor = 0;
  1160   VirtualSpaceList *vsl = Metaspace::space_list();
  1162   size_t capacity_after_gc = vsl->capacity_bytes_sum();
  1163   // Check to see if these two can be calculated without walking the CLDG
  1164   size_t used_after_gc = vsl->used_bytes_sum();
  1165   size_t capacity_until_GC = vsl->capacity_bytes_sum();
  1166   size_t free_after_gc = capacity_until_GC - used_after_gc;
  1168   const double minimum_free_percentage = MinMetaspaceFreeRatio / 100.0;
  1169   const double maximum_used_percentage = 1.0 - minimum_free_percentage;
  1171   const double min_tmp = used_after_gc / maximum_used_percentage;
  1172   size_t minimum_desired_capacity =
  1173     (size_t)MIN2(min_tmp, double(max_uintx));
  1174   // Don't shrink less than the initial generation size
  1175   minimum_desired_capacity = MAX2(minimum_desired_capacity,
  1176                                   MetaspaceSize);
  1178   if (PrintGCDetails && Verbose) {
  1179     const double free_percentage = ((double)free_after_gc) / capacity_until_GC;
  1180     gclog_or_tty->print_cr("\nMetaspaceGC::compute_new_size: ");
  1181     gclog_or_tty->print_cr("  "
  1182                   "  minimum_free_percentage: %6.2f"
  1183                   "  maximum_used_percentage: %6.2f",
  1184                   minimum_free_percentage,
  1185                   maximum_used_percentage);
  1186     double d_free_after_gc = free_after_gc / (double) K;
  1187     gclog_or_tty->print_cr("  "
  1188                   "   free_after_gc       : %6.1fK"
  1189                   "   used_after_gc       : %6.1fK"
  1190                   "   capacity_after_gc   : %6.1fK"
  1191                   "   metaspace HWM     : %6.1fK",
  1192                   free_after_gc / (double) K,
  1193                   used_after_gc / (double) K,
  1194                   capacity_after_gc / (double) K,
  1195                   capacity_until_GC / (double) K);
  1196     gclog_or_tty->print_cr("  "
  1197                   "   free_percentage: %6.2f",
  1198                   free_percentage);
  1202   if (capacity_until_GC < minimum_desired_capacity) {
  1203     // If we have less capacity below the metaspace HWM, then
  1204     // increment the HWM.
  1205     size_t expand_bytes = minimum_desired_capacity - capacity_until_GC;
  1206     // Don't expand unless it's significant
  1207     if (expand_bytes >= MinMetaspaceExpansion) {
  1208       size_t expand_words = expand_bytes / BytesPerWord;
  1209       MetaspaceGC::inc_capacity_until_GC(expand_words);
  1211     if (PrintGCDetails && Verbose) {
  1212       size_t new_capacity_until_GC = MetaspaceGC::capacity_until_GC_in_bytes();
  1213       gclog_or_tty->print_cr("    expanding:"
  1214                     "  minimum_desired_capacity: %6.1fK"
  1215                     "  expand_words: %6.1fK"
  1216                     "  MinMetaspaceExpansion: %6.1fK"
  1217                     "  new metaspace HWM:  %6.1fK",
  1218                     minimum_desired_capacity / (double) K,
  1219                     expand_bytes / (double) K,
  1220                     MinMetaspaceExpansion / (double) K,
  1221                     new_capacity_until_GC / (double) K);
  1223     return;
  1226   // No expansion, now see if we want to shrink
  1227   size_t shrink_words = 0;
  1228   // We would never want to shrink more than this
  1229   size_t max_shrink_words = capacity_until_GC - minimum_desired_capacity;
  1230   assert(max_shrink_words >= 0, err_msg("max_shrink_words " SIZE_FORMAT,
  1231     max_shrink_words));
  1233   // Should shrinking be considered?
  1234   if (MaxMetaspaceFreeRatio < 100) {
  1235     const double maximum_free_percentage = MaxMetaspaceFreeRatio / 100.0;
  1236     const double minimum_used_percentage = 1.0 - maximum_free_percentage;
  1237     const double max_tmp = used_after_gc / minimum_used_percentage;
  1238     size_t maximum_desired_capacity = (size_t)MIN2(max_tmp, double(max_uintx));
  1239     maximum_desired_capacity = MAX2(maximum_desired_capacity,
  1240                                     MetaspaceSize);
  1241     if (PrintGC && Verbose) {
  1242       gclog_or_tty->print_cr("  "
  1243                              "  maximum_free_percentage: %6.2f"
  1244                              "  minimum_used_percentage: %6.2f",
  1245                              maximum_free_percentage,
  1246                              minimum_used_percentage);
  1247       gclog_or_tty->print_cr("  "
  1248                              "  capacity_until_GC: %6.1fK"
  1249                              "  minimum_desired_capacity: %6.1fK"
  1250                              "  maximum_desired_capacity: %6.1fK",
  1251                              capacity_until_GC / (double) K,
  1252                              minimum_desired_capacity / (double) K,
  1253                              maximum_desired_capacity / (double) K);
  1256     assert(minimum_desired_capacity <= maximum_desired_capacity,
  1257            "sanity check");
  1259     if (capacity_until_GC > maximum_desired_capacity) {
  1260       // Capacity too large, compute shrinking size
  1261       shrink_words = capacity_until_GC - maximum_desired_capacity;
  1262       // We don't want shrink all the way back to initSize if people call
  1263       // System.gc(), because some programs do that between "phases" and then
  1264       // we'd just have to grow the heap up again for the next phase.  So we
  1265       // damp the shrinking: 0% on the first call, 10% on the second call, 40%
  1266       // on the third call, and 100% by the fourth call.  But if we recompute
  1267       // size without shrinking, it goes back to 0%.
  1268       shrink_words = shrink_words / 100 * current_shrink_factor;
  1269       assert(shrink_words <= max_shrink_words,
  1270         err_msg("invalid shrink size " SIZE_FORMAT " not <= " SIZE_FORMAT,
  1271           shrink_words, max_shrink_words));
  1272       if (current_shrink_factor == 0) {
  1273         _shrink_factor = 10;
  1274       } else {
  1275         _shrink_factor = MIN2(current_shrink_factor * 4, (uint) 100);
  1277       if (PrintGCDetails && Verbose) {
  1278         gclog_or_tty->print_cr("  "
  1279                       "  shrinking:"
  1280                       "  initSize: %.1fK"
  1281                       "  maximum_desired_capacity: %.1fK",
  1282                       MetaspaceSize / (double) K,
  1283                       maximum_desired_capacity / (double) K);
  1284         gclog_or_tty->print_cr("  "
  1285                       "  shrink_words: %.1fK"
  1286                       "  current_shrink_factor: %d"
  1287                       "  new shrink factor: %d"
  1288                       "  MinMetaspaceExpansion: %.1fK",
  1289                       shrink_words / (double) K,
  1290                       current_shrink_factor,
  1291                       _shrink_factor,
  1292                       MinMetaspaceExpansion / (double) K);
  1298   // Don't shrink unless it's significant
  1299   if (shrink_words >= MinMetaspaceExpansion) {
  1300     VirtualSpaceNode* csp = vsl->current_virtual_space();
  1301     size_t available_to_shrink = csp->capacity_words_in_vs() -
  1302       csp->used_words_in_vs();
  1303     shrink_words = MIN2(shrink_words, available_to_shrink);
  1304     csp->shrink_by(shrink_words);
  1305     MetaspaceGC::dec_capacity_until_GC(shrink_words);
  1306     if (PrintGCDetails && Verbose) {
  1307       size_t new_capacity_until_GC = MetaspaceGC::capacity_until_GC_in_bytes();
  1308       gclog_or_tty->print_cr("  metaspace HWM: %.1fK", new_capacity_until_GC / (double) K);
  1311   assert(vsl->used_bytes_sum() == used_after_gc &&
  1312          used_after_gc <= vsl->capacity_bytes_sum(),
  1313          "sanity check");
  1317 // Metadebug methods
  1319 void Metadebug::deallocate_chunk_a_lot(SpaceManager* sm,
  1320                                        size_t chunk_word_size){
  1321 #ifdef ASSERT
  1322   VirtualSpaceList* vsl = sm->vs_list();
  1323   if (MetaDataDeallocateALot &&
  1324       Metadebug::deallocate_chunk_a_lot_count() % MetaDataDeallocateALotInterval == 0 ) {
  1325     Metadebug::reset_deallocate_chunk_a_lot_count();
  1326     for (uint i = 0; i < metadata_deallocate_a_lock_chunk; i++) {
  1327       Metachunk* dummy_chunk = vsl->current_virtual_space()->take_from_committed(chunk_word_size);
  1328       if (dummy_chunk == NULL) {
  1329         break;
  1331       vsl->chunk_manager()->chunk_freelist_deallocate(dummy_chunk);
  1333       if (TraceMetadataChunkAllocation && Verbose) {
  1334         gclog_or_tty->print("Metadebug::deallocate_chunk_a_lot: %d) ",
  1335                                sm->sum_count_in_chunks_in_use());
  1336         dummy_chunk->print_on(gclog_or_tty);
  1337         gclog_or_tty->print_cr("  Free chunks total %d  count %d",
  1338                                vsl->chunk_manager()->free_chunks_total(),
  1339                                vsl->chunk_manager()->free_chunks_count());
  1342   } else {
  1343     Metadebug::inc_deallocate_chunk_a_lot_count();
  1345 #endif
  1348 void Metadebug::deallocate_block_a_lot(SpaceManager* sm,
  1349                                        size_t raw_word_size){
  1350 #ifdef ASSERT
  1351   if (MetaDataDeallocateALot &&
  1352         Metadebug::deallocate_block_a_lot_count() % MetaDataDeallocateALotInterval == 0 ) {
  1353     Metadebug::set_deallocate_block_a_lot_count(0);
  1354     for (uint i = 0; i < metadata_deallocate_a_lot_block; i++) {
  1355       MetaWord* dummy_block = sm->allocate_work(raw_word_size);
  1356       if (dummy_block == 0) {
  1357         break;
  1359       sm->deallocate(dummy_block, raw_word_size);
  1361   } else {
  1362     Metadebug::inc_deallocate_block_a_lot_count();
  1364 #endif
  1367 void Metadebug::init_allocation_fail_alot_count() {
  1368   if (MetadataAllocationFailALot) {
  1369     _allocation_fail_alot_count =
  1370       1+(long)((double)MetadataAllocationFailALotInterval*os::random()/(max_jint+1.0));
  1374 #ifdef ASSERT
  1375 bool Metadebug::test_metadata_failure() {
  1376   if (MetadataAllocationFailALot &&
  1377       Threads::is_vm_complete()) {
  1378     if (_allocation_fail_alot_count > 0) {
  1379       _allocation_fail_alot_count--;
  1380     } else {
  1381       if (TraceMetadataChunkAllocation && Verbose) {
  1382         gclog_or_tty->print_cr("Metadata allocation failing for "
  1383                                "MetadataAllocationFailALot");
  1385       init_allocation_fail_alot_count();
  1386       return true;
  1389   return false;
  1391 #endif
  1393 // ChunkList methods
  1395 size_t ChunkList::sum_list_size() {
  1396   size_t result = 0;
  1397   Metachunk* cur = head();
  1398   while (cur != NULL) {
  1399     result += cur->word_size();
  1400     cur = cur->next();
  1402   return result;
  1405 size_t ChunkList::sum_list_count() {
  1406   size_t result = 0;
  1407   Metachunk* cur = head();
  1408   while (cur != NULL) {
  1409     result++;
  1410     cur = cur->next();
  1412   return result;
  1415 size_t ChunkList::sum_list_capacity() {
  1416   size_t result = 0;
  1417   Metachunk* cur = head();
  1418   while (cur != NULL) {
  1419     result += cur->capacity_word_size();
  1420     cur = cur->next();
  1422   return result;
  1425 void ChunkList::add_at_head(Metachunk* head, Metachunk* tail) {
  1426   assert_lock_strong(SpaceManager::expand_lock());
  1427   assert(head == tail || tail->next() == NULL,
  1428          "Not the tail or the head has already been added to a list");
  1430   if (TraceMetadataChunkAllocation && Verbose) {
  1431     gclog_or_tty->print("ChunkList::add_at_head(head, tail): ");
  1432     Metachunk* cur = head;
  1433     while (cur != NULL) {
  1434       gclog_or_tty->print(PTR_FORMAT " (" SIZE_FORMAT ") ", cur, cur->word_size());
  1435       cur = cur->next();
  1437     gclog_or_tty->print_cr("");
  1440   if (tail != NULL) {
  1441     tail->set_next(_head);
  1443   set_head(head);
  1446 void ChunkList::add_at_head(Metachunk* list) {
  1447   if (list == NULL) {
  1448     // Nothing to add
  1449     return;
  1451   assert_lock_strong(SpaceManager::expand_lock());
  1452   Metachunk* head = list;
  1453   Metachunk* tail = list;
  1454   Metachunk* cur = head->next();
  1455   // Search for the tail since it is not passed.
  1456   while (cur != NULL) {
  1457     tail = cur;
  1458     cur = cur->next();
  1460   add_at_head(head, tail);
  1463 // ChunkManager methods
  1465 // Verification of _free_chunks_total and _free_chunks_count does not
  1466 // work with the CMS collector because its use of additional locks
  1467 // complicate the mutex deadlock detection but it can still be useful
  1468 // for detecting errors in the chunk accounting with other collectors.
  1470 size_t ChunkManager::free_chunks_total() {
  1471 #ifdef ASSERT
  1472   if (!UseConcMarkSweepGC && !SpaceManager::expand_lock()->is_locked()) {
  1473     MutexLockerEx cl(SpaceManager::expand_lock(),
  1474                      Mutex::_no_safepoint_check_flag);
  1475     slow_locked_verify_free_chunks_total();
  1477 #endif
  1478   return _free_chunks_total;
  1481 size_t ChunkManager::free_chunks_total_in_bytes() {
  1482   return free_chunks_total() * BytesPerWord;
  1485 size_t ChunkManager::free_chunks_count() {
  1486 #ifdef ASSERT
  1487   if (!UseConcMarkSweepGC && !SpaceManager::expand_lock()->is_locked()) {
  1488     MutexLockerEx cl(SpaceManager::expand_lock(),
  1489                      Mutex::_no_safepoint_check_flag);
  1490     // This lock is only needed in debug because the verification
  1491     // of the _free_chunks_totals walks the list of free chunks
  1492     slow_locked_verify_free_chunks_count();
  1494 #endif
  1495   return _free_chunks_count;
  1498 void ChunkManager::locked_verify_free_chunks_total() {
  1499   assert_lock_strong(SpaceManager::expand_lock());
  1500   assert(sum_free_chunks() == _free_chunks_total,
  1501     err_msg("_free_chunks_total " SIZE_FORMAT " is not the"
  1502            " same as sum " SIZE_FORMAT, _free_chunks_total,
  1503            sum_free_chunks()));
  1506 void ChunkManager::verify_free_chunks_total() {
  1507   MutexLockerEx cl(SpaceManager::expand_lock(),
  1508                      Mutex::_no_safepoint_check_flag);
  1509   locked_verify_free_chunks_total();
  1512 void ChunkManager::locked_verify_free_chunks_count() {
  1513   assert_lock_strong(SpaceManager::expand_lock());
  1514   assert(sum_free_chunks_count() == _free_chunks_count,
  1515     err_msg("_free_chunks_count " SIZE_FORMAT " is not the"
  1516            " same as sum " SIZE_FORMAT, _free_chunks_count,
  1517            sum_free_chunks_count()));
  1520 void ChunkManager::verify_free_chunks_count() {
  1521 #ifdef ASSERT
  1522   MutexLockerEx cl(SpaceManager::expand_lock(),
  1523                      Mutex::_no_safepoint_check_flag);
  1524   locked_verify_free_chunks_count();
  1525 #endif
  1528 void ChunkManager::verify() {
  1529   MutexLockerEx cl(SpaceManager::expand_lock(),
  1530                      Mutex::_no_safepoint_check_flag);
  1531   locked_verify();
  1534 void ChunkManager::locked_verify() {
  1535   locked_verify_free_chunks_count();
  1536   locked_verify_free_chunks_total();
  1539 void ChunkManager::locked_print_free_chunks(outputStream* st) {
  1540   assert_lock_strong(SpaceManager::expand_lock());
  1541   st->print_cr("Free chunk total " SIZE_FORMAT "  count " SIZE_FORMAT,
  1542                 _free_chunks_total, _free_chunks_count);
  1545 void ChunkManager::locked_print_sum_free_chunks(outputStream* st) {
  1546   assert_lock_strong(SpaceManager::expand_lock());
  1547   st->print_cr("Sum free chunk total " SIZE_FORMAT "  count " SIZE_FORMAT,
  1548                 sum_free_chunks(), sum_free_chunks_count());
  1550 ChunkList* ChunkManager::free_chunks(ChunkIndex index) {
  1551   return &_free_chunks[index];
  1554 // These methods that sum the free chunk lists are used in printing
  1555 // methods that are used in product builds.
  1556 size_t ChunkManager::sum_free_chunks() {
  1557   assert_lock_strong(SpaceManager::expand_lock());
  1558   size_t result = 0;
  1559   for (ChunkIndex i = ZeroIndex; i < NumberOfFreeLists; i = next_chunk_index(i)) {
  1560     ChunkList* list = free_chunks(i);
  1562     if (list == NULL) {
  1563       continue;
  1566     result = result + list->sum_list_capacity();
  1568   result = result + humongous_dictionary()->total_size();
  1569   return result;
  1572 size_t ChunkManager::sum_free_chunks_count() {
  1573   assert_lock_strong(SpaceManager::expand_lock());
  1574   size_t count = 0;
  1575   for (ChunkIndex i = ZeroIndex; i < NumberOfFreeLists; i = next_chunk_index(i)) {
  1576     ChunkList* list = free_chunks(i);
  1577     if (list == NULL) {
  1578       continue;
  1580     count = count + list->sum_list_count();
  1582   count = count + humongous_dictionary()->total_free_blocks();
  1583   return count;
  1586 ChunkList* ChunkManager::find_free_chunks_list(size_t word_size) {
  1587   ChunkIndex index = list_index(word_size);
  1588   assert(index < HumongousIndex, "No humongous list");
  1589   return free_chunks(index);
  1592 void ChunkManager::free_chunks_put(Metachunk* chunk) {
  1593   assert_lock_strong(SpaceManager::expand_lock());
  1594   ChunkList* free_list = find_free_chunks_list(chunk->word_size());
  1595   chunk->set_next(free_list->head());
  1596   free_list->set_head(chunk);
  1597   // chunk is being returned to the chunk free list
  1598   inc_free_chunks_total(chunk->capacity_word_size());
  1599   slow_locked_verify();
  1602 void ChunkManager::chunk_freelist_deallocate(Metachunk* chunk) {
  1603   // The deallocation of a chunk originates in the freelist
  1604   // manangement code for a Metaspace and does not hold the
  1605   // lock.
  1606   assert(chunk != NULL, "Deallocating NULL");
  1607   assert_lock_strong(SpaceManager::expand_lock());
  1608   slow_locked_verify();
  1609   if (TraceMetadataChunkAllocation) {
  1610     tty->print_cr("ChunkManager::chunk_freelist_deallocate: chunk "
  1611                   PTR_FORMAT "  size " SIZE_FORMAT,
  1612                   chunk, chunk->word_size());
  1614   free_chunks_put(chunk);
  1617 Metachunk* ChunkManager::free_chunks_get(size_t word_size) {
  1618   assert_lock_strong(SpaceManager::expand_lock());
  1620   slow_locked_verify();
  1622   Metachunk* chunk = NULL;
  1623   if (list_index(word_size) != HumongousIndex) {
  1624     ChunkList* free_list = find_free_chunks_list(word_size);
  1625     assert(free_list != NULL, "Sanity check");
  1627     chunk = free_list->head();
  1628     debug_only(Metachunk* debug_head = chunk;)
  1630     if (chunk == NULL) {
  1631       return NULL;
  1634     // Remove the chunk as the head of the list.
  1635     free_list->set_head(chunk->next());
  1637     // Chunk is being removed from the chunks free list.
  1638     dec_free_chunks_total(chunk->capacity_word_size());
  1640     if (TraceMetadataChunkAllocation && Verbose) {
  1641       tty->print_cr("ChunkManager::free_chunks_get: free_list "
  1642                     PTR_FORMAT " head " PTR_FORMAT " size " SIZE_FORMAT,
  1643                     free_list, chunk, chunk->word_size());
  1645   } else {
  1646     chunk = humongous_dictionary()->get_chunk(
  1647       word_size,
  1648       FreeBlockDictionary<Metachunk>::atLeast);
  1650     if (chunk != NULL) {
  1651       if (TraceMetadataHumongousAllocation) {
  1652         size_t waste = chunk->word_size() - word_size;
  1653         tty->print_cr("Free list allocate humongous chunk size " SIZE_FORMAT
  1654                       " for requested size " SIZE_FORMAT
  1655                       " waste " SIZE_FORMAT,
  1656                       chunk->word_size(), word_size, waste);
  1658       // Chunk is being removed from the chunks free list.
  1659       dec_free_chunks_total(chunk->capacity_word_size());
  1660 #ifdef ASSERT
  1661       chunk->set_is_free(false);
  1662 #endif
  1663     } else {
  1664       return NULL;
  1668   // Remove it from the links to this freelist
  1669   chunk->set_next(NULL);
  1670   chunk->set_prev(NULL);
  1671   slow_locked_verify();
  1672   return chunk;
  1675 Metachunk* ChunkManager::chunk_freelist_allocate(size_t word_size) {
  1676   assert_lock_strong(SpaceManager::expand_lock());
  1677   slow_locked_verify();
  1679   // Take from the beginning of the list
  1680   Metachunk* chunk = free_chunks_get(word_size);
  1681   if (chunk == NULL) {
  1682     return NULL;
  1685   assert((word_size <= chunk->word_size()) ||
  1686          list_index(chunk->word_size() == HumongousIndex),
  1687          "Non-humongous variable sized chunk");
  1688   if (TraceMetadataChunkAllocation) {
  1689     size_t list_count;
  1690     if (list_index(word_size) < HumongousIndex) {
  1691       ChunkList* list = find_free_chunks_list(word_size);
  1692       list_count = list->sum_list_count();
  1693     } else {
  1694       list_count = humongous_dictionary()->total_count();
  1696     tty->print("ChunkManager::chunk_freelist_allocate: " PTR_FORMAT " chunk "
  1697                PTR_FORMAT "  size " SIZE_FORMAT " count " SIZE_FORMAT " ",
  1698                this, chunk, chunk->word_size(), list_count);
  1699     locked_print_free_chunks(tty);
  1702   return chunk;
  1705 void ChunkManager::print_on(outputStream* out) {
  1706   if (PrintFLSStatistics != 0) {
  1707     humongous_dictionary()->report_statistics();
  1711 // SpaceManager methods
  1713 void SpaceManager::get_initial_chunk_sizes(Metaspace::MetaspaceType type,
  1714                                            size_t* chunk_word_size,
  1715                                            size_t* class_chunk_word_size) {
  1716   switch (type) {
  1717   case Metaspace::BootMetaspaceType:
  1718     *chunk_word_size = Metaspace::first_chunk_word_size();
  1719     *class_chunk_word_size = Metaspace::first_class_chunk_word_size();
  1720     break;
  1721   case Metaspace::ROMetaspaceType:
  1722     *chunk_word_size = SharedReadOnlySize / wordSize;
  1723     *class_chunk_word_size = ClassSpecializedChunk;
  1724     break;
  1725   case Metaspace::ReadWriteMetaspaceType:
  1726     *chunk_word_size = SharedReadWriteSize / wordSize;
  1727     *class_chunk_word_size = ClassSpecializedChunk;
  1728     break;
  1729   case Metaspace::AnonymousMetaspaceType:
  1730   case Metaspace::ReflectionMetaspaceType:
  1731     *chunk_word_size = SpecializedChunk;
  1732     *class_chunk_word_size = ClassSpecializedChunk;
  1733     break;
  1734   default:
  1735     *chunk_word_size = SmallChunk;
  1736     *class_chunk_word_size = ClassSmallChunk;
  1737     break;
  1739   assert(*chunk_word_size != 0 && *class_chunk_word_size != 0,
  1740     err_msg("Initial chunks sizes bad: data  " SIZE_FORMAT
  1741             " class " SIZE_FORMAT,
  1742             *chunk_word_size, *class_chunk_word_size));
  1745 size_t SpaceManager::sum_free_in_chunks_in_use() const {
  1746   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  1747   size_t free = 0;
  1748   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1749     Metachunk* chunk = chunks_in_use(i);
  1750     while (chunk != NULL) {
  1751       free += chunk->free_word_size();
  1752       chunk = chunk->next();
  1755   return free;
  1758 size_t SpaceManager::sum_waste_in_chunks_in_use() const {
  1759   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  1760   size_t result = 0;
  1761   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1762    result += sum_waste_in_chunks_in_use(i);
  1765   return result;
  1768 size_t SpaceManager::sum_waste_in_chunks_in_use(ChunkIndex index) const {
  1769   size_t result = 0;
  1770   Metachunk* chunk = chunks_in_use(index);
  1771   // Count the free space in all the chunk but not the
  1772   // current chunk from which allocations are still being done.
  1773   if (chunk != NULL) {
  1774     Metachunk* prev = chunk;
  1775     while (chunk != NULL && chunk != current_chunk()) {
  1776       result += chunk->free_word_size();
  1777       prev = chunk;
  1778       chunk = chunk->next();
  1781   return result;
  1784 size_t SpaceManager::sum_capacity_in_chunks_in_use() const {
  1785   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  1786   size_t sum = 0;
  1787   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1788     Metachunk* chunk = chunks_in_use(i);
  1789     while (chunk != NULL) {
  1790       // Just changed this sum += chunk->capacity_word_size();
  1791       // sum += chunk->word_size() - Metachunk::overhead();
  1792       sum += chunk->capacity_word_size();
  1793       chunk = chunk->next();
  1796   return sum;
  1799 size_t SpaceManager::sum_count_in_chunks_in_use() {
  1800   size_t count = 0;
  1801   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1802     count = count + sum_count_in_chunks_in_use(i);
  1805   return count;
  1808 size_t SpaceManager::sum_count_in_chunks_in_use(ChunkIndex i) {
  1809   size_t count = 0;
  1810   Metachunk* chunk = chunks_in_use(i);
  1811   while (chunk != NULL) {
  1812     count++;
  1813     chunk = chunk->next();
  1815   return count;
  1819 size_t SpaceManager::sum_used_in_chunks_in_use() const {
  1820   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  1821   size_t used = 0;
  1822   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1823     Metachunk* chunk = chunks_in_use(i);
  1824     while (chunk != NULL) {
  1825       used += chunk->used_word_size();
  1826       chunk = chunk->next();
  1829   return used;
  1832 void SpaceManager::locked_print_chunks_in_use_on(outputStream* st) const {
  1834   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1835     Metachunk* chunk = chunks_in_use(i);
  1836     st->print("SpaceManager: %s " PTR_FORMAT,
  1837                  chunk_size_name(i), chunk);
  1838     if (chunk != NULL) {
  1839       st->print_cr(" free " SIZE_FORMAT,
  1840                    chunk->free_word_size());
  1841     } else {
  1842       st->print_cr("");
  1846   vs_list()->chunk_manager()->locked_print_free_chunks(st);
  1847   vs_list()->chunk_manager()->locked_print_sum_free_chunks(st);
  1850 size_t SpaceManager::calc_chunk_size(size_t word_size) {
  1852   // Decide between a small chunk and a medium chunk.  Up to
  1853   // _small_chunk_limit small chunks can be allocated but
  1854   // once a medium chunk has been allocated, no more small
  1855   // chunks will be allocated.
  1856   size_t chunk_word_size;
  1857   if (chunks_in_use(MediumIndex) == NULL &&
  1858       (!has_small_chunk_limit() ||
  1859        sum_count_in_chunks_in_use(SmallIndex) < _small_chunk_limit)) {
  1860     chunk_word_size = (size_t) small_chunk_size();
  1861     if (word_size + Metachunk::overhead() > small_chunk_size()) {
  1862       chunk_word_size = medium_chunk_size();
  1864   } else {
  1865     chunk_word_size = medium_chunk_size();
  1868   // Might still need a humongous chunk.  Enforce an
  1869   // eight word granularity to facilitate reuse (some
  1870   // wastage but better chance of reuse).
  1871   size_t if_humongous_sized_chunk =
  1872     align_size_up(word_size + Metachunk::overhead(),
  1873                   HumongousChunkGranularity);
  1874   chunk_word_size =
  1875     MAX2((size_t) chunk_word_size, if_humongous_sized_chunk);
  1877   assert(!SpaceManager::is_humongous(word_size) ||
  1878          chunk_word_size == if_humongous_sized_chunk,
  1879          err_msg("Size calculation is wrong, word_size " SIZE_FORMAT
  1880                  " chunk_word_size " SIZE_FORMAT,
  1881                  word_size, chunk_word_size));
  1882   if (TraceMetadataHumongousAllocation &&
  1883       SpaceManager::is_humongous(word_size)) {
  1884     gclog_or_tty->print_cr("Metadata humongous allocation:");
  1885     gclog_or_tty->print_cr("  word_size " PTR_FORMAT, word_size);
  1886     gclog_or_tty->print_cr("  chunk_word_size " PTR_FORMAT,
  1887                            chunk_word_size);
  1888     gclog_or_tty->print_cr("    chunk overhead " PTR_FORMAT,
  1889                            Metachunk::overhead());
  1891   return chunk_word_size;
  1894 MetaWord* SpaceManager::grow_and_allocate(size_t word_size) {
  1895   assert(vs_list()->current_virtual_space() != NULL,
  1896          "Should have been set");
  1897   assert(current_chunk() == NULL ||
  1898          current_chunk()->allocate(word_size) == NULL,
  1899          "Don't need to expand");
  1900   MutexLockerEx cl(SpaceManager::expand_lock(), Mutex::_no_safepoint_check_flag);
  1902   if (TraceMetadataChunkAllocation && Verbose) {
  1903     size_t words_left = 0;
  1904     size_t words_used = 0;
  1905     if (current_chunk() != NULL) {
  1906       words_left = current_chunk()->free_word_size();
  1907       words_used = current_chunk()->used_word_size();
  1909     gclog_or_tty->print_cr("SpaceManager::grow_and_allocate for " SIZE_FORMAT
  1910                            " words " SIZE_FORMAT " words used " SIZE_FORMAT
  1911                            " words left",
  1912                             word_size, words_used, words_left);
  1915   // Get another chunk out of the virtual space
  1916   size_t grow_chunks_by_words = calc_chunk_size(word_size);
  1917   Metachunk* next = get_new_chunk(word_size, grow_chunks_by_words);
  1919   // If a chunk was available, add it to the in-use chunk list
  1920   // and do an allocation from it.
  1921   if (next != NULL) {
  1922     Metadebug::deallocate_chunk_a_lot(this, grow_chunks_by_words);
  1923     // Add to this manager's list of chunks in use.
  1924     add_chunk(next, false);
  1925     return next->allocate(word_size);
  1927   return NULL;
  1930 void SpaceManager::print_on(outputStream* st) const {
  1932   for (ChunkIndex i = ZeroIndex;
  1933        i < NumberOfInUseLists ;
  1934        i = next_chunk_index(i) ) {
  1935     st->print_cr("  chunks_in_use " PTR_FORMAT " chunk size " PTR_FORMAT,
  1936                  chunks_in_use(i),
  1937                  chunks_in_use(i) == NULL ? 0 : chunks_in_use(i)->word_size());
  1939   st->print_cr("    waste:  Small " SIZE_FORMAT " Medium " SIZE_FORMAT
  1940                " Humongous " SIZE_FORMAT,
  1941                sum_waste_in_chunks_in_use(SmallIndex),
  1942                sum_waste_in_chunks_in_use(MediumIndex),
  1943                sum_waste_in_chunks_in_use(HumongousIndex));
  1944   // block free lists
  1945   if (block_freelists() != NULL) {
  1946     st->print_cr("total in block free lists " SIZE_FORMAT,
  1947       block_freelists()->total_size());
  1951 SpaceManager::SpaceManager(Mutex* lock,
  1952                            VirtualSpaceList* vs_list) :
  1953   _vs_list(vs_list),
  1954   _allocation_total(0),
  1955   _lock(lock)
  1957   initialize();
  1960 void SpaceManager::initialize() {
  1961   Metadebug::init_allocation_fail_alot_count();
  1962   for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  1963     _chunks_in_use[i] = NULL;
  1965   _current_chunk = NULL;
  1966   if (TraceMetadataChunkAllocation && Verbose) {
  1967     gclog_or_tty->print_cr("SpaceManager(): " PTR_FORMAT, this);
  1971 SpaceManager::~SpaceManager() {
  1972   MutexLockerEx fcl(SpaceManager::expand_lock(),
  1973                     Mutex::_no_safepoint_check_flag);
  1975   ChunkManager* chunk_manager = vs_list()->chunk_manager();
  1977   chunk_manager->slow_locked_verify();
  1979   if (TraceMetadataChunkAllocation && Verbose) {
  1980     gclog_or_tty->print_cr("~SpaceManager(): " PTR_FORMAT, this);
  1981     locked_print_chunks_in_use_on(gclog_or_tty);
  1984   // Mangle freed memory.
  1985   NOT_PRODUCT(mangle_freed_chunks();)
  1987   // Have to update before the chunks_in_use lists are emptied
  1988   // below.
  1989   chunk_manager->inc_free_chunks_total(sum_capacity_in_chunks_in_use(),
  1990                                        sum_count_in_chunks_in_use());
  1992   // Add all the chunks in use by this space manager
  1993   // to the global list of free chunks.
  1995   // Follow each list of chunks-in-use and add them to the
  1996   // free lists.  Each list is NULL terminated.
  1998   for (ChunkIndex i = ZeroIndex; i < HumongousIndex; i = next_chunk_index(i)) {
  1999     if (TraceMetadataChunkAllocation && Verbose) {
  2000       gclog_or_tty->print_cr("returned %d %s chunks to freelist",
  2001                              sum_count_in_chunks_in_use(i),
  2002                              chunk_size_name(i));
  2004     Metachunk* chunks = chunks_in_use(i);
  2005     chunk_manager->free_chunks(i)->add_at_head(chunks);
  2006     set_chunks_in_use(i, NULL);
  2007     if (TraceMetadataChunkAllocation && Verbose) {
  2008       gclog_or_tty->print_cr("updated freelist count %d %s",
  2009                              chunk_manager->free_chunks(i)->sum_list_count(),
  2010                              chunk_size_name(i));
  2012     assert(i != HumongousIndex, "Humongous chunks are handled explicitly later");
  2015   // The medium chunk case may be optimized by passing the head and
  2016   // tail of the medium chunk list to add_at_head().  The tail is often
  2017   // the current chunk but there are probably exceptions.
  2019   // Humongous chunks
  2020   if (TraceMetadataChunkAllocation && Verbose) {
  2021     gclog_or_tty->print_cr("returned %d %s humongous chunks to dictionary",
  2022                             sum_count_in_chunks_in_use(HumongousIndex),
  2023                             chunk_size_name(HumongousIndex));
  2024     gclog_or_tty->print("Humongous chunk dictionary: ");
  2026   // Humongous chunks are never the current chunk.
  2027   Metachunk* humongous_chunks = chunks_in_use(HumongousIndex);
  2029   while (humongous_chunks != NULL) {
  2030 #ifdef ASSERT
  2031     humongous_chunks->set_is_free(true);
  2032 #endif
  2033     if (TraceMetadataChunkAllocation && Verbose) {
  2034       gclog_or_tty->print(PTR_FORMAT " (" SIZE_FORMAT ") ",
  2035                           humongous_chunks,
  2036                           humongous_chunks->word_size());
  2038     assert(humongous_chunks->word_size() == (size_t)
  2039            align_size_up(humongous_chunks->word_size(),
  2040                              HumongousChunkGranularity),
  2041            err_msg("Humongous chunk size is wrong: word size " SIZE_FORMAT
  2042                    " granularity %d",
  2043                    humongous_chunks->word_size(), HumongousChunkGranularity));
  2044     Metachunk* next_humongous_chunks = humongous_chunks->next();
  2045     chunk_manager->humongous_dictionary()->return_chunk(humongous_chunks);
  2046     humongous_chunks = next_humongous_chunks;
  2048   if (TraceMetadataChunkAllocation && Verbose) {
  2049     gclog_or_tty->print_cr("");
  2050     gclog_or_tty->print_cr("updated dictionary count %d %s",
  2051                      chunk_manager->humongous_dictionary()->total_count(),
  2052                      chunk_size_name(HumongousIndex));
  2054   set_chunks_in_use(HumongousIndex, NULL);
  2055   chunk_manager->slow_locked_verify();
  2058 const char* SpaceManager::chunk_size_name(ChunkIndex index) const {
  2059   switch (index) {
  2060     case SpecializedIndex:
  2061       return "Specialized";
  2062     case SmallIndex:
  2063       return "Small";
  2064     case MediumIndex:
  2065       return "Medium";
  2066     case HumongousIndex:
  2067       return "Humongous";
  2068     default:
  2069       return NULL;
  2073 ChunkIndex ChunkManager::list_index(size_t size) {
  2074   switch (size) {
  2075     case SpecializedChunk:
  2076       assert(SpecializedChunk == ClassSpecializedChunk,
  2077              "Need branch for ClassSpecializedChunk");
  2078       return SpecializedIndex;
  2079     case SmallChunk:
  2080     case ClassSmallChunk:
  2081       return SmallIndex;
  2082     case MediumChunk:
  2083     case ClassMediumChunk:
  2084       return MediumIndex;
  2085     default:
  2086       assert(size > MediumChunk || size > ClassMediumChunk,
  2087              "Not a humongous chunk");
  2088       return HumongousIndex;
  2092 void SpaceManager::deallocate(MetaWord* p, size_t word_size) {
  2093   assert_lock_strong(_lock);
  2094   size_t min_size = TreeChunk<Metablock, FreeList>::min_size();
  2095   assert(word_size >= min_size,
  2096     err_msg("Should not deallocate dark matter " SIZE_FORMAT, word_size));
  2097   block_freelists()->return_block(p, word_size);
  2100 // Adds a chunk to the list of chunks in use.
  2101 void SpaceManager::add_chunk(Metachunk* new_chunk, bool make_current) {
  2103   assert(new_chunk != NULL, "Should not be NULL");
  2104   assert(new_chunk->next() == NULL, "Should not be on a list");
  2106   new_chunk->reset_empty();
  2108   // Find the correct list and and set the current
  2109   // chunk for that list.
  2110   ChunkIndex index = ChunkManager::list_index(new_chunk->word_size());
  2112   if (index != HumongousIndex) {
  2113     set_current_chunk(new_chunk);
  2114     new_chunk->set_next(chunks_in_use(index));
  2115     set_chunks_in_use(index, new_chunk);
  2116   } else {
  2117     // For null class loader data and DumpSharedSpaces, the first chunk isn't
  2118     // small, so small will be null.  Link this first chunk as the current
  2119     // chunk.
  2120     if (make_current) {
  2121       // Set as the current chunk but otherwise treat as a humongous chunk.
  2122       set_current_chunk(new_chunk);
  2124     // Link at head.  The _current_chunk only points to a humongous chunk for
  2125     // the null class loader metaspace (class and data virtual space managers)
  2126     // any humongous chunks so will not point to the tail
  2127     // of the humongous chunks list.
  2128     new_chunk->set_next(chunks_in_use(HumongousIndex));
  2129     set_chunks_in_use(HumongousIndex, new_chunk);
  2131     assert(new_chunk->word_size() > medium_chunk_size(), "List inconsistency");
  2134   assert(new_chunk->is_empty(), "Not ready for reuse");
  2135   if (TraceMetadataChunkAllocation && Verbose) {
  2136     gclog_or_tty->print("SpaceManager::add_chunk: %d) ",
  2137                         sum_count_in_chunks_in_use());
  2138     new_chunk->print_on(gclog_or_tty);
  2139     vs_list()->chunk_manager()->locked_print_free_chunks(tty);
  2143 Metachunk* SpaceManager::get_new_chunk(size_t word_size,
  2144                                        size_t grow_chunks_by_words) {
  2146   Metachunk* next = vs_list()->get_new_chunk(word_size,
  2147                                              grow_chunks_by_words,
  2148                                              medium_chunk_bunch());
  2150   if (TraceMetadataHumongousAllocation &&
  2151       SpaceManager::is_humongous(next->word_size())) {
  2152     gclog_or_tty->print_cr("  new humongous chunk word size " PTR_FORMAT,
  2153                            next->word_size());
  2156   return next;
  2159 MetaWord* SpaceManager::allocate(size_t word_size) {
  2160   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  2162   // If only the dictionary is going to be used (i.e., no
  2163   // indexed free list), then there is a minimum size requirement.
  2164   // MinChunkSize is a placeholder for the real minimum size JJJ
  2165   size_t byte_size = word_size * BytesPerWord;
  2167   size_t byte_size_with_overhead = byte_size + Metablock::overhead();
  2169   size_t raw_bytes_size = MAX2(byte_size_with_overhead,
  2170                                Metablock::min_block_byte_size());
  2171   raw_bytes_size = ARENA_ALIGN(raw_bytes_size);
  2172   size_t raw_word_size = raw_bytes_size / BytesPerWord;
  2173   assert(raw_word_size * BytesPerWord == raw_bytes_size, "Size problem");
  2175   BlockFreelist* fl =  block_freelists();
  2176   MetaWord* p = NULL;
  2177   // Allocation from the dictionary is expensive in the sense that
  2178   // the dictionary has to be searched for a size.  Don't allocate
  2179   // from the dictionary until it starts to get fat.  Is this
  2180   // a reasonable policy?  Maybe an skinny dictionary is fast enough
  2181   // for allocations.  Do some profiling.  JJJ
  2182   if (fl->total_size() > allocation_from_dictionary_limit) {
  2183     p = fl->get_block(raw_word_size);
  2185   if (p == NULL) {
  2186     p = allocate_work(raw_word_size);
  2188   Metadebug::deallocate_block_a_lot(this, raw_word_size);
  2190   return p;
  2193 // Returns the address of spaced allocated for "word_size".
  2194 // This methods does not know about blocks (Metablocks)
  2195 MetaWord* SpaceManager::allocate_work(size_t word_size) {
  2196   assert_lock_strong(_lock);
  2197 #ifdef ASSERT
  2198   if (Metadebug::test_metadata_failure()) {
  2199     return NULL;
  2201 #endif
  2202   // Is there space in the current chunk?
  2203   MetaWord* result = NULL;
  2205   // For DumpSharedSpaces, only allocate out of the current chunk which is
  2206   // never null because we gave it the size we wanted.   Caller reports out
  2207   // of memory if this returns null.
  2208   if (DumpSharedSpaces) {
  2209     assert(current_chunk() != NULL, "should never happen");
  2210     inc_allocation_total(word_size);
  2211     return current_chunk()->allocate(word_size); // caller handles null result
  2213   if (current_chunk() != NULL) {
  2214     result = current_chunk()->allocate(word_size);
  2217   if (result == NULL) {
  2218     result = grow_and_allocate(word_size);
  2220   if (result > 0) {
  2221     inc_allocation_total(word_size);
  2222     assert(result != (MetaWord*) chunks_in_use(MediumIndex),
  2223            "Head of the list is being allocated");
  2226   return result;
  2229 void SpaceManager::verify() {
  2230   // If there are blocks in the dictionary, then
  2231   // verfication of chunks does not work since
  2232   // being in the dictionary alters a chunk.
  2233   if (block_freelists()->total_size() == 0) {
  2234     for (ChunkIndex i = ZeroIndex; i < NumberOfInUseLists; i = next_chunk_index(i)) {
  2235       Metachunk* curr = chunks_in_use(i);
  2236       while (curr != NULL) {
  2237         curr->verify();
  2238         verify_chunk_size(curr);
  2239         curr = curr->next();
  2245 void SpaceManager::verify_chunk_size(Metachunk* chunk) {
  2246   assert(is_humongous(chunk->word_size()) ||
  2247          chunk->word_size() == medium_chunk_size() ||
  2248          chunk->word_size() == small_chunk_size() ||
  2249          chunk->word_size() == specialized_chunk_size(),
  2250          "Chunk size is wrong");
  2251   return;
  2254 #ifdef ASSERT
  2255 void SpaceManager::verify_allocation_total() {
  2256   // Verification is only guaranteed at a safepoint.
  2257   if (SafepointSynchronize::is_at_safepoint()) {
  2258     gclog_or_tty->print_cr("Chunk " PTR_FORMAT " allocation_total " SIZE_FORMAT
  2259                            " sum_used_in_chunks_in_use " SIZE_FORMAT,
  2260                            this,
  2261                            allocation_total(),
  2262                            sum_used_in_chunks_in_use());
  2264   MutexLockerEx cl(lock(), Mutex::_no_safepoint_check_flag);
  2265   assert(allocation_total() == sum_used_in_chunks_in_use(),
  2266     err_msg("allocation total is not consistent " SIZE_FORMAT
  2267             " vs " SIZE_FORMAT,
  2268             allocation_total(), sum_used_in_chunks_in_use()));
  2271 #endif
  2273 void SpaceManager::dump(outputStream* const out) const {
  2274   size_t curr_total = 0;
  2275   size_t waste = 0;
  2276   uint i = 0;
  2277   size_t used = 0;
  2278   size_t capacity = 0;
  2280   // Add up statistics for all chunks in this SpaceManager.
  2281   for (ChunkIndex index = ZeroIndex;
  2282        index < NumberOfInUseLists;
  2283        index = next_chunk_index(index)) {
  2284     for (Metachunk* curr = chunks_in_use(index);
  2285          curr != NULL;
  2286          curr = curr->next()) {
  2287       out->print("%d) ", i++);
  2288       curr->print_on(out);
  2289       if (TraceMetadataChunkAllocation && Verbose) {
  2290         block_freelists()->print_on(out);
  2292       curr_total += curr->word_size();
  2293       used += curr->used_word_size();
  2294       capacity += curr->capacity_word_size();
  2295       waste += curr->free_word_size() + curr->overhead();;
  2299   size_t free = current_chunk() == NULL ? 0 : current_chunk()->free_word_size();
  2300   // Free space isn't wasted.
  2301   waste -= free;
  2303   out->print_cr("total of all chunks "  SIZE_FORMAT " used " SIZE_FORMAT
  2304                 " free " SIZE_FORMAT " capacity " SIZE_FORMAT
  2305                 " waste " SIZE_FORMAT, curr_total, used, free, capacity, waste);
  2308 #ifndef PRODUCT
  2309 void SpaceManager::mangle_freed_chunks() {
  2310   for (ChunkIndex index = ZeroIndex;
  2311        index < NumberOfInUseLists;
  2312        index = next_chunk_index(index)) {
  2313     for (Metachunk* curr = chunks_in_use(index);
  2314          curr != NULL;
  2315          curr = curr->next()) {
  2316       curr->mangle();
  2320 #endif // PRODUCT
  2322 // MetaspaceAux
  2324 size_t MetaspaceAux::used_in_bytes(Metaspace::MetadataType mdtype) {
  2325   size_t used = 0;
  2326   ClassLoaderDataGraphMetaspaceIterator iter;
  2327   while (iter.repeat()) {
  2328     Metaspace* msp = iter.get_next();
  2329     // Sum allocation_total for each metaspace
  2330     if (msp != NULL) {
  2331       used += msp->used_words(mdtype);
  2334   return used * BytesPerWord;
  2337 size_t MetaspaceAux::free_in_bytes(Metaspace::MetadataType mdtype) {
  2338   size_t free = 0;
  2339   ClassLoaderDataGraphMetaspaceIterator iter;
  2340   while (iter.repeat()) {
  2341     Metaspace* msp = iter.get_next();
  2342     if (msp != NULL) {
  2343       free += msp->free_words(mdtype);
  2346   return free * BytesPerWord;
  2349 size_t MetaspaceAux::capacity_in_bytes(Metaspace::MetadataType mdtype) {
  2350   size_t capacity = free_chunks_total(mdtype);
  2351   ClassLoaderDataGraphMetaspaceIterator iter;
  2352   while (iter.repeat()) {
  2353     Metaspace* msp = iter.get_next();
  2354     if (msp != NULL) {
  2355       capacity += msp->capacity_words(mdtype);
  2358   return capacity * BytesPerWord;
  2361 size_t MetaspaceAux::reserved_in_bytes(Metaspace::MetadataType mdtype) {
  2362   size_t reserved = (mdtype == Metaspace::ClassType) ?
  2363                        Metaspace::class_space_list()->virtual_space_total() :
  2364                        Metaspace::space_list()->virtual_space_total();
  2365   return reserved * BytesPerWord;
  2368 size_t MetaspaceAux::min_chunk_size() { return Metaspace::first_chunk_word_size(); }
  2370 size_t MetaspaceAux::free_chunks_total(Metaspace::MetadataType mdtype) {
  2371   ChunkManager* chunk = (mdtype == Metaspace::ClassType) ?
  2372                             Metaspace::class_space_list()->chunk_manager() :
  2373                             Metaspace::space_list()->chunk_manager();
  2374   chunk->slow_verify();
  2375   return chunk->free_chunks_total();
  2378 size_t MetaspaceAux::free_chunks_total_in_bytes(Metaspace::MetadataType mdtype) {
  2379   return free_chunks_total(mdtype) * BytesPerWord;
  2382 void MetaspaceAux::print_metaspace_change(size_t prev_metadata_used) {
  2383   gclog_or_tty->print(", [Metaspace:");
  2384   if (PrintGCDetails && Verbose) {
  2385     gclog_or_tty->print(" "  SIZE_FORMAT
  2386                         "->" SIZE_FORMAT
  2387                         "("  SIZE_FORMAT "/" SIZE_FORMAT ")",
  2388                         prev_metadata_used,
  2389                         used_in_bytes(),
  2390                         capacity_in_bytes(),
  2391                         reserved_in_bytes());
  2392   } else {
  2393     gclog_or_tty->print(" "  SIZE_FORMAT "K"
  2394                         "->" SIZE_FORMAT "K"
  2395                         "("  SIZE_FORMAT "K/" SIZE_FORMAT "K)",
  2396                         prev_metadata_used / K,
  2397                         used_in_bytes()/ K,
  2398                         capacity_in_bytes()/K,
  2399                         reserved_in_bytes()/ K);
  2402   gclog_or_tty->print("]");
  2405 // This is printed when PrintGCDetails
  2406 void MetaspaceAux::print_on(outputStream* out) {
  2407   Metaspace::MetadataType ct = Metaspace::ClassType;
  2408   Metaspace::MetadataType nct = Metaspace::NonClassType;
  2410   out->print_cr(" Metaspace total "
  2411                 SIZE_FORMAT "K, used " SIZE_FORMAT "K,"
  2412                 " reserved " SIZE_FORMAT "K",
  2413                 capacity_in_bytes()/K, used_in_bytes()/K, reserved_in_bytes()/K);
  2414   out->print_cr("  data space     "
  2415                 SIZE_FORMAT "K, used " SIZE_FORMAT "K,"
  2416                 " reserved " SIZE_FORMAT "K",
  2417                 capacity_in_bytes(nct)/K, used_in_bytes(nct)/K, reserved_in_bytes(nct)/K);
  2418   out->print_cr("  class space    "
  2419                 SIZE_FORMAT "K, used " SIZE_FORMAT "K,"
  2420                 " reserved " SIZE_FORMAT "K",
  2421                 capacity_in_bytes(ct)/K, used_in_bytes(ct)/K, reserved_in_bytes(ct)/K);
  2424 // Print information for class space and data space separately.
  2425 // This is almost the same as above.
  2426 void MetaspaceAux::print_on(outputStream* out, Metaspace::MetadataType mdtype) {
  2427   size_t free_chunks_capacity_bytes = free_chunks_total_in_bytes(mdtype);
  2428   size_t capacity_bytes = capacity_in_bytes(mdtype);
  2429   size_t used_bytes = used_in_bytes(mdtype);
  2430   size_t free_bytes = free_in_bytes(mdtype);
  2431   size_t used_and_free = used_bytes + free_bytes +
  2432                            free_chunks_capacity_bytes;
  2433   out->print_cr("  Chunk accounting: used in chunks " SIZE_FORMAT
  2434              "K + unused in chunks " SIZE_FORMAT "K  + "
  2435              " capacity in free chunks " SIZE_FORMAT "K = " SIZE_FORMAT
  2436              "K  capacity in allocated chunks " SIZE_FORMAT "K",
  2437              used_bytes / K,
  2438              free_bytes / K,
  2439              free_chunks_capacity_bytes / K,
  2440              used_and_free / K,
  2441              capacity_bytes / K);
  2442   assert(used_and_free == capacity_bytes, "Accounting is wrong");
  2445 // Print total fragmentation for class and data metaspaces separately
  2446 void MetaspaceAux::print_waste(outputStream* out) {
  2448   size_t specialized_waste = 0, small_waste = 0, medium_waste = 0, large_waste = 0;
  2449   size_t specialized_count = 0, small_count = 0, medium_count = 0, large_count = 0;
  2450   size_t cls_specialized_waste = 0, cls_small_waste = 0, cls_medium_waste = 0, cls_large_waste = 0;
  2451   size_t cls_specialized_count = 0, cls_small_count = 0, cls_medium_count = 0, cls_large_count = 0;
  2453   ClassLoaderDataGraphMetaspaceIterator iter;
  2454   while (iter.repeat()) {
  2455     Metaspace* msp = iter.get_next();
  2456     if (msp != NULL) {
  2457       specialized_waste += msp->vsm()->sum_waste_in_chunks_in_use(SpecializedIndex);
  2458       specialized_count += msp->vsm()->sum_count_in_chunks_in_use(SpecializedIndex);
  2459       small_waste += msp->vsm()->sum_waste_in_chunks_in_use(SmallIndex);
  2460       small_count += msp->vsm()->sum_count_in_chunks_in_use(SmallIndex);
  2461       medium_waste += msp->vsm()->sum_waste_in_chunks_in_use(MediumIndex);
  2462       medium_count += msp->vsm()->sum_count_in_chunks_in_use(MediumIndex);
  2463       large_waste += msp->vsm()->sum_waste_in_chunks_in_use(HumongousIndex);
  2464       large_count += msp->vsm()->sum_count_in_chunks_in_use(HumongousIndex);
  2466       cls_specialized_waste += msp->class_vsm()->sum_waste_in_chunks_in_use(SpecializedIndex);
  2467       cls_specialized_count += msp->class_vsm()->sum_count_in_chunks_in_use(SpecializedIndex);
  2468       cls_small_waste += msp->class_vsm()->sum_waste_in_chunks_in_use(SmallIndex);
  2469       cls_small_count += msp->class_vsm()->sum_count_in_chunks_in_use(SmallIndex);
  2470       cls_medium_waste += msp->class_vsm()->sum_waste_in_chunks_in_use(MediumIndex);
  2471       cls_medium_count += msp->class_vsm()->sum_count_in_chunks_in_use(MediumIndex);
  2472       cls_large_waste += msp->class_vsm()->sum_waste_in_chunks_in_use(HumongousIndex);
  2473       cls_large_count += msp->class_vsm()->sum_count_in_chunks_in_use(HumongousIndex);
  2476   out->print_cr("Total fragmentation waste (words) doesn't count free space");
  2477   out->print_cr("  data: " SIZE_FORMAT " specialized(s) " SIZE_FORMAT ", "
  2478                         SIZE_FORMAT " small(s) " SIZE_FORMAT ", "
  2479                         SIZE_FORMAT " medium(s) " SIZE_FORMAT,
  2480              specialized_count, specialized_waste, small_count,
  2481              small_waste, medium_count, medium_waste);
  2482   out->print_cr(" class: " SIZE_FORMAT " specialized(s) " SIZE_FORMAT ", "
  2483                            SIZE_FORMAT " small(s) " SIZE_FORMAT,
  2484              cls_specialized_count, cls_specialized_waste,
  2485              cls_small_count, cls_small_waste);
  2488 // Dump global metaspace things from the end of ClassLoaderDataGraph
  2489 void MetaspaceAux::dump(outputStream* out) {
  2490   out->print_cr("All Metaspace:");
  2491   out->print("data space: "); print_on(out, Metaspace::NonClassType);
  2492   out->print("class space: "); print_on(out, Metaspace::ClassType);
  2493   print_waste(out);
  2496 void MetaspaceAux::verify_free_chunks() {
  2497   Metaspace::space_list()->chunk_manager()->verify();
  2498   Metaspace::class_space_list()->chunk_manager()->verify();
  2501 // Metaspace methods
  2503 size_t Metaspace::_first_chunk_word_size = 0;
  2504 size_t Metaspace::_first_class_chunk_word_size = 0;
  2506 Metaspace::Metaspace(Mutex* lock, MetaspaceType type) {
  2507   initialize(lock, type);
  2510 Metaspace::~Metaspace() {
  2511   delete _vsm;
  2512   delete _class_vsm;
  2515 VirtualSpaceList* Metaspace::_space_list = NULL;
  2516 VirtualSpaceList* Metaspace::_class_space_list = NULL;
  2518 #define VIRTUALSPACEMULTIPLIER 2
  2520 void Metaspace::global_initialize() {
  2521   // Initialize the alignment for shared spaces.
  2522   int max_alignment = os::vm_page_size();
  2523   MetaspaceShared::set_max_alignment(max_alignment);
  2525   if (DumpSharedSpaces) {
  2526     SharedReadOnlySize = align_size_up(SharedReadOnlySize, max_alignment);
  2527     SharedReadWriteSize = align_size_up(SharedReadWriteSize, max_alignment);
  2528     SharedMiscDataSize  = align_size_up(SharedMiscDataSize, max_alignment);
  2529     SharedMiscCodeSize  = align_size_up(SharedMiscCodeSize, max_alignment);
  2531     // Initialize with the sum of the shared space sizes.  The read-only
  2532     // and read write metaspace chunks will be allocated out of this and the
  2533     // remainder is the misc code and data chunks.
  2534     size_t total = align_size_up(SharedReadOnlySize + SharedReadWriteSize +
  2535                                  SharedMiscDataSize + SharedMiscCodeSize,
  2536                                  os::vm_allocation_granularity());
  2537     size_t word_size = total/wordSize;
  2538     _space_list = new VirtualSpaceList(word_size);
  2539   } else {
  2540     // If using shared space, open the file that contains the shared space
  2541     // and map in the memory before initializing the rest of metaspace (so
  2542     // the addresses don't conflict)
  2543     if (UseSharedSpaces) {
  2544       FileMapInfo* mapinfo = new FileMapInfo();
  2545       memset(mapinfo, 0, sizeof(FileMapInfo));
  2547       // Open the shared archive file, read and validate the header. If
  2548       // initialization fails, shared spaces [UseSharedSpaces] are
  2549       // disabled and the file is closed.
  2550       // Map in spaces now also
  2551       if (mapinfo->initialize() && MetaspaceShared::map_shared_spaces(mapinfo)) {
  2552         FileMapInfo::set_current_info(mapinfo);
  2553       } else {
  2554         assert(!mapinfo->is_open() && !UseSharedSpaces,
  2555                "archive file not closed or shared spaces not disabled.");
  2559     // Initialize these before initializing the VirtualSpaceList
  2560     _first_chunk_word_size = InitialBootClassLoaderMetaspaceSize / BytesPerWord;
  2561     _first_chunk_word_size = align_word_size_up(_first_chunk_word_size);
  2562     // Make the first class chunk bigger than a medium chunk so it's not put
  2563     // on the medium chunk list.   The next chunk will be small and progress
  2564     // from there.  This size calculated by -version.
  2565     _first_class_chunk_word_size = MIN2((size_t)MediumChunk*6,
  2566                                        (ClassMetaspaceSize/BytesPerWord)*2);
  2567     _first_class_chunk_word_size = align_word_size_up(_first_class_chunk_word_size);
  2568     // Arbitrarily set the initial virtual space to a multiple
  2569     // of the boot class loader size.
  2570     size_t word_size = VIRTUALSPACEMULTIPLIER * first_chunk_word_size();
  2571     // Initialize the list of virtual spaces.
  2572     _space_list = new VirtualSpaceList(word_size);
  2576 // For UseCompressedKlassPointers the class space is reserved as a piece of the
  2577 // Java heap because the compression algorithm is the same for each.  The
  2578 // argument passed in is at the top of the compressed space
  2579 void Metaspace::initialize_class_space(ReservedSpace rs) {
  2580   // The reserved space size may be bigger because of alignment, esp with UseLargePages
  2581   assert(rs.size() >= ClassMetaspaceSize,
  2582          err_msg(SIZE_FORMAT " != " UINTX_FORMAT, rs.size(), ClassMetaspaceSize));
  2583   _class_space_list = new VirtualSpaceList(rs);
  2586 void Metaspace::initialize(Mutex* lock,
  2587                            MetaspaceType type) {
  2589   assert(space_list() != NULL,
  2590     "Metadata VirtualSpaceList has not been initialized");
  2592   _vsm = new SpaceManager(lock, space_list());
  2593   if (_vsm == NULL) {
  2594     return;
  2596   size_t word_size;
  2597   size_t class_word_size;
  2598   vsm()->get_initial_chunk_sizes(type,
  2599                                  &word_size,
  2600                                  &class_word_size);
  2602   assert(class_space_list() != NULL,
  2603     "Class VirtualSpaceList has not been initialized");
  2605   // Allocate SpaceManager for classes.
  2606   _class_vsm = new SpaceManager(lock, class_space_list());
  2607   if (_class_vsm == NULL) {
  2608     return;
  2611   MutexLockerEx cl(SpaceManager::expand_lock(), Mutex::_no_safepoint_check_flag);
  2613   // Allocate chunk for metadata objects
  2614   Metachunk* new_chunk =
  2615      space_list()->get_initialization_chunk(word_size,
  2616                                             vsm()->medium_chunk_bunch());
  2617   assert(!DumpSharedSpaces || new_chunk != NULL, "should have enough space for both chunks");
  2618   if (new_chunk != NULL) {
  2619     // Add to this manager's list of chunks in use and current_chunk().
  2620     vsm()->add_chunk(new_chunk, true);
  2623   // Allocate chunk for class metadata objects
  2624   Metachunk* class_chunk =
  2625      class_space_list()->get_initialization_chunk(class_word_size,
  2626                                                   class_vsm()->medium_chunk_bunch());
  2627   if (class_chunk != NULL) {
  2628     class_vsm()->add_chunk(class_chunk, true);
  2632 size_t Metaspace::align_word_size_up(size_t word_size) {
  2633   size_t byte_size = word_size * wordSize;
  2634   return ReservedSpace::allocation_align_size_up(byte_size) / wordSize;
  2637 MetaWord* Metaspace::allocate(size_t word_size, MetadataType mdtype) {
  2638   // DumpSharedSpaces doesn't use class metadata area (yet)
  2639   if (mdtype == ClassType && !DumpSharedSpaces) {
  2640     return  class_vsm()->allocate(word_size);
  2641   } else {
  2642     return  vsm()->allocate(word_size);
  2646 MetaWord* Metaspace::expand_and_allocate(size_t word_size, MetadataType mdtype) {
  2647   MetaWord* result;
  2648   MetaspaceGC::set_expand_after_GC(true);
  2649   size_t before_inc = MetaspaceGC::capacity_until_GC();
  2650   size_t delta_words = MetaspaceGC::delta_capacity_until_GC(word_size);
  2651   MetaspaceGC::inc_capacity_until_GC(delta_words);
  2652   if (PrintGCDetails && Verbose) {
  2653     gclog_or_tty->print_cr("Increase capacity to GC from " SIZE_FORMAT
  2654       " to " SIZE_FORMAT, before_inc, MetaspaceGC::capacity_until_GC());
  2657   result = allocate(word_size, mdtype);
  2659   return result;
  2662 // Space allocated in the Metaspace.  This may
  2663 // be across several metadata virtual spaces.
  2664 char* Metaspace::bottom() const {
  2665   assert(DumpSharedSpaces, "only useful and valid for dumping shared spaces");
  2666   return (char*)vsm()->current_chunk()->bottom();
  2669 size_t Metaspace::used_words(MetadataType mdtype) const {
  2670   // return vsm()->allocation_total();
  2671   return mdtype == ClassType ? class_vsm()->sum_used_in_chunks_in_use() :
  2672                                vsm()->sum_used_in_chunks_in_use();  // includes overhead!
  2675 size_t Metaspace::free_words(MetadataType mdtype) const {
  2676   return mdtype == ClassType ? class_vsm()->sum_free_in_chunks_in_use() :
  2677                                vsm()->sum_free_in_chunks_in_use();
  2680 // Space capacity in the Metaspace.  It includes
  2681 // space in the list of chunks from which allocations
  2682 // have been made. Don't include space in the global freelist and
  2683 // in the space available in the dictionary which
  2684 // is already counted in some chunk.
  2685 size_t Metaspace::capacity_words(MetadataType mdtype) const {
  2686   return mdtype == ClassType ? class_vsm()->sum_capacity_in_chunks_in_use() :
  2687                                vsm()->sum_capacity_in_chunks_in_use();
  2690 void Metaspace::deallocate(MetaWord* ptr, size_t word_size, bool is_class) {
  2691   if (SafepointSynchronize::is_at_safepoint()) {
  2692     assert(Thread::current()->is_VM_thread(), "should be the VM thread");
  2693     // Don't take Heap_lock
  2694     MutexLocker ml(vsm()->lock());
  2695     if (word_size < TreeChunk<Metablock, FreeList>::min_size()) {
  2696       // Dark matter.  Too small for dictionary.
  2697 #ifdef ASSERT
  2698       Copy::fill_to_words((HeapWord*)ptr, word_size, 0xf5f5f5f5);
  2699 #endif
  2700       return;
  2702     if (is_class) {
  2703        class_vsm()->deallocate(ptr, word_size);
  2704     } else {
  2705       vsm()->deallocate(ptr, word_size);
  2707   } else {
  2708     MutexLocker ml(vsm()->lock());
  2710     if (word_size < TreeChunk<Metablock, FreeList>::min_size()) {
  2711       // Dark matter.  Too small for dictionary.
  2712 #ifdef ASSERT
  2713       Copy::fill_to_words((HeapWord*)ptr, word_size, 0xf5f5f5f5);
  2714 #endif
  2715       return;
  2717     if (is_class) {
  2718       class_vsm()->deallocate(ptr, word_size);
  2719     } else {
  2720       vsm()->deallocate(ptr, word_size);
  2725 Metablock* Metaspace::allocate(ClassLoaderData* loader_data, size_t word_size,
  2726                               bool read_only, MetadataType mdtype, TRAPS) {
  2727   if (HAS_PENDING_EXCEPTION) {
  2728     assert(false, "Should not allocate with exception pending");
  2729     return NULL;  // caller does a CHECK_NULL too
  2732   // SSS: Should we align the allocations and make sure the sizes are aligned.
  2733   MetaWord* result = NULL;
  2735   assert(loader_data != NULL, "Should never pass around a NULL loader_data. "
  2736         "ClassLoaderData::the_null_class_loader_data() should have been used.");
  2737   // Allocate in metaspaces without taking out a lock, because it deadlocks
  2738   // with the SymbolTable_lock.  Dumping is single threaded for now.  We'll have
  2739   // to revisit this for application class data sharing.
  2740   if (DumpSharedSpaces) {
  2741     if (read_only) {
  2742       result = loader_data->ro_metaspace()->allocate(word_size, NonClassType);
  2743     } else {
  2744       result = loader_data->rw_metaspace()->allocate(word_size, NonClassType);
  2746     if (result == NULL) {
  2747       report_out_of_shared_space(read_only ? SharedReadOnly : SharedReadWrite);
  2749     return Metablock::initialize(result, word_size);
  2752   result = loader_data->metaspace_non_null()->allocate(word_size, mdtype);
  2754   if (result == NULL) {
  2755     // Try to clean out some memory and retry.
  2756     result =
  2757       Universe::heap()->collector_policy()->satisfy_failed_metadata_allocation(
  2758         loader_data, word_size, mdtype);
  2760     // If result is still null, we are out of memory.
  2761     if (result == NULL) {
  2762       if (Verbose && TraceMetadataChunkAllocation) {
  2763         gclog_or_tty->print_cr("Metaspace allocation failed for size "
  2764           SIZE_FORMAT, word_size);
  2765         if (loader_data->metaspace_or_null() != NULL) loader_data->metaspace_or_null()->dump(gclog_or_tty);
  2766         MetaspaceAux::dump(gclog_or_tty);
  2768       // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
  2769       report_java_out_of_memory("Metadata space");
  2771       if (JvmtiExport::should_post_resource_exhausted()) {
  2772         JvmtiExport::post_resource_exhausted(
  2773             JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR,
  2774             "Metadata space");
  2776       THROW_OOP_0(Universe::out_of_memory_error_perm_gen());
  2779   return Metablock::initialize(result, word_size);
  2782 void Metaspace::print_on(outputStream* out) const {
  2783   // Print both class virtual space counts and metaspace.
  2784   if (Verbose) {
  2785       vsm()->print_on(out);
  2786       class_vsm()->print_on(out);
  2790 bool Metaspace::contains(const void * ptr) {
  2791   if (MetaspaceShared::is_in_shared_space(ptr)) {
  2792     return true;
  2794   // This is checked while unlocked.  As long as the virtualspaces are added
  2795   // at the end, the pointer will be in one of them.  The virtual spaces
  2796   // aren't deleted presently.  When they are, some sort of locking might
  2797   // be needed.  Note, locking this can cause inversion problems with the
  2798   // caller in MetaspaceObj::is_metadata() function.
  2799   return space_list()->contains(ptr) || class_space_list()->contains(ptr);
  2802 void Metaspace::verify() {
  2803   vsm()->verify();
  2804   class_vsm()->verify();
  2807 void Metaspace::dump(outputStream* const out) const {
  2808   if (UseMallocOnly) {
  2809     // Just print usage for now
  2810     out->print_cr("usage %d", used_words(Metaspace::NonClassType));
  2812   out->print_cr("\nVirtual space manager: " INTPTR_FORMAT, vsm());
  2813   vsm()->dump(out);
  2814   out->print_cr("\nClass space manager: " INTPTR_FORMAT, class_vsm());
  2815   class_vsm()->dump(out);

mercurial