author | jcoomes |
Thu, 11 Dec 2008 12:05:21 -0800 | |
changeset 1670 | 0deb85ea62d5 |
parent 1669 | c921639400dd |
child 1682 | 94ad5692b3a7 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
670 | 2 |
* Copyright 2005-2008 Sun Microsystems, Inc. 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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
class ParallelScavengeHeap; |
|
26 |
class PSAdaptiveSizePolicy; |
|
27 |
class PSYoungGen; |
|
28 |
class PSOldGen; |
|
29 |
class PSPermGen; |
|
30 |
class ParCompactionManager; |
|
31 |
class ParallelTaskTerminator; |
|
32 |
class PSParallelCompact; |
|
33 |
class GCTaskManager; |
|
34 |
class GCTaskQueue; |
|
35 |
class PreGCValues; |
|
36 |
class MoveAndUpdateClosure; |
|
37 |
class RefProcTaskExecutor; |
|
38 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
39 |
// 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
|
40 |
// 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
|
41 |
// 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
|
42 |
// 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
|
43 |
// 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
|
44 |
// 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
|
45 |
// 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
|
46 |
// 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
|
47 |
// 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
|
48 |
// region, splitting is necessary for predictable behavior. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
49 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
50 |
// 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
|
51 |
// 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
|
52 |
// 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
|
53 |
// 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
|
54 |
// 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
|
55 |
// different destination space (distinct from dest_space_1). |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
56 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
57 |
// 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
|
58 |
// 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
|
59 |
// 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
|
60 |
// 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
|
61 |
// 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
|
62 |
// 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
|
63 |
// 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
|
64 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
65 |
// 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
|
66 |
// 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
|
67 |
// 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
|
68 |
// 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
|
69 |
// PSParallelCompact::first_src_addr()). |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
70 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
71 |
// Notes: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
72 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
73 |
// 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
|
74 |
// object does not need any extra bookkeeping. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
75 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
76 |
// 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
|
77 |
// constant. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
78 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
79 |
// 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
|
80 |
// 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
|
81 |
// 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
|
82 |
// 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
|
83 |
// large object caused the overflow. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
84 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
85 |
// Future work: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
86 |
// |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
87 |
// 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
|
88 |
// 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
|
89 |
// 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
|
90 |
// 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
|
91 |
// 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
|
92 |
// 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
|
93 |
// 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
|
94 |
// 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
|
95 |
// 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
|
96 |
// doable, if a bit tricky. |
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 |
// 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
|
99 |
// 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
|
100 |
// destination region. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
101 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
102 |
class SplitInfo |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
103 |
{ |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
104 |
public: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
105 |
// 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
|
106 |
// 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
|
107 |
// never split, so 0 is the 'invalid' value. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
108 |
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
|
109 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
110 |
// 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
|
111 |
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
|
112 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
113 |
// 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
|
114 |
// region and the destination of the partial object. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
115 |
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
|
116 |
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
|
117 |
HeapWord* destination() const { return _destination; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
118 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
119 |
// 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
|
120 |
// (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
|
121 |
// remainder of the source region. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
122 |
unsigned int destination_count() const { return _destination_count; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
123 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
124 |
// 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
|
125 |
// 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
|
126 |
// otherwise this is NULL. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
127 |
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
|
128 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
129 |
// 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
|
130 |
// 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
|
131 |
// object; otherwise this is NULL. |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
132 |
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
|
133 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
134 |
// 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
|
135 |
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
|
136 |
HeapWord* destination); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
137 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
138 |
void clear(); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
139 |
|
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
140 |
DEBUG_ONLY(void verify_clear();) |
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 |
private: |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
143 |
size_t _src_region_idx; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
144 |
size_t _partial_obj_size; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
145 |
HeapWord* _destination; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
146 |
unsigned int _destination_count; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
147 |
HeapWord* _dest_region_addr; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
148 |
HeapWord* _first_src_addr; |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
149 |
}; |
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 |
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
|
152 |
{ |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
153 |
return _src_region_idx == region_idx && is_valid(); |
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 |
|
1 | 156 |
class SpaceInfo |
157 |
{ |
|
158 |
public: |
|
159 |
MutableSpace* space() const { return _space; } |
|
160 |
||
161 |
// Where the free space will start after the collection. Valid only after the |
|
162 |
// summary phase completes. |
|
163 |
HeapWord* new_top() const { return _new_top; } |
|
164 |
||
165 |
// Allows new_top to be set. |
|
166 |
HeapWord** new_top_addr() { return &_new_top; } |
|
167 |
||
168 |
// Where the smallest allowable dense prefix ends (used only for perm gen). |
|
169 |
HeapWord* min_dense_prefix() const { return _min_dense_prefix; } |
|
170 |
||
171 |
// Where the dense prefix ends, or the compacted region begins. |
|
172 |
HeapWord* dense_prefix() const { return _dense_prefix; } |
|
173 |
||
174 |
// The start array for the (generation containing the) space, or NULL if there |
|
175 |
// is no start array. |
|
176 |
ObjectStartArray* start_array() const { return _start_array; } |
|
177 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
178 |
SplitInfo& split_info() { return _split_info; } |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
179 |
|
1 | 180 |
void set_space(MutableSpace* s) { _space = s; } |
181 |
void set_new_top(HeapWord* addr) { _new_top = addr; } |
|
182 |
void set_min_dense_prefix(HeapWord* addr) { _min_dense_prefix = addr; } |
|
183 |
void set_dense_prefix(HeapWord* addr) { _dense_prefix = addr; } |
|
184 |
void set_start_array(ObjectStartArray* s) { _start_array = s; } |
|
185 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
186 |
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
|
187 |
|
1 | 188 |
private: |
189 |
MutableSpace* _space; |
|
190 |
HeapWord* _new_top; |
|
191 |
HeapWord* _min_dense_prefix; |
|
192 |
HeapWord* _dense_prefix; |
|
193 |
ObjectStartArray* _start_array; |
|
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
194 |
SplitInfo _split_info; |
1 | 195 |
}; |
196 |
||
197 |
class ParallelCompactData |
|
198 |
{ |
|
199 |
public: |
|
200 |
// Sizes are in HeapWords, unless indicated otherwise. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
201 |
static const size_t Log2RegionSize; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
202 |
static const size_t RegionSize; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
203 |
static const size_t RegionSizeBytes; |
1 | 204 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
205 |
// 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
|
206 |
static const size_t RegionSizeOffsetMask; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
207 |
// 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
|
208 |
static const size_t RegionAddrOffsetMask; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
209 |
// 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
|
210 |
static const size_t RegionAddrMask; |
1 | 211 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
212 |
class RegionData |
1 | 213 |
{ |
214 |
public: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
215 |
// Destination address of the region. |
1 | 216 |
HeapWord* destination() const { return _destination; } |
217 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
218 |
// The first region containing data destined for this region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
219 |
size_t source_region() const { return _source_region; } |
1 | 220 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
221 |
// 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
|
222 |
// region that could not be updated during the main (parallel) compaction |
1 | 223 |
// 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
|
224 |
// extends onto a source region. However, the two uses do not overlap in |
1 | 225 |
// time, so the same field is used to save space. |
226 |
HeapWord* deferred_obj_addr() const { return _partial_obj_addr; } |
|
227 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
228 |
// The starting address of the partial object extending onto the region. |
1 | 229 |
HeapWord* partial_obj_addr() const { return _partial_obj_addr; } |
230 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
231 |
// Size of the partial object extending onto the region (words). |
1 | 232 |
size_t partial_obj_size() const { return _partial_obj_size; } |
233 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
234 |
// 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
|
235 |
// 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
|
236 |
// 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
|
237 |
// onto the next region (if any). |
1 | 238 |
size_t live_obj_size() const { return _dc_and_los & los_mask; } |
239 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
240 |
// Total live data that lies within the region (words). |
1 | 241 |
size_t data_size() const { return partial_obj_size() + live_obj_size(); } |
242 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
243 |
// 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
|
244 |
// this region will be copied. At the end of the summary phase, the valid |
1 | 245 |
// values of destination_count are |
246 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
247 |
// 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
|
248 |
// 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
|
249 |
// 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
|
250 |
// 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
|
251 |
// 2 - data from the region will be copied to 2 other regions. |
1 | 252 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
253 |
// During compaction as regions are emptied, the destination_count is |
1 | 254 |
// decremented (atomically) and when it reaches 0, it can be claimed and |
255 |
// then filled. |
|
256 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
257 |
// A region is claimed for processing by atomically changing the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
258 |
// destination_count to the claimed value (dc_claimed). After a region has |
1 | 259 |
// been filled, the destination_count should be set to the completed value |
260 |
// (dc_completed). |
|
261 |
inline uint destination_count() const; |
|
262 |
inline uint destination_count_raw() const; |
|
263 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
264 |
// The location of the java heap data that corresponds to this region. |
1 | 265 |
inline HeapWord* data_location() const; |
266 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
267 |
// The highest address referenced by objects in this region. |
1 | 268 |
inline HeapWord* highest_ref() const; |
269 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
270 |
// Whether this region is available to be claimed, has been claimed, or has |
1 | 271 |
// been completed. |
272 |
// |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
273 |
// Minor subtlety: claimed() returns true if the region is marked |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
274 |
// completed(), which is desirable since a region must be claimed before it |
1 | 275 |
// can be completed. |
276 |
bool available() const { return _dc_and_los < dc_one; } |
|
277 |
bool claimed() const { return _dc_and_los >= dc_claimed; } |
|
278 |
bool completed() const { return _dc_and_los >= dc_completed; } |
|
279 |
||
280 |
// These are not atomic. |
|
281 |
void set_destination(HeapWord* addr) { _destination = addr; } |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
282 |
void set_source_region(size_t region) { _source_region = region; } |
1 | 283 |
void set_deferred_obj_addr(HeapWord* addr) { _partial_obj_addr = addr; } |
284 |
void set_partial_obj_addr(HeapWord* addr) { _partial_obj_addr = addr; } |
|
285 |
void set_partial_obj_size(size_t words) { |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
286 |
_partial_obj_size = (region_sz_t) words; |
1 | 287 |
} |
288 |
||
289 |
inline void set_destination_count(uint count); |
|
290 |
inline void set_live_obj_size(size_t words); |
|
291 |
inline void set_data_location(HeapWord* addr); |
|
292 |
inline void set_completed(); |
|
293 |
inline bool claim_unsafe(); |
|
294 |
||
295 |
// These are atomic. |
|
296 |
inline void add_live_obj(size_t words); |
|
297 |
inline void set_highest_ref(HeapWord* addr); |
|
298 |
inline void decrement_destination_count(); |
|
299 |
inline bool claim(); |
|
300 |
||
301 |
private: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
302 |
// The type used to represent object sizes within a region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
303 |
typedef uint region_sz_t; |
1 | 304 |
|
305 |
// Constants for manipulating the _dc_and_los field, which holds both the |
|
306 |
// destination count and live obj size. The live obj size lives at the |
|
307 |
// 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
|
308 |
static const region_sz_t dc_shift; // Shift amount. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
309 |
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
|
310 |
static const region_sz_t dc_one; // 1, shifted appropriately. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
311 |
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
|
312 |
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
|
313 |
static const region_sz_t los_mask; // Mask for live obj size. |
1 | 314 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
315 |
HeapWord* _destination; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
316 |
size_t _source_region; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
317 |
HeapWord* _partial_obj_addr; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
318 |
region_sz_t _partial_obj_size; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
319 |
region_sz_t volatile _dc_and_los; |
1 | 320 |
#ifdef ASSERT |
321 |
// These enable optimizations that are only partially implemented. Use |
|
322 |
// debug builds to prevent the code fragments from breaking. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
323 |
HeapWord* _data_location; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
324 |
HeapWord* _highest_ref; |
1 | 325 |
#endif // #ifdef ASSERT |
326 |
||
327 |
#ifdef ASSERT |
|
328 |
public: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
329 |
uint _pushed; // 0 until region is pushed onto a worker's stack |
1 | 330 |
private: |
331 |
#endif |
|
332 |
}; |
|
333 |
||
334 |
public: |
|
335 |
ParallelCompactData(); |
|
336 |
bool initialize(MemRegion covered_region); |
|
337 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
338 |
size_t region_count() const { return _region_count; } |
1 | 339 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
340 |
// Convert region indices to/from RegionData pointers. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
341 |
inline RegionData* region(size_t region_idx) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
342 |
inline size_t region(const RegionData* const region_ptr) const; |
1 | 343 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
344 |
// Returns true if the given address is contained within the region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
345 |
bool region_contains(size_t region_index, HeapWord* addr); |
1 | 346 |
|
347 |
void add_obj(HeapWord* addr, size_t len); |
|
348 |
void add_obj(oop p, size_t len) { add_obj((HeapWord*)p, len); } |
|
349 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
350 |
// 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
|
351 |
// 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
|
352 |
// must be region-aligned; end need not be. |
1 | 353 |
void summarize_dense_prefix(HeapWord* beg, HeapWord* end); |
354 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
355 |
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
|
356 |
HeapWord* destination, HeapWord* target_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
357 |
HeapWord** target_next); |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
358 |
bool summarize(SplitInfo& split_info, |
1 | 359 |
HeapWord* source_beg, HeapWord* source_end, |
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
360 |
HeapWord** source_next, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
361 |
HeapWord* target_beg, HeapWord* target_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
362 |
HeapWord** target_next); |
1 | 363 |
|
364 |
void clear(); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
365 |
void clear_range(size_t beg_region, size_t end_region); |
1 | 366 |
void clear_range(HeapWord* beg, HeapWord* end) { |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
367 |
clear_range(addr_to_region_idx(beg), addr_to_region_idx(end)); |
1 | 368 |
} |
369 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
370 |
// Return the number of words between addr and the start of the region |
1 | 371 |
// containing addr. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
372 |
inline size_t region_offset(const HeapWord* addr) const; |
1 | 373 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
374 |
// Convert addresses to/from a region index or region pointer. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
375 |
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
|
376 |
inline RegionData* addr_to_region_ptr(const HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
377 |
inline HeapWord* region_to_addr(size_t region) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
378 |
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
|
379 |
inline HeapWord* region_to_addr(const RegionData* region) const; |
1 | 380 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
381 |
inline HeapWord* region_align_down(HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
382 |
inline HeapWord* region_align_up(HeapWord* addr) const; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
383 |
inline bool is_region_aligned(HeapWord* addr) const; |
1 | 384 |
|
385 |
// 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
|
386 |
HeapWord* partial_obj_end(size_t region_idx) const; |
1 | 387 |
|
388 |
// Return the new location of the object p after the |
|
389 |
// the compaction. |
|
390 |
HeapWord* calc_new_pointer(HeapWord* addr); |
|
391 |
||
392 |
HeapWord* calc_new_pointer(oop p) { |
|
393 |
return calc_new_pointer((HeapWord*) p); |
|
394 |
} |
|
395 |
||
396 |
// Return the updated address for the given klass |
|
397 |
klassOop calc_new_klass(klassOop); |
|
398 |
||
399 |
#ifdef ASSERT |
|
400 |
void verify_clear(const PSVirtualSpace* vspace); |
|
401 |
void verify_clear(); |
|
402 |
#endif // #ifdef ASSERT |
|
403 |
||
404 |
private: |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
405 |
bool initialize_region_data(size_t region_size); |
1 | 406 |
PSVirtualSpace* create_vspace(size_t count, size_t element_size); |
407 |
||
408 |
private: |
|
409 |
HeapWord* _region_start; |
|
410 |
#ifdef ASSERT |
|
411 |
HeapWord* _region_end; |
|
412 |
#endif // #ifdef ASSERT |
|
413 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
414 |
PSVirtualSpace* _region_vspace; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
415 |
RegionData* _region_data; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
416 |
size_t _region_count; |
1 | 417 |
}; |
418 |
||
419 |
inline uint |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
420 |
ParallelCompactData::RegionData::destination_count_raw() const |
1 | 421 |
{ |
422 |
return _dc_and_los & dc_mask; |
|
423 |
} |
|
424 |
||
425 |
inline uint |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
426 |
ParallelCompactData::RegionData::destination_count() const |
1 | 427 |
{ |
428 |
return destination_count_raw() >> dc_shift; |
|
429 |
} |
|
430 |
||
431 |
inline void |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
432 |
ParallelCompactData::RegionData::set_destination_count(uint count) |
1 | 433 |
{ |
434 |
assert(count <= (dc_completed >> dc_shift), "count too large"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
435 |
const region_sz_t live_sz = (region_sz_t) live_obj_size(); |
1 | 436 |
_dc_and_los = (count << dc_shift) | live_sz; |
437 |
} |
|
438 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
439 |
inline void ParallelCompactData::RegionData::set_live_obj_size(size_t words) |
1 | 440 |
{ |
441 |
assert(words <= los_mask, "would overflow"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
442 |
_dc_and_los = destination_count_raw() | (region_sz_t)words; |
1 | 443 |
} |
444 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
445 |
inline void ParallelCompactData::RegionData::decrement_destination_count() |
1 | 446 |
{ |
447 |
assert(_dc_and_los < dc_claimed, "already claimed"); |
|
448 |
assert(_dc_and_los >= dc_one, "count would go negative"); |
|
449 |
Atomic::add((int)dc_mask, (volatile int*)&_dc_and_los); |
|
450 |
} |
|
451 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
452 |
inline HeapWord* ParallelCompactData::RegionData::data_location() const |
1 | 453 |
{ |
454 |
DEBUG_ONLY(return _data_location;) |
|
455 |
NOT_DEBUG(return NULL;) |
|
456 |
} |
|
457 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
458 |
inline HeapWord* ParallelCompactData::RegionData::highest_ref() const |
1 | 459 |
{ |
460 |
DEBUG_ONLY(return _highest_ref;) |
|
461 |
NOT_DEBUG(return NULL;) |
|
462 |
} |
|
463 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
464 |
inline void ParallelCompactData::RegionData::set_data_location(HeapWord* addr) |
1 | 465 |
{ |
466 |
DEBUG_ONLY(_data_location = addr;) |
|
467 |
} |
|
468 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
469 |
inline void ParallelCompactData::RegionData::set_completed() |
1 | 470 |
{ |
471 |
assert(claimed(), "must be claimed first"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
472 |
_dc_and_los = dc_completed | (region_sz_t) live_obj_size(); |
1 | 473 |
} |
474 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
475 |
// MT-unsafe claiming of a region. Should only be used during single threaded |
1 | 476 |
// execution. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
477 |
inline bool ParallelCompactData::RegionData::claim_unsafe() |
1 | 478 |
{ |
479 |
if (available()) { |
|
480 |
_dc_and_los |= dc_claimed; |
|
481 |
return true; |
|
482 |
} |
|
483 |
return false; |
|
484 |
} |
|
485 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
486 |
inline void ParallelCompactData::RegionData::add_live_obj(size_t words) |
1 | 487 |
{ |
488 |
assert(words <= (size_t)los_mask - live_obj_size(), "overflow"); |
|
489 |
Atomic::add((int) words, (volatile int*) &_dc_and_los); |
|
490 |
} |
|
491 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
492 |
inline void ParallelCompactData::RegionData::set_highest_ref(HeapWord* addr) |
1 | 493 |
{ |
494 |
#ifdef ASSERT |
|
495 |
HeapWord* tmp = _highest_ref; |
|
496 |
while (addr > tmp) { |
|
497 |
tmp = (HeapWord*)Atomic::cmpxchg_ptr(addr, &_highest_ref, tmp); |
|
498 |
} |
|
499 |
#endif // #ifdef ASSERT |
|
500 |
} |
|
501 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
502 |
inline bool ParallelCompactData::RegionData::claim() |
1 | 503 |
{ |
504 |
const int los = (int) live_obj_size(); |
|
505 |
const int old = Atomic::cmpxchg(dc_claimed | los, |
|
506 |
(volatile int*) &_dc_and_los, los); |
|
507 |
return old == los; |
|
508 |
} |
|
509 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
510 |
inline ParallelCompactData::RegionData* |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
511 |
ParallelCompactData::region(size_t region_idx) const |
1 | 512 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
513 |
assert(region_idx <= region_count(), "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
514 |
return _region_data + region_idx; |
1 | 515 |
} |
516 |
||
517 |
inline size_t |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
518 |
ParallelCompactData::region(const RegionData* const region_ptr) const |
1 | 519 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
520 |
assert(region_ptr >= _region_data, "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
521 |
assert(region_ptr <= _region_data + region_count(), "bad arg"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
522 |
return pointer_delta(region_ptr, _region_data, sizeof(RegionData)); |
1 | 523 |
} |
524 |
||
525 |
inline size_t |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
526 |
ParallelCompactData::region_offset(const HeapWord* addr) const |
1 | 527 |
{ |
528 |
assert(addr >= _region_start, "bad addr"); |
|
529 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
530 |
return (size_t(addr) & RegionAddrOffsetMask) >> LogHeapWordSize; |
1 | 531 |
} |
532 |
||
533 |
inline size_t |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
534 |
ParallelCompactData::addr_to_region_idx(const HeapWord* addr) const |
1 | 535 |
{ |
536 |
assert(addr >= _region_start, "bad addr"); |
|
537 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
538 |
return pointer_delta(addr, _region_start) >> Log2RegionSize; |
1 | 539 |
} |
540 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
541 |
inline ParallelCompactData::RegionData* |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
542 |
ParallelCompactData::addr_to_region_ptr(const HeapWord* addr) const |
1 | 543 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
544 |
return region(addr_to_region_idx(addr)); |
1 | 545 |
} |
546 |
||
547 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
548 |
ParallelCompactData::region_to_addr(size_t region) const |
1 | 549 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
550 |
assert(region <= _region_count, "region out of range"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
551 |
return _region_start + (region << Log2RegionSize); |
1 | 552 |
} |
553 |
||
554 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
555 |
ParallelCompactData::region_to_addr(const RegionData* region) const |
1 | 556 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
557 |
return region_to_addr(pointer_delta(region, _region_data, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
558 |
sizeof(RegionData))); |
1 | 559 |
} |
560 |
||
561 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
562 |
ParallelCompactData::region_to_addr(size_t region, size_t offset) const |
1 | 563 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
564 |
assert(region <= _region_count, "region out of range"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
565 |
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
|
566 |
return region_to_addr(region) + offset; |
1 | 567 |
} |
568 |
||
569 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
570 |
ParallelCompactData::region_align_down(HeapWord* addr) const |
1 | 571 |
{ |
572 |
assert(addr >= _region_start, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
573 |
assert(addr < _region_end + RegionSize, "bad addr"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
574 |
return (HeapWord*)(size_t(addr) & RegionAddrMask); |
1 | 575 |
} |
576 |
||
577 |
inline HeapWord* |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
578 |
ParallelCompactData::region_align_up(HeapWord* addr) const |
1 | 579 |
{ |
580 |
assert(addr >= _region_start, "bad addr"); |
|
581 |
assert(addr <= _region_end, "bad addr"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
582 |
return region_align_down(addr + RegionSizeOffsetMask); |
1 | 583 |
} |
584 |
||
585 |
inline bool |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
586 |
ParallelCompactData::is_region_aligned(HeapWord* addr) const |
1 | 587 |
{ |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
588 |
return region_offset(addr) == 0; |
1 | 589 |
} |
590 |
||
591 |
// Abstract closure for use with ParMarkBitMap::iterate(), which will invoke the |
|
592 |
// do_addr() method. |
|
593 |
// |
|
594 |
// The closure is initialized with the number of heap words to process |
|
595 |
// (words_remaining()), and becomes 'full' when it reaches 0. The do_addr() |
|
596 |
// methods in subclasses should update the total as words are processed. Since |
|
597 |
// only one subclass actually uses this mechanism to terminate iteration, the |
|
598 |
// default initial value is > 0. The implementation is here and not in the |
|
599 |
// single subclass that uses it to avoid making is_full() virtual, and thus |
|
600 |
// adding a virtual call per live object. |
|
601 |
||
602 |
class ParMarkBitMapClosure: public StackObj { |
|
603 |
public: |
|
604 |
typedef ParMarkBitMap::idx_t idx_t; |
|
605 |
typedef ParMarkBitMap::IterationStatus IterationStatus; |
|
606 |
||
607 |
public: |
|
608 |
inline ParMarkBitMapClosure(ParMarkBitMap* mbm, ParCompactionManager* cm, |
|
609 |
size_t words = max_uintx); |
|
610 |
||
611 |
inline ParCompactionManager* compaction_manager() const; |
|
612 |
inline ParMarkBitMap* bitmap() const; |
|
613 |
inline size_t words_remaining() const; |
|
614 |
inline bool is_full() const; |
|
615 |
inline HeapWord* source() const; |
|
616 |
||
617 |
inline void set_source(HeapWord* addr); |
|
618 |
||
619 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words) = 0; |
|
620 |
||
621 |
protected: |
|
622 |
inline void decrement_words_remaining(size_t words); |
|
623 |
||
624 |
private: |
|
625 |
ParMarkBitMap* const _bitmap; |
|
626 |
ParCompactionManager* const _compaction_manager; |
|
627 |
DEBUG_ONLY(const size_t _initial_words_remaining;) // Useful in debugger. |
|
628 |
size_t _words_remaining; // Words left to copy. |
|
629 |
||
630 |
protected: |
|
631 |
HeapWord* _source; // Next addr that would be read. |
|
632 |
}; |
|
633 |
||
634 |
inline |
|
635 |
ParMarkBitMapClosure::ParMarkBitMapClosure(ParMarkBitMap* bitmap, |
|
636 |
ParCompactionManager* cm, |
|
637 |
size_t words): |
|
638 |
_bitmap(bitmap), _compaction_manager(cm) |
|
639 |
#ifdef ASSERT |
|
640 |
, _initial_words_remaining(words) |
|
641 |
#endif |
|
642 |
{ |
|
643 |
_words_remaining = words; |
|
644 |
_source = NULL; |
|
645 |
} |
|
646 |
||
647 |
inline ParCompactionManager* ParMarkBitMapClosure::compaction_manager() const { |
|
648 |
return _compaction_manager; |
|
649 |
} |
|
650 |
||
651 |
inline ParMarkBitMap* ParMarkBitMapClosure::bitmap() const { |
|
652 |
return _bitmap; |
|
653 |
} |
|
654 |
||
655 |
inline size_t ParMarkBitMapClosure::words_remaining() const { |
|
656 |
return _words_remaining; |
|
657 |
} |
|
658 |
||
659 |
inline bool ParMarkBitMapClosure::is_full() const { |
|
660 |
return words_remaining() == 0; |
|
661 |
} |
|
662 |
||
663 |
inline HeapWord* ParMarkBitMapClosure::source() const { |
|
664 |
return _source; |
|
665 |
} |
|
666 |
||
667 |
inline void ParMarkBitMapClosure::set_source(HeapWord* addr) { |
|
668 |
_source = addr; |
|
669 |
} |
|
670 |
||
671 |
inline void ParMarkBitMapClosure::decrement_words_remaining(size_t words) { |
|
672 |
assert(_words_remaining >= words, "processed too many words"); |
|
673 |
_words_remaining -= words; |
|
674 |
} |
|
675 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
676 |
// 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
|
677 |
// 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
|
678 |
// 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
|
679 |
// 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
|
680 |
// 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
|
681 |
// 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
|
682 |
// 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
|
683 |
// 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
|
684 |
// address) sliding compaction. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
685 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
686 |
// 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
|
687 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
688 |
// - marking phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
689 |
// - summary phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
690 |
// - compacting phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
691 |
// - clean up phase |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
692 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
693 |
// 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
|
694 |
// - mark all the live objects |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
695 |
// - 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
|
696 |
// - 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
|
697 |
// - 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
|
698 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
699 |
// 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
|
700 |
// 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
|
701 |
// 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
|
702 |
// PSParallelCompact::summary_phase(). The move and update phase is implemented |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
703 |
// in PSParallelCompact::compact(). |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
704 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
705 |
// 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
|
706 |
// 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
|
707 |
// 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
|
708 |
// 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
|
709 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
710 |
// region -----+---------------------+---------- |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
711 |
// 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
|
712 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
713 |
// 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
|
714 |
// 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
|
715 |
// 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
|
716 |
// 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
|
717 |
// 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
|
718 |
// 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
|
719 |
// 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
|
720 |
// 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
|
721 |
// 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
|
722 |
// covered by a region. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
723 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
724 |
// 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
|
725 |
// 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
|
726 |
// 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
|
727 |
// 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
|
728 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
729 |
// - 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
|
730 |
// entering the region. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
731 |
// - the location of the first live data on the region |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
732 |
// - 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
|
733 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
734 |
// See ParallelCompactData for precise details. The summary phase also |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
735 |
// 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
|
736 |
// 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
|
737 |
// 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
|
738 |
// summarize_dense_prefix(). |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
739 |
// |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
740 |
// 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
|
741 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
742 |
// 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
|
743 |
// references in the object. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
744 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
745 |
// 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
|
746 |
// 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
|
747 |
// 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
|
748 |
// 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
|
749 |
// 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
|
750 |
// clean up phase. See the method PSParallelCompact::update_deferred_objects(). |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
751 |
// 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
|
752 |
// |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
753 |
// 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
|
754 |
// 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
|
755 |
// 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
|
756 |
// 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
|
757 |
// 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
|
758 |
// 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
|
759 |
// 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
|
760 |
// 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
|
761 |
// and removed from the ready list. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
762 |
|
1 | 763 |
class PSParallelCompact : AllStatic { |
764 |
public: |
|
765 |
// Convenient access to type names. |
|
766 |
typedef ParMarkBitMap::idx_t idx_t; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
767 |
typedef ParallelCompactData::RegionData RegionData; |
1 | 768 |
|
769 |
typedef enum { |
|
770 |
perm_space_id, old_space_id, eden_space_id, |
|
771 |
from_space_id, to_space_id, last_space_id |
|
772 |
} SpaceId; |
|
773 |
||
774 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
775 |
// Inline closure decls |
1 | 776 |
// |
777 |
class IsAliveClosure: public BoolObjectClosure { |
|
778 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
779 |
virtual void do_object(oop p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
780 |
virtual bool do_object_b(oop p); |
1 | 781 |
}; |
782 |
||
783 |
class KeepAliveClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
784 |
private: |
1 | 785 |
ParCompactionManager* _compaction_manager; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
786 |
protected: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
787 |
template <class T> inline void do_oop_work(T* p); |
1 | 788 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
789 |
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
|
790 |
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
|
791 |
virtual void do_oop(narrowOop* p); |
1 | 792 |
}; |
793 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
794 |
// Current unused |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
795 |
class FollowRootClosure: public OopsInGenClosure { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
796 |
private: |
1 | 797 |
ParCompactionManager* _compaction_manager; |
798 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
799 |
FollowRootClosure(ParCompactionManager* cm) : _compaction_manager(cm) { } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
800 |
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
|
801 |
virtual void do_oop(narrowOop* p); |
1 | 802 |
virtual const bool do_nmethods() const { return true; } |
803 |
}; |
|
804 |
||
805 |
class FollowStackClosure: public VoidClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
806 |
private: |
1 | 807 |
ParCompactionManager* _compaction_manager; |
808 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
809 |
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
|
810 |
virtual void do_void(); |
1 | 811 |
}; |
812 |
||
813 |
class AdjustPointerClosure: public OopsInGenClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
814 |
private: |
1 | 815 |
bool _is_root; |
816 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
817 |
AdjustPointerClosure(bool is_root) : _is_root(is_root) { } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
818 |
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
|
819 |
virtual void do_oop(narrowOop* p); |
1 | 820 |
}; |
821 |
||
822 |
// Closure for verifying update of pointers. Does not |
|
823 |
// have any side effects. |
|
824 |
class VerifyUpdateClosure: public ParMarkBitMapClosure { |
|
825 |
const MutableSpace* _space; // Is this ever used? |
|
826 |
||
827 |
public: |
|
828 |
VerifyUpdateClosure(ParCompactionManager* cm, const MutableSpace* sp) : |
|
829 |
ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm), _space(sp) |
|
830 |
{ } |
|
831 |
||
832 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words); |
|
833 |
||
834 |
const MutableSpace* space() { return _space; } |
|
835 |
}; |
|
836 |
||
837 |
// Closure for updating objects altered for debug checking |
|
838 |
class ResetObjectsClosure: public ParMarkBitMapClosure { |
|
839 |
public: |
|
840 |
ResetObjectsClosure(ParCompactionManager* cm): |
|
841 |
ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm) |
|
842 |
{ } |
|
843 |
||
844 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words); |
|
845 |
}; |
|
846 |
||
847 |
friend class KeepAliveClosure; |
|
848 |
friend class FollowStackClosure; |
|
849 |
friend class AdjustPointerClosure; |
|
850 |
friend class FollowRootClosure; |
|
851 |
friend class instanceKlassKlass; |
|
852 |
friend class RefProcTaskProxy; |
|
853 |
||
854 |
private: |
|
855 |
static elapsedTimer _accumulated_time; |
|
856 |
static unsigned int _total_invocations; |
|
857 |
static unsigned int _maximum_compaction_gc_num; |
|
858 |
static jlong _time_of_last_gc; // ms |
|
859 |
static CollectorCounters* _counters; |
|
860 |
static ParMarkBitMap _mark_bitmap; |
|
861 |
static ParallelCompactData _summary_data; |
|
862 |
static IsAliveClosure _is_alive_closure; |
|
863 |
static SpaceInfo _space_info[last_space_id]; |
|
864 |
static bool _print_phases; |
|
865 |
static AdjustPointerClosure _adjust_root_pointer_closure; |
|
866 |
static AdjustPointerClosure _adjust_pointer_closure; |
|
867 |
||
868 |
// Reference processing (used in ...follow_contents) |
|
869 |
static ReferenceProcessor* _ref_processor; |
|
870 |
||
871 |
// Updated location of intArrayKlassObj. |
|
872 |
static klassOop _updated_int_array_klass_obj; |
|
873 |
||
874 |
// Values computed at initialization and used by dead_wood_limiter(). |
|
875 |
static double _dwl_mean; |
|
876 |
static double _dwl_std_dev; |
|
877 |
static double _dwl_first_term; |
|
878 |
static double _dwl_adjustment; |
|
879 |
#ifdef ASSERT |
|
880 |
static bool _dwl_initialized; |
|
881 |
#endif // #ifdef ASSERT |
|
882 |
||
883 |
private: |
|
884 |
// Closure accessors |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
885 |
static OopClosure* adjust_pointer_closure() { return (OopClosure*)&_adjust_pointer_closure; } |
1 | 886 |
static OopClosure* adjust_root_pointer_closure() { return (OopClosure*)&_adjust_root_pointer_closure; } |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
887 |
static BoolObjectClosure* is_alive_closure() { return (BoolObjectClosure*)&_is_alive_closure; } |
1 | 888 |
|
889 |
static void initialize_space_info(); |
|
890 |
||
891 |
// Return true if details about individual phases should be printed. |
|
892 |
static inline bool print_phases(); |
|
893 |
||
894 |
// Clear the marking bitmap and summary data that cover the specified space. |
|
895 |
static void clear_data_covering_space(SpaceId id); |
|
896 |
||
897 |
static void pre_compact(PreGCValues* pre_gc_values); |
|
898 |
static void post_compact(); |
|
899 |
||
900 |
// Mark live objects |
|
901 |
static void marking_phase(ParCompactionManager* cm, |
|
902 |
bool maximum_heap_compaction); |
|
903 |
static void follow_stack(ParCompactionManager* cm); |
|
904 |
static void follow_weak_klass_links(ParCompactionManager* cm); |
|
905 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
906 |
template <class T> static inline void adjust_pointer(T* p, bool is_root); |
1 | 907 |
static void adjust_root_pointer(oop* p) { adjust_pointer(p, true); } |
908 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
909 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
910 |
static inline void follow_root(ParCompactionManager* cm, T* p); |
1 | 911 |
|
912 |
// Compute the dense prefix for the designated space. This is an experimental |
|
913 |
// implementation currently not used in production. |
|
914 |
static HeapWord* compute_dense_prefix_via_density(const SpaceId id, |
|
915 |
bool maximum_compaction); |
|
916 |
||
917 |
// Methods used to compute the dense prefix. |
|
918 |
||
919 |
// Compute the value of the normal distribution at x = density. The mean and |
|
920 |
// standard deviation are values saved by initialize_dead_wood_limiter(). |
|
921 |
static inline double normal_distribution(double density); |
|
922 |
||
923 |
// Initialize the static vars used by dead_wood_limiter(). |
|
924 |
static void initialize_dead_wood_limiter(); |
|
925 |
||
926 |
// Return the percentage of space that can be treated as "dead wood" (i.e., |
|
927 |
// not reclaimed). |
|
928 |
static double dead_wood_limiter(double density, size_t min_percent); |
|
929 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
930 |
// Find the first (left-most) region in the range [beg, end) that has at least |
1 | 931 |
// 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
|
932 |
// region in the space that is not completely live. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
933 |
static RegionData* dead_wood_limit_region(const RegionData* beg, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
934 |
const RegionData* end, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
935 |
size_t dead_words); |
1 | 936 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
937 |
// Return a pointer to the first region in the range [beg, end) that is not |
1 | 938 |
// completely full. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
939 |
static RegionData* first_dead_space_region(const RegionData* beg, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
940 |
const RegionData* end); |
1 | 941 |
|
942 |
// Return a value indicating the benefit or 'yield' if the compacted region |
|
943 |
// 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
|
944 |
// candidate region. Higher values are better. |
1 | 945 |
// |
946 |
// The value is based on the amount of space reclaimed vs. the costs of (a) |
|
947 |
// updating references in the dense prefix plus (b) copying objects and |
|
948 |
// updating references in the compacted region. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
949 |
static inline double reclaimed_ratio(const RegionData* const candidate, |
1 | 950 |
HeapWord* const bottom, |
951 |
HeapWord* const top, |
|
952 |
HeapWord* const new_top); |
|
953 |
||
954 |
// Compute the dense prefix for the designated space. |
|
955 |
static HeapWord* compute_dense_prefix(const SpaceId id, |
|
956 |
bool maximum_compaction); |
|
957 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
958 |
// 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
|
959 |
// 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
|
960 |
static inline bool dead_space_crosses_boundary(const RegionData* region, |
1 | 961 |
idx_t bit); |
962 |
||
963 |
// Summary phase utility routine to fill dead space (if any) at the dense |
|
964 |
// prefix boundary. Should only be called if the the dense prefix is |
|
965 |
// non-empty. |
|
966 |
static void fill_dense_prefix_end(SpaceId id); |
|
967 |
||
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
968 |
// 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
|
969 |
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
|
970 |
|
1670
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
971 |
#ifndef PRODUCT |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
972 |
// 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
|
973 |
|
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
974 |
// 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
|
975 |
// for the old and permanent generations. |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
976 |
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
|
977 |
size_t words); |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
978 |
// Include the new objects in the summary data. |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
979 |
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
|
980 |
|
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
981 |
// 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
|
982 |
static void provoke_split(bool & maximum_compaction); |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
983 |
#endif |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1669
diff
changeset
|
984 |
|
1 | 985 |
static void summarize_spaces_quick(); |
986 |
static void summarize_space(SpaceId id, bool maximum_compaction); |
|
987 |
static void summary_phase(ParCompactionManager* cm, bool maximum_compaction); |
|
988 |
||
989 |
// Adjust addresses in roots. Does not adjust addresses in heap. |
|
990 |
static void adjust_roots(); |
|
991 |
||
992 |
// Serial code executed in preparation for the compaction phase. |
|
993 |
static void compact_prologue(); |
|
994 |
||
995 |
// Move objects to new locations. |
|
996 |
static void compact_perm(ParCompactionManager* cm); |
|
997 |
static void compact(); |
|
998 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
999 |
// 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
|
1000 |
static void enqueue_region_draining_tasks(GCTaskQueue* q, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1001 |
uint parallel_gc_threads); |
1 | 1002 |
|
1003 |
// Add dense prefix update tasks to the task queue. |
|
1004 |
static void enqueue_dense_prefix_tasks(GCTaskQueue* q, |
|
1005 |
uint parallel_gc_threads); |
|
1006 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1007 |
// Add region stealing tasks to the task queue. |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1008 |
static void enqueue_region_stealing_tasks( |
1 | 1009 |
GCTaskQueue* q, |
1010 |
ParallelTaskTerminator* terminator_ptr, |
|
1011 |
uint parallel_gc_threads); |
|
1012 |
||
1013 |
// For debugging only - compacts the old gen serially |
|
1014 |
static void compact_serial(ParCompactionManager* cm); |
|
1015 |
||
1016 |
// If objects are left in eden after a collection, try to move the boundary |
|
1017 |
// and absorb them into the old gen. Returns true if eden was emptied. |
|
1018 |
static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy, |
|
1019 |
PSYoungGen* young_gen, |
|
1020 |
PSOldGen* old_gen); |
|
1021 |
||
1022 |
// Reset time since last full gc |
|
1023 |
static void reset_millis_since_last_gc(); |
|
1024 |
||
1025 |
protected: |
|
1026 |
#ifdef VALIDATE_MARK_SWEEP |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1027 |
static GrowableArray<void*>* _root_refs_stack; |
1 | 1028 |
static GrowableArray<oop> * _live_oops; |
1029 |
static GrowableArray<oop> * _live_oops_moved_to; |
|
1030 |
static GrowableArray<size_t>* _live_oops_size; |
|
1031 |
static size_t _live_oops_index; |
|
1032 |
static size_t _live_oops_index_at_perm; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1033 |
static GrowableArray<void*>* _other_refs_stack; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1034 |
static GrowableArray<void*>* _adjusted_pointers; |
1 | 1035 |
static bool _pointer_tracking; |
1036 |
static bool _root_tracking; |
|
1037 |
||
1038 |
// The following arrays are saved since the time of the last GC and |
|
1039 |
// assist in tracking down problems where someone has done an errant |
|
1040 |
// store into the heap, usually to an oop that wasn't properly |
|
1041 |
// handleized across a GC. If we crash or otherwise fail before the |
|
1042 |
// next GC, we can query these arrays to find out the object we had |
|
1043 |
// intended to do the store to (assuming it is still alive) and the |
|
1044 |
// offset within that object. Covered under RecordMarkSweepCompaction. |
|
1045 |
static GrowableArray<HeapWord*> * _cur_gc_live_oops; |
|
1046 |
static GrowableArray<HeapWord*> * _cur_gc_live_oops_moved_to; |
|
1047 |
static GrowableArray<size_t>* _cur_gc_live_oops_size; |
|
1048 |
static GrowableArray<HeapWord*> * _last_gc_live_oops; |
|
1049 |
static GrowableArray<HeapWord*> * _last_gc_live_oops_moved_to; |
|
1050 |
static GrowableArray<size_t>* _last_gc_live_oops_size; |
|
1051 |
#endif |
|
1052 |
||
1053 |
public: |
|
1054 |
class MarkAndPushClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1055 |
private: |
1 | 1056 |
ParCompactionManager* _compaction_manager; |
1057 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1058 |
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
|
1059 |
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
|
1060 |
virtual void do_oop(narrowOop* p); |
1 | 1061 |
virtual const bool do_nmethods() const { return true; } |
1062 |
}; |
|
1063 |
||
1064 |
PSParallelCompact(); |
|
1065 |
||
1066 |
// Convenient accessor for Universe::heap(). |
|
1067 |
static ParallelScavengeHeap* gc_heap() { |
|
1068 |
return (ParallelScavengeHeap*)Universe::heap(); |
|
1069 |
} |
|
1070 |
||
1071 |
static void invoke(bool maximum_heap_compaction); |
|
1072 |
static void invoke_no_policy(bool maximum_heap_compaction); |
|
1073 |
||
1074 |
static void post_initialize(); |
|
1075 |
// Perform initialization for PSParallelCompact that requires |
|
1076 |
// allocations. This should be called during the VM initialization |
|
1077 |
// at a pointer where it would be appropriate to return a JNI_ENOMEM |
|
1078 |
// in the event of a failure. |
|
1079 |
static bool initialize(); |
|
1080 |
||
1081 |
// Public accessors |
|
1082 |
static elapsedTimer* accumulated_time() { return &_accumulated_time; } |
|
1083 |
static unsigned int total_invocations() { return _total_invocations; } |
|
1084 |
static CollectorCounters* counters() { return _counters; } |
|
1085 |
||
1086 |
// Used to add tasks |
|
1087 |
static GCTaskManager* const gc_task_manager(); |
|
1088 |
static klassOop updated_int_array_klass_obj() { |
|
1089 |
return _updated_int_array_klass_obj; |
|
1090 |
} |
|
1091 |
||
1092 |
// Marking support |
|
1093 |
static inline bool mark_obj(oop obj); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1094 |
// 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
|
1095 |
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
|
1096 |
T* p); |
1 | 1097 |
|
1098 |
// Compaction support. |
|
1099 |
// Return true if p is in the range [beg_addr, end_addr). |
|
1100 |
static inline bool is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr); |
|
1101 |
static inline bool is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr); |
|
1102 |
||
1103 |
// Convenience wrappers for per-space data kept in _space_info. |
|
1104 |
static inline MutableSpace* space(SpaceId space_id); |
|
1105 |
static inline HeapWord* new_top(SpaceId space_id); |
|
1106 |
static inline HeapWord* dense_prefix(SpaceId space_id); |
|
1107 |
static inline ObjectStartArray* start_array(SpaceId space_id); |
|
1108 |
||
1109 |
// Return true if the klass should be updated. |
|
1110 |
static inline bool should_update_klass(klassOop k); |
|
1111 |
||
1112 |
// Move and update the live objects in the specified space. |
|
1113 |
static void move_and_update(ParCompactionManager* cm, SpaceId space_id); |
|
1114 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1115 |
// Process the end of the given region range in the dense prefix. |
1 | 1116 |
// This includes saving any object not updated. |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1117 |
static void dense_prefix_regions_epilogue(ParCompactionManager* cm, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1118 |
size_t region_start_index, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1119 |
size_t region_end_index, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1120 |
idx_t exiting_object_offset, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1121 |
idx_t region_offset_start, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1122 |
idx_t region_offset_end); |
1 | 1123 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1124 |
// 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
|
1125 |
// in the region, update it's interior references. For each |
1 | 1126 |
// 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
|
1127 |
// 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
|
1128 |
// live object regardless of the region_index_end. None of the |
1 | 1129 |
// objects in the dense prefix move and dead space is dead |
1130 |
// (holds only dead objects that don't need any processing), so |
|
1131 |
// dead space can be filled in any order. |
|
1132 |
static void update_and_deadwood_in_dense_prefix(ParCompactionManager* cm, |
|
1133 |
SpaceId space_id, |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1134 |
size_t region_index_start, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1135 |
size_t region_index_end); |
1 | 1136 |
|
1137 |
// Return the address of the count + 1st live word in the range [beg, end). |
|
1138 |
static HeapWord* skip_live_words(HeapWord* beg, HeapWord* end, size_t count); |
|
1139 |
||
1140 |
// 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
|
1141 |
// aligned to a region boundary. |
1 | 1142 |
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
|
1143 |
SpaceId src_space_id, |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1144 |
size_t src_region_idx); |
1 | 1145 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1146 |
// 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
|
1147 |
// new region return the region index. Parameter end_addr is the address one |
1 | 1148 |
// beyond the end of source range just processed. If necessary, switch to a |
1149 |
// new source space and set src_space_id (in-out parameter) and src_space_top |
|
1150 |
// (out parameter) accordingly. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1151 |
static size_t next_src_region(MoveAndUpdateClosure& closure, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1152 |
SpaceId& src_space_id, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1153 |
HeapWord*& src_space_top, |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1154 |
HeapWord* end_addr); |
1 | 1155 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1156 |
// Decrement the destination count for each non-empty source region in the |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1157 |
// range [beg_region, region(region_align_up(end_addr))). |
1 | 1158 |
static void decrement_destination_counts(ParCompactionManager* cm, |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1159 |
size_t beg_region, |
1 | 1160 |
HeapWord* end_addr); |
1161 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1162 |
// 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
|
1163 |
static void fill_region(ParCompactionManager* cm, size_t region_idx); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1164 |
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
|
1165 |
fill_region(cm, region); |
1 | 1166 |
} |
1167 |
||
1168 |
// Update the deferred objects in the space. |
|
1169 |
static void update_deferred_objects(ParCompactionManager* cm, SpaceId id); |
|
1170 |
||
1171 |
// Mark pointer and follow contents. |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1172 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1173 |
static inline void mark_and_follow(ParCompactionManager* cm, T* p); |
1 | 1174 |
|
1175 |
static ParMarkBitMap* mark_bitmap() { return &_mark_bitmap; } |
|
1176 |
static ParallelCompactData& summary_data() { return _summary_data; } |
|
1177 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1178 |
static inline void adjust_pointer(oop* p) { adjust_pointer(p, false); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1179 |
static inline void adjust_pointer(narrowOop* p) { adjust_pointer(p, false); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1180 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1181 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1182 |
static inline void adjust_pointer(T* p, |
1 | 1183 |
HeapWord* beg_addr, |
1184 |
HeapWord* end_addr); |
|
1185 |
||
1186 |
// Reference Processing |
|
1187 |
static ReferenceProcessor* const ref_processor() { return _ref_processor; } |
|
1188 |
||
1189 |
// Return the SpaceId for the given address. |
|
1190 |
static SpaceId space_id(HeapWord* addr); |
|
1191 |
||
1192 |
// Time since last full gc (in milliseconds). |
|
1193 |
static jlong millis_since_last_gc(); |
|
1194 |
||
1195 |
#ifdef VALIDATE_MARK_SWEEP |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1196 |
static void track_adjusted_pointer(void* p, bool isroot); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1197 |
static void check_adjust_pointer(void* p); |
1 | 1198 |
static void track_interior_pointers(oop obj); |
1199 |
static void check_interior_pointers(); |
|
1200 |
||
1201 |
static void reset_live_oop_tracking(bool at_perm); |
|
1202 |
static void register_live_oop(oop p, size_t size); |
|
1203 |
static void validate_live_oop(oop p, size_t size); |
|
1204 |
static void live_oop_moved_to(HeapWord* q, size_t size, HeapWord* compaction_top); |
|
1205 |
static void compaction_complete(); |
|
1206 |
||
1207 |
// Querying operation of RecordMarkSweepCompaction results. |
|
1208 |
// Finds and prints the current base oop and offset for a word |
|
1209 |
// within an oop that was live during the last GC. Helpful for |
|
1210 |
// tracking down heap stomps. |
|
1211 |
static void print_new_location_of_heap_address(HeapWord* q); |
|
1212 |
#endif // #ifdef VALIDATE_MARK_SWEEP |
|
1213 |
||
1214 |
// Call backs for class unloading |
|
1215 |
// Update subklass/sibling/implementor links at end of marking. |
|
1216 |
static void revisit_weak_klass_link(ParCompactionManager* cm, Klass* k); |
|
1217 |
||
1218 |
#ifndef PRODUCT |
|
1219 |
// Debugging support. |
|
1220 |
static const char* space_names[last_space_id]; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1221 |
static void print_region_ranges(); |
1 | 1222 |
static void print_dense_prefix_stats(const char* const algorithm, |
1223 |
const SpaceId id, |
|
1224 |
const bool maximum_compaction, |
|
1225 |
HeapWord* const addr); |
|
1669
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1226 |
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
|
1227 |
HeapWord* dst_beg, HeapWord* dst_end, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1228 |
SpaceId src_space_id, |
c921639400dd
6765745: par compact - allow young gen spaces to be split
jcoomes
parents:
1668
diff
changeset
|
1229 |
HeapWord* src_beg, HeapWord* src_end); |
1 | 1230 |
#endif // #ifndef PRODUCT |
1231 |
||
1232 |
#ifdef ASSERT |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1233 |
// Verify that all the regions have been emptied. |
1 | 1234 |
static void verify_complete(SpaceId space_id); |
1235 |
#endif // #ifdef ASSERT |
|
1236 |
}; |
|
1237 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1238 |
inline bool PSParallelCompact::mark_obj(oop obj) { |
1 | 1239 |
const int obj_size = obj->size(); |
1240 |
if (mark_bitmap()->mark_obj(obj, obj_size)) { |
|
1241 |
_summary_data.add_obj(obj, obj_size); |
|
1242 |
return true; |
|
1243 |
} else { |
|
1244 |
return false; |
|
1245 |
} |
|
1246 |
} |
|
1247 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1248 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1249 |
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
|
1250 |
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
|
1251 |
"roots shouldn't be things within the heap"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1252 |
#ifdef VALIDATE_MARK_SWEEP |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1253 |
if (ValidateMarkSweep) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1254 |
guarantee(!_root_refs_stack->contains(p), "should only be in here once"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1255 |
_root_refs_stack->push(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1256 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1257 |
#endif |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1258 |
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
|
1259 |
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
|
1260 |
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
|
1261 |
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
|
1262 |
if (mark_obj(obj)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1263 |
obj->follow_contents(cm); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1264 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1265 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1266 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1267 |
follow_stack(cm); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1268 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1269 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1270 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1271 |
inline void PSParallelCompact::mark_and_follow(ParCompactionManager* cm, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1272 |
T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1273 |
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
|
1274 |
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
|
1275 |
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
|
1276 |
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
|
1277 |
if (mark_obj(obj)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1278 |
obj->follow_contents(cm); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1279 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1280 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1281 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1282 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1283 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1284 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1285 |
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
|
1286 |
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
|
1287 |
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
|
1288 |
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
|
1289 |
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
|
1290 |
if (mark_obj(obj)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1291 |
// This thread marked the object and owns the subsequent processing of it. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1292 |
cm->save_for_scanning(obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1293 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1294 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1295 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1296 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1297 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1298 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1299 |
inline void PSParallelCompact::adjust_pointer(T* p, bool isroot) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1300 |
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
|
1301 |
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
|
1302 |
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
|
1303 |
oop new_obj = (oop)summary_data().calc_new_pointer(obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1304 |
assert(new_obj != NULL || // is forwarding ptr? |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1305 |
obj->is_shared(), // never forwarded? |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1306 |
"should be forwarded"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1307 |
// 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
|
1308 |
if (new_obj != NULL) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1309 |
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
|
1310 |
"should be in object space"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1311 |
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
|
1312 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1313 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1314 |
VALIDATE_MARK_SWEEP_ONLY(track_adjusted_pointer(p, isroot)); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1315 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1316 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1317 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1318 |
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
|
1319 |
#ifdef VALIDATE_MARK_SWEEP |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1320 |
if (ValidateMarkSweep) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1321 |
if (!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
|
1322 |
_root_refs_stack->push(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1323 |
} else { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1324 |
_other_refs_stack->push(p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1325 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1326 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1327 |
#endif |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1328 |
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
|
1329 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1330 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1331 |
inline bool PSParallelCompact::print_phases() { |
1 | 1332 |
return _print_phases; |
1333 |
} |
|
1334 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1335 |
inline double PSParallelCompact::normal_distribution(double density) { |
1 | 1336 |
assert(_dwl_initialized, "uninitialized"); |
1337 |
const double squared_term = (density - _dwl_mean) / _dwl_std_dev; |
|
1338 |
return _dwl_first_term * exp(-0.5 * squared_term * squared_term); |
|
1339 |
} |
|
1340 |
||
1341 |
inline bool |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1342 |
PSParallelCompact::dead_space_crosses_boundary(const RegionData* region, |
1 | 1343 |
idx_t bit) |
1344 |
{ |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
977
diff
changeset
|
1345 |
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
|
1346 |
assert(_summary_data.region_to_addr(region) == _mark_bitmap.bit_to_addr(bit), |
1 | 1347 |
"sanity check"); |
1348 |
||
1349 |
// 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
|
1350 |
// 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
|
1351 |
// 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
|
1352 |
return region->partial_obj_size() == 0 && |
1 | 1353 |
!_mark_bitmap.is_obj_beg(bit) && |
1354 |
!_mark_bitmap.is_obj_end(bit - 1); |
|
1355 |
} |
|
1356 |
||
1357 |
inline bool |
|
1358 |
PSParallelCompact::is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr) { |
|
1359 |
return p >= beg_addr && p < end_addr; |
|
1360 |
} |
|
1361 |
||
1362 |
inline bool |
|
1363 |
PSParallelCompact::is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr) { |
|
1364 |
return is_in((HeapWord*)p, beg_addr, end_addr); |
|
1365 |
} |
|
1366 |
||
1367 |
inline MutableSpace* PSParallelCompact::space(SpaceId id) { |
|
1368 |
assert(id < last_space_id, "id out of range"); |
|
1369 |
return _space_info[id].space(); |
|
1370 |
} |
|
1371 |
||
1372 |
inline HeapWord* PSParallelCompact::new_top(SpaceId id) { |
|
1373 |
assert(id < last_space_id, "id out of range"); |
|
1374 |
return _space_info[id].new_top(); |
|
1375 |
} |
|
1376 |
||
1377 |
inline HeapWord* PSParallelCompact::dense_prefix(SpaceId id) { |
|
1378 |
assert(id < last_space_id, "id out of range"); |
|
1379 |
return _space_info[id].dense_prefix(); |
|
1380 |
} |
|
1381 |
||
1382 |
inline ObjectStartArray* PSParallelCompact::start_array(SpaceId id) { |
|
1383 |
assert(id < last_space_id, "id out of range"); |
|
1384 |
return _space_info[id].start_array(); |
|
1385 |
} |
|
1386 |
||
1387 |
inline bool PSParallelCompact::should_update_klass(klassOop k) { |
|
1388 |
return ((HeapWord*) k) >= dense_prefix(perm_space_id); |
|
1389 |
} |
|
1390 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1391 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1392 |
inline void PSParallelCompact::adjust_pointer(T* p, |
1 | 1393 |
HeapWord* beg_addr, |
1394 |
HeapWord* end_addr) { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1395 |
if (is_in((HeapWord*)p, beg_addr, end_addr)) { |
1 | 1396 |
adjust_pointer(p); |
1397 |
} |
|
1398 |
} |
|
1399 |
||
1400 |
class MoveAndUpdateClosure: public ParMarkBitMapClosure { |
|
1401 |
public: |
|
1402 |
inline MoveAndUpdateClosure(ParMarkBitMap* bitmap, ParCompactionManager* cm, |
|
1403 |
ObjectStartArray* start_array, |
|
1404 |
HeapWord* destination, size_t words); |
|
1405 |
||
1406 |
// Accessors. |
|
1407 |
HeapWord* destination() const { return _destination; } |
|
1408 |
||
1409 |
// If the object will fit (size <= words_remaining()), copy it to the current |
|
1410 |
// destination, update the interior oops and the start array and return either |
|
1411 |
// full (if the closure is full) or incomplete. If the object will not fit, |
|
1412 |
// return would_overflow. |
|
1413 |
virtual IterationStatus do_addr(HeapWord* addr, size_t size); |
|
1414 |
||
1415 |
// Copy enough words to fill this closure, starting at source(). Interior |
|
1416 |
// oops and the start array are not updated. Return full. |
|
1417 |
IterationStatus copy_until_full(); |
|
1418 |
||
1419 |
// Copy enough words to fill this closure or to the end of an object, |
|
1420 |
// whichever is smaller, starting at source(). Interior oops and the start |
|
1421 |
// array are not updated. |
|
1422 |
void copy_partial_obj(); |
|
1423 |
||
1424 |
protected: |
|
1425 |
// Update variables to indicate that word_count words were processed. |
|
1426 |
inline void update_state(size_t word_count); |
|
1427 |
||
1428 |
protected: |
|
1429 |
ObjectStartArray* const _start_array; |
|
1430 |
HeapWord* _destination; // Next addr to be written. |
|
1431 |
}; |
|
1432 |
||
1433 |
inline |
|
1434 |
MoveAndUpdateClosure::MoveAndUpdateClosure(ParMarkBitMap* bitmap, |
|
1435 |
ParCompactionManager* cm, |
|
1436 |
ObjectStartArray* start_array, |
|
1437 |
HeapWord* destination, |
|
1438 |
size_t words) : |
|
1439 |
ParMarkBitMapClosure(bitmap, cm, words), _start_array(start_array) |
|
1440 |
{ |
|
1441 |
_destination = destination; |
|
1442 |
} |
|
1443 |
||
1444 |
inline void MoveAndUpdateClosure::update_state(size_t words) |
|
1445 |
{ |
|
1446 |
decrement_words_remaining(words); |
|
1447 |
_source += words; |
|
1448 |
_destination += words; |
|
1449 |
} |
|
1450 |
||
1451 |
class UpdateOnlyClosure: public ParMarkBitMapClosure { |
|
1452 |
private: |
|
1453 |
const PSParallelCompact::SpaceId _space_id; |
|
1454 |
ObjectStartArray* const _start_array; |
|
1455 |
||
1456 |
public: |
|
1457 |
UpdateOnlyClosure(ParMarkBitMap* mbm, |
|
1458 |
ParCompactionManager* cm, |
|
1459 |
PSParallelCompact::SpaceId space_id); |
|
1460 |
||
1461 |
// Update the object. |
|
1462 |
virtual IterationStatus do_addr(HeapWord* addr, size_t words); |
|
1463 |
||
1464 |
inline void do_addr(HeapWord* addr); |
|
1465 |
}; |
|
1466 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1467 |
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
|
1468 |
{ |
1 | 1469 |
_start_array->allocate_block(addr); |
1470 |
oop(addr)->update_contents(compaction_manager()); |
|
1471 |
} |
|
1472 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1473 |
class FillClosure: public ParMarkBitMapClosure |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1474 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1475 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1476 |
FillClosure(ParCompactionManager* cm, PSParallelCompact::SpaceId space_id) : |
1 | 1477 |
ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm), |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1478 |
_start_array(PSParallelCompact::start_array(space_id)) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1479 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1480 |
assert(space_id == PSParallelCompact::perm_space_id || |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1481 |
space_id == PSParallelCompact::old_space_id, |
1 | 1482 |
"cannot use FillClosure in the young gen"); |
1483 |
} |
|
1484 |
||
1485 |
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
|
1486 |
CollectedHeap::fill_with_objects(addr, size); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1487 |
HeapWord* const end = addr + size; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1488 |
do { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1489 |
_start_array->allocate_block(addr); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1490 |
addr += oop(addr)->size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1491 |
} while (addr < end); |
1 | 1492 |
return ParMarkBitMap::incomplete; |
1493 |
} |
|
1494 |
||
1495 |
private: |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1408
diff
changeset
|
1496 |
ObjectStartArray* const _start_array; |
1 | 1497 |
}; |