hotspot/src/share/vm/gc_implementation/shared/mutableNUMASpace.hpp
author iveresov
Sat, 27 Sep 2008 00:33:13 -0700
changeset 1405 ce6e6fe90107
parent 977 b90650e2a9f7
child 1911 b7cfe7eb809c
permissions -rw-r--r--
6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing Summary: Treat a chuck where the allocation has failed as fully used. Reviewed-by: ysr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 616
diff changeset
     2
 * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
 *    The NUMA-aware allocator (MutableNUMASpace) is basically a modification
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
 * of MutableSpace which preserves interfaces but implements different
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
 * functionality. The space is split into chunks for each locality group
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
 * (resizing for adaptive size policy is also supported). For each thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 * allocations are performed in the chunk corresponding to the home locality
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 * group of the thread. Whenever any chunk fills-in the young generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
 * collection occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 *   The chunks can be also be adaptively resized. The idea behind the adaptive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 * sizing is to reduce the loss of the space in the eden due to fragmentation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 * The main cause of fragmentation is uneven allocation rates of threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 * The allocation rate difference between locality groups may be caused either by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 * application specifics or by uneven LWP distribution by the OS. Besides,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 * application can have less threads then the number of locality groups.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 * In order to resize the chunk we measure the allocation rate of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 * application between collections. After that we reshape the chunks to reflect
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 * the allocation rate pattern. The AdaptiveWeightedAverage exponentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 * decaying average is used to smooth the measurements. The NUMASpaceResizeRate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 * parameter is used to control the adaptation speed by restricting the number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 * bytes that can be moved during the adaptation phase.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 *   Chunks may contain pages from a wrong locality group. The page-scanner has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 * been introduced to address the problem. Remote pages typically appear due to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 * the memory shortage in the target locality group. Besides Solaris would
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 * allocate a large page from the remote locality group even if there are small
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 * local pages available. The page-scanner scans the pages right after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 * collection and frees remote pages in hope that subsequent reallocation would
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 * be more successful. This approach proved to be useful on systems with high
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
 * load where multiple processes are competing for the memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
class MutableNUMASpace : public MutableSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  class LGRPSpace : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    int _lgrp_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    MutableSpace* _space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    MemRegion _invalid_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    AdaptiveWeightedAverage *_alloc_rate;
1405
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
    63
    bool _allocation_failed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    struct SpaceStats {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      size_t _local_space, _remote_space, _unbiased_space, _uncommited_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      size_t _large_pages, _small_pages;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      SpaceStats() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
        _local_space = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
        _remote_space = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
        _unbiased_space = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
        _uncommited_space = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
        _large_pages = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
        _small_pages = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    SpaceStats _space_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    char* _last_page_scanned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    char* last_page_scanned()            { return _last_page_scanned; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    void set_last_page_scanned(char* p)  { _last_page_scanned = p;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
   public:
1405
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
    85
    LGRPSpace(int l) : _lgrp_id(l), _last_page_scanned(NULL), _allocation_failed(false) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      _space = new MutableSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      _alloc_rate = new AdaptiveWeightedAverage(NUMAChunkResizeWeight);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    ~LGRPSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      delete _space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      delete _alloc_rate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    void add_invalid_region(MemRegion r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      if (!_invalid_region.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      _invalid_region.set_start(MIN2(_invalid_region.start(), r.start()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      _invalid_region.set_end(MAX2(_invalid_region.end(), r.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      _invalid_region = r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    static bool equals(void* lgrp_id_value, LGRPSpace* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      return *(int*)lgrp_id_value == p->lgrp_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
1405
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   107
    // Report a failed allocation.
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   108
    void set_allocation_failed() { _allocation_failed = true;  }
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   109
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    void sample() {
1405
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   111
      // If there was a failed allocation make allocation rate equal
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   112
      // to the size of the whole chunk. This ensures the progress of
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   113
      // the adaptation process.
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   114
      size_t alloc_rate_sample;
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   115
      if (_allocation_failed) {
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   116
        alloc_rate_sample = space()->capacity_in_bytes();
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   117
        _allocation_failed = false;
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   118
      } else {
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   119
        alloc_rate_sample = space()->used_in_bytes();
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   120
      }
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   121
      alloc_rate()->sample(alloc_rate_sample);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    MemRegion invalid_region() const                { return _invalid_region;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    void set_invalid_region(MemRegion r)            { _invalid_region = r;         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    int lgrp_id() const                             { return _lgrp_id;             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    MutableSpace* space() const                     { return _space;               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    AdaptiveWeightedAverage* alloc_rate() const     { return _alloc_rate;          }
976
241230d48896 6723228: NUMA allocator: assert(lgrp_id != -1, "No lgrp_id set")
iveresov
parents: 971
diff changeset
   129
    void clear_alloc_rate()                         { _alloc_rate->clear();        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    SpaceStats* space_stats()                       { return &_space_stats;        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    void clear_space_stats()                        { _space_stats = SpaceStats(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    void accumulate_statistics(size_t page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    void scan_pages(size_t page_size, size_t page_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  GrowableArray<LGRPSpace*>* _lgrp_spaces;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  size_t _page_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  unsigned _adaptation_cycles, _samples_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  void set_page_size(size_t psz)                     { _page_size = psz;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  size_t page_size() const                           { return _page_size;         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  unsigned adaptation_cycles()                       { return _adaptation_cycles; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void set_adaptation_cycles(int v)                  { _adaptation_cycles = v;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  unsigned samples_count()                           { return _samples_count;     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void increment_samples_count()                     { ++_samples_count;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  size_t _base_space_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void set_base_space_size(size_t v)                 { _base_space_size = v;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  size_t base_space_size() const                     { return _base_space_size;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Check if the NUMA topology has changed. Add and remove spaces if needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // The update can be forced by setting the force parameter equal to true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  bool update_layout(bool force);
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   157
  // Bias region towards the lgrp.
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   158
  void bias_region(MemRegion mr, int lgrp_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Free pages in a given region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  void free_region(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Get current chunk size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  size_t current_chunk_size(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Get default chunk size (equally divide the space).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  size_t default_chunk_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Adapt the chunk size to follow the allocation rate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  size_t adaptive_chunk_size(int i, size_t limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Scan and free invalid pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  void scan_pages(size_t page_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Return the bottom_region and the top_region. Align them to page_size() boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // |------------------new_region---------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // |----bottom_region--|---intersection---|------top_region------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void select_tails(MemRegion new_region, MemRegion intersection,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                    MemRegion* bottom_region, MemRegion *top_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Try to merge the invalid region with the bottom or top region by decreasing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // the intersection area. Return the invalid_region aligned to the page_size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // boundary if it's inside the intersection. Return non-empty invalid_region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // if it lies inside the intersection (also page-aligned).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // |------------------new_region---------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // |----------------|-------invalid---|--------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // |----bottom_region--|---intersection---|------top_region------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void merge_regions(MemRegion new_region, MemRegion* intersection,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
                     MemRegion *invalid_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  GrowableArray<LGRPSpace*>* lgrp_spaces() const     { return _lgrp_spaces;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  MutableNUMASpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  virtual ~MutableNUMASpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Space initialization.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   189
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Update space layout if necessary. Do all adaptive resizing job.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  virtual void update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Update allocation rate averages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  virtual void accumulate_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   195
  virtual void clear(bool mangle_space);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   196
  virtual void mangle_unused_area() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   197
  virtual void mangle_unused_area_complete() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   198
  virtual void mangle_region(MemRegion mr) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   199
  virtual void check_mangled_unused_area(HeapWord* limit) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   200
  virtual void check_mangled_unused_area_complete() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   201
  virtual void set_top_for_allocations(HeapWord* v) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   202
  virtual void set_top_for_allocations() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 616
diff changeset
   203
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  virtual void ensure_parsability();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual size_t used_in_words() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  virtual size_t free_in_words() const;
1405
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   207
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   208
  using MutableSpace::capacity_in_words;
ce6e6fe90107 6740923: NUMA allocator: Ensure the progress of adaptive chunk resizing
iveresov
parents: 977
diff changeset
   209
  virtual size_t capacity_in_words(Thread* thr) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  virtual size_t tlab_capacity(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  virtual size_t unsafe_max_tlab_alloc(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  virtual HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  virtual HeapWord* cas_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  virtual void print_short_on(outputStream* st) const;
616
4f2dfc0168e2 6711930: NUMA allocator: ParOld can create a hole less than minimal object size in the lgrp chunk
iveresov
parents: 388
diff changeset
   220
  virtual void verify(bool allow_dirty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  virtual void set_top(HeapWord* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
};