src/share/vm/memory/metaspace.hpp

Mon, 23 Mar 2020 17:57:13 +0000

author
poonam
date
Mon, 23 Mar 2020 17:57:13 +0000
changeset 9965
c39172598323
parent 9612
58ffe5f227a6
child 9637
eef07cd490d4
permissions
-rw-r--r--

8231779: crash HeapWord*ParallelScavengeHeap::failed_mem_allocate
Reviewed-by: dlong, tschatzl, pliden

coleenp@4037 1 /*
ysuenaga@9612 2 * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
coleenp@4037 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
coleenp@4037 4 *
coleenp@4037 5 * This code is free software; you can redistribute it and/or modify it
coleenp@4037 6 * under the terms of the GNU General Public License version 2 only, as
coleenp@4037 7 * published by the Free Software Foundation.
coleenp@4037 8 *
coleenp@4037 9 * This code is distributed in the hope that it will be useful, but WITHOUT
coleenp@4037 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
coleenp@4037 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
coleenp@4037 12 * version 2 for more details (a copy is included in the LICENSE file that
coleenp@4037 13 * accompanied this code).
coleenp@4037 14 *
coleenp@4037 15 * You should have received a copy of the GNU General Public License version
coleenp@4037 16 * 2 along with this work; if not, write to the Free Software Foundation,
coleenp@4037 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
coleenp@4037 18 *
coleenp@4037 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
coleenp@4037 20 * or visit www.oracle.com if you need additional information or have any
coleenp@4037 21 * questions.
coleenp@4037 22 *
coleenp@4037 23 */
coleenp@4037 24 #ifndef SHARE_VM_MEMORY_METASPACE_HPP
coleenp@4037 25 #define SHARE_VM_MEMORY_METASPACE_HPP
coleenp@4037 26
coleenp@4037 27 #include "memory/allocation.hpp"
coleenp@4037 28 #include "memory/memRegion.hpp"
ehelin@6420 29 #include "memory/metaspaceChunkFreeListSummary.hpp"
coleenp@4037 30 #include "runtime/virtualspace.hpp"
coleenp@4037 31 #include "utilities/exceptions.hpp"
coleenp@4037 32
coleenp@4037 33 // Metaspace
coleenp@4037 34 //
coleenp@4037 35 // Metaspaces are Arenas for the VM's metadata.
coleenp@4037 36 // They are allocated one per class loader object, and one for the null
coleenp@4037 37 // bootstrap class loader
coleenp@4037 38 // Eventually for bootstrap loader we'll have a read-only section and read-write
coleenp@4037 39 // to write for DumpSharedSpaces and read for UseSharedSpaces
coleenp@4037 40 //
coleenp@4037 41 // block X ---+ +-------------------+
coleenp@4037 42 // | | Virtualspace |
coleenp@4037 43 // | | |
coleenp@4037 44 // | | |
coleenp@4037 45 // | |-------------------|
coleenp@4037 46 // | || Chunk |
coleenp@4037 47 // | || |
coleenp@4037 48 // | ||---------- |
coleenp@4037 49 // +------>||| block 0 | |
coleenp@4037 50 // ||---------- |
coleenp@4037 51 // ||| block 1 | |
coleenp@4037 52 // ||---------- |
coleenp@4037 53 // || |
coleenp@4037 54 // |-------------------|
coleenp@4037 55 // | |
coleenp@4037 56 // | |
coleenp@4037 57 // +-------------------+
coleenp@4037 58 //
coleenp@4037 59
stefank@5771 60 class ChunkManager;
coleenp@4037 61 class ClassLoaderData;
jmasa@4196 62 class Metablock;
stefank@5771 63 class Metachunk;
ehelin@6417 64 class MetaspaceTracer;
coleenp@4037 65 class MetaWord;
coleenp@4037 66 class Mutex;
coleenp@4037 67 class outputStream;
coleenp@4037 68 class SpaceManager;
stefank@5771 69 class VirtualSpaceList;
coleenp@4037 70
coleenp@4037 71 // Metaspaces each have a SpaceManager and allocations
coleenp@4037 72 // are done by the SpaceManager. Allocations are done
coleenp@4037 73 // out of the current Metachunk. When the current Metachunk
coleenp@4037 74 // is exhausted, the SpaceManager gets a new one from
coleenp@4037 75 // the current VirtualSpace. When the VirtualSpace is exhausted
coleenp@4037 76 // the SpaceManager gets a new one. The SpaceManager
coleenp@4037 77 // also manages freelists of available Chunks.
coleenp@4037 78 //
coleenp@4037 79 // Currently the space manager maintains the list of
coleenp@4037 80 // virtual spaces and the list of chunks in use. Its
coleenp@4037 81 // allocate() method returns a block for use as a
coleenp@4037 82 // quantum of metadata.
coleenp@4037 83
coleenp@4037 84 class Metaspace : public CHeapObj<mtClass> {
coleenp@4037 85 friend class VMStructs;
coleenp@4037 86 friend class SpaceManager;
coleenp@4037 87 friend class VM_CollectForMetadataAllocation;
coleenp@4037 88 friend class MetaspaceGC;
coleenp@4037 89 friend class MetaspaceAux;
coleenp@4037 90
coleenp@4037 91 public:
stefank@5863 92 enum MetadataType {
stefank@5863 93 ClassType,
stefank@5863 94 NonClassType,
stefank@5863 95 MetadataTypeCount
jmasa@5162 96 };
jmasa@4382 97 enum MetaspaceType {
jmasa@4382 98 StandardMetaspaceType,
jmasa@4382 99 BootMetaspaceType,
jmasa@4382 100 ROMetaspaceType,
jmasa@4382 101 ReadWriteMetaspaceType,
jmasa@4382 102 AnonymousMetaspaceType,
jmasa@4382 103 ReflectionMetaspaceType
jmasa@4382 104 };
coleenp@4037 105
coleenp@4037 106 private:
mchinnathamb@9058 107 static void verify_global_initialization();
mchinnathamb@9058 108
jmasa@4382 109 void initialize(Mutex* lock, MetaspaceType type);
jmasa@4382 110
mchinnathamb@9058 111 // Initialize the first chunk for a Metaspace. Used for
stefank@5863 112 // special cases such as the boot class loader, reflection
stefank@5863 113 // class loader and anonymous class loader.
mchinnathamb@9058 114 void initialize_first_chunk(MetaspaceType type, MetadataType mdtype);
mchinnathamb@9058 115 Metachunk* get_initialization_chunk(MetaspaceType type, MetadataType mdtype);
stefank@5771 116
jmasa@4382 117 // Align up the word size to the allocation word size
jmasa@4382 118 static size_t align_word_size_up(size_t);
coleenp@4037 119
hseigel@5528 120 // Aligned size of the metaspace.
coleenp@6029 121 static size_t _compressed_class_space_size;
hseigel@5528 122
coleenp@6029 123 static size_t compressed_class_space_size() {
coleenp@6029 124 return _compressed_class_space_size;
hseigel@5528 125 }
goetz@6487 126
coleenp@6029 127 static void set_compressed_class_space_size(size_t size) {
coleenp@6029 128 _compressed_class_space_size = size;
hseigel@5528 129 }
hseigel@5528 130
coleenp@4037 131 static size_t _first_chunk_word_size;
jmasa@4382 132 static size_t _first_class_chunk_word_size;
coleenp@4037 133
stefank@5863 134 static size_t _commit_alignment;
stefank@5863 135 static size_t _reserve_alignment;
stefank@5863 136
coleenp@4037 137 SpaceManager* _vsm;
coleenp@4037 138 SpaceManager* vsm() const { return _vsm; }
coleenp@4037 139
coleenp@4037 140 SpaceManager* _class_vsm;
coleenp@4037 141 SpaceManager* class_vsm() const { return _class_vsm; }
mchinnathamb@9058 142 SpaceManager* get_space_manager(MetadataType mdtype) {
mchinnathamb@9058 143 assert(mdtype != MetadataTypeCount, "MetadaTypeCount can't be used as mdtype");
mchinnathamb@9058 144 return mdtype == ClassType ? class_vsm() : vsm();
mchinnathamb@9058 145 }
coleenp@4037 146
jmasa@5015 147 // Allocate space for metadata of type mdtype. This is space
jmasa@5015 148 // within a Metachunk and is used by
jmasa@5015 149 // allocate(ClassLoaderData*, size_t, bool, MetadataType, TRAPS)
coleenp@4037 150 MetaWord* allocate(size_t word_size, MetadataType mdtype);
coleenp@4037 151
coleenp@4037 152 // Virtual Space lists for both classes and other metadata
coleenp@4037 153 static VirtualSpaceList* _space_list;
coleenp@4037 154 static VirtualSpaceList* _class_space_list;
coleenp@4037 155
stefank@5771 156 static ChunkManager* _chunk_manager_metadata;
stefank@5771 157 static ChunkManager* _chunk_manager_class;
stefank@5771 158
ehelin@6417 159 static const MetaspaceTracer* _tracer;
ehelin@6417 160
stefank@5771 161 public:
coleenp@4037 162 static VirtualSpaceList* space_list() { return _space_list; }
coleenp@4037 163 static VirtualSpaceList* class_space_list() { return _class_space_list; }
ehelin@5531 164 static VirtualSpaceList* get_space_list(MetadataType mdtype) {
ehelin@5531 165 assert(mdtype != MetadataTypeCount, "MetadaTypeCount can't be used as mdtype");
ehelin@5531 166 return mdtype == ClassType ? class_space_list() : space_list();
ehelin@5531 167 }
coleenp@4037 168
stefank@5771 169 static ChunkManager* chunk_manager_metadata() { return _chunk_manager_metadata; }
stefank@5771 170 static ChunkManager* chunk_manager_class() { return _chunk_manager_class; }
stefank@5771 171 static ChunkManager* get_chunk_manager(MetadataType mdtype) {
stefank@5771 172 assert(mdtype != MetadataTypeCount, "MetadaTypeCount can't be used as mdtype");
stefank@5771 173 return mdtype == ClassType ? chunk_manager_class() : chunk_manager_metadata();
stefank@5771 174 }
stefank@5771 175
ehelin@6417 176 static const MetaspaceTracer* tracer() { return _tracer; }
ehelin@6417 177
stefank@5771 178 private:
iklam@7089 179 // These 2 methods are used by DumpSharedSpaces only, where only _vsm is used. So we will
iklam@5208 180 // maintain a single list for now.
iklam@5208 181 void record_allocation(void* ptr, MetaspaceObj::Type type, size_t word_size);
iklam@7089 182 void record_deallocation(void* ptr, size_t word_size);
iklam@5208 183
hseigel@5528 184 #ifdef _LP64
hseigel@5528 185 static void set_narrow_klass_base_and_shift(address metaspace_base, address cds_base);
hseigel@5528 186
hseigel@5528 187 // Returns true if can use CDS with metaspace allocated as specified address.
hseigel@5528 188 static bool can_use_cds_with_metaspace_addr(char* metaspace_base, address cds_base);
hseigel@5528 189
hseigel@5528 190 static void allocate_metaspace_compressed_klass_ptrs(char* requested_addr, address cds_base);
hseigel@5528 191
hseigel@5528 192 static void initialize_class_space(ReservedSpace rs);
hseigel@5528 193 #endif
hseigel@5528 194
iklam@5208 195 class AllocRecord : public CHeapObj<mtClass> {
iklam@5208 196 public:
iklam@5208 197 AllocRecord(address ptr, MetaspaceObj::Type type, int byte_size)
iklam@5208 198 : _next(NULL), _ptr(ptr), _type(type), _byte_size(byte_size) {}
iklam@5208 199 AllocRecord *_next;
iklam@5208 200 address _ptr;
iklam@5208 201 MetaspaceObj::Type _type;
iklam@5208 202 int _byte_size;
iklam@5208 203 };
iklam@5208 204
iklam@5208 205 AllocRecord * _alloc_record_head;
iklam@5208 206 AllocRecord * _alloc_record_tail;
iklam@5208 207
hseigel@6027 208 size_t class_chunk_size(size_t word_size);
hseigel@6027 209
coleenp@4037 210 public:
coleenp@4037 211
jmasa@4382 212 Metaspace(Mutex* lock, MetaspaceType type);
coleenp@4037 213 ~Metaspace();
coleenp@4037 214
stefank@5863 215 static void ergo_initialize();
coleenp@4037 216 static void global_initialize();
ehelin@6722 217 static void post_initialize();
coleenp@4037 218
coleenp@4037 219 static size_t first_chunk_word_size() { return _first_chunk_word_size; }
jmasa@4382 220 static size_t first_class_chunk_word_size() { return _first_class_chunk_word_size; }
coleenp@4037 221
stefank@5863 222 static size_t reserve_alignment() { return _reserve_alignment; }
stefank@5863 223 static size_t reserve_alignment_words() { return _reserve_alignment / BytesPerWord; }
stefank@5863 224 static size_t commit_alignment() { return _commit_alignment; }
stefank@5863 225 static size_t commit_alignment_words() { return _commit_alignment / BytesPerWord; }
stefank@5863 226
coleenp@4037 227 char* bottom() const;
jmasa@5015 228 size_t used_words_slow(MetadataType mdtype) const;
ehelin@5703 229 size_t free_words_slow(MetadataType mdtype) const;
jmasa@5015 230 size_t capacity_words_slow(MetadataType mdtype) const;
coleenp@4037 231
jmasa@5015 232 size_t used_bytes_slow(MetadataType mdtype) const;
jmasa@5015 233 size_t capacity_bytes_slow(MetadataType mdtype) const;
jmasa@5015 234
dbuck@9063 235 size_t allocated_blocks_bytes() const;
dbuck@9063 236 size_t allocated_chunks_bytes() const;
dbuck@9063 237
stefank@5941 238 static MetaWord* allocate(ClassLoaderData* loader_data, size_t word_size,
stefank@5941 239 bool read_only, MetaspaceObj::Type type, TRAPS);
jmasa@4064 240 void deallocate(MetaWord* ptr, size_t byte_size, bool is_class);
coleenp@4037 241
jmasa@4064 242 MetaWord* expand_and_allocate(size_t size,
jmasa@4064 243 MetadataType mdtype);
coleenp@4037 244
coleenp@6678 245 static bool contains(const void* ptr);
coleenp@6678 246
coleenp@4037 247 void dump(outputStream* const out) const;
coleenp@4037 248
jmasa@5007 249 // Free empty virtualspaces
stefank@5771 250 static void purge(MetadataType mdtype);
jmasa@5007 251 static void purge();
jmasa@5007 252
stefank@5863 253 static void report_metadata_oome(ClassLoaderData* loader_data, size_t word_size,
ehelin@6419 254 MetaspaceObj::Type type, MetadataType mdtype, TRAPS);
stefank@5863 255
ehelin@6418 256 static const char* metadata_type_name(Metaspace::MetadataType mdtype);
ehelin@6418 257
coleenp@4037 258 void print_on(outputStream* st) const;
coleenp@4037 259 // Debugging support
coleenp@4037 260 void verify();
iklam@5208 261
kvn@9597 262 static void print_compressed_class_space(outputStream* st, const char* requested_addr = 0) NOT_LP64({});
shshahma@9301 263
iklam@5208 264 class AllocRecordClosure : public StackObj {
iklam@5208 265 public:
iklam@5208 266 virtual void doit(address ptr, MetaspaceObj::Type type, int byte_size) = 0;
iklam@5208 267 };
iklam@5208 268
iklam@5208 269 void iterate(AllocRecordClosure *closure);
hseigel@5528 270
ehelin@5694 271 // Return TRUE only if UseCompressedClassPointers is True and DumpSharedSpaces is False.
hseigel@5528 272 static bool using_class_space() {
ehelin@5694 273 return NOT_LP64(false) LP64_ONLY(UseCompressedClassPointers && !DumpSharedSpaces);
hseigel@5528 274 }
hseigel@5528 275
mgerdin@5808 276 static bool is_class_space_allocation(MetadataType mdType) {
mgerdin@5808 277 return mdType == ClassType && using_class_space();
mgerdin@5808 278 }
hseigel@6027 279
coleenp@4037 280 };
coleenp@4037 281
coleenp@4037 282 class MetaspaceAux : AllStatic {
ehelin@5703 283 static size_t free_chunks_total_words(Metaspace::MetadataType mdtype);
jmasa@5015 284
jmasa@5015 285 // These methods iterate over the classloader data graph
jmasa@5015 286 // for the given Metaspace type. These are slow.
jmasa@5015 287 static size_t used_bytes_slow(Metaspace::MetadataType mdtype);
ehelin@5703 288 static size_t free_bytes_slow(Metaspace::MetadataType mdtype);
jmasa@5015 289 static size_t capacity_bytes_slow(Metaspace::MetadataType mdtype);
ehelin@5703 290 static size_t capacity_bytes_slow();
coleenp@4037 291
jmasa@5015 292 // Running sum of space in all Metachunks that has been
jmasa@5015 293 // allocated to a Metaspace. This is used instead of
jmasa@5162 294 // iterating over all the classloaders. One for each
jmasa@5162 295 // type of Metadata
ehelin@6609 296 static size_t _capacity_words[Metaspace:: MetadataTypeCount];
ehelin@6609 297 // Running sum of space in all Metachunks that
jmasa@5162 298 // are being used for metadata. One for each
jmasa@5162 299 // type of Metadata.
ehelin@6609 300 static size_t _used_words[Metaspace:: MetadataTypeCount];
jmasa@5015 301
jmasa@5015 302 public:
jmasa@5015 303 // Decrement and increment _allocated_capacity_words
jmasa@5162 304 static void dec_capacity(Metaspace::MetadataType type, size_t words);
jmasa@5162 305 static void inc_capacity(Metaspace::MetadataType type, size_t words);
jmasa@5015 306
jmasa@5015 307 // Decrement and increment _allocated_used_words
jmasa@5162 308 static void dec_used(Metaspace::MetadataType type, size_t words);
jmasa@5162 309 static void inc_used(Metaspace::MetadataType type, size_t words);
jmasa@5015 310
jmasa@5015 311 // Total of space allocated to metadata in all Metaspaces.
jmasa@5015 312 // This sums the space used in each Metachunk by
jmasa@5015 313 // iterating over the classloader data graph
jmasa@5015 314 static size_t used_bytes_slow() {
jmasa@5015 315 return used_bytes_slow(Metaspace::ClassType) +
jmasa@5015 316 used_bytes_slow(Metaspace::NonClassType);
stefank@4371 317 }
coleenp@4037 318
jmasa@5015 319 // Used by MetaspaceCounters
ehelin@5703 320 static size_t free_chunks_total_words();
ehelin@5703 321 static size_t free_chunks_total_bytes();
ehelin@5703 322 static size_t free_chunks_total_bytes(Metaspace::MetadataType mdtype);
jmasa@5015 323
ehelin@6609 324 static size_t capacity_words(Metaspace::MetadataType mdtype) {
ehelin@6609 325 return _capacity_words[mdtype];
jmasa@5162 326 }
ehelin@6609 327 static size_t capacity_words() {
ehelin@6609 328 return capacity_words(Metaspace::NonClassType) +
ehelin@6609 329 capacity_words(Metaspace::ClassType);
jmasa@5162 330 }
ehelin@6609 331 static size_t capacity_bytes(Metaspace::MetadataType mdtype) {
ehelin@6609 332 return capacity_words(mdtype) * BytesPerWord;
jmasa@5015 333 }
ehelin@6609 334 static size_t capacity_bytes() {
ehelin@6609 335 return capacity_words() * BytesPerWord;
jmasa@5015 336 }
jmasa@5015 337
ehelin@6609 338 static size_t used_words(Metaspace::MetadataType mdtype) {
ehelin@6609 339 return _used_words[mdtype];
jmasa@5162 340 }
ehelin@6609 341 static size_t used_words() {
ehelin@6609 342 return used_words(Metaspace::NonClassType) +
ehelin@6609 343 used_words(Metaspace::ClassType);
jmasa@5162 344 }
ehelin@6609 345 static size_t used_bytes(Metaspace::MetadataType mdtype) {
ehelin@6609 346 return used_words(mdtype) * BytesPerWord;
jmasa@5015 347 }
ehelin@6609 348 static size_t used_bytes() {
ehelin@6609 349 return used_words() * BytesPerWord;
jmasa@5015 350 }
jmasa@5015 351
jmasa@5015 352 static size_t free_bytes();
ehelin@5531 353 static size_t free_bytes(Metaspace::MetadataType mdtype);
jmasa@5015 354
ehelin@5703 355 static size_t reserved_bytes(Metaspace::MetadataType mdtype);
ehelin@5703 356 static size_t reserved_bytes() {
ehelin@5703 357 return reserved_bytes(Metaspace::ClassType) +
ehelin@5703 358 reserved_bytes(Metaspace::NonClassType);
stefank@4371 359 }
coleenp@4037 360
stefank@5704 361 static size_t committed_bytes(Metaspace::MetadataType mdtype);
stefank@5704 362 static size_t committed_bytes() {
stefank@5704 363 return committed_bytes(Metaspace::ClassType) +
stefank@5704 364 committed_bytes(Metaspace::NonClassType);
stefank@5704 365 }
stefank@5704 366
ehelin@5703 367 static size_t min_chunk_size_words();
ehelin@5703 368 static size_t min_chunk_size_bytes() {
ehelin@5703 369 return min_chunk_size_words() * BytesPerWord;
stefank@4371 370 }
coleenp@4037 371
ehelin@6420 372 static bool has_chunk_free_list(Metaspace::MetadataType mdtype);
ehelin@6420 373 static MetaspaceChunkFreeListSummary chunk_free_list_summary(Metaspace::MetadataType mdtype);
ehelin@6420 374
coleenp@4037 375 // Print change in used metadata.
coleenp@4037 376 static void print_metaspace_change(size_t prev_metadata_used);
coleenp@4037 377 static void print_on(outputStream * out);
coleenp@4037 378 static void print_on(outputStream * out, Metaspace::MetadataType mdtype);
coleenp@4037 379
hseigel@5528 380 static void print_class_waste(outputStream* out);
coleenp@4037 381 static void print_waste(outputStream* out);
coleenp@4037 382 static void dump(outputStream* out);
mgerdin@4264 383 static void verify_free_chunks();
jmasa@5015 384 // Checks that the values returned by allocated_capacity_bytes() and
jmasa@5015 385 // capacity_bytes_slow() are the same.
jmasa@5015 386 static void verify_capacity();
jmasa@5015 387 static void verify_used();
jmasa@5015 388 static void verify_metrics();
coleenp@4037 389 };
coleenp@4037 390
coleenp@4037 391 // Metaspace are deallocated when their class loader are GC'ed.
coleenp@4037 392 // This class implements a policy for inducing GC's to recover
coleenp@4037 393 // Metaspaces.
coleenp@4037 394
coleenp@4037 395 class MetaspaceGC : AllStatic {
coleenp@4037 396
stefank@5863 397 // The current high-water-mark for inducing a GC.
stefank@5863 398 // When committed memory of all metaspaces reaches this value,
stefank@5863 399 // a GC is induced and the value is increased. Size is in bytes.
stefank@5863 400 static volatile intptr_t _capacity_until_GC;
coleenp@4037 401
coleenp@4037 402 // For a CMS collection, signal that a concurrent collection should
coleenp@4037 403 // be started.
coleenp@4037 404 static bool _should_concurrent_collect;
coleenp@4037 405
coleenp@4037 406 static uint _shrink_factor;
coleenp@4037 407
coleenp@4037 408 static size_t shrink_factor() { return _shrink_factor; }
coleenp@4037 409 void set_shrink_factor(uint v) { _shrink_factor = v; }
coleenp@4037 410
coleenp@4037 411 public:
coleenp@4037 412
ehelin@6722 413 static void initialize();
ehelin@6722 414 static void post_initialize();
stefank@5863 415
stefank@5863 416 static size_t capacity_until_GC();
ehelin@7254 417 static bool inc_capacity_until_GC(size_t v,
ehelin@7254 418 size_t* new_cap_until_GC = NULL,
ysuenaga@9612 419 size_t* old_cap_until_GC = NULL,
ysuenaga@9612 420 bool* can_retry = NULL);
stefank@5863 421 static size_t dec_capacity_until_GC(size_t v);
coleenp@4037 422
coleenp@4037 423 static bool should_concurrent_collect() { return _should_concurrent_collect; }
coleenp@4037 424 static void set_should_concurrent_collect(bool v) {
coleenp@4037 425 _should_concurrent_collect = v;
coleenp@4037 426 }
coleenp@4037 427
coleenp@4037 428 // The amount to increase the high-water-mark (_capacity_until_GC)
stefank@5863 429 static size_t delta_capacity_until_GC(size_t bytes);
coleenp@4037 430
stefank@5863 431 // Tells if we have can expand metaspace without hitting set limits.
stefank@5863 432 static bool can_expand(size_t words, bool is_class);
stefank@5863 433
stefank@5863 434 // Returns amount that we can expand without hitting a GC,
stefank@5863 435 // measured in words.
stefank@5863 436 static size_t allowed_expansion();
coleenp@4037 437
coleenp@4037 438 // Calculate the new high-water mark at which to induce
coleenp@4037 439 // a GC.
coleenp@4037 440 static void compute_new_size();
coleenp@4037 441 };
coleenp@4037 442
coleenp@4037 443 #endif // SHARE_VM_MEMORY_METASPACE_HPP

mercurial