author | sangheki |
Tue, 07 Jul 2015 06:37:10 -0700 | |
changeset 31632 | d041b34dd3e7 |
parent 31346 | a70d45c06136 |
child 32185 | 49a57ff2c3cb |
permissions | -rw-r--r-- |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
1 |
/* |
29327
b539902e30f8
8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents:
28375
diff
changeset
|
2 |
* Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
4 |
* |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
8 |
* |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
13 |
* accompanied this code). |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
14 |
* |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
18 |
* |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
21 |
* questions. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
22 |
* |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
23 |
*/ |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
24 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/g1/g1Allocator.hpp" |
27 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
|
28 |
#include "gc/g1/g1CollectorPolicy.hpp" |
|
31346
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
29 |
#include "gc/g1/g1MarkSweep.hpp" |
30764 | 30 |
#include "gc/g1/heapRegion.inline.hpp" |
31 |
#include "gc/g1/heapRegionSet.inline.hpp" |
|
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
32 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
33 |
void G1DefaultAllocator::init_mutator_alloc_region() { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
34 |
assert(_mutator_alloc_region.get() == NULL, "pre-condition"); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
35 |
_mutator_alloc_region.init(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
36 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
37 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
38 |
void G1DefaultAllocator::release_mutator_alloc_region() { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
39 |
_mutator_alloc_region.release(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
40 |
assert(_mutator_alloc_region.get() == NULL, "post-condition"); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
41 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
42 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
43 |
void G1Allocator::reuse_retained_old_region(EvacuationInfo& evacuation_info, |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
44 |
OldGCAllocRegion* old, |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
45 |
HeapRegion** retained_old) { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
46 |
HeapRegion* retained_region = *retained_old; |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
47 |
*retained_old = NULL; |
31346
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
48 |
assert(retained_region == NULL || !retained_region->is_archive(), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
49 |
err_msg("Archive region should not be alloc region (index %u)", retained_region->hrm_index())); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
50 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
51 |
// We will discard the current GC alloc region if: |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
52 |
// a) it's in the collection set (it can happen!), |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
53 |
// b) it's already full (no point in using it), |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
54 |
// c) it's empty (this means that it was emptied during |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
55 |
// a cleanup and it should be on the free list now), or |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
56 |
// d) it's humongous (this means that it was emptied |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
57 |
// during a cleanup and was added to the free list, but |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
58 |
// has been subsequently used to allocate a humongous |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
59 |
// object that may be less than the region size). |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
60 |
if (retained_region != NULL && |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
61 |
!retained_region->in_collection_set() && |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
62 |
!(retained_region->top() == retained_region->end()) && |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
63 |
!retained_region->is_empty() && |
26846
7d4376f8560e
8058495: G1: normalize names for isHumongous() and friends
tonyp
parents:
26837
diff
changeset
|
64 |
!retained_region->is_humongous()) { |
27889
7d50f95e0076
8065358: Refactor G1s usage of save_marks and reduce related races
mgerdin
parents:
26846
diff
changeset
|
65 |
retained_region->record_timestamp(); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
66 |
// The retained region was added to the old region set when it was |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
67 |
// retired. We have to remove it now, since we don't allow regions |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
68 |
// we allocate to in the region sets. We'll re-add it later, when |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
69 |
// it's retired again. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
70 |
_g1h->_old_set.remove(retained_region); |
31331
a7c714b6cfb3
7097567: G1: abstract and encapsulate collector phases and transitions between them
drwhite
parents:
30764
diff
changeset
|
71 |
bool during_im = _g1h->collector_state()->during_initial_mark_pause(); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
72 |
retained_region->note_start_of_copying(during_im); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
73 |
old->set(retained_region); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
74 |
_g1h->_hr_printer.reuse(retained_region); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
75 |
evacuation_info.set_alloc_regions_used_before(retained_region->used()); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
76 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
77 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
78 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
79 |
void G1DefaultAllocator::init_gc_alloc_regions(EvacuationInfo& evacuation_info) { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
80 |
assert_at_safepoint(true /* should_be_vm_thread */); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
81 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
82 |
_survivor_gc_alloc_region.init(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
83 |
_old_gc_alloc_region.init(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
84 |
reuse_retained_old_region(evacuation_info, |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
85 |
&_old_gc_alloc_region, |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
86 |
&_retained_old_gc_alloc_region); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
87 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
88 |
|
31632
d041b34dd3e7
8079555: REDO - Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents:
31346
diff
changeset
|
89 |
void G1DefaultAllocator::release_gc_alloc_regions(EvacuationInfo& evacuation_info) { |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
90 |
AllocationContext_t context = AllocationContext::current(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
91 |
evacuation_info.set_allocation_regions(survivor_gc_alloc_region(context)->count() + |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
92 |
old_gc_alloc_region(context)->count()); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
93 |
survivor_gc_alloc_region(context)->release(); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
94 |
// If we have an old GC alloc region to release, we'll save it in |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
95 |
// _retained_old_gc_alloc_region. If we don't |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
96 |
// _retained_old_gc_alloc_region will become NULL. This is what we |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
97 |
// want either way so no reason to check explicitly for either |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
98 |
// condition. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
99 |
_retained_old_gc_alloc_region = old_gc_alloc_region(context)->release(); |
27889
7d50f95e0076
8065358: Refactor G1s usage of save_marks and reduce related races
mgerdin
parents:
26846
diff
changeset
|
100 |
if (_retained_old_gc_alloc_region != NULL) { |
7d50f95e0076
8065358: Refactor G1s usage of save_marks and reduce related races
mgerdin
parents:
26846
diff
changeset
|
101 |
_retained_old_gc_alloc_region->record_retained_region(); |
7d50f95e0076
8065358: Refactor G1s usage of save_marks and reduce related races
mgerdin
parents:
26846
diff
changeset
|
102 |
} |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
103 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
104 |
if (ResizePLAB) { |
31632
d041b34dd3e7
8079555: REDO - Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents:
31346
diff
changeset
|
105 |
_g1h->alloc_buffer_stats(InCSetState::Young)->adjust_desired_plab_sz(); |
d041b34dd3e7
8079555: REDO - Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents:
31346
diff
changeset
|
106 |
_g1h->alloc_buffer_stats(InCSetState::Old)->adjust_desired_plab_sz(); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
107 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
108 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
109 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
110 |
void G1DefaultAllocator::abandon_gc_alloc_regions() { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
111 |
assert(survivor_gc_alloc_region(AllocationContext::current())->get() == NULL, "pre-condition"); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
112 |
assert(old_gc_alloc_region(AllocationContext::current())->get() == NULL, "pre-condition"); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
113 |
_retained_old_gc_alloc_region = NULL; |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
114 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
115 |
|
30275
41fef3a62cc8
8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents:
30274
diff
changeset
|
116 |
G1PLAB::G1PLAB(size_t gclab_word_size) : |
41fef3a62cc8
8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents:
30274
diff
changeset
|
117 |
PLAB(gclab_word_size), _retired(true) { } |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
118 |
|
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
119 |
HeapWord* G1ParGCAllocator::allocate_direct_or_new_plab(InCSetState dest, |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
120 |
size_t word_sz, |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
121 |
AllocationContext_t context) { |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
122 |
size_t gclab_word_size = _g1h->desired_plab_sz(dest); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
123 |
if (word_sz * 100 < gclab_word_size * ParallelGCBufferWastePct) { |
30275
41fef3a62cc8
8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents:
30274
diff
changeset
|
124 |
G1PLAB* alloc_buf = alloc_buffer(dest, context); |
29327
b539902e30f8
8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents:
28375
diff
changeset
|
125 |
alloc_buf->retire(); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
126 |
|
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
127 |
HeapWord* buf = _g1h->par_allocate_during_gc(dest, gclab_word_size, context); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
128 |
if (buf == NULL) { |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
129 |
return NULL; // Let caller handle allocation failure. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
130 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
131 |
// Otherwise. |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
132 |
alloc_buf->set_word_size(gclab_word_size); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
133 |
alloc_buf->set_buf(buf); |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
134 |
|
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
135 |
HeapWord* const obj = alloc_buf->allocate(word_sz); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
136 |
assert(obj != NULL, "buffer was definitely big enough..."); |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
137 |
return obj; |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
138 |
} else { |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
139 |
return _g1h->par_allocate_during_gc(dest, word_sz, context); |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
140 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
141 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
142 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
143 |
G1DefaultParGCAllocator::G1DefaultParGCAllocator(G1CollectedHeap* g1h) : |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
144 |
G1ParGCAllocator(g1h), |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
145 |
_surviving_alloc_buffer(g1h->desired_plab_sz(InCSetState::Young)), |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
146 |
_tenured_alloc_buffer(g1h->desired_plab_sz(InCSetState::Old)) { |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
147 |
for (uint state = 0; state < InCSetState::Num; state++) { |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
148 |
_alloc_buffers[state] = NULL; |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
149 |
} |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
150 |
_alloc_buffers[InCSetState::Young] = &_surviving_alloc_buffer; |
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
151 |
_alloc_buffers[InCSetState::Old] = &_tenured_alloc_buffer; |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
152 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
153 |
|
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
154 |
void G1DefaultParGCAllocator::retire_alloc_buffers() { |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
155 |
for (uint state = 0; state < InCSetState::Num; state++) { |
30275
41fef3a62cc8
8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents:
30274
diff
changeset
|
156 |
G1PLAB* const buf = _alloc_buffers[state]; |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
157 |
if (buf != NULL) { |
29327
b539902e30f8
8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents:
28375
diff
changeset
|
158 |
buf->flush_and_retire_stats(_g1h->alloc_buffer_stats(state)); |
28213
b0bf57cd1e9d
8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents:
27889
diff
changeset
|
159 |
} |
26837
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
160 |
} |
72a43d3841e7
8057536: Refactor G1 to allow context specific allocations
sjohanss
parents:
diff
changeset
|
161 |
} |
30564
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
162 |
|
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
163 |
void G1DefaultParGCAllocator::waste(size_t& wasted, size_t& undo_wasted) { |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
164 |
wasted = 0; |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
165 |
undo_wasted = 0; |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
166 |
for (uint state = 0; state < InCSetState::Num; state++) { |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
167 |
G1PLAB * const buf = _alloc_buffers[state]; |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
168 |
if (buf != NULL) { |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
169 |
wasted += buf->waste(); |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
170 |
undo_wasted += buf->undo_waste(); |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
171 |
} |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
172 |
} |
a37d98a1eb54
8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents:
30275
diff
changeset
|
173 |
} |
31346
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
174 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
175 |
G1ArchiveAllocator* G1ArchiveAllocator::create_allocator(G1CollectedHeap* g1h) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
176 |
// Create the archive allocator, and also enable archive object checking |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
177 |
// in mark-sweep, since we will be creating archive regions. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
178 |
G1ArchiveAllocator* result = new G1ArchiveAllocator(g1h); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
179 |
G1MarkSweep::enable_archive_object_check(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
180 |
return result; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
181 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
182 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
183 |
bool G1ArchiveAllocator::alloc_new_region() { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
184 |
// Allocate the highest free region in the reserved heap, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
185 |
// and add it to our list of allocated regions. It is marked |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
186 |
// archive and added to the old set. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
187 |
HeapRegion* hr = _g1h->alloc_highest_free_region(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
188 |
if (hr == NULL) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
189 |
return false; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
190 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
191 |
assert(hr->is_empty(), err_msg("expected empty region (index %u)", hr->hrm_index())); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
192 |
hr->set_archive(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
193 |
_g1h->_old_set.add(hr); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
194 |
_g1h->_hr_printer.alloc(hr, G1HRPrinter::Archive); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
195 |
_allocated_regions.append(hr); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
196 |
_allocation_region = hr; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
197 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
198 |
// Set up _bottom and _max to begin allocating in the lowest |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
199 |
// min_region_size'd chunk of the allocated G1 region. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
200 |
_bottom = hr->bottom(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
201 |
_max = _bottom + HeapRegion::min_region_size_in_words(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
202 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
203 |
// Tell mark-sweep that objects in this region are not to be marked. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
204 |
G1MarkSweep::mark_range_archive(MemRegion(_bottom, HeapRegion::GrainWords)); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
205 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
206 |
// Since we've modified the old set, call update_sizes. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
207 |
_g1h->g1mm()->update_sizes(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
208 |
return true; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
209 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
210 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
211 |
HeapWord* G1ArchiveAllocator::archive_mem_allocate(size_t word_size) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
212 |
assert(word_size != 0, "size must not be zero"); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
213 |
if (_allocation_region == NULL) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
214 |
if (!alloc_new_region()) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
215 |
return NULL; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
216 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
217 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
218 |
HeapWord* old_top = _allocation_region->top(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
219 |
assert(_bottom >= _allocation_region->bottom(), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
220 |
err_msg("inconsistent allocation state: " PTR_FORMAT " < " PTR_FORMAT, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
221 |
p2i(_bottom), p2i(_allocation_region->bottom()))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
222 |
assert(_max <= _allocation_region->end(), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
223 |
err_msg("inconsistent allocation state: " PTR_FORMAT " > " PTR_FORMAT, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
224 |
p2i(_max), p2i(_allocation_region->end()))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
225 |
assert(_bottom <= old_top && old_top <= _max, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
226 |
err_msg("inconsistent allocation state: expected " |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
227 |
PTR_FORMAT " <= " PTR_FORMAT " <= " PTR_FORMAT, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
228 |
p2i(_bottom), p2i(old_top), p2i(_max))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
229 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
230 |
// Allocate the next word_size words in the current allocation chunk. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
231 |
// If allocation would cross the _max boundary, insert a filler and begin |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
232 |
// at the base of the next min_region_size'd chunk. Also advance to the next |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
233 |
// chunk if we don't yet cross the boundary, but the remainder would be too |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
234 |
// small to fill. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
235 |
HeapWord* new_top = old_top + word_size; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
236 |
size_t remainder = pointer_delta(_max, new_top); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
237 |
if ((new_top > _max) || |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
238 |
((new_top < _max) && (remainder < CollectedHeap::min_fill_size()))) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
239 |
if (old_top != _max) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
240 |
size_t fill_size = pointer_delta(_max, old_top); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
241 |
CollectedHeap::fill_with_object(old_top, fill_size); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
242 |
_summary_bytes_used += fill_size * HeapWordSize; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
243 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
244 |
_allocation_region->set_top(_max); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
245 |
old_top = _bottom = _max; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
246 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
247 |
// Check if we've just used up the last min_region_size'd chunk |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
248 |
// in the current region, and if so, allocate a new one. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
249 |
if (_bottom != _allocation_region->end()) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
250 |
_max = _bottom + HeapRegion::min_region_size_in_words(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
251 |
} else { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
252 |
if (!alloc_new_region()) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
253 |
return NULL; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
254 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
255 |
old_top = _allocation_region->bottom(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
256 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
257 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
258 |
_allocation_region->set_top(old_top + word_size); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
259 |
_summary_bytes_used += word_size * HeapWordSize; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
260 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
261 |
return old_top; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
262 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
263 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
264 |
void G1ArchiveAllocator::complete_archive(GrowableArray<MemRegion>* ranges, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
265 |
size_t end_alignment_in_bytes) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
266 |
assert((end_alignment_in_bytes >> LogHeapWordSize) < HeapRegion::min_region_size_in_words(), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
267 |
err_msg("alignment " SIZE_FORMAT " too large", end_alignment_in_bytes)); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
268 |
assert(is_size_aligned(end_alignment_in_bytes, HeapWordSize), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
269 |
err_msg("alignment " SIZE_FORMAT " is not HeapWord (%u) aligned", end_alignment_in_bytes, HeapWordSize)); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
270 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
271 |
// If we've allocated nothing, simply return. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
272 |
if (_allocation_region == NULL) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
273 |
return; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
274 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
275 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
276 |
// If an end alignment was requested, insert filler objects. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
277 |
if (end_alignment_in_bytes != 0) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
278 |
HeapWord* currtop = _allocation_region->top(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
279 |
HeapWord* newtop = (HeapWord*)align_pointer_up(currtop, end_alignment_in_bytes); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
280 |
size_t fill_size = pointer_delta(newtop, currtop); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
281 |
if (fill_size != 0) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
282 |
if (fill_size < CollectedHeap::min_fill_size()) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
283 |
// If the required fill is smaller than we can represent, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
284 |
// bump up to the next aligned address. We know we won't exceed the current |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
285 |
// region boundary because the max supported alignment is smaller than the min |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
286 |
// region size, and because the allocation code never leaves space smaller than |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
287 |
// the min_fill_size at the top of the current allocation region. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
288 |
newtop = (HeapWord*)align_pointer_up(currtop + CollectedHeap::min_fill_size(), |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
289 |
end_alignment_in_bytes); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
290 |
fill_size = pointer_delta(newtop, currtop); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
291 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
292 |
HeapWord* fill = archive_mem_allocate(fill_size); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
293 |
CollectedHeap::fill_with_objects(fill, fill_size); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
294 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
295 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
296 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
297 |
// Loop through the allocated regions, and create MemRegions summarizing |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
298 |
// the allocated address range, combining contiguous ranges. Add the |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
299 |
// MemRegions to the GrowableArray provided by the caller. |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
300 |
int index = _allocated_regions.length() - 1; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
301 |
assert(_allocated_regions.at(index) == _allocation_region, |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
302 |
err_msg("expected region %u at end of array, found %u", |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
303 |
_allocation_region->hrm_index(), _allocated_regions.at(index)->hrm_index())); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
304 |
HeapWord* base_address = _allocation_region->bottom(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
305 |
HeapWord* top = base_address; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
306 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
307 |
while (index >= 0) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
308 |
HeapRegion* next = _allocated_regions.at(index); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
309 |
HeapWord* new_base = next->bottom(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
310 |
HeapWord* new_top = next->top(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
311 |
if (new_base != top) { |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
312 |
ranges->append(MemRegion(base_address, pointer_delta(top, base_address))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
313 |
base_address = new_base; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
314 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
315 |
top = new_top; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
316 |
index = index - 1; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
317 |
} |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
318 |
|
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
319 |
assert(top != base_address, err_msg("zero-sized range, address " PTR_FORMAT, p2i(base_address))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
320 |
ranges->append(MemRegion(base_address, pointer_delta(top, base_address))); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
321 |
_allocated_regions.clear(); |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
322 |
_allocation_region = NULL; |
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
31331
diff
changeset
|
323 |
}; |