annotate src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.hpp @ 10369:5534bd30c151

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