author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 59053 | ba6c248cae19 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53726 | 2 |
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
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:
2105
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/serial/genMarkSweep.hpp" |
27 |
#include "gc/serial/tenuredGeneration.inline.hpp" |
|
28 |
#include "gc/shared/blockOffsetTable.inline.hpp" |
|
29 |
#include "gc/shared/cardGeneration.inline.hpp" |
|
30 |
#include "gc/shared/collectorCounters.hpp" |
|
31 |
#include "gc/shared/gcTimer.hpp" |
|
46564
0ec329b23bbf
8182696: Remove gcTrace.hpp include from referenceProcessor.hpp
stefank
parents:
35939
diff
changeset
|
32 |
#include "gc/shared/gcTrace.hpp" |
49734
f946776e9354
8201244: Clean out unnecessary includes of heap headers
stefank
parents:
47216
diff
changeset
|
33 |
#include "gc/shared/genCollectedHeap.hpp" |
30764 | 34 |
#include "gc/shared/genOopClosures.inline.hpp" |
35 |
#include "gc/shared/generationSpec.hpp" |
|
36 |
#include "gc/shared/space.hpp" |
|
35061 | 37 |
#include "logging/log.hpp" |
7397 | 38 |
#include "memory/allocation.inline.hpp" |
39 |
#include "oops/oop.inline.hpp" |
|
40 |
#include "runtime/java.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15091
diff
changeset
|
41 |
#include "utilities/macros.hpp" |
1 | 42 |
|
43 |
TenuredGeneration::TenuredGeneration(ReservedSpace rs, |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
44 |
size_t initial_byte_size, |
54678
93f09ca4a7f8
8198505: Remove CollectorPolicy and its subclasses
stefank
parents:
53726
diff
changeset
|
45 |
size_t min_byte_size, |
93f09ca4a7f8
8198505: Remove CollectorPolicy and its subclasses
stefank
parents:
53726
diff
changeset
|
46 |
size_t max_byte_size, |
33212 | 47 |
CardTableRS* remset) : |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
48 |
CardGeneration(rs, initial_byte_size, remset) |
1 | 49 |
{ |
50 |
HeapWord* bottom = (HeapWord*) _virtual_space.low(); |
|
51 |
HeapWord* end = (HeapWord*) _virtual_space.high(); |
|
52 |
_the_space = new TenuredSpace(_bts, MemRegion(bottom, end)); |
|
53 |
_the_space->reset_saved_mark(); |
|
54 |
_shrink_factor = 0; |
|
55 |
_capacity_at_prologue = 0; |
|
56 |
||
57 |
_gc_stats = new GCStats(); |
|
58 |
||
59 |
// initialize performance counters |
|
60 |
||
61 |
const char* gen_name = "old"; |
|
62 |
// Generation Counters -- generation 1, 1 subspace |
|
26324
6b9c12e15535
8028787: tmtools/jstat/gcoldcapacity/jstat_gcoldcapacity02 fails nsk.share.Failure: OGC < OGCMN in RT_Baseline
sjohanss
parents:
22551
diff
changeset
|
63 |
_gen_counters = new GenerationCounters(gen_name, 1, 1, |
54678
93f09ca4a7f8
8198505: Remove CollectorPolicy and its subclasses
stefank
parents:
53726
diff
changeset
|
64 |
min_byte_size, max_byte_size, &_virtual_space); |
1 | 65 |
|
53726 | 66 |
_gc_counters = new CollectorCounters("Serial full collection pauses", 1); |
1 | 67 |
|
68 |
_space_counters = new CSpaceCounters(gen_name, 0, |
|
69 |
_virtual_space.reserved_size(), |
|
70 |
_the_space, _gen_counters); |
|
71 |
} |
|
72 |
||
73 |
void TenuredGeneration::gc_prologue(bool full) { |
|
74 |
_capacity_at_prologue = capacity(); |
|
75 |
_used_at_prologue = used(); |
|
76 |
} |
|
77 |
||
78 |
bool TenuredGeneration::should_collect(bool full, |
|
79 |
size_t size, |
|
80 |
bool is_tlab) { |
|
81 |
// This should be one big conditional or (||), but I want to be able to tell |
|
82 |
// why it returns what it returns (without re-evaluating the conditionals |
|
83 |
// in case they aren't idempotent), so I'm doing it this way. |
|
84 |
// DeMorgan says it's okay. |
|
35061 | 85 |
if (full) { |
86 |
log_trace(gc)("TenuredGeneration::should_collect: because full"); |
|
87 |
return true; |
|
1 | 88 |
} |
35061 | 89 |
if (should_allocate(size, is_tlab)) { |
90 |
log_trace(gc)("TenuredGeneration::should_collect: because should_allocate(" SIZE_FORMAT ")", size); |
|
91 |
return true; |
|
1 | 92 |
} |
93 |
// If we don't have very much free space. |
|
94 |
// XXX: 10000 should be a percentage of the capacity!!! |
|
35061 | 95 |
if (free() < 10000) { |
96 |
log_trace(gc)("TenuredGeneration::should_collect: because free(): " SIZE_FORMAT, free()); |
|
97 |
return true; |
|
1 | 98 |
} |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31592
diff
changeset
|
99 |
// If we had to expand to accommodate promotions from the young generation |
35061 | 100 |
if (_capacity_at_prologue < capacity()) { |
101 |
log_trace(gc)("TenuredGeneration::should_collect: because_capacity_at_prologue: " SIZE_FORMAT " < capacity(): " SIZE_FORMAT, |
|
102 |
_capacity_at_prologue, capacity()); |
|
103 |
return true; |
|
1 | 104 |
} |
35061 | 105 |
|
106 |
return false; |
|
1 | 107 |
} |
108 |
||
16681
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
109 |
void TenuredGeneration::compute_new_size() { |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
110 |
assert_locked_or_safepoint(Heap_lock); |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
111 |
|
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
112 |
// Compute some numbers about the state of the heap. |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
113 |
const size_t used_after_gc = used(); |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
114 |
const size_t capacity_after_gc = capacity(); |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
115 |
|
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
116 |
CardGeneration::compute_new_size(); |
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
117 |
|
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
118 |
assert(used() == used_after_gc && used_after_gc <= capacity(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32735
diff
changeset
|
119 |
"used: " SIZE_FORMAT " used_after_gc: " SIZE_FORMAT |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32735
diff
changeset
|
120 |
" capacity: " SIZE_FORMAT, used(), used_after_gc, capacity()); |
16681
d64161ca3e3c
8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents:
15482
diff
changeset
|
121 |
} |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
26324
diff
changeset
|
122 |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
123 |
void TenuredGeneration::update_gc_stats(Generation* current_generation, |
1 | 124 |
bool full) { |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
125 |
// If the young generation has been collected, gather any statistics |
1 | 126 |
// that are of interest at this point. |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
127 |
bool current_is_young = GenCollectedHeap::heap()->is_young_gen(current_generation); |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
128 |
if (!full && current_is_young) { |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31592
diff
changeset
|
129 |
// Calculate size of data promoted from the young generation |
1 | 130 |
// before doing the collection. |
131 |
size_t used_before_gc = used(); |
|
132 |
||
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31592
diff
changeset
|
133 |
// If the young gen collection was skipped, then the |
1 | 134 |
// number of promoted bytes will be 0 and adding it to the |
135 |
// average will incorrectly lessen the average. It is, however, |
|
136 |
// also possible that no promotion was needed. |
|
137 |
if (used_before_gc >= _used_at_prologue) { |
|
138 |
size_t promoted_in_bytes = used_before_gc - _used_at_prologue; |
|
139 |
gc_stats()->avg_promoted()->sample(promoted_in_bytes); |
|
140 |
} |
|
141 |
} |
|
142 |
} |
|
143 |
||
144 |
void TenuredGeneration::update_counters() { |
|
145 |
if (UsePerfData) { |
|
146 |
_space_counters->update_all(); |
|
147 |
_gen_counters->update_all(); |
|
148 |
} |
|
149 |
} |
|
150 |
||
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
5547
diff
changeset
|
151 |
bool TenuredGeneration::promotion_attempt_is_safe(size_t max_promotion_in_bytes) const { |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
5547
diff
changeset
|
152 |
size_t available = max_contiguous_available(); |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
5547
diff
changeset
|
153 |
size_t av_promo = (size_t)gc_stats()->avg_promoted()->padded_average(); |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
5547
diff
changeset
|
154 |
bool res = (available >= av_promo) || (available >= max_promotion_in_bytes); |
35061 | 155 |
|
156 |
log_trace(gc)("Tenured: promo attempt is%s safe: available(" SIZE_FORMAT ") %s av_promo(" SIZE_FORMAT "), max_promo(" SIZE_FORMAT ")", |
|
157 |
res? "":" not", available, res? ">=":"<", av_promo, max_promotion_in_bytes); |
|
158 |
||
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
5547
diff
changeset
|
159 |
return res; |
1 | 160 |
} |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
161 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
162 |
void TenuredGeneration::collect(bool full, |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
163 |
bool clear_all_soft_refs, |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
164 |
size_t size, |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
165 |
bool is_tlab) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
166 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
167 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
168 |
// Temporarily expand the span of our ref processor, so |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
169 |
// refs discovery is over the entire heap, not just this generation |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
170 |
ReferenceProcessorSpanMutator |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
171 |
x(ref_processor(), gch->reserved_region()); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
172 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
173 |
STWGCTimer* gc_timer = GenMarkSweep::gc_timer(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
174 |
gc_timer->register_gc_start(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
175 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
176 |
SerialOldTracer* gc_tracer = GenMarkSweep::gc_tracer(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
177 |
gc_tracer->report_gc_start(gch->gc_cause(), gc_timer->gc_start()); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
178 |
|
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35061
diff
changeset
|
179 |
gch->pre_full_gc_dump(gc_timer); |
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35061
diff
changeset
|
180 |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
181 |
GenMarkSweep::invoke_at_safepoint(ref_processor(), clear_all_soft_refs); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
182 |
|
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35061
diff
changeset
|
183 |
gch->post_full_gc_dump(gc_timer); |
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35061
diff
changeset
|
184 |
|
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
185 |
gc_timer->register_gc_end(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
186 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
187 |
gc_tracer->report_gc_end(gc_timer->gc_end(), gc_timer->time_partitions()); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
188 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
189 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
190 |
HeapWord* |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
191 |
TenuredGeneration::expand_and_allocate(size_t word_size, |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
192 |
bool is_tlab, |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
193 |
bool parallel) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
194 |
assert(!is_tlab, "TenuredGeneration does not support TLAB allocation"); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
195 |
if (parallel) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
196 |
MutexLocker x(ParGCRareEvent_lock); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
197 |
HeapWord* result = NULL; |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
198 |
size_t byte_size = word_size * HeapWordSize; |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
199 |
while (true) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
200 |
expand(byte_size, _min_heap_delta_bytes); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
201 |
if (GCExpandToAllocateDelayMillis > 0) { |
58041
d8902e9c307c
8230422: Convert uninterruptible os::sleep calls to os::naked_short_sleep
dholmes
parents:
54678
diff
changeset
|
202 |
os::naked_sleep(GCExpandToAllocateDelayMillis); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
203 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
204 |
result = _the_space->par_allocate(word_size); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
205 |
if ( result != NULL) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
206 |
return result; |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
207 |
} else { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
208 |
// If there's not enough expansion space available, give up. |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
209 |
if (_virtual_space.uncommitted_size() < byte_size) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
210 |
return NULL; |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
211 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
212 |
// else try again |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
213 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
214 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
215 |
} else { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
216 |
expand(word_size*HeapWordSize, _min_heap_delta_bytes); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
217 |
return _the_space->allocate(word_size); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
218 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
219 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
220 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
221 |
bool TenuredGeneration::expand(size_t bytes, size_t expand_bytes) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
222 |
GCMutexLocker x(ExpandHeap_lock); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
223 |
return CardGeneration::expand(bytes, expand_bytes); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
224 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
225 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
226 |
size_t TenuredGeneration::unsafe_max_alloc_nogc() const { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
227 |
return _the_space->free(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
228 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
229 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
230 |
size_t TenuredGeneration::contiguous_available() const { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
231 |
return _the_space->free() + _virtual_space.uncommitted_size(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
232 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
233 |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28032
diff
changeset
|
234 |
void TenuredGeneration::assert_correct_size_change_locking() { |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
235 |
assert_locked_or_safepoint(ExpandHeap_lock); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
236 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
237 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
238 |
// Currently nothing to do. |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
239 |
void TenuredGeneration::prepare_for_verify() {} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
240 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
241 |
void TenuredGeneration::object_iterate(ObjectClosure* blk) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
242 |
_the_space->object_iterate(blk); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
243 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
244 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
245 |
void TenuredGeneration::save_marks() { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
246 |
_the_space->set_saved_mark(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
247 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
248 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
249 |
void TenuredGeneration::reset_saved_marks() { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
250 |
_the_space->reset_saved_mark(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
251 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
252 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
253 |
bool TenuredGeneration::no_allocs_since_save_marks() { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
254 |
return _the_space->saved_mark_at_top(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
255 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
256 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
257 |
void TenuredGeneration::gc_epilogue(bool full) { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
258 |
// update the generation and space performance counters |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
259 |
update_counters(); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
260 |
if (ZapUnusedHeapArea) { |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28032
diff
changeset
|
261 |
_the_space->check_mangled_unused_area_complete(); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
262 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
263 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
264 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
265 |
void TenuredGeneration::record_spaces_top() { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
266 |
assert(ZapUnusedHeapArea, "Not mangling unused space"); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28032
diff
changeset
|
267 |
_the_space->set_top_for_allocations(); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
268 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
269 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
270 |
void TenuredGeneration::verify() { |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28032
diff
changeset
|
271 |
_the_space->verify(); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
272 |
} |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
273 |
|
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
274 |
void TenuredGeneration::print_on(outputStream* st) const { |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
275 |
Generation::print_on(st); |
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
276 |
st->print(" the"); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28032
diff
changeset
|
277 |
_the_space->print_on(st); |
27904
d606512952cc
8065993: Merge OneContigSpaceCardGeneration with TenuredGeneration
brutisso
parents:
27898
diff
changeset
|
278 |
} |