annotate src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.hpp @ 113:ba764ed4b6f2

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