author | jwilhelm |
Thu, 03 Oct 2013 21:36:29 +0200 | |
changeset 20398 | b206c580c45f |
parent 18025 | b7bcf7497f93 |
child 22221 | 444e4457cfc7 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
17627
325871034f2c
7186737: Unable to allocate bit maps or card tables for parallel gc for the requested heap
tamao
parents:
17625
diff
changeset
|
2 |
* Copyright (c) 2005, 2013, 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:
5076
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
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:
5076
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPARALLELCOMPACT_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPARALLELCOMPACT_HPP |
|
27 |
||
28 |
#include "gc_implementation/parallelScavenge/objectStartArray.hpp" |
|
29 |
#include "gc_implementation/parallelScavenge/parMarkBitMap.hpp" |
|
30 |
#include "gc_implementation/parallelScavenge/psCompactionManager.hpp" |
|
31 |
#include "gc_implementation/shared/collectorCounters.hpp" |
|
32 |
#include "gc_implementation/shared/markSweep.hpp" |
|
33 |
#include "gc_implementation/shared/mutableSpace.hpp" |
|
34 |
#include "memory/sharedHeap.hpp" |
|
35 |
#include "oops/oop.hpp" |
|
36 |
||
1 | 37 |
class ParallelScavengeHeap; |
38 |
class PSAdaptiveSizePolicy; |
|
39 |
class PSYoungGen; |
|
40 |
class PSOldGen; |
|
41 |
class ParCompactionManager; |
|
42 |
class ParallelTaskTerminator; |
|
43 |
class PSParallelCompact; |
|
44 |
class GCTaskManager; |
|
45 |
class GCTaskQueue; |
|
46 |
class PreGCValues; |
|
47 |
class MoveAndUpdateClosure; |
|
48 |
class RefProcTaskExecutor; |
|
18025 | 49 |
class ParallelOldTracer; |
50 |
class STWGCTimer; |
|
1 | 51 |
|
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
52 |
// The SplitInfo class holds the information needed to 'split' a source region |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
53 |
// so that the live data can be copied to two destination *spaces*. Normally, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
54 |
// all the live data in a region is copied to a single destination space (e.g., |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
55 |
// everything live in a region in eden is copied entirely into the old gen). |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
56 |
// However, when the heap is nearly full, all the live data in eden may not fit |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
57 |
// into the old gen. Copying only some of the regions from eden to old gen |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
58 |
// requires finding a region that does not contain a partial object (i.e., no |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
59 |
// live object crosses the region boundary) somewhere near the last object that |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
60 |
// does fit into the old gen. Since it's not always possible to find such a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
61 |
// region, splitting is necessary for predictable behavior. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
62 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
63 |
// A region is always split at the end of the partial object. This avoids |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
64 |
// additional tests when calculating the new location of a pointer, which is a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
65 |
// very hot code path. The partial object and everything to its left will be |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
66 |
// copied to another space (call it dest_space_1). The live data to the right |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
67 |
// of the partial object will be copied either within the space itself, or to a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
68 |
// different destination space (distinct from dest_space_1). |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
69 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
70 |
// Split points are identified during the summary phase, when region |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
71 |
// destinations are computed: data about the split, including the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
72 |
// partial_object_size, is recorded in a SplitInfo record and the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
73 |
// partial_object_size field in the summary data is set to zero. The zeroing is |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
74 |
// possible (and necessary) since the partial object will move to a different |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
75 |
// destination space than anything to its right, thus the partial object should |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
76 |
// not affect the locations of any objects to its right. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
77 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
78 |
// The recorded data is used during the compaction phase, but only rarely: when |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
79 |
// the partial object on the split region will be copied across a destination |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
80 |
// region boundary. This test is made once each time a region is filled, and is |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
81 |
// a simple address comparison, so the overhead is negligible (see |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
82 |
// PSParallelCompact::first_src_addr()). |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
83 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
84 |
// Notes: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
85 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
86 |
// Only regions with partial objects are split; a region without a partial |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
87 |
// object does not need any extra bookkeeping. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
88 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
89 |
// At most one region is split per space, so the amount of data required is |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
90 |
// constant. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
91 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
92 |
// A region is split only when the destination space would overflow. Once that |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
93 |
// happens, the destination space is abandoned and no other data (even from |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
94 |
// other source spaces) is targeted to that destination space. Abandoning the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
95 |
// destination space may leave a somewhat large unused area at the end, if a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
96 |
// large object caused the overflow. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
97 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
98 |
// Future work: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
99 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
100 |
// More bookkeeping would be required to continue to use the destination space. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
101 |
// The most general solution would allow data from regions in two different |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
102 |
// source spaces to be "joined" in a single destination region. At the very |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
103 |
// least, additional code would be required in next_src_region() to detect the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
104 |
// join and skip to an out-of-order source region. If the join region was also |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
105 |
// the last destination region to which a split region was copied (the most |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
106 |
// likely case), then additional work would be needed to get fill_region() to |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
107 |
// stop iteration and switch to a new source region at the right point. Basic |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
108 |
// idea would be to use a fake value for the top of the source space. It is |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
109 |
// doable, if a bit tricky. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
110 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
111 |
// A simpler (but less general) solution would fill the remainder of the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
112 |
// destination region with a dummy object and continue filling the next |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
113 |
// destination region. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
114 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
115 |
class SplitInfo |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
116 |
{ |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
117 |
public: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
118 |
// Return true if this split info is valid (i.e., if a split has been |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
119 |
// recorded). The very first region cannot have a partial object and thus is |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
120 |
// never split, so 0 is the 'invalid' value. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
121 |
bool is_valid() const { return _src_region_idx > 0; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
122 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
123 |
// Return true if this split holds data for the specified source region. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
124 |
inline bool is_split(size_t source_region) const; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
125 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
126 |
// The index of the split region, the size of the partial object on that |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
127 |
// region and the destination of the partial object. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
128 |
size_t src_region_idx() const { return _src_region_idx; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
129 |
size_t partial_obj_size() const { return _partial_obj_size; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
130 |
HeapWord* destination() const { return _destination; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
131 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
132 |
// The destination count of the partial object referenced by this split |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
133 |
// (either 1 or 2). This must be added to the destination count of the |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
134 |
// remainder of the source region. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
135 |
unsigned int destination_count() const { return _destination_count; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
136 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
137 |
// If a word within the partial object will be written to the first word of a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
138 |
// destination region, this is the address of the destination region; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
139 |
// otherwise this is NULL. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
140 |
HeapWord* dest_region_addr() const { return _dest_region_addr; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
141 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
142 |
// If a word within the partial object will be written to the first word of a |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
143 |
// destination region, this is the address of that word within the partial |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
144 |
// object; otherwise this is NULL. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
145 |
HeapWord* first_src_addr() const { return _first_src_addr; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
146 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
147 |
// Record the data necessary to split the region src_region_idx. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
148 |
void record(size_t src_region_idx, size_t partial_obj_size, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
149 |
HeapWord* destination); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
150 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
151 |
void clear(); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
152 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
153 |
DEBUG_ONLY(void verify_clear();) |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
154 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
155 |
private: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
156 |
size_t _src_region_idx; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
157 |
size_t _partial_obj_size; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
158 |
HeapWord* _destination; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
159 |
unsigned int _destination_count; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
160 |
HeapWord* _dest_region_addr; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
161 |
HeapWord* _first_src_addr; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
162 |
}; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
163 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
164 |
inline bool SplitInfo::is_split(size_t region_idx) const |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
165 |
{ |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
166 |
return _src_region_idx == region_idx && is_valid(); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
167 |
} |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
168 |
|
1 | 169 |
class SpaceInfo |
170 |
{ |
|
171 |
public: |
|
172 |
MutableSpace* space() const { return _space; } |
|
173 |
||
174 |
// Where the free space will start after the collection. Valid only after the |
|
175 |
// summary phase completes. |
|
176 |
HeapWord* new_top() const { return _new_top; } |
|
177 |
||
178 |
// Allows new_top to be set. |
|
179 |
HeapWord** new_top_addr() { return &_new_top; } |
|
180 |
||
181 |
// Where the smallest allowable dense prefix ends (used only for perm gen). |
|
182 |
HeapWord* min_dense_prefix() const { return _min_dense_prefix; } |
|
183 |
||
184 |
// Where the dense prefix ends, or the compacted region begins. |
|
185 |
HeapWord* dense_prefix() const { return _dense_prefix; } |
|
186 |
||
187 |
// The start array for the (generation containing the) space, or NULL if there |
|
188 |
// is no start array. |
|
189 |
ObjectStartArray* start_array() const { return _start_array; } |
|
190 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
191 |
SplitInfo& split_info() { return _split_info; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
192 |
|
1 | 193 |
void set_space(MutableSpace* s) { _space = s; } |
194 |
void set_new_top(HeapWord* addr) { _new_top = addr; } |
|
195 |
void set_min_dense_prefix(HeapWord* addr) { _min_dense_prefix = addr; } |
|
196 |
void set_dense_prefix(HeapWord* addr) { _dense_prefix = addr; } |
|
197 |
void set_start_array(ObjectStartArray* s) { _start_array = s; } |
|
198 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
199 |
void publish_new_top() const { _space->set_top(_new_top); } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
200 |
|
1 | 201 |
private: |
202 |
MutableSpace* _space; |
|
203 |
HeapWord* _new_top; |
|
204 |
HeapWord* _min_dense_prefix; |
|
205 |
HeapWord* _dense_prefix; |
|
206 |
ObjectStartArray* _start_array; |
|
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
207 |
SplitInfo _split_info; |
1 | 208 |
}; |
209 |
||
210 |
class ParallelCompactData |
|
211 |
{ |
|
212 |
public: |
|
213 |
// Sizes are in HeapWords, unless indicated otherwise. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
214 |
static const size_t Log2RegionSize; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
215 |
static const size_t RegionSize; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
216 |
static const size_t RegionSizeBytes; |
1 | 217 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
218 |
// Mask for the bits in a size_t to get an offset within a region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
219 |
static const size_t RegionSizeOffsetMask; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
220 |
// Mask for the bits in a pointer to get an offset within a region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
221 |
static const size_t RegionAddrOffsetMask; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
222 |
// Mask for the bits in a pointer to get the address of the start of a region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
223 |
static const size_t RegionAddrMask; |
1 | 224 |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
225 |
static const size_t Log2BlockSize; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
226 |
static const size_t BlockSize; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
227 |
static const size_t BlockSizeBytes; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
228 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
229 |
static const size_t BlockSizeOffsetMask; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
230 |
static const size_t BlockAddrOffsetMask; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
231 |
static const size_t BlockAddrMask; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
232 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
233 |
static const size_t BlocksPerRegion; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
234 |
static const size_t Log2BlocksPerRegion; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
235 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
236 |
class RegionData |
1 | 237 |
{ |
238 |
public: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
239 |
// Destination address of the region. |
1 | 240 |
HeapWord* destination() const { return _destination; } |
241 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
242 |
// The first region containing data destined for this region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
243 |
size_t source_region() const { return _source_region; } |
1 | 244 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
245 |
// The object (if any) starting in this region and ending in a different |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
246 |
// region that could not be updated during the main (parallel) compaction |
1 | 247 |
// phase. This is different from _partial_obj_addr, which is an object that |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
248 |
// extends onto a source region. However, the two uses do not overlap in |
1 | 249 |
// time, so the same field is used to save space. |
250 |
HeapWord* deferred_obj_addr() const { return _partial_obj_addr; } |
|
251 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
252 |
// The starting address of the partial object extending onto the region. |
1 | 253 |
HeapWord* partial_obj_addr() const { return _partial_obj_addr; } |
254 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
255 |
// Size of the partial object extending onto the region (words). |
1 | 256 |
size_t partial_obj_size() const { return _partial_obj_size; } |
257 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
258 |
// Size of live data that lies within this region due to objects that start |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
259 |
// in this region (words). This does not include the partial object |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
260 |
// extending onto the region (if any), or the part of an object that extends |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
261 |
// onto the next region (if any). |
1 | 262 |
size_t live_obj_size() const { return _dc_and_los & los_mask; } |
263 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
264 |
// Total live data that lies within the region (words). |
1 | 265 |
size_t data_size() const { return partial_obj_size() + live_obj_size(); } |
266 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
267 |
// The destination_count is the number of other regions to which data from |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
268 |
// this region will be copied. At the end of the summary phase, the valid |
1 | 269 |
// values of destination_count are |
270 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
271 |
// 0 - data from the region will be compacted completely into itself, or the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
272 |
// region is empty. The region can be claimed and then filled. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
273 |
// 1 - data from the region will be compacted into 1 other region; some |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
274 |
// data from the region may also be compacted into the region itself. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
275 |
// 2 - data from the region will be copied to 2 other regions. |
1 | 276 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
277 |
// During compaction as regions are emptied, the destination_count is |
1 | 278 |
// decremented (atomically) and when it reaches 0, it can be claimed and |
279 |
// then filled. |
|
280 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
281 |
// A region is claimed for processing by atomically changing the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
282 |
// destination_count to the claimed value (dc_claimed). After a region has |
1 | 283 |
// been filled, the destination_count should be set to the completed value |
284 |
// (dc_completed). |
|
285 |
inline uint destination_count() const; |
|
286 |
inline uint destination_count_raw() const; |
|
287 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
288 |
// Whether the block table for this region has been filled. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
289 |
inline bool blocks_filled() const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
290 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
291 |
// Number of times the block table was filled. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
292 |
DEBUG_ONLY(inline size_t blocks_filled_count() const;) |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
293 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
294 |
// The location of the java heap data that corresponds to this region. |
1 | 295 |
inline HeapWord* data_location() const; |
296 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
297 |
// The highest address referenced by objects in this region. |
1 | 298 |
inline HeapWord* highest_ref() const; |
299 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
300 |
// Whether this region is available to be claimed, has been claimed, or has |
1 | 301 |
// been completed. |
302 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
303 |
// Minor subtlety: claimed() returns true if the region is marked |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
304 |
// completed(), which is desirable since a region must be claimed before it |
1 | 305 |
// can be completed. |
306 |
bool available() const { return _dc_and_los < dc_one; } |
|
307 |
bool claimed() const { return _dc_and_los >= dc_claimed; } |
|
308 |
bool completed() const { return _dc_and_los >= dc_completed; } |
|
309 |
||
310 |
// These are not atomic. |
|
311 |
void set_destination(HeapWord* addr) { _destination = addr; } |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
312 |
void set_source_region(size_t region) { _source_region = region; } |
1 | 313 |
void set_deferred_obj_addr(HeapWord* addr) { _partial_obj_addr = addr; } |
314 |
void set_partial_obj_addr(HeapWord* addr) { _partial_obj_addr = addr; } |
|
315 |
void set_partial_obj_size(size_t words) { |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
316 |
_partial_obj_size = (region_sz_t) words; |
1 | 317 |
} |
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
318 |
inline void set_blocks_filled(); |
1 | 319 |
|
320 |
inline void set_destination_count(uint count); |
|
321 |
inline void set_live_obj_size(size_t words); |
|
322 |
inline void set_data_location(HeapWord* addr); |
|
323 |
inline void set_completed(); |
|
324 |
inline bool claim_unsafe(); |
|
325 |
||
326 |
// These are atomic. |
|
327 |
inline void add_live_obj(size_t words); |
|
328 |
inline void set_highest_ref(HeapWord* addr); |
|
329 |
inline void decrement_destination_count(); |
|
330 |
inline bool claim(); |
|
331 |
||
332 |
private: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
333 |
// The type used to represent object sizes within a region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
334 |
typedef uint region_sz_t; |
1 | 335 |
|
336 |
// Constants for manipulating the _dc_and_los field, which holds both the |
|
337 |
// destination count and live obj size. The live obj size lives at the |
|
338 |
// least significant end so no masking is necessary when adding. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
339 |
static const region_sz_t dc_shift; // Shift amount. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
340 |
static const region_sz_t dc_mask; // Mask for destination count. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
341 |
static const region_sz_t dc_one; // 1, shifted appropriately. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
342 |
static const region_sz_t dc_claimed; // Region has been claimed. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
343 |
static const region_sz_t dc_completed; // Region has been completed. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
344 |
static const region_sz_t los_mask; // Mask for live obj size. |
1 | 345 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
346 |
HeapWord* _destination; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
347 |
size_t _source_region; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
348 |
HeapWord* _partial_obj_addr; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
349 |
region_sz_t _partial_obj_size; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
350 |
region_sz_t volatile _dc_and_los; |
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
351 |
bool _blocks_filled; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
352 |
|
1 | 353 |
#ifdef ASSERT |
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
354 |
size_t _blocks_filled_count; // Number of block table fills. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
355 |
|
1 | 356 |
// These enable optimizations that are only partially implemented. Use |
357 |
// debug builds to prevent the code fragments from breaking. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
358 |
HeapWord* _data_location; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
359 |
HeapWord* _highest_ref; |
1 | 360 |
#endif // #ifdef ASSERT |
361 |
||
362 |
#ifdef ASSERT |
|
363 |
public: |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
364 |
uint _pushed; // 0 until region is pushed onto a stack |
1 | 365 |
private: |
366 |
#endif |
|
367 |
}; |
|
368 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
369 |
// "Blocks" allow shorter sections of the bitmap to be searched. Each Block |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
370 |
// holds an offset, which is the amount of live data in the Region to the left |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
371 |
// of the first live object that starts in the Block. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
372 |
class BlockData |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
373 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
374 |
public: |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
375 |
typedef unsigned short int blk_ofs_t; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
376 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
377 |
blk_ofs_t offset() const { return _offset; } |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
378 |
void set_offset(size_t val) { _offset = (blk_ofs_t)val; } |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
379 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
380 |
private: |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
381 |
blk_ofs_t _offset; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
382 |
}; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
383 |
|
1 | 384 |
public: |
385 |
ParallelCompactData(); |
|
386 |
bool initialize(MemRegion covered_region); |
|
387 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
388 |
size_t region_count() const { return _region_count; } |
17627
325871034f2c
7186737: Unable to allocate bit maps or card tables for parallel gc for the requested heap
tamao
parents:
17625
diff
changeset
|
389 |
size_t reserved_byte_size() const { return _reserved_byte_size; } |
1 | 390 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
391 |
// Convert region indices to/from RegionData pointers. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
392 |
inline RegionData* region(size_t region_idx) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
393 |
inline size_t region(const RegionData* const region_ptr) const; |
1 | 394 |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
395 |
size_t block_count() const { return _block_count; } |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
396 |
inline BlockData* block(size_t block_idx) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
397 |
inline size_t block(const BlockData* block_ptr) const; |
1 | 398 |
|
399 |
void add_obj(HeapWord* addr, size_t len); |
|
400 |
void add_obj(oop p, size_t len) { add_obj((HeapWord*)p, len); } |
|
401 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
402 |
// Fill in the regions covering [beg, end) so that no data moves; i.e., the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
403 |
// destination of region n is simply the start of region n. The argument beg |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
404 |
// must be region-aligned; end need not be. |
1 | 405 |
void summarize_dense_prefix(HeapWord* beg, HeapWord* end); |
406 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
407 |
HeapWord* summarize_split_space(size_t src_region, SplitInfo& split_info, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
408 |
HeapWord* destination, HeapWord* target_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
409 |
HeapWord** target_next); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
410 |
bool summarize(SplitInfo& split_info, |
1 | 411 |
HeapWord* source_beg, HeapWord* source_end, |
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
412 |
HeapWord** source_next, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
413 |
HeapWord* target_beg, HeapWord* target_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
414 |
HeapWord** target_next); |
1 | 415 |
|
416 |
void clear(); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
417 |
void clear_range(size_t beg_region, size_t end_region); |
1 | 418 |
void clear_range(HeapWord* beg, HeapWord* end) { |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
419 |
clear_range(addr_to_region_idx(beg), addr_to_region_idx(end)); |
1 | 420 |
} |
421 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
422 |
// Return the number of words between addr and the start of the region |
1 | 423 |
// containing addr. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
424 |
inline size_t region_offset(const HeapWord* addr) const; |
1 | 425 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
426 |
// Convert addresses to/from a region index or region pointer. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
427 |
inline size_t addr_to_region_idx(const HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
428 |
inline RegionData* addr_to_region_ptr(const HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
429 |
inline HeapWord* region_to_addr(size_t region) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
430 |
inline HeapWord* region_to_addr(size_t region, size_t offset) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
431 |
inline HeapWord* region_to_addr(const RegionData* region) const; |
1 | 432 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
433 |
inline HeapWord* region_align_down(HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
434 |
inline HeapWord* region_align_up(HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
435 |
inline bool is_region_aligned(HeapWord* addr) const; |
1 | 436 |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
437 |
// Analogous to region_offset() for blocks. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
438 |
size_t block_offset(const HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
439 |
size_t addr_to_block_idx(const HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
440 |
size_t addr_to_block_idx(const oop obj) const { |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
441 |
return addr_to_block_idx((HeapWord*) obj); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
442 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
443 |
inline BlockData* addr_to_block_ptr(const HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
444 |
inline HeapWord* block_to_addr(size_t block) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
445 |
inline size_t region_to_block_idx(size_t region) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
446 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
447 |
inline HeapWord* block_align_down(HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
448 |
inline HeapWord* block_align_up(HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
449 |
inline bool is_block_aligned(HeapWord* addr) const; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
450 |
|
1 | 451 |
// Return the address one past the end of the partial object. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
452 |
HeapWord* partial_obj_end(size_t region_idx) const; |
1 | 453 |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
454 |
// Return the location of the object after compaction. |
1 | 455 |
HeapWord* calc_new_pointer(HeapWord* addr); |
456 |
||
457 |
HeapWord* calc_new_pointer(oop p) { |
|
458 |
return calc_new_pointer((HeapWord*) p); |
|
459 |
} |
|
460 |
||
461 |
#ifdef ASSERT |
|
462 |
void verify_clear(const PSVirtualSpace* vspace); |
|
463 |
void verify_clear(); |
|
464 |
#endif // #ifdef ASSERT |
|
465 |
||
466 |
private: |
|
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
467 |
bool initialize_block_data(); |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
468 |
bool initialize_region_data(size_t region_size); |
1 | 469 |
PSVirtualSpace* create_vspace(size_t count, size_t element_size); |
470 |
||
471 |
private: |
|
472 |
HeapWord* _region_start; |
|
473 |
#ifdef ASSERT |
|
474 |
HeapWord* _region_end; |
|
475 |
#endif // #ifdef ASSERT |
|
476 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
477 |
PSVirtualSpace* _region_vspace; |
17627
325871034f2c
7186737: Unable to allocate bit maps or card tables for parallel gc for the requested heap
tamao
parents:
17625
diff
changeset
|
478 |
size_t _reserved_byte_size; |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
479 |
RegionData* _region_data; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
480 |
size_t _region_count; |
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
481 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
482 |
PSVirtualSpace* _block_vspace; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
483 |
BlockData* _block_data; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
484 |
size_t _block_count; |
1 | 485 |
}; |
486 |
||
487 |
inline uint |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
488 |
ParallelCompactData::RegionData::destination_count_raw() const |
1 | 489 |
{ |
490 |
return _dc_and_los & dc_mask; |
|
491 |
} |
|
492 |
||
493 |
inline uint |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
494 |
ParallelCompactData::RegionData::destination_count() const |
1 | 495 |
{ |
496 |
return destination_count_raw() >> dc_shift; |
|
497 |
} |
|
498 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
499 |
inline bool |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
500 |
ParallelCompactData::RegionData::blocks_filled() const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
501 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
502 |
return _blocks_filled; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
503 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
504 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
505 |
#ifdef ASSERT |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
506 |
inline size_t |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
507 |
ParallelCompactData::RegionData::blocks_filled_count() const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
508 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
509 |
return _blocks_filled_count; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
510 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
511 |
#endif // #ifdef ASSERT |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
512 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
513 |
inline void |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
514 |
ParallelCompactData::RegionData::set_blocks_filled() |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
515 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
516 |
_blocks_filled = true; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
517 |
// Debug builds count the number of times the table was filled. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
518 |
DEBUG_ONLY(Atomic::inc_ptr(&_blocks_filled_count)); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
519 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
520 |
|
1 | 521 |
inline void |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
522 |
ParallelCompactData::RegionData::set_destination_count(uint count) |
1 | 523 |
{ |
524 |
assert(count <= (dc_completed >> dc_shift), "count too large"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
525 |
const region_sz_t live_sz = (region_sz_t) live_obj_size(); |
1 | 526 |
_dc_and_los = (count << dc_shift) | live_sz; |
527 |
} |
|
528 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
529 |
inline void ParallelCompactData::RegionData::set_live_obj_size(size_t words) |
1 | 530 |
{ |
531 |
assert(words <= los_mask, "would overflow"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
532 |
_dc_and_los = destination_count_raw() | (region_sz_t)words; |
1 | 533 |
} |
534 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
535 |
inline void ParallelCompactData::RegionData::decrement_destination_count() |
1 | 536 |
{ |
537 |
assert(_dc_and_los < dc_claimed, "already claimed"); |
|
538 |
assert(_dc_and_los >= dc_one, "count would go negative"); |
|
539 |
Atomic::add((int)dc_mask, (volatile int*)&_dc_and_los); |
|
540 |
} |
|
541 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
542 |
inline HeapWord* ParallelCompactData::RegionData::data_location() const |
1 | 543 |
{ |
544 |
DEBUG_ONLY(return _data_location;) |
|
545 |
NOT_DEBUG(return NULL;) |
|
546 |
} |
|
547 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
548 |
inline HeapWord* ParallelCompactData::RegionData::highest_ref() const |
1 | 549 |
{ |
550 |
DEBUG_ONLY(return _highest_ref;) |
|
551 |
NOT_DEBUG(return NULL;) |
|
552 |
} |
|
553 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
554 |
inline void ParallelCompactData::RegionData::set_data_location(HeapWord* addr) |
1 | 555 |
{ |
556 |
DEBUG_ONLY(_data_location = addr;) |
|
557 |
} |
|
558 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
559 |
inline void ParallelCompactData::RegionData::set_completed() |
1 | 560 |
{ |
561 |
assert(claimed(), "must be claimed first"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
562 |
_dc_and_los = dc_completed | (region_sz_t) live_obj_size(); |
1 | 563 |
} |
564 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
565 |
// MT-unsafe claiming of a region. Should only be used during single threaded |
1 | 566 |
// execution. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
567 |
inline bool ParallelCompactData::RegionData::claim_unsafe() |
1 | 568 |
{ |
569 |
if (available()) { |
|
570 |
_dc_and_los |= dc_claimed; |
|
571 |
return true; |
|
572 |
} |
|
573 |
return false; |
|
574 |
} |
|
575 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
576 |
inline void ParallelCompactData::RegionData::add_live_obj(size_t words) |
1 | 577 |
{ |
578 |
assert(words <= (size_t)los_mask - live_obj_size(), "overflow"); |
|
579 |
Atomic::add((int) words, (volatile int*) &_dc_and_los); |
|
580 |
} |
|
581 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
582 |
inline void ParallelCompactData::RegionData::set_highest_ref(HeapWord* addr) |
1 | 583 |
{ |
584 |
#ifdef ASSERT |
|
585 |
HeapWord* tmp = _highest_ref; |
|
586 |
while (addr > tmp) { |
|
587 |
tmp = (HeapWord*)Atomic::cmpxchg_ptr(addr, &_highest_ref, tmp); |
|
588 |
} |
|
589 |
#endif // #ifdef ASSERT |
|
590 |
} |
|
591 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
592 |
inline bool ParallelCompactData::RegionData::claim() |
1 | 593 |
{ |
594 |
const int los = (int) live_obj_size(); |
|
595 |
const int old = Atomic::cmpxchg(dc_claimed | los, |
|
596 |
(volatile int*) &_dc_and_los, los); |
|
597 |
return old == los; |
|
598 |
} |
|
599 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
600 |
inline ParallelCompactData::RegionData* |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
601 |
ParallelCompactData::region(size_t region_idx) const |
1 | 602 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
603 |
assert(region_idx <= region_count(), "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
604 |
return _region_data + region_idx; |
1 | 605 |
} |
606 |
||
607 |
inline size_t |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
608 |
ParallelCompactData::region(const RegionData* const region_ptr) const |
1 | 609 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
610 |
assert(region_ptr >= _region_data, "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
611 |
assert(region_ptr <= _region_data + region_count(), "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
612 |
return pointer_delta(region_ptr, _region_data, sizeof(RegionData)); |
1 | 613 |
} |
614 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
615 |
inline ParallelCompactData::BlockData* |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
616 |
ParallelCompactData::block(size_t n) const { |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
617 |
assert(n < block_count(), "bad arg"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
618 |
return _block_data + n; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
619 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
620 |
|
1 | 621 |
inline size_t |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
622 |
ParallelCompactData::region_offset(const HeapWord* addr) const |
1 | 623 |
{ |
624 |
assert(addr >= _region_start, "bad addr"); |
|
625 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
626 |
return (size_t(addr) & RegionAddrOffsetMask) >> LogHeapWordSize; |
1 | 627 |
} |
628 |
||
629 |
inline size_t |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
630 |
ParallelCompactData::addr_to_region_idx(const HeapWord* addr) const |
1 | 631 |
{ |
632 |
assert(addr >= _region_start, "bad addr"); |
|
633 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
634 |
return pointer_delta(addr, _region_start) >> Log2RegionSize; |
1 | 635 |
} |
636 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
637 |
inline ParallelCompactData::RegionData* |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
638 |
ParallelCompactData::addr_to_region_ptr(const HeapWord* addr) const |
1 | 639 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
640 |
return region(addr_to_region_idx(addr)); |
1 | 641 |
} |
642 |
||
643 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
644 |
ParallelCompactData::region_to_addr(size_t region) const |
1 | 645 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
646 |
assert(region <= _region_count, "region out of range"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
647 |
return _region_start + (region << Log2RegionSize); |
1 | 648 |
} |
649 |
||
650 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
651 |
ParallelCompactData::region_to_addr(const RegionData* region) const |
1 | 652 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
653 |
return region_to_addr(pointer_delta(region, _region_data, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
654 |
sizeof(RegionData))); |
1 | 655 |
} |
656 |
||
657 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
658 |
ParallelCompactData::region_to_addr(size_t region, size_t offset) const |
1 | 659 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
660 |
assert(region <= _region_count, "region out of range"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
661 |
assert(offset < RegionSize, "offset too big"); // This may be too strict. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
662 |
return region_to_addr(region) + offset; |
1 | 663 |
} |
664 |
||
665 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
666 |
ParallelCompactData::region_align_down(HeapWord* addr) const |
1 | 667 |
{ |
668 |
assert(addr >= _region_start, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
669 |
assert(addr < _region_end + RegionSize, "bad addr"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
670 |
return (HeapWord*)(size_t(addr) & RegionAddrMask); |
1 | 671 |
} |
672 |
||
673 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
674 |
ParallelCompactData::region_align_up(HeapWord* addr) const |
1 | 675 |
{ |
676 |
assert(addr >= _region_start, "bad addr"); |
|
677 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
678 |
return region_align_down(addr + RegionSizeOffsetMask); |
1 | 679 |
} |
680 |
||
681 |
inline bool |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
682 |
ParallelCompactData::is_region_aligned(HeapWord* addr) const |
1 | 683 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
684 |
return region_offset(addr) == 0; |
1 | 685 |
} |
686 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
687 |
inline size_t |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
688 |
ParallelCompactData::block_offset(const HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
689 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
690 |
assert(addr >= _region_start, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
691 |
assert(addr <= _region_end, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
692 |
return (size_t(addr) & BlockAddrOffsetMask) >> LogHeapWordSize; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
693 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
694 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
695 |
inline size_t |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
696 |
ParallelCompactData::addr_to_block_idx(const HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
697 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
698 |
assert(addr >= _region_start, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
699 |
assert(addr <= _region_end, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
700 |
return pointer_delta(addr, _region_start) >> Log2BlockSize; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
701 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
702 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
703 |
inline ParallelCompactData::BlockData* |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
704 |
ParallelCompactData::addr_to_block_ptr(const HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
705 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
706 |
return block(addr_to_block_idx(addr)); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
707 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
708 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
709 |
inline HeapWord* |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
710 |
ParallelCompactData::block_to_addr(size_t block) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
711 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
712 |
assert(block < _block_count, "block out of range"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
713 |
return _region_start + (block << Log2BlockSize); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
714 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
715 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
716 |
inline size_t |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
717 |
ParallelCompactData::region_to_block_idx(size_t region) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
718 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
719 |
return region << Log2BlocksPerRegion; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
720 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
721 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
722 |
inline HeapWord* |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
723 |
ParallelCompactData::block_align_down(HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
724 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
725 |
assert(addr >= _region_start, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
726 |
assert(addr < _region_end + RegionSize, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
727 |
return (HeapWord*)(size_t(addr) & BlockAddrMask); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
728 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
729 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
730 |
inline HeapWord* |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
731 |
ParallelCompactData::block_align_up(HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
732 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
733 |
assert(addr >= _region_start, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
734 |
assert(addr <= _region_end, "bad addr"); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
735 |
return block_align_down(addr + BlockSizeOffsetMask); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
736 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
737 |
|
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
738 |
inline bool |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
739 |
ParallelCompactData::is_block_aligned(HeapWord* addr) const |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
740 |
{ |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
741 |
return block_offset(addr) == 0; |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
742 |
} |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
743 |
|
1 | 744 |
// Abstract closure for use with ParMarkBitMap::iterate(), which will invoke the |
745 |
// do_addr() method. |
|
746 |
// |
|
747 |
// The closure is initialized with the number of heap words to process |
|
748 |
// (words_remaining()), and becomes 'full' when it reaches 0. The do_addr() |
|
749 |
// methods in subclasses should update the total as words are processed. Since |
|
750 |
// only one subclass actually uses this mechanism to terminate iteration, the |
|
751 |
// default initial value is > 0. The implementation is here and not in the |
|
752 |
// single subclass that uses it to avoid making is_full() virtual, and thus |
|
753 |
// adding a virtual call per live object. |
|
754 |
||
755 |
class ParMarkBitMapClosure: public StackObj { |
|
756 |
public: |
|
757 |
typedef ParMarkBitMap::idx_t idx_t; |
|
758 |
typedef ParMarkBitMap::IterationStatus IterationStatus; |
|
759 |
||
760 |
public: |
|
761 |
inline ParMarkBitMapClosure(ParMarkBitMap* mbm, ParCompactionManager* cm, |
|
762 |
size_t words = max_uintx); |
|
763 |
||
764 |
inline ParCompactionManager* compaction_manager() const; |
|
765 |
inline ParMarkBitMap* bitmap() const; |
|
766 |
inline size_t words_remaining() const; |
|
767 |
inline bool is_full() const; |
|
768 |
inline HeapWord* source() const; |
|
769 |
||
770 |
inline void set_source(HeapWord* addr); |
|
771 |
||
772 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words) = 0; |
|
773 |
||
774 |
protected: |
|
775 |
inline void decrement_words_remaining(size_t words); |
|
776 |
||
777 |
private: |
|
778 |
ParMarkBitMap* const _bitmap; |
|
779 |
ParCompactionManager* const _compaction_manager; |
|
780 |
DEBUG_ONLY(const size_t _initial_words_remaining;) // Useful in debugger. |
|
781 |
size_t _words_remaining; // Words left to copy. |
|
782 |
||
783 |
protected: |
|
784 |
HeapWord* _source; // Next addr that would be read. |
|
785 |
}; |
|
786 |
||
787 |
inline |
|
788 |
ParMarkBitMapClosure::ParMarkBitMapClosure(ParMarkBitMap* bitmap, |
|
789 |
ParCompactionManager* cm, |
|
790 |
size_t words): |
|
791 |
_bitmap(bitmap), _compaction_manager(cm) |
|
792 |
#ifdef ASSERT |
|
793 |
, _initial_words_remaining(words) |
|
794 |
#endif |
|
795 |
{ |
|
796 |
_words_remaining = words; |
|
797 |
_source = NULL; |
|
798 |
} |
|
799 |
||
800 |
inline ParCompactionManager* ParMarkBitMapClosure::compaction_manager() const { |
|
801 |
return _compaction_manager; |
|
802 |
} |
|
803 |
||
804 |
inline ParMarkBitMap* ParMarkBitMapClosure::bitmap() const { |
|
805 |
return _bitmap; |
|
806 |
} |
|
807 |
||
808 |
inline size_t ParMarkBitMapClosure::words_remaining() const { |
|
809 |
return _words_remaining; |
|
810 |
} |
|
811 |
||
812 |
inline bool ParMarkBitMapClosure::is_full() const { |
|
813 |
return words_remaining() == 0; |
|
814 |
} |
|
815 |
||
816 |
inline HeapWord* ParMarkBitMapClosure::source() const { |
|
817 |
return _source; |
|
818 |
} |
|
819 |
||
820 |
inline void ParMarkBitMapClosure::set_source(HeapWord* addr) { |
|
821 |
_source = addr; |
|
822 |
} |
|
823 |
||
824 |
inline void ParMarkBitMapClosure::decrement_words_remaining(size_t words) { |
|
825 |
assert(_words_remaining >= words, "processed too many words"); |
|
826 |
_words_remaining -= words; |
|
827 |
} |
|
828 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
829 |
// The UseParallelOldGC collector is a stop-the-world garbage collector that |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
830 |
// does parts of the collection using parallel threads. The collection includes |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
831 |
// the tenured generation and the young generation. The permanent generation is |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
832 |
// collected at the same time as the other two generations but the permanent |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
833 |
// generation is collect by a single GC thread. The permanent generation is |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
834 |
// collected serially because of the requirement that during the processing of a |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
835 |
// klass AAA, any objects reference by AAA must already have been processed. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
836 |
// This requirement is enforced by a left (lower address) to right (higher |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
837 |
// address) sliding compaction. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
838 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
839 |
// There are four phases of the collection. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
840 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
841 |
// - marking phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
842 |
// - summary phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
843 |
// - compacting phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
844 |
// - clean up phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
845 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
846 |
// Roughly speaking these phases correspond, respectively, to |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
847 |
// - mark all the live objects |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
848 |
// - calculate the destination of each object at the end of the collection |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
849 |
// - move the objects to their destination |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
850 |
// - update some references and reinitialize some variables |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
851 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
852 |
// These three phases are invoked in PSParallelCompact::invoke_no_policy(). The |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
853 |
// marking phase is implemented in PSParallelCompact::marking_phase() and does a |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
854 |
// complete marking of the heap. The summary phase is implemented in |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
855 |
// PSParallelCompact::summary_phase(). The move and update phase is implemented |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
856 |
// in PSParallelCompact::compact(). |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
857 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
858 |
// A space that is being collected is divided into regions and with each region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
859 |
// is associated an object of type ParallelCompactData. Each region is of a |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
860 |
// fixed size and typically will contain more than 1 object and may have parts |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
861 |
// of objects at the front and back of the region. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
862 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
863 |
// region -----+---------------------+---------- |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
864 |
// objects covered [ AAA )[ BBB )[ CCC )[ DDD ) |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
865 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
866 |
// The marking phase does a complete marking of all live objects in the heap. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
867 |
// The marking also compiles the size of the data for all live objects covered |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
868 |
// by the region. This size includes the part of any live object spanning onto |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
869 |
// the region (part of AAA if it is live) from the front, all live objects |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
870 |
// contained in the region (BBB and/or CCC if they are live), and the part of |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
871 |
// any live objects covered by the region that extends off the region (part of |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
872 |
// DDD if it is live). The marking phase uses multiple GC threads and marking |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
873 |
// is done in a bit array of type ParMarkBitMap. The marking of the bit map is |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
874 |
// done atomically as is the accumulation of the size of the live objects |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
875 |
// covered by a region. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
876 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
877 |
// The summary phase calculates the total live data to the left of each region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
878 |
// XXX. Based on that total and the bottom of the space, it can calculate the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
879 |
// starting location of the live data in XXX. The summary phase calculates for |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
880 |
// each region XXX quantites such as |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
881 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
882 |
// - the amount of live data at the beginning of a region from an object |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
883 |
// entering the region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
884 |
// - the location of the first live data on the region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
885 |
// - a count of the number of regions receiving live data from XXX. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
886 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
887 |
// See ParallelCompactData for precise details. The summary phase also |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
888 |
// calculates the dense prefix for the compaction. The dense prefix is a |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
889 |
// portion at the beginning of the space that is not moved. The objects in the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
890 |
// dense prefix do need to have their object references updated. See method |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
891 |
// summarize_dense_prefix(). |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
892 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
893 |
// The summary phase is done using 1 GC thread. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
894 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
895 |
// The compaction phase moves objects to their new location and updates all |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
896 |
// references in the object. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
897 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
898 |
// A current exception is that objects that cross a region boundary are moved |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
899 |
// but do not have their references updated. References are not updated because |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
900 |
// it cannot easily be determined if the klass pointer KKK for the object AAA |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
901 |
// has been updated. KKK likely resides in a region to the left of the region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
902 |
// containing AAA. These AAA's have there references updated at the end in a |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
903 |
// clean up phase. See the method PSParallelCompact::update_deferred_objects(). |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
904 |
// An alternate strategy is being investigated for this deferral of updating. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
905 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
906 |
// Compaction is done on a region basis. A region that is ready to be filled is |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
907 |
// put on a ready list and GC threads take region off the list and fill them. A |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
908 |
// region is ready to be filled if it empty of live objects. Such a region may |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
909 |
// have been initially empty (only contained dead objects) or may have had all |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
910 |
// its live objects copied out already. A region that compacts into itself is |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
911 |
// also ready for filling. The ready list is initially filled with empty |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
912 |
// regions and regions compacting into themselves. There is always at least 1 |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
913 |
// region that can be put on the ready list. The regions are atomically added |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
914 |
// and removed from the ready list. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
915 |
|
1 | 916 |
class PSParallelCompact : AllStatic { |
917 |
public: |
|
918 |
// Convenient access to type names. |
|
919 |
typedef ParMarkBitMap::idx_t idx_t; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
920 |
typedef ParallelCompactData::RegionData RegionData; |
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
921 |
typedef ParallelCompactData::BlockData BlockData; |
1 | 922 |
|
923 |
typedef enum { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
924 |
old_space_id, eden_space_id, |
1 | 925 |
from_space_id, to_space_id, last_space_id |
926 |
} SpaceId; |
|
927 |
||
928 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
929 |
// Inline closure decls |
1 | 930 |
// |
931 |
class IsAliveClosure: public BoolObjectClosure { |
|
932 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
933 |
virtual bool do_object_b(oop p); |
1 | 934 |
}; |
935 |
||
936 |
class KeepAliveClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
937 |
private: |
1 | 938 |
ParCompactionManager* _compaction_manager; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
939 |
protected: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
940 |
template <class T> inline void do_oop_work(T* p); |
1 | 941 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
942 |
KeepAliveClosure(ParCompactionManager* cm) : _compaction_manager(cm) { } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
943 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
944 |
virtual void do_oop(narrowOop* p); |
1 | 945 |
}; |
946 |
||
947 |
class FollowStackClosure: public VoidClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
948 |
private: |
1 | 949 |
ParCompactionManager* _compaction_manager; |
950 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
951 |
FollowStackClosure(ParCompactionManager* cm) : _compaction_manager(cm) { } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
952 |
virtual void do_void(); |
1 | 953 |
}; |
954 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
955 |
class AdjustPointerClosure: public OopClosure { |
1 | 956 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
957 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
958 |
virtual void do_oop(narrowOop* p); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
959 |
// do not walk from thread stacks to the code cache on this phase |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
960 |
virtual void do_code_blob(CodeBlob* cb) const { } |
1 | 961 |
}; |
962 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
963 |
class AdjustKlassClosure : public KlassClosure { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
964 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
965 |
void do_klass(Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
966 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
967 |
|
1 | 968 |
friend class KeepAliveClosure; |
969 |
friend class FollowStackClosure; |
|
970 |
friend class AdjustPointerClosure; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
971 |
friend class AdjustKlassClosure; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
972 |
friend class FollowKlassClosure; |
13738
d67be49a5beb
7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents:
13728
diff
changeset
|
973 |
friend class InstanceClassLoaderKlass; |
1 | 974 |
friend class RefProcTaskProxy; |
975 |
||
976 |
private: |
|
18025 | 977 |
static STWGCTimer _gc_timer; |
978 |
static ParallelOldTracer _gc_tracer; |
|
1 | 979 |
static elapsedTimer _accumulated_time; |
980 |
static unsigned int _total_invocations; |
|
981 |
static unsigned int _maximum_compaction_gc_num; |
|
982 |
static jlong _time_of_last_gc; // ms |
|
983 |
static CollectorCounters* _counters; |
|
984 |
static ParMarkBitMap _mark_bitmap; |
|
985 |
static ParallelCompactData _summary_data; |
|
986 |
static IsAliveClosure _is_alive_closure; |
|
987 |
static SpaceInfo _space_info[last_space_id]; |
|
988 |
static bool _print_phases; |
|
989 |
static AdjustPointerClosure _adjust_pointer_closure; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
990 |
static AdjustKlassClosure _adjust_klass_closure; |
1 | 991 |
|
992 |
// Reference processing (used in ...follow_contents) |
|
993 |
static ReferenceProcessor* _ref_processor; |
|
994 |
||
995 |
// Updated location of intArrayKlassObj. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
996 |
static Klass* _updated_int_array_klass_obj; |
1 | 997 |
|
998 |
// Values computed at initialization and used by dead_wood_limiter(). |
|
999 |
static double _dwl_mean; |
|
1000 |
static double _dwl_std_dev; |
|
1001 |
static double _dwl_first_term; |
|
1002 |
static double _dwl_adjustment; |
|
1003 |
#ifdef ASSERT |
|
1004 |
static bool _dwl_initialized; |
|
1005 |
#endif // #ifdef ASSERT |
|
1006 |
||
1007 |
private: |
|
1008 |
||
1009 |
static void initialize_space_info(); |
|
1010 |
||
1011 |
// Return true if details about individual phases should be printed. |
|
1012 |
static inline bool print_phases(); |
|
1013 |
||
1014 |
// Clear the marking bitmap and summary data that cover the specified space. |
|
1015 |
static void clear_data_covering_space(SpaceId id); |
|
1016 |
||
1017 |
static void pre_compact(PreGCValues* pre_gc_values); |
|
1018 |
static void post_compact(); |
|
1019 |
||
1020 |
// Mark live objects |
|
1021 |
static void marking_phase(ParCompactionManager* cm, |
|
18025 | 1022 |
bool maximum_heap_compaction, |
1023 |
ParallelOldTracer *gc_tracer); |
|
1 | 1024 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1025 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1026 |
static inline void follow_root(ParCompactionManager* cm, T* p); |
1 | 1027 |
|
1028 |
// Compute the dense prefix for the designated space. This is an experimental |
|
1029 |
// implementation currently not used in production. |
|
1030 |
static HeapWord* compute_dense_prefix_via_density(const SpaceId id, |
|
1031 |
bool maximum_compaction); |
|
1032 |
||
1033 |
// Methods used to compute the dense prefix. |
|
1034 |
||
1035 |
// Compute the value of the normal distribution at x = density. The mean and |
|
1036 |
// standard deviation are values saved by initialize_dead_wood_limiter(). |
|
1037 |
static inline double normal_distribution(double density); |
|
1038 |
||
1039 |
// Initialize the static vars used by dead_wood_limiter(). |
|
1040 |
static void initialize_dead_wood_limiter(); |
|
1041 |
||
1042 |
// Return the percentage of space that can be treated as "dead wood" (i.e., |
|
1043 |
// not reclaimed). |
|
1044 |
static double dead_wood_limiter(double density, size_t min_percent); |
|
1045 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1046 |
// Find the first (left-most) region in the range [beg, end) that has at least |
1 | 1047 |
// dead_words of dead space to the left. The argument beg must be the first |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1048 |
// region in the space that is not completely live. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1049 |
static RegionData* dead_wood_limit_region(const RegionData* beg, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1050 |
const RegionData* end, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1051 |
size_t dead_words); |
1 | 1052 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1053 |
// Return a pointer to the first region in the range [beg, end) that is not |
1 | 1054 |
// completely full. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1055 |
static RegionData* first_dead_space_region(const RegionData* beg, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1056 |
const RegionData* end); |
1 | 1057 |
|
1058 |
// Return a value indicating the benefit or 'yield' if the compacted region |
|
1059 |
// were to start (or equivalently if the dense prefix were to end) at the |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1060 |
// candidate region. Higher values are better. |
1 | 1061 |
// |
1062 |
// The value is based on the amount of space reclaimed vs. the costs of (a) |
|
1063 |
// updating references in the dense prefix plus (b) copying objects and |
|
1064 |
// updating references in the compacted region. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1065 |
static inline double reclaimed_ratio(const RegionData* const candidate, |
1 | 1066 |
HeapWord* const bottom, |
1067 |
HeapWord* const top, |
|
1068 |
HeapWord* const new_top); |
|
1069 |
||
1070 |
// Compute the dense prefix for the designated space. |
|
1071 |
static HeapWord* compute_dense_prefix(const SpaceId id, |
|
1072 |
bool maximum_compaction); |
|
1073 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1074 |
// Return true if dead space crosses onto the specified Region; bit must be |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1075 |
// the bit index corresponding to the first word of the Region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1076 |
static inline bool dead_space_crosses_boundary(const RegionData* region, |
1 | 1077 |
idx_t bit); |
1078 |
||
1079 |
// Summary phase utility routine to fill dead space (if any) at the dense |
|
1080 |
// prefix boundary. Should only be called if the the dense prefix is |
|
1081 |
// non-empty. |
|
1082 |
static void fill_dense_prefix_end(SpaceId id); |
|
1083 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1084 |
// Clear the summary data source_region field for the specified addresses. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1085 |
static void clear_source_region(HeapWord* beg_addr, HeapWord* end_addr); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1086 |
|
1670
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1087 |
#ifndef PRODUCT |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1088 |
// Routines to provoke splitting a young gen space (ParallelOldGCSplitALot). |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1089 |
|
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1090 |
// Fill the region [start, start + words) with live object(s). Only usable |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1091 |
// for the old and permanent generations. |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1092 |
static void fill_with_live_objects(SpaceId id, HeapWord* const start, |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1093 |
size_t words); |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1094 |
// Include the new objects in the summary data. |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1095 |
static void summarize_new_objects(SpaceId id, HeapWord* start); |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1096 |
|
1683
56dd12dd6cb3
6786188: par compact - "SplitALot" stress mode should fill to_space
jcoomes
parents:
1682
diff
changeset
|
1097 |
// Add live objects to a survivor space since it's rare that both survivors |
56dd12dd6cb3
6786188: par compact - "SplitALot" stress mode should fill to_space
jcoomes
parents:
1682
diff
changeset
|
1098 |
// are non-empty. |
56dd12dd6cb3
6786188: par compact - "SplitALot" stress mode should fill to_space
jcoomes
parents:
1682
diff
changeset
|
1099 |
static void provoke_split_fill_survivor(SpaceId id); |
56dd12dd6cb3
6786188: par compact - "SplitALot" stress mode should fill to_space
jcoomes
parents:
1682
diff
changeset
|
1100 |
|
1670
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1101 |
// Add live objects and/or choose the dense prefix to provoke splitting. |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1102 |
static void provoke_split(bool & maximum_compaction); |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1103 |
#endif |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
1104 |
|
1 | 1105 |
static void summarize_spaces_quick(); |
1106 |
static void summarize_space(SpaceId id, bool maximum_compaction); |
|
1107 |
static void summary_phase(ParCompactionManager* cm, bool maximum_compaction); |
|
1108 |
||
1109 |
// Adjust addresses in roots. Does not adjust addresses in heap. |
|
1110 |
static void adjust_roots(); |
|
1111 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
1112 |
DEBUG_ONLY(static void write_block_fill_histogram(outputStream* const out);) |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
1113 |
|
1 | 1114 |
// Move objects to new locations. |
1115 |
static void compact_perm(ParCompactionManager* cm); |
|
1116 |
static void compact(); |
|
1117 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1118 |
// Add available regions to the stack and draining tasks to the task queue. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1119 |
static void enqueue_region_draining_tasks(GCTaskQueue* q, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1120 |
uint parallel_gc_threads); |
1 | 1121 |
|
1122 |
// Add dense prefix update tasks to the task queue. |
|
1123 |
static void enqueue_dense_prefix_tasks(GCTaskQueue* q, |
|
1124 |
uint parallel_gc_threads); |
|
1125 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1126 |
// Add region stealing tasks to the task queue. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1127 |
static void enqueue_region_stealing_tasks( |
1 | 1128 |
GCTaskQueue* q, |
1129 |
ParallelTaskTerminator* terminator_ptr, |
|
1130 |
uint parallel_gc_threads); |
|
1131 |
||
1132 |
// If objects are left in eden after a collection, try to move the boundary |
|
1133 |
// and absorb them into the old gen. Returns true if eden was emptied. |
|
1134 |
static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy, |
|
1135 |
PSYoungGen* young_gen, |
|
1136 |
PSOldGen* old_gen); |
|
1137 |
||
1138 |
// Reset time since last full gc |
|
1139 |
static void reset_millis_since_last_gc(); |
|
1140 |
||
1141 |
public: |
|
1142 |
class MarkAndPushClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1143 |
private: |
1 | 1144 |
ParCompactionManager* _compaction_manager; |
1145 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1146 |
MarkAndPushClosure(ParCompactionManager* cm) : _compaction_manager(cm) { } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1147 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1148 |
virtual void do_oop(narrowOop* p); |
1 | 1149 |
}; |
1150 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1151 |
// The one and only place to start following the classes. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1152 |
// Should only be applied to the ClassLoaderData klasses list. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1153 |
class FollowKlassClosure : public KlassClosure { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1154 |
private: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1155 |
MarkAndPushClosure* _mark_and_push_closure; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1156 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1157 |
FollowKlassClosure(MarkAndPushClosure* mark_and_push_closure) : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1158 |
_mark_and_push_closure(mark_and_push_closure) { } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1159 |
void do_klass(Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1160 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1161 |
|
1 | 1162 |
PSParallelCompact(); |
1163 |
||
1164 |
// Convenient accessor for Universe::heap(). |
|
1165 |
static ParallelScavengeHeap* gc_heap() { |
|
1166 |
return (ParallelScavengeHeap*)Universe::heap(); |
|
1167 |
} |
|
1168 |
||
1169 |
static void invoke(bool maximum_heap_compaction); |
|
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
11178
diff
changeset
|
1170 |
static bool invoke_no_policy(bool maximum_heap_compaction); |
1 | 1171 |
|
1172 |
static void post_initialize(); |
|
1173 |
// Perform initialization for PSParallelCompact that requires |
|
1174 |
// allocations. This should be called during the VM initialization |
|
1175 |
// at a pointer where it would be appropriate to return a JNI_ENOMEM |
|
1176 |
// in the event of a failure. |
|
1177 |
static bool initialize(); |
|
1178 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1179 |
// Closure accessors |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1180 |
static OopClosure* adjust_pointer_closure() { return (OopClosure*)&_adjust_pointer_closure; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1181 |
static KlassClosure* adjust_klass_closure() { return (KlassClosure*)&_adjust_klass_closure; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1182 |
static BoolObjectClosure* is_alive_closure() { return (BoolObjectClosure*)&_is_alive_closure; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1183 |
|
1 | 1184 |
// Public accessors |
1185 |
static elapsedTimer* accumulated_time() { return &_accumulated_time; } |
|
1186 |
static unsigned int total_invocations() { return _total_invocations; } |
|
1187 |
static CollectorCounters* counters() { return _counters; } |
|
1188 |
||
1189 |
// Used to add tasks |
|
1190 |
static GCTaskManager* const gc_task_manager(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1191 |
static Klass* updated_int_array_klass_obj() { |
1 | 1192 |
return _updated_int_array_klass_obj; |
1193 |
} |
|
1194 |
||
1195 |
// Marking support |
|
1196 |
static inline bool mark_obj(oop obj); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1197 |
static inline bool is_marked(oop obj); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1198 |
// Check mark and maybe push on marking stack |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1199 |
template <class T> static inline void mark_and_push(ParCompactionManager* cm, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1200 |
T* p); |
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
16685
diff
changeset
|
1201 |
template <class T> static inline void adjust_pointer(T* p); |
1 | 1202 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1203 |
static void follow_klass(ParCompactionManager* cm, Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1204 |
static void adjust_klass(ParCompactionManager* cm, Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1205 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1206 |
static void follow_class_loader(ParCompactionManager* cm, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1207 |
ClassLoaderData* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1208 |
static void adjust_class_loader(ParCompactionManager* cm, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1209 |
ClassLoaderData* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1210 |
|
1 | 1211 |
// Compaction support. |
1212 |
// Return true if p is in the range [beg_addr, end_addr). |
|
1213 |
static inline bool is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr); |
|
1214 |
static inline bool is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr); |
|
1215 |
||
1216 |
// Convenience wrappers for per-space data kept in _space_info. |
|
1217 |
static inline MutableSpace* space(SpaceId space_id); |
|
1218 |
static inline HeapWord* new_top(SpaceId space_id); |
|
1219 |
static inline HeapWord* dense_prefix(SpaceId space_id); |
|
1220 |
static inline ObjectStartArray* start_array(SpaceId space_id); |
|
1221 |
||
1222 |
// Move and update the live objects in the specified space. |
|
1223 |
static void move_and_update(ParCompactionManager* cm, SpaceId space_id); |
|
1224 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1225 |
// Process the end of the given region range in the dense prefix. |
1 | 1226 |
// This includes saving any object not updated. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1227 |
static void dense_prefix_regions_epilogue(ParCompactionManager* cm, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1228 |
size_t region_start_index, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1229 |
size_t region_end_index, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1230 |
idx_t exiting_object_offset, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1231 |
idx_t region_offset_start, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1232 |
idx_t region_offset_end); |
1 | 1233 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1234 |
// Update a region in the dense prefix. For each live object |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1235 |
// in the region, update it's interior references. For each |
1 | 1236 |
// dead object, fill it with deadwood. Dead space at the end |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1237 |
// of a region range will be filled to the start of the next |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1238 |
// live object regardless of the region_index_end. None of the |
1 | 1239 |
// objects in the dense prefix move and dead space is dead |
1240 |
// (holds only dead objects that don't need any processing), so |
|
1241 |
// dead space can be filled in any order. |
|
1242 |
static void update_and_deadwood_in_dense_prefix(ParCompactionManager* cm, |
|
1243 |
SpaceId space_id, |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1244 |
size_t region_index_start, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1245 |
size_t region_index_end); |
1 | 1246 |
|
1247 |
// Return the address of the count + 1st live word in the range [beg, end). |
|
1248 |
static HeapWord* skip_live_words(HeapWord* beg, HeapWord* end, size_t count); |
|
1249 |
||
1250 |
// Return the address of the word to be copied to dest_addr, which must be |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1251 |
// aligned to a region boundary. |
1 | 1252 |
static HeapWord* first_src_addr(HeapWord* const dest_addr, |
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1253 |
SpaceId src_space_id, |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1254 |
size_t src_region_idx); |
1 | 1255 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1256 |
// Determine the next source region, set closure.source() to the start of the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1257 |
// new region return the region index. Parameter end_addr is the address one |
1 | 1258 |
// beyond the end of source range just processed. If necessary, switch to a |
1259 |
// new source space and set src_space_id (in-out parameter) and src_space_top |
|
1260 |
// (out parameter) accordingly. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1261 |
static size_t next_src_region(MoveAndUpdateClosure& closure, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1262 |
SpaceId& src_space_id, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1263 |
HeapWord*& src_space_top, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1264 |
HeapWord* end_addr); |
1 | 1265 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1266 |
// Decrement the destination count for each non-empty source region in the |
1682
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1267 |
// range [beg_region, region(region_align_up(end_addr))). If the destination |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1268 |
// count for a region goes to 0 and it needs to be filled, enqueue it. |
1 | 1269 |
static void decrement_destination_counts(ParCompactionManager* cm, |
1682
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1270 |
SpaceId src_space_id, |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1271 |
size_t beg_region, |
1 | 1272 |
HeapWord* end_addr); |
1273 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1274 |
// Fill a region, copying objects from one or more source regions. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1275 |
static void fill_region(ParCompactionManager* cm, size_t region_idx); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1276 |
static void fill_and_update_region(ParCompactionManager* cm, size_t region) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1277 |
fill_region(cm, region); |
1 | 1278 |
} |
1279 |
||
17851
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
1280 |
// Fill in the block table for the specified region. |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
1281 |
static void fill_blocks(size_t region_idx); |
04e698940f8a
6725714: par compact - add a table to speed up bitmap searches
jcoomes
parents:
17627
diff
changeset
|
1282 |
|
1 | 1283 |
// Update the deferred objects in the space. |
1284 |
static void update_deferred_objects(ParCompactionManager* cm, SpaceId id); |
|
1285 |
||
1286 |
static ParMarkBitMap* mark_bitmap() { return &_mark_bitmap; } |
|
1287 |
static ParallelCompactData& summary_data() { return _summary_data; } |
|
1288 |
||
1289 |
// Reference Processing |
|
1290 |
static ReferenceProcessor* const ref_processor() { return _ref_processor; } |
|
1291 |
||
18025 | 1292 |
static STWGCTimer* gc_timer() { return &_gc_timer; } |
1293 |
||
1 | 1294 |
// Return the SpaceId for the given address. |
1295 |
static SpaceId space_id(HeapWord* addr); |
|
1296 |
||
1297 |
// Time since last full gc (in milliseconds). |
|
1298 |
static jlong millis_since_last_gc(); |
|
1299 |
||
16685
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
15088
diff
changeset
|
1300 |
static void print_on_error(outputStream* st); |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
15088
diff
changeset
|
1301 |
|
1 | 1302 |
#ifndef PRODUCT |
1303 |
// Debugging support. |
|
1304 |
static const char* space_names[last_space_id]; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1305 |
static void print_region_ranges(); |
1 | 1306 |
static void print_dense_prefix_stats(const char* const algorithm, |
1307 |
const SpaceId id, |
|
1308 |
const bool maximum_compaction, |
|
1309 |
HeapWord* const addr); |
|
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1310 |
static void summary_phase_msg(SpaceId dst_space_id, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1311 |
HeapWord* dst_beg, HeapWord* dst_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1312 |
SpaceId src_space_id, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1313 |
HeapWord* src_beg, HeapWord* src_end); |
1 | 1314 |
#endif // #ifndef PRODUCT |
1315 |
||
1316 |
#ifdef ASSERT |
|
1682
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1317 |
// Sanity check the new location of a word in the heap. |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1318 |
static inline void check_new_location(HeapWord* old_addr, HeapWord* new_addr); |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1319 |
// Verify that all the regions have been emptied. |
1 | 1320 |
static void verify_complete(SpaceId space_id); |
1321 |
#endif // #ifdef ASSERT |
|
1322 |
}; |
|
1323 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1324 |
inline bool PSParallelCompact::mark_obj(oop obj) { |
1 | 1325 |
const int obj_size = obj->size(); |
1326 |
if (mark_bitmap()->mark_obj(obj, obj_size)) { |
|
1327 |
_summary_data.add_obj(obj, obj_size); |
|
1328 |
return true; |
|
1329 |
} else { |
|
1330 |
return false; |
|
1331 |
} |
|
1332 |
} |
|
1333 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1334 |
inline bool PSParallelCompact::is_marked(oop obj) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1335 |
return mark_bitmap()->is_marked(obj); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1336 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1337 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1338 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1339 |
inline void PSParallelCompact::follow_root(ParCompactionManager* cm, T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1340 |
assert(!Universe::heap()->is_in_reserved(p), |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1341 |
"roots shouldn't be things within the heap"); |
15088
8875e774f1a3
8004132: SerialGC: ValidateMarkSweep broken when running GCOld
johnc
parents:
13738
diff
changeset
|
1342 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1343 |
T heap_oop = oopDesc::load_heap_oop(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1344 |
if (!oopDesc::is_null(heap_oop)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1345 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1346 |
if (mark_bitmap()->is_unmarked(obj)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1347 |
if (mark_obj(obj)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1348 |
obj->follow_contents(cm); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1349 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1350 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1351 |
} |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3912
diff
changeset
|
1352 |
cm->follow_marking_stacks(); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1353 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1354 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1355 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1356 |
inline void PSParallelCompact::mark_and_push(ParCompactionManager* cm, T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1357 |
T heap_oop = oopDesc::load_heap_oop(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1358 |
if (!oopDesc::is_null(heap_oop)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1359 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
5918 | 1360 |
if (mark_bitmap()->is_unmarked(obj) && mark_obj(obj)) { |
1361 |
cm->push(obj); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1362 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1363 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1364 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1365 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1366 |
template <class T> |
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
16685
diff
changeset
|
1367 |
inline void PSParallelCompact::adjust_pointer(T* p) { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1368 |
T heap_oop = oopDesc::load_heap_oop(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1369 |
if (!oopDesc::is_null(heap_oop)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1370 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1371 |
oop new_obj = (oop)summary_data().calc_new_pointer(obj); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1372 |
assert(new_obj != NULL, // is forwarding ptr? |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1373 |
"should be forwarded"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1374 |
// Just always do the update unconditionally? |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1375 |
if (new_obj != NULL) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1376 |
assert(Universe::heap()->is_in_reserved(new_obj), |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1377 |
"should be in object space"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1378 |
oopDesc::encode_store_heap_oop_not_null(p, new_obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1379 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1380 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1381 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1382 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1383 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1384 |
inline void PSParallelCompact::KeepAliveClosure::do_oop_work(T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1385 |
mark_and_push(_compaction_manager, p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1386 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1387 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1388 |
inline bool PSParallelCompact::print_phases() { |
1 | 1389 |
return _print_phases; |
1390 |
} |
|
1391 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1392 |
inline double PSParallelCompact::normal_distribution(double density) { |
1 | 1393 |
assert(_dwl_initialized, "uninitialized"); |
1394 |
const double squared_term = (density - _dwl_mean) / _dwl_std_dev; |
|
1395 |
return _dwl_first_term * exp(-0.5 * squared_term * squared_term); |
|
1396 |
} |
|
1397 |
||
1398 |
inline bool |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1399 |
PSParallelCompact::dead_space_crosses_boundary(const RegionData* region, |
1 | 1400 |
idx_t bit) |
1401 |
{ |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1402 |
assert(bit > 0, "cannot call this for the first bit/region"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1403 |
assert(_summary_data.region_to_addr(region) == _mark_bitmap.bit_to_addr(bit), |
1 | 1404 |
"sanity check"); |
1405 |
||
1406 |
// Dead space crosses the boundary if (1) a partial object does not extend |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1407 |
// onto the region, (2) an object does not start at the beginning of the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1408 |
// region, and (3) an object does not end at the end of the prior region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1409 |
return region->partial_obj_size() == 0 && |
1 | 1410 |
!_mark_bitmap.is_obj_beg(bit) && |
1411 |
!_mark_bitmap.is_obj_end(bit - 1); |
|
1412 |
} |
|
1413 |
||
1414 |
inline bool |
|
1415 |
PSParallelCompact::is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr) { |
|
1416 |
return p >= beg_addr && p < end_addr; |
|
1417 |
} |
|
1418 |
||
1419 |
inline bool |
|
1420 |
PSParallelCompact::is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr) { |
|
1421 |
return is_in((HeapWord*)p, beg_addr, end_addr); |
|
1422 |
} |
|
1423 |
||
1424 |
inline MutableSpace* PSParallelCompact::space(SpaceId id) { |
|
1425 |
assert(id < last_space_id, "id out of range"); |
|
1426 |
return _space_info[id].space(); |
|
1427 |
} |
|
1428 |
||
1429 |
inline HeapWord* PSParallelCompact::new_top(SpaceId id) { |
|
1430 |
assert(id < last_space_id, "id out of range"); |
|
1431 |
return _space_info[id].new_top(); |
|
1432 |
} |
|
1433 |
||
1434 |
inline HeapWord* PSParallelCompact::dense_prefix(SpaceId id) { |
|
1435 |
assert(id < last_space_id, "id out of range"); |
|
1436 |
return _space_info[id].dense_prefix(); |
|
1437 |
} |
|
1438 |
||
1439 |
inline ObjectStartArray* PSParallelCompact::start_array(SpaceId id) { |
|
1440 |
assert(id < last_space_id, "id out of range"); |
|
1441 |
return _space_info[id].start_array(); |
|
1442 |
} |
|
1443 |
||
1682
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1444 |
#ifdef ASSERT |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1445 |
inline void |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1446 |
PSParallelCompact::check_new_location(HeapWord* old_addr, HeapWord* new_addr) |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1447 |
{ |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1448 |
assert(old_addr >= new_addr || space_id(old_addr) != space_id(new_addr), |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1449 |
"must move left or to a different space"); |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5076
diff
changeset
|
1450 |
assert(is_object_aligned((intptr_t)old_addr) && is_object_aligned((intptr_t)new_addr), |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5076
diff
changeset
|
1451 |
"checking alignment"); |
1682
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1452 |
} |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1453 |
#endif // ASSERT |
94ad5692b3a7
6784849: par compact - can fail when to_space is non-empty
jcoomes
parents:
1670
diff
changeset
|
1454 |
|
1 | 1455 |
class MoveAndUpdateClosure: public ParMarkBitMapClosure { |
1456 |
public: |
|
1457 |
inline MoveAndUpdateClosure(ParMarkBitMap* bitmap, ParCompactionManager* cm, |
|
1458 |
ObjectStartArray* start_array, |
|
1459 |
HeapWord* destination, size_t words); |
|
1460 |
||
1461 |
// Accessors. |
|
1462 |
HeapWord* destination() const { return _destination; } |
|
1463 |
||
1464 |
// If the object will fit (size <= words_remaining()), copy it to the current |
|
1465 |
// destination, update the interior oops and the start array and return either |
|
1466 |
// full (if the closure is full) or incomplete. If the object will not fit, |
|
1467 |
// return would_overflow. |
|
1468 |
virtual IterationStatus do_addr(HeapWord* addr, size_t size); |
|
1469 |
||
1470 |
// Copy enough words to fill this closure, starting at source(). Interior |
|
1471 |
// oops and the start array are not updated. Return full. |
|
1472 |
IterationStatus copy_until_full(); |
|
1473 |
||
1474 |
// Copy enough words to fill this closure or to the end of an object, |
|
1475 |
// whichever is smaller, starting at source(). Interior oops and the start |
|
1476 |
// array are not updated. |
|
1477 |
void copy_partial_obj(); |
|
1478 |
||
1479 |
protected: |
|
1480 |
// Update variables to indicate that word_count words were processed. |
|
1481 |
inline void update_state(size_t word_count); |
|
1482 |
||
1483 |
protected: |
|
1484 |
ObjectStartArray* const _start_array; |
|
1485 |
HeapWord* _destination; // Next addr to be written. |
|
1486 |
}; |
|
1487 |
||
1488 |
inline |
|
1489 |
MoveAndUpdateClosure::MoveAndUpdateClosure(ParMarkBitMap* bitmap, |
|
1490 |
ParCompactionManager* cm, |
|
1491 |
ObjectStartArray* start_array, |
|
1492 |
HeapWord* destination, |
|
1493 |
size_t words) : |
|
1494 |
ParMarkBitMapClosure(bitmap, cm, words), _start_array(start_array) |
|
1495 |
{ |
|
1496 |
_destination = destination; |
|
1497 |
} |
|
1498 |
||
1499 |
inline void MoveAndUpdateClosure::update_state(size_t words) |
|
1500 |
{ |
|
1501 |
decrement_words_remaining(words); |
|
1502 |
_source += words; |
|
1503 |
_destination += words; |
|
1504 |
} |
|
1505 |
||
1506 |
class UpdateOnlyClosure: public ParMarkBitMapClosure { |
|
1507 |
private: |
|
1508 |
const PSParallelCompact::SpaceId _space_id; |
|
1509 |
ObjectStartArray* const _start_array; |
|
1510 |
||
1511 |
public: |
|
1512 |
UpdateOnlyClosure(ParMarkBitMap* mbm, |
|
1513 |
ParCompactionManager* cm, |
|
1514 |
PSParallelCompact::SpaceId space_id); |
|
1515 |
||
1516 |
// Update the object. |
|
1517 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words); |
|
1518 |
||
1519 |
inline void do_addr(HeapWord* addr); |
|
1520 |
}; |
|
1521 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1522 |
inline void UpdateOnlyClosure::do_addr(HeapWord* addr) |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1523 |
{ |
1 | 1524 |
_start_array->allocate_block(addr); |
1525 |
oop(addr)->update_contents(compaction_manager()); |
|
1526 |
} |
|
1527 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1528 |
class FillClosure: public ParMarkBitMapClosure |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1529 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1530 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1531 |
FillClosure(ParCompactionManager* cm, PSParallelCompact::SpaceId space_id) : |
1 | 1532 |
ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm), |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1533 |
_start_array(PSParallelCompact::start_array(space_id)) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1534 |
{ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11757
diff
changeset
|
1535 |
assert(space_id == PSParallelCompact::old_space_id, |
1 | 1536 |
"cannot use FillClosure in the young gen"); |
1537 |
} |
|
1538 |
||
1539 |
virtual IterationStatus do_addr(HeapWord* addr, size_t size) { |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1540 |
CollectedHeap::fill_with_objects(addr, size); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1541 |
HeapWord* const end = addr + size; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1542 |
do { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1543 |
_start_array->allocate_block(addr); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1544 |
addr += oop(addr)->size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1545 |
} while (addr < end); |
1 | 1546 |
return ParMarkBitMap::incomplete; |
1547 |
} |
|
1548 |
||
1549 |
private: |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1550 |
ObjectStartArray* const _start_array; |
1 | 1551 |
}; |
7397 | 1552 |
|
1553 |
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPARALLELCOMPACT_HPP |