src/hotspot/share/gc/shared/collectedHeap.cpp
author stuefe
Tue, 26 Nov 2019 16:21:29 +0100
branchstuefe-new-metaspace-branch
changeset 59272 54750b448264
parent 58494 54c1ba464b78
permissions -rw-r--r--
Metadatatype back to metaspace.hpp to reduce patch size
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53191
a257992e1e4d 8216285: Enable inlining of CollectedHeap::obj-/array-/class_allocate
redestad
parents: 52876
diff changeset
     2
 * Copyright (c) 2001, 2019, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5544
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5544
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5544
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    26
#include "classfile/systemDictionary.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    27
#include "gc/shared/allocTracer.hpp"
49484
ee8fa73b90f9 8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents: 49468
diff changeset
    28
#include "gc/shared/barrierSet.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    29
#include "gc/shared/collectedHeap.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    30
#include "gc/shared/collectedHeap.inline.hpp"
49045
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
    31
#include "gc/shared/gcLocker.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    32
#include "gc/shared/gcHeapSummary.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    33
#include "gc/shared/gcTrace.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    34
#include "gc/shared/gcTraceTime.inline.hpp"
52876
2d17750d41e7 8214791: Consistently name gc files containing VM operations
tschatzl
parents: 52124
diff changeset
    35
#include "gc/shared/gcVMOperations.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    36
#include "gc/shared/gcWhen.hpp"
50882
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
    37
#include "gc/shared/memAllocator.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    38
#include "logging/log.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    39
#include "memory/metaspace.hpp"
58063
bdf136b8ae0e Initial changes for new metaspace. Only tested for Linux x64.
stuefe
parents: 58015
diff changeset
    40
#include "memory/metaspace/classLoaderMetaspace.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 37242
diff changeset
    41
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54623
diff changeset
    42
#include "memory/universe.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30152
diff changeset
    43
#include "oops/instanceMirrorKlass.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    44
#include "oops/oop.inline.hpp"
49361
1956d0ec092a 8199319: Remove handles.inline.hpp include from reflectionUtils.hpp
stefank
parents: 49045
diff changeset
    45
#include "runtime/handles.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    46
#include "runtime/init.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13738
diff changeset
    47
#include "runtime/thread.inline.hpp"
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47998
diff changeset
    48
#include "runtime/threadSMR.hpp"
49045
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
    49
#include "runtime/vmThread.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    50
#include "services/heapDumper.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    51
#include "utilities/align.hpp"
50882
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
    52
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
49045
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
    54
class ClassLoaderData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    56
size_t CollectedHeap::_filler_array_max_size = 0;
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    57
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    58
template <>
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    59
void EventLogBase<GCMessage>::print(outputStream* st, GCMessage& m) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    60
  st->print_cr("GC heap %s", m.is_before ? "before" : "after");
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    61
  st->print_raw(m);
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    62
}
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    63
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    64
void GCHeapLog::log_heap(CollectedHeap* heap, bool before) {
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    65
  if (!should_log()) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    66
    return;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    67
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    68
11788
bef6166c683c 7145537: minor tweaks to LogEvents
never
parents: 11636
diff changeset
    69
  double timestamp = fetch_timestamp();
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54616
diff changeset
    70
  MutexLocker ml(&_mutex, Mutex::_no_safepoint_check_flag);
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    71
  int index = compute_log_index();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    72
  _records[index].thread = NULL; // Its the GC thread so it's not that interesting.
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    73
  _records[index].timestamp = timestamp;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    74
  _records[index].data.is_before = before;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    75
  stringStream st(_records[index].data.buffer(), _records[index].data.size());
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    76
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    77
  st.print_cr("{Heap %s GC invocations=%u (full %u):",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    78
                 before ? "before" : "after",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    79
                 heap->total_collections(),
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    80
                 heap->total_full_collections());
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    81
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    82
  heap->print_on(&st);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
    83
  st.print_cr("}");
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    84
}
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
    85
54616
3ab77d8dc60a 8222462: Introduce CollectedHeap::unused()
pliden
parents: 54376
diff changeset
    86
size_t CollectedHeap::unused() const {
3ab77d8dc60a 8222462: Introduce CollectedHeap::unused()
pliden
parents: 54376
diff changeset
    87
  MutexLocker ml(Heap_lock);
3ab77d8dc60a 8222462: Introduce CollectedHeap::unused()
pliden
parents: 54376
diff changeset
    88
  return capacity() - used();
3ab77d8dc60a 8222462: Introduce CollectedHeap::unused()
pliden
parents: 54376
diff changeset
    89
}
3ab77d8dc60a 8222462: Introduce CollectedHeap::unused()
pliden
parents: 54376
diff changeset
    90
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    91
VirtualSpaceSummary CollectedHeap::create_heap_space_summary() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    92
  size_t capacity_in_words = capacity() / HeapWordSize;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    93
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    94
  return VirtualSpaceSummary(
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
    95
    _reserved.start(), _reserved.start() + capacity_in_words, _reserved.end());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    96
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    97
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    98
GCHeapSummary CollectedHeap::create_heap_summary() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
    99
  VirtualSpaceSummary heap_space = create_heap_space_summary();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   100
  return GCHeapSummary(heap_space, used());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   101
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   102
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   103
MetaspaceSummary CollectedHeap::create_metaspace_summary() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   104
  const MetaspaceSizes meta_space(
49389
9ef2eee8ca7c 8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents: 49361
diff changeset
   105
      MetaspaceUtils::committed_bytes(),
9ef2eee8ca7c 8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents: 49361
diff changeset
   106
      MetaspaceUtils::used_bytes(),
9ef2eee8ca7c 8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents: 49361
diff changeset
   107
      MetaspaceUtils::reserved_bytes());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   108
  const MetaspaceSizes data_space(
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   109
      MetaspaceUtils::committed_bytes(Metaspace::NonClassType),
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   110
      MetaspaceUtils::used_bytes(Metaspace::NonClassType),
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   111
      MetaspaceUtils::reserved_bytes(Metaspace::NonClassType));
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   112
  const MetaspaceSizes class_space(
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   113
      MetaspaceUtils::committed_bytes(Metaspace::ClassType),
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   114
      MetaspaceUtils::used_bytes(Metaspace::ClassType),
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   115
      MetaspaceUtils::reserved_bytes(Metaspace::ClassType));
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   116
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   117
  const MetaspaceChunkFreeListSummary& ms_chunk_free_list_summary =
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   118
    MetaspaceUtils::chunk_free_list_summary(Metaspace::NonClassType);
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   119
  const MetaspaceChunkFreeListSummary& class_chunk_free_list_summary =
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   120
    MetaspaceUtils::chunk_free_list_summary(Metaspace::ClassType);
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   121
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   122
  return MetaspaceSummary(MetaspaceGC::capacity_until_GC(), meta_space, data_space, class_space,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   123
                          ms_chunk_free_list_summary, class_chunk_free_list_summary);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   124
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   125
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   126
void CollectedHeap::print_heap_before_gc() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   127
  Universe::print_heap_before_gc();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   128
  if (_gc_heap_log != NULL) {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   129
    _gc_heap_log->log_heap_before(this);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   130
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   131
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   132
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   133
void CollectedHeap::print_heap_after_gc() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   134
  Universe::print_heap_after_gc();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   135
  if (_gc_heap_log != NULL) {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   136
    _gc_heap_log->log_heap_after(this);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   137
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   138
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   139
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54786
diff changeset
   140
void CollectedHeap::print() const { print_on(tty); }
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54786
diff changeset
   141
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   142
void CollectedHeap::print_on_error(outputStream* st) const {
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   143
  st->print_cr("Heap:");
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   144
  print_extended_on(st);
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   145
  st->cr();
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   146
49754
ee93c1087584 8201362: Remove CollectedHeap::barrier_set()
pliden
parents: 49752
diff changeset
   147
  BarrierSet::barrier_set()->print_on(st);
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   148
}
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28940
diff changeset
   149
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 26829
diff changeset
   150
void CollectedHeap::trace_heap(GCWhen::Type when, const GCTracer* gc_tracer) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   151
  const GCHeapSummary& heap_summary = create_heap_summary();
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   152
  gc_tracer->report_gc_heap_summary(when, heap_summary);
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   153
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   154
  const MetaspaceSummary& metaspace_summary = create_metaspace_summary();
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents: 23464
diff changeset
   155
  gc_tracer->report_metaspace_summary(when, metaspace_summary);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   156
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   157
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 26829
diff changeset
   158
void CollectedHeap::trace_heap_before_gc(const GCTracer* gc_tracer) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   159
  trace_heap(GCWhen::BeforeGC, gc_tracer);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   160
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   161
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 26829
diff changeset
   162
void CollectedHeap::trace_heap_after_gc(const GCTracer* gc_tracer) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   163
  trace_heap(GCWhen::AfterGC, gc_tracer);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   164
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   165
46384
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   166
// WhiteBox API support for concurrent collectors.  These are the
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   167
// default implementations, for collectors which don't support this
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   168
// feature.
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   169
bool CollectedHeap::supports_concurrent_phase_control() const {
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   170
  return false;
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   171
}
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   172
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   173
bool CollectedHeap::request_concurrent_phase(const char* phase) {
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   174
  return false;
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   175
}
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46329
diff changeset
   176
49851
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   177
bool CollectedHeap::is_oop(oop object) const {
58178
bb1aaed00341 8231051: Remove check_obj_alignment() and replace with is_object_aligned()
pliden
parents: 58015
diff changeset
   178
  if (!is_object_aligned(object)) {
49851
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   179
    return false;
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   180
  }
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   181
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
   182
  if (!is_in(object)) {
49851
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   183
    return false;
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   184
  }
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   185
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
   186
  if (is_in(object->klass_or_null())) {
49851
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   187
    return false;
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   188
  }
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   189
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   190
  return true;
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   191
}
9082914ccaf2 8202081: Introduce CollectedHeap::is_oop()
stefank
parents: 49754
diff changeset
   192
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// Memory state functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5702
diff changeset
   195
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   196
CollectedHeap::CollectedHeap() :
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   197
  _is_gc_active(false),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   198
  _total_collections(0),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   199
  _total_full_collections(0),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   200
  _gc_cause(GCCause::_no_gc),
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48168
diff changeset
   201
  _gc_lastcause(GCCause::_no_gc)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   202
{
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   203
  const size_t max_len = size_t(arrayOopDesc::max_array_length(T_INT));
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   204
  const size_t elements_per_word = HeapWordSize / sizeof(jint);
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   205
  _filler_array_max_size = align_object_size(filler_array_hdr_size() +
12229
c34a85c8f5aa 7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents: 11788
diff changeset
   206
                                             max_len / elements_per_word);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   207
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  NOT_PRODUCT(_promotion_failure_alot_count = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  NOT_PRODUCT(_promotion_failure_alot_gc_number = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // create the gc cause jvmstat counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _perf_gc_cause = PerfDataManager::create_string_variable(SUN_GC, "cause",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
                             80, GCCause::to_string(_gc_cause), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _perf_gc_lastcause =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                PerfDataManager::create_string_variable(SUN_GC, "lastCause",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                             80, GCCause::to_string(_gc_lastcause), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31603
diff changeset
   222
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   223
  // Create the ring log
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   224
  if (LogEvents) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   225
    _gc_heap_log = new GCHeapLog();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   226
  } else {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   227
    _gc_heap_log = NULL;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11414
diff changeset
   228
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   231
// This interface assumes that it's being called by the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   232
// vm thread. It collects the heap assuming that the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   233
// heap lock is already held and that we are executing in
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   234
// the context of the vm thread.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   235
void CollectedHeap::collect_as_vm_thread(GCCause::Cause cause) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   236
  assert(Thread::current()->is_VM_thread(), "Precondition#1");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   237
  assert(Heap_lock->is_locked(), "Precondition#2");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   238
  GCCauseSetter gcs(this, cause);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   239
  switch (cause) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   240
    case GCCause::_heap_inspection:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   241
    case GCCause::_heap_dump:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   242
    case GCCause::_metadata_GC_threshold : {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   243
      HandleMark hm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   244
      do_full_collection(false);        // don't clear all soft refs
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   245
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   246
    }
37149
f025738bbada 8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents: 36363
diff changeset
   247
    case GCCause::_metadata_GC_clear_soft_refs: {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   248
      HandleMark hm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   249
      do_full_collection(true);         // do clear all soft refs
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   250
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   251
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   252
    default:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   253
      ShouldNotReachHere(); // Unexpected use of this function
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   254
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   255
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12236
diff changeset
   256
49045
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   257
MetaWord* CollectedHeap::satisfy_failed_metadata_allocation(ClassLoaderData* loader_data,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   258
                                                            size_t word_size,
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58494
diff changeset
   259
                                                            Metaspace::MetadataType mdtype) {
49045
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   260
  uint loop_count = 0;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   261
  uint gc_count = 0;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   262
  uint full_gc_count = 0;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   263
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   264
  assert(!Heap_lock->owned_by_self(), "Should not be holding the Heap_lock");
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   265
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   266
  do {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   267
    MetaWord* result = loader_data->metaspace_non_null()->allocate(word_size, mdtype);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   268
    if (result != NULL) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   269
      return result;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   270
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   271
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   272
    if (GCLocker::is_active_and_needs_gc()) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   273
      // If the GCLocker is active, just expand and allocate.
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   274
      // If that does not succeed, wait if this thread is not
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   275
      // in a critical section itself.
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   276
      result = loader_data->metaspace_non_null()->expand_and_allocate(word_size, mdtype);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   277
      if (result != NULL) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   278
        return result;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   279
      }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   280
      JavaThread* jthr = JavaThread::current();
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   281
      if (!jthr->in_critical()) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   282
        // Wait for JNI critical section to be exited
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   283
        GCLocker::stall_until_clear();
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   284
        // The GC invoked by the last thread leaving the critical
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   285
        // section will be a young collection and a full collection
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   286
        // is (currently) needed for unloading classes so continue
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   287
        // to the next iteration to get a full GC.
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   288
        continue;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   289
      } else {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   290
        if (CheckJNICalls) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   291
          fatal("Possible deadlock due to allocating while"
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   292
                " in jni critical section");
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   293
        }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   294
        return NULL;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   295
      }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   296
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   297
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   298
    {  // Need lock to get self consistent gc_count's
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   299
      MutexLocker ml(Heap_lock);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   300
      gc_count      = Universe::heap()->total_collections();
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   301
      full_gc_count = Universe::heap()->total_full_collections();
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   302
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   303
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   304
    // Generate a VM operation
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   305
    VM_CollectForMetadataAllocation op(loader_data,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   306
                                       word_size,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   307
                                       mdtype,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   308
                                       gc_count,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   309
                                       full_gc_count,
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   310
                                       GCCause::_metadata_GC_threshold);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   311
    VMThread::execute(&op);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   312
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   313
    // If GC was locked out, try again. Check before checking success because the
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   314
    // prologue could have succeeded and the GC still have been locked out.
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   315
    if (op.gc_locked()) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   316
      continue;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   317
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   318
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   319
    if (op.prologue_succeeded()) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   320
      return op.result();
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   321
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   322
    loop_count++;
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   323
    if ((QueuedAllocationWarningCount > 0) &&
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   324
        (loop_count % QueuedAllocationWarningCount == 0)) {
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   325
      log_warning(gc, ergo)("satisfy_failed_metadata_allocation() retries %d times,"
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   326
                            " size=" SIZE_FORMAT, loop_count, word_size);
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   327
    }
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   328
  } while (true);  // Until a GC is done
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   329
}
9b556b613a07 8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents: 48961
diff changeset
   330
51625
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 50882
diff changeset
   331
MemoryUsage CollectedHeap::memory_usage() {
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 50882
diff changeset
   332
  return MemoryUsage(InitialHeapSize, used(), capacity(), max_capacity());
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 50882
diff changeset
   333
}
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 50882
diff changeset
   334
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 50882
diff changeset
   335
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
#ifndef PRODUCT
8296
b1c2163e4e59 6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents: 7397
diff changeset
   337
void CollectedHeap::check_for_non_bad_heap_word_value(HeapWord* addr, size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  if (CheckMemoryInitialization && ZapUnusedHeapArea) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    for (size_t slot = 0; slot < size; slot += 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      assert((*(intptr_t*) (addr + slot)) == ((intptr_t) badHeapWordVal),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
             "Found non badHeapWordValue in pre-allocation check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   347
size_t CollectedHeap::max_tlab_size() const {
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   348
  // TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE].
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   349
  // This restriction could be removed by enabling filling with multiple arrays.
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   350
  // If we compute that the reasonable way as
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   351
  //    header_size + ((sizeof(jint) * max_jint) / HeapWordSize)
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   352
  // we'll overflow on the multiply, so we do the divide first.
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   353
  // We actually lose a little by dividing first,
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   354
  // but that just makes the TLAB  somewhat smaller than the biggest array,
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   355
  // which is fine, since we'll be able to fill that.
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   356
  size_t max_int_size = typeArrayOopDesc::header_size(T_INT) +
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   357
              sizeof(jint) *
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   358
              ((juint) max_jint / (size_t) HeapWordSize);
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   359
  return align_down(max_int_size, MinObjAlignment);
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   360
}
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 21561
diff changeset
   361
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   362
size_t CollectedHeap::filler_array_hdr_size() {
46618
d503911aa948 8178489: Make align functions more type safe and consistent
stefank
parents: 46384
diff changeset
   363
  return align_object_offset(arrayOopDesc::header_size(T_INT)); // align to Long
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   364
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   365
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   366
size_t CollectedHeap::filler_array_min_size() {
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 5544
diff changeset
   367
  return align_object_size(filler_array_hdr_size()); // align to MinObjAlignment
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   368
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   369
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   370
#ifdef ASSERT
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   371
void CollectedHeap::fill_args_check(HeapWord* start, size_t words)
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   372
{
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   373
  assert(words >= min_fill_size(), "too small to fill");
46683
33808f7eadd5 8184753: Asserts against MinObjectAlignment should avoid integer division
shade
parents: 46625
diff changeset
   374
  assert(is_object_aligned(words), "unaligned size");
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   375
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   376
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   377
void CollectedHeap::zap_filler_array(HeapWord* start, size_t words, bool zap)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   378
{
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   379
  if (ZapFillerObjects && zap) {
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   380
    Copy::fill_to_words(start + filler_array_hdr_size(),
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   381
                        words - filler_array_hdr_size(), 0XDEAFBABE);
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   382
  }
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   383
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   384
#endif // ASSERT
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   385
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   386
void
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   387
CollectedHeap::fill_with_array(HeapWord* start, size_t words, bool zap)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   388
{
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   389
  assert(words >= filler_array_min_size(), "too small for an array");
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   390
  assert(words <= filler_array_max_size(), "too big for a single object");
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   391
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   392
  const size_t payload_size = words - filler_array_hdr_size();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   393
  const size_t len = payload_size * HeapWordSize / sizeof(jint);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32623
diff changeset
   394
  assert((int)len >= 0, "size too large " SIZE_FORMAT " becomes %d", words, (int)len);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   395
50882
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
   396
  ObjArrayAllocator allocator(Universe::intArrayKlassObj(), words, (int)len, /* do_zero */ false);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
   397
  allocator.initialize(start);
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   398
  DEBUG_ONLY(zap_filler_array(start, words, zap);)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   399
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   400
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   401
void
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   402
CollectedHeap::fill_with_object_impl(HeapWord* start, size_t words, bool zap)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   403
{
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   404
  assert(words <= filler_array_max_size(), "too big for a single object");
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   405
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   406
  if (words >= filler_array_min_size()) {
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   407
    fill_with_array(start, words, zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   408
  } else if (words > 0) {
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   409
    assert(words == min_fill_size(), "unaligned size");
50882
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
   410
    ObjAllocator allocator(SystemDictionary::Object_klass(), words);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents: 50578
diff changeset
   411
    allocator.initialize(start);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   412
  }
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   413
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   414
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   415
void CollectedHeap::fill_with_object(HeapWord* start, size_t words, bool zap)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   416
{
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   417
  DEBUG_ONLY(fill_args_check(start, words);)
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   418
  HandleMark hm;  // Free handles before leaving.
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   419
  fill_with_object_impl(start, words, zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   420
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   421
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   422
void CollectedHeap::fill_with_objects(HeapWord* start, size_t words, bool zap)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   423
{
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   424
  DEBUG_ONLY(fill_args_check(start, words);)
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   425
  HandleMark hm;  // Free handles before leaving.
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   426
31603
4bd3b4863e10 8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents: 30870
diff changeset
   427
  // Multiple objects may be required depending on the filler array maximum size. Fill
4bd3b4863e10 8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents: 30870
diff changeset
   428
  // the range up to that with objects that are filler_array_max_size sized. The
4bd3b4863e10 8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents: 30870
diff changeset
   429
  // remainder is filled with a single object.
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   430
  const size_t min = min_fill_size();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   431
  const size_t max = filler_array_max_size();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   432
  while (words > max) {
31603
4bd3b4863e10 8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents: 30870
diff changeset
   433
    const size_t cur = (words - max) >= min ? max : max - min;
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   434
    fill_with_array(start, cur, zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   435
    start += cur;
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   436
    words -= cur;
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   437
  }
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   438
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4571
diff changeset
   439
  fill_with_object_impl(start, words, zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   440
}
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   441
50537
d12828b7cd64 8204685: Abstraction for TLAB dummy object
rkennke
parents: 50448
diff changeset
   442
void CollectedHeap::fill_with_dummy_object(HeapWord* start, HeapWord* end, bool zap) {
d12828b7cd64 8204685: Abstraction for TLAB dummy object
rkennke
parents: 50448
diff changeset
   443
  CollectedHeap::fill_with_object(start, end, zap);
d12828b7cd64 8204685: Abstraction for TLAB dummy object
rkennke
parents: 50448
diff changeset
   444
}
d12828b7cd64 8204685: Abstraction for TLAB dummy object
rkennke
parents: 50448
diff changeset
   445
52124
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   446
size_t CollectedHeap::min_dummy_object_size() const {
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   447
  return oopDesc::header_size();
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   448
}
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   449
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   450
size_t CollectedHeap::tlab_alloc_reserve() const {
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   451
  size_t min_size = min_dummy_object_size();
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   452
  return min_size > (size_t)MinObjAlignment ? align_object_size(min_size) : 0;
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   453
}
c64384f414bc 8211955: GC abstraction for LAB reserve
rkennke
parents: 52071
diff changeset
   454
49945
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49851
diff changeset
   455
HeapWord* CollectedHeap::allocate_new_tlab(size_t min_size,
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49851
diff changeset
   456
                                           size_t requested_size,
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49851
diff changeset
   457
                                           size_t* actual_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  guarantee(false, "thread-local allocation buffers not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
void CollectedHeap::ensure_parsability(bool retire_tlabs) {
51801
09e8e51c948a 8210713: Let CollectedHeap::ensure_parsability() take care of TLAB statistics gathering
pliden
parents: 51794
diff changeset
   463
  assert(SafepointSynchronize::is_at_safepoint() || !is_init_completed(),
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   464
         "Should only be called at a safepoint or at start-up");
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   465
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   466
  ThreadLocalAllocStats stats;
51801
09e8e51c948a 8210713: Let CollectedHeap::ensure_parsability() take care of TLAB statistics gathering
pliden
parents: 51794
diff changeset
   467
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   468
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thread = jtiwh.next();) {
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   469
    BarrierSet::barrier_set()->make_parsable(thread);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   470
    if (UseTLAB) {
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   471
      if (retire_tlabs) {
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   472
        thread->tlab().retire(&stats);
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   473
      } else {
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   474
        thread->tlab().make_parsable();
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   475
      }
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   476
    }
51801
09e8e51c948a 8210713: Let CollectedHeap::ensure_parsability() take care of TLAB statistics gathering
pliden
parents: 51794
diff changeset
   477
  }
09e8e51c948a 8210713: Let CollectedHeap::ensure_parsability() take care of TLAB statistics gathering
pliden
parents: 51794
diff changeset
   478
51817
46eac084082d 8210857: Allow retiring TLABs and collecting statistics in parallel
pliden
parents: 51801
diff changeset
   479
  stats.publish();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
void CollectedHeap::resize_all_tlabs() {
51794
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   483
  assert(SafepointSynchronize::is_at_safepoint() || !is_init_completed(),
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   484
         "Should only resize tlabs at safepoint");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
51794
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   486
  if (UseTLAB && ResizeTLAB) {
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   487
    for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thread = jtiwh.next(); ) {
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   488
      thread->tlab().resize();
4129f43607cb 8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents: 51625
diff changeset
   489
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   492
35915
5808cd93abfc 8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents: 35529
diff changeset
   493
void CollectedHeap::full_gc_dump(GCTimer* timer, bool before) {
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35915
diff changeset
   494
  assert(timer != NULL, "timer is null");
35915
5808cd93abfc 8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents: 35529
diff changeset
   495
  if ((HeapDumpBeforeFullGC && before) || (HeapDumpAfterFullGC && !before)) {
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35915
diff changeset
   496
    GCTraceTime(Info, gc) tm(before ? "Heap Dump (before full gc)" : "Heap Dump (after full gc)", timer);
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   497
    HeapDumper::dump_heap();
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   498
  }
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35915
diff changeset
   499
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46683
diff changeset
   500
  LogTarget(Trace, gc, classhisto) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46683
diff changeset
   501
  if (lt.is_enabled()) {
35939
05df7e64ecfc 8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents: 35915
diff changeset
   502
    GCTraceTime(Trace, gc, classhisto) tm(before ? "Class Histogram (before full gc)" : "Class Histogram (after full gc)", timer);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   503
    ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46683
diff changeset
   504
    LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46683
diff changeset
   505
    VM_GC_HeapInspection inspector(&ls, false /* ! full gc */);
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   506
    inspector.doit();
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   507
  }
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   508
}
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   509
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   510
void CollectedHeap::pre_full_gc_dump(GCTimer* timer) {
35915
5808cd93abfc 8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents: 35529
diff changeset
   511
  full_gc_dump(timer, true);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   512
}
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33198
diff changeset
   513
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14583
diff changeset
   514
void CollectedHeap::post_full_gc_dump(GCTimer* timer) {
35915
5808cd93abfc 8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents: 35529
diff changeset
   515
  full_gc_dump(timer, false);
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1681
diff changeset
   516
}
10742
a64c942e4e6b 7098528: crash with java -XX:+ExtendedDTraceProbes
never
parents: 10565
diff changeset
   517
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
   518
void CollectedHeap::initialize_reserved_region(const ReservedHeapSpace& rs) {
26829
26315213bab8 8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents: 25350
diff changeset
   519
  // It is important to do this in a way such that concurrent readers can't
26315213bab8 8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents: 25350
diff changeset
   520
  // temporarily think something is in the heap.  (Seen this happen in asserts.)
26315213bab8 8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents: 25350
diff changeset
   521
  _reserved.set_word_size(0);
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
   522
  _reserved.set_start((HeapWord*)rs.base());
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 54807
diff changeset
   523
  _reserved.set_end((HeapWord*)rs.end());
26829
26315213bab8 8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents: 25350
diff changeset
   524
}
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48105
diff changeset
   525
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48105
diff changeset
   526
void CollectedHeap::post_initialize() {
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48105
diff changeset
   527
  initialize_serviceability();
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48105
diff changeset
   528
}
49466
6ce398fe53fd 8199620: Support for JNI object pinning
rkennke
parents: 49389
diff changeset
   529
49593
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   530
#ifndef PRODUCT
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   531
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   532
bool CollectedHeap::promotion_should_fail(volatile size_t* count) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   533
  // Access to count is not atomic; the value does not have to be exact.
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   534
  if (PromotionFailureALot) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   535
    const size_t gc_num = total_collections();
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   536
    const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number;
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   537
    if (elapsed_gcs >= PromotionFailureALotInterval) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   538
      // Test for unsigned arithmetic wrap-around.
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   539
      if (++*count >= PromotionFailureALotCount) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   540
        *count = 0;
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   541
        return true;
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   542
      }
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   543
    }
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   544
  }
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   545
  return false;
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   546
}
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   547
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   548
bool CollectedHeap::promotion_should_fail() {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   549
  return promotion_should_fail(&_promotion_failure_alot_count);
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   550
}
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   551
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   552
void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   553
  if (PromotionFailureALot) {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   554
    _promotion_failure_alot_gc_number = total_collections();
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   555
    *count = 0;
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   556
  }
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   557
}
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   558
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   559
void CollectedHeap::reset_promotion_should_fail() {
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   560
  reset_promotion_should_fail(&_promotion_failure_alot_count);
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   561
}
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   562
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   563
#endif  // #ifndef PRODUCT
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49484
diff changeset
   564
49669
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   565
bool CollectedHeap::supports_object_pinning() const {
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   566
  return false;
49466
6ce398fe53fd 8199620: Support for JNI object pinning
rkennke
parents: 49389
diff changeset
   567
}
6ce398fe53fd 8199620: Support for JNI object pinning
rkennke
parents: 49389
diff changeset
   568
49669
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   569
oop CollectedHeap::pin_object(JavaThread* thread, oop obj) {
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   570
  ShouldNotReachHere();
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   571
  return NULL;
49466
6ce398fe53fd 8199620: Support for JNI object pinning
rkennke
parents: 49389
diff changeset
   572
}
49669
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   573
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   574
void CollectedHeap::unpin_object(JavaThread* thread, oop obj) {
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   575
  ShouldNotReachHere();
3569b528972e 8200429: Adjust object pinning interface on CollectedHeap
pliden
parents: 49593
diff changeset
   576
}
50057
f945444fabc3 8202647: Add deduplicate_string function to CollectedHeap
stefank
parents: 49945
diff changeset
   577
f945444fabc3 8202647: Add deduplicate_string function to CollectedHeap
stefank
parents: 49945
diff changeset
   578
void CollectedHeap::deduplicate_string(oop str) {
f945444fabc3 8202647: Add deduplicate_string function to CollectedHeap
stefank
parents: 49945
diff changeset
   579
  // Do nothing, unless overridden in subclass.
f945444fabc3 8202647: Add deduplicate_string function to CollectedHeap
stefank
parents: 49945
diff changeset
   580
}
52071
c4a39588a075 8211270: GC abstraction to get real object and headers size
rkennke
parents: 51817
diff changeset
   581
c4a39588a075 8211270: GC abstraction to get real object and headers size
rkennke
parents: 51817
diff changeset
   582
size_t CollectedHeap::obj_size(oop obj) const {
c4a39588a075 8211270: GC abstraction to get real object and headers size
rkennke
parents: 51817
diff changeset
   583
  return obj->size();
c4a39588a075 8211270: GC abstraction to get real object and headers size
rkennke
parents: 51817
diff changeset
   584
}
54376
2a2fab6fb3a5 8221732: Introduce CollectedHeap::hash_oop()
pliden
parents: 53647
diff changeset
   585
2a2fab6fb3a5 8221732: Introduce CollectedHeap::hash_oop()
pliden
parents: 53647
diff changeset
   586
uint32_t CollectedHeap::hash_oop(oop obj) const {
2a2fab6fb3a5 8221732: Introduce CollectedHeap::hash_oop()
pliden
parents: 53647
diff changeset
   587
  const uintptr_t addr = cast_from_oop<uintptr_t>(obj);
2a2fab6fb3a5 8221732: Introduce CollectedHeap::hash_oop()
pliden
parents: 53647
diff changeset
   588
  return static_cast<uint32_t>(addr >> LogMinObjAlignment);
2a2fab6fb3a5 8221732: Introduce CollectedHeap::hash_oop()
pliden
parents: 53647
diff changeset
   589
}