annotate src/share/vm/memory/compactingPermGenGen.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 2c106685d6d0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_compactingPermGenGen.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Recursively adjust all pointers in an object and all objects by
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // referenced it. Clear marks on objects in order to prevent visiting
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // any object twice.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class RecursiveAdjustSharedObjectClosure : public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 void do_oop(oop* o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 oop obj = *o;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 if (obj->is_shared_readwrite()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 if (obj->mark()->is_marked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 obj->init_mark(); // Don't revisit this object.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 obj->oop_iterate(this); // Recurse - adjust objects referenced.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 obj->adjust_pointers(); // Adjust this object's references.
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Special case: if a class has a read-only constant pool,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // then the read-write objects referenced by the pool must
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // have their marks reset.
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (obj->klass() == Universe::instanceKlassKlassObj()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 instanceKlass* ik = instanceKlass::cast((klassOop)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 constantPoolOop cp = ik->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
50 if (cp->is_shared_readonly()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 cp->oop_iterate(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 };
a61af66fc99e Initial load
duke
parents:
diff changeset
57 };
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // We need to go through all placeholders in the system dictionary and
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // try to resolve them into shared classes. Other threads might be in
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // the process of loading a shared class and have strong roots on
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // their stack to the class without having added the class to the
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // dictionary yet. This means the class will be marked during phase 1
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // but will not be unmarked during the application of the
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // RecursiveAdjustSharedObjectClosure to the SystemDictionary. Note
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // that we must not call find_shared_class with non-read-only symbols
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // as doing so can cause hash codes to be computed, destroying
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // forwarding pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 class TraversePlaceholdersClosure : public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void do_oop(oop* o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 oop obj = *o;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 if (obj->klass() == Universe::symbolKlassObj() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
75 obj->is_shared_readonly()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 symbolHandle sym((symbolOop) obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 oop k = SystemDictionary::find_shared_class(sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 RecursiveAdjustSharedObjectClosure clo;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 clo.do_oop(&k);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 };
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void CompactingPermGenGen::initialize_performance_counters() {
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const char* gen_name = "perm";
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Generation Counters - generation 2, 1 subspace
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _gen_counters = new GenerationCounters(gen_name, 2, 1, &_virtual_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _space_counters = new CSpaceCounters(gen_name, 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _virtual_space.reserved_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _the_space, _gen_counters);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void CompactingPermGenGen::update_counters() {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _space_counters->update_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _gen_counters->update_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 CompactingPermGenGen::CompactingPermGenGen(ReservedSpace rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ReservedSpace shared_rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
109 size_t initial_byte_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 int level, GenRemSet* remset,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ContiguousSpace* space,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 PermanentGenerationSpec* spec_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
113 OneContigSpaceCardGeneration(rs, initial_byte_size, MinPermHeapExpansion,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 level, remset, space) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 set_spec(spec_);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (!UseSharedSpaces && !DumpSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 spec()->disable_sharing();
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Break virtual space into address ranges for all spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 shared_end = (HeapWord*)(shared_rs.base() + shared_rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
125 misccode_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 misccode_bottom = misccode_end - heap_word_size(spec()->misc_code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
127 miscdata_end = misccode_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 miscdata_bottom = miscdata_end - heap_word_size(spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
129 readwrite_end = miscdata_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 readwrite_bottom =
a61af66fc99e Initial load
duke
parents:
diff changeset
131 readwrite_end - heap_word_size(spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
132 readonly_end = readwrite_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 readonly_bottom =
a61af66fc99e Initial load
duke
parents:
diff changeset
134 readonly_end - heap_word_size(spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
135 shared_bottom = readonly_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 unshared_end = shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 assert((char*)shared_bottom == shared_rs.base(), "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
138 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 shared_end = (HeapWord*)(rs.base() + rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
140 misccode_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 misccode_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 miscdata_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 miscdata_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 readwrite_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 readwrite_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 readonly_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 readonly_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 shared_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 unshared_end = shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 unshared_bottom = (HeapWord*) rs.base();
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Verify shared and unshared spaces adjacent.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 assert((char*)shared_bottom == rs.base()+rs.size(), "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
155 assert(unshared_end > unshared_bottom, "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Split reserved memory into pieces.
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 ReservedSpace ro_rs = shared_rs.first_part(spec()->read_only_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
160 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ReservedSpace tmp_rs1 = shared_rs.last_part(spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
162 ReservedSpace rw_rs = tmp_rs1.first_part(spec()->read_write_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
163 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 ReservedSpace tmp_rs2 = tmp_rs1.last_part(spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
165 ReservedSpace md_rs = tmp_rs2.first_part(spec()->misc_data_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
166 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 ReservedSpace mc_rs = tmp_rs2.last_part(spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 _shared_space_size = spec()->read_only_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
170 + spec()->read_write_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
171 + spec()->misc_data_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
172 + spec()->misc_code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Allocate the unshared (default) space.
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _the_space = new ContigPermSpace(_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
176 MemRegion(unshared_bottom, heap_word_size(initial_byte_size)));
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (_the_space == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
178 vm_exit_during_initialization("Could not allocate an unshared"
a61af66fc99e Initial load
duke
parents:
diff changeset
179 " CompactingPermGen Space");
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Allocate shared spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // If mapping a shared file, the space is not committed, don't
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // mangle.
a61af66fc99e Initial load
duke
parents:
diff changeset
186 NOT_PRODUCT(bool old_ZapUnusedHeapArea = ZapUnusedHeapArea;)
a61af66fc99e Initial load
duke
parents:
diff changeset
187 NOT_PRODUCT(if (UseSharedSpaces) ZapUnusedHeapArea = false;)
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Commit the memory behind the shared spaces if dumping (not
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // mapping).
a61af66fc99e Initial load
duke
parents:
diff changeset
191 if (DumpSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _ro_vs.initialize(ro_rs, spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _rw_vs.initialize(rw_rs, spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _md_vs.initialize(md_rs, spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
195 _mc_vs.initialize(mc_rs, spec()->misc_code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Allocate the shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
199 _ro_bts = new BlockOffsetSharedArray(
a61af66fc99e Initial load
duke
parents:
diff changeset
200 MemRegion(readonly_bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
201 heap_word_size(spec()->read_only_size())),
a61af66fc99e Initial load
duke
parents:
diff changeset
202 heap_word_size(spec()->read_only_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
203 _ro_space = new OffsetTableContigSpace(_ro_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
204 MemRegion(readonly_bottom, readonly_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _rw_bts = new BlockOffsetSharedArray(
a61af66fc99e Initial load
duke
parents:
diff changeset
206 MemRegion(readwrite_bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
207 heap_word_size(spec()->read_write_size())),
a61af66fc99e Initial load
duke
parents:
diff changeset
208 heap_word_size(spec()->read_write_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
209 _rw_space = new OffsetTableContigSpace(_rw_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 MemRegion(readwrite_bottom, readwrite_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Restore mangling flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
213 NOT_PRODUCT(ZapUnusedHeapArea = old_ZapUnusedHeapArea;)
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 if (_ro_space == NULL || _rw_space == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
216 vm_exit_during_initialization("Could not allocate a shared space");
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Cover both shared spaces entirely with cards.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 _rs->resize_covered_region(MemRegion(readonly_bottom, readwrite_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 if (UseSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Map in the regions in the shared file.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 FileMapInfo* mapinfo = FileMapInfo::current_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
225 size_t image_alignment = mapinfo->alignment();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 CollectedHeap* ch = Universe::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if ((!mapinfo->map_space(ro, ro_rs, _ro_space)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
228 (!mapinfo->map_space(rw, rw_rs, _rw_space)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
229 (!mapinfo->map_space(md, md_rs, NULL)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
230 (!mapinfo->map_space(mc, mc_rs, NULL)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // check the alignment constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
232 (ch == NULL || ch->kind() != CollectedHeap::GenCollectedHeap ||
a61af66fc99e Initial load
duke
parents:
diff changeset
233 image_alignment !=
a61af66fc99e Initial load
duke
parents:
diff changeset
234 ((GenCollectedHeap*)ch)->gen_policy()->max_alignment())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Base addresses didn't match; skip sharing, but continue
a61af66fc99e Initial load
duke
parents:
diff changeset
236 shared_rs.release();
a61af66fc99e Initial load
duke
parents:
diff changeset
237 spec()->disable_sharing();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // If -Xshare:on is specified, print out the error message and exit VM,
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // otherwise, set UseSharedSpaces to false and continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (RequireSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 vm_exit_during_initialization("Unable to use shared archive.", NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 FLAG_SET_DEFAULT(UseSharedSpaces, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Note: freeing the block offset array objects does not
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // currently free up the underlying storage.
a61af66fc99e Initial load
duke
parents:
diff changeset
248 delete _ro_bts;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 _ro_bts = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 delete _ro_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 _ro_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 delete _rw_bts;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 _rw_bts = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 delete _rw_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 _rw_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 shared_end = (HeapWord*)(rs.base() + rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _rs->resize_covered_region(MemRegion(shared_bottom, shared_bottom));
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // Reserved region includes shared spaces for oop.is_in_reserved().
a61af66fc99e Initial load
duke
parents:
diff changeset
262 _reserved.set_end(shared_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 _ro_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 _rw_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Do a complete scan of the shared read write space to catch all
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // objects which contain references to any younger generation. Forward
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // the pointers. Avoid space_iterate, as actually visiting all the
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // objects in the space will page in more objects than we need.
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Instead, use the system dictionary as strong roots into the read
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // write space.
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void CompactingPermGenGen::pre_adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
280 RecursiveAdjustSharedObjectClosure blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 Universe::oops_do(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 StringTable::oops_do(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 SystemDictionary::always_strong_classes_do(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 TraversePlaceholdersClosure tpc;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 SystemDictionary::placeholders_do(&tpc);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
291 class VerifyMarksClearedClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
293 void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 assert(SharedSkipVerify || !obj->mark()->is_marked(),
a61af66fc99e Initial load
duke
parents:
diff changeset
295 "Shared oop still marked?");
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 };
a61af66fc99e Initial load
duke
parents:
diff changeset
298 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 void CompactingPermGenGen::post_compact() {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if (!SharedSkipVerify && spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 VerifyMarksClearedClosure blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 rw_space()->object_iterate(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 void CompactingPermGenGen::space_iterate(SpaceClosure* blk, bool usedOnly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 OneContigSpaceCardGeneration::space_iterate(blk, usedOnly);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // Making the rw_space walkable will page in the entire space, and
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // is to be avoided. However, this is required for Verify options.
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
318 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 blk->do_space(ro_space());
a61af66fc99e Initial load
duke
parents:
diff changeset
321 blk->do_space(rw_space());
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 void CompactingPermGenGen::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 OneContigSpaceCardGeneration::print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 st->print(" ro");
a61af66fc99e Initial load
duke
parents:
diff changeset
330 ro_space()->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 st->print(" rw");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 rw_space()->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 st->print_cr("No shared spaces configured.");
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // References from the perm gen to the younger generation objects may
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // occur in static fields in Java classes or in constant pool references
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // to String objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 void CompactingPermGenGen::younger_refs_iterate(OopsInGenClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 OneContigSpaceCardGeneration::younger_refs_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 blk->set_generation(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // ro_space has no younger gen refs.
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _rs->younger_refs_in_space_iterate(rw_space(), blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 blk->reset_generation();
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // Shared spaces are addressed in pre_adjust_pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
355 void CompactingPermGenGen::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 the_space()->adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 void CompactingPermGenGen::compact() {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 the_space()->compact();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 size_t CompactingPermGenGen::contiguous_available() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // Don't include shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
367 return OneContigSpaceCardGeneration::contiguous_available()
a61af66fc99e Initial load
duke
parents:
diff changeset
368 - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 size_t CompactingPermGenGen::max_capacity() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // Don't include shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
373 assert(UseSharedSpaces || (_shared_space_size == 0),
a61af66fc99e Initial load
duke
parents:
diff changeset
374 "If not used, the size of shared spaces should be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
375 return OneContigSpaceCardGeneration::max_capacity()
a61af66fc99e Initial load
duke
parents:
diff changeset
376 - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 bool CompactingPermGenGen::grow_by(size_t bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // Don't allow _virtual_size to expand into shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
383 size_t max_bytes = _virtual_space.uncommitted_size() - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (bytes > _shared_space_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 bytes = _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387 return OneContigSpaceCardGeneration::grow_by(bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 void CompactingPermGenGen::grow_to_reserved() {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // Don't allow _virtual_size to expand into shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
393 if (_virtual_space.uncommitted_size() > _shared_space_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 size_t remaining_bytes =
a61af66fc99e Initial load
duke
parents:
diff changeset
395 _virtual_space.uncommitted_size() - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
396 bool success = OneContigSpaceCardGeneration::grow_by(remaining_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
397 DEBUG_ONLY(if (!success) warning("grow to reserved failed");)
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // No young generation references, clear this generation's main space's
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // card table entries. Do NOT clear the card table entries for the
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // read-only space (always clear) or the read-write space (valuable
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // information).
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 void CompactingPermGenGen::clear_remembered_set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _rs->clear(MemRegion(the_space()->bottom(), the_space()->end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // Objects in this generation's main space may have moved, invalidate
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // that space's cards. Do NOT invalidate the card table entries for the
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // read-only or read-write spaces, as those objects never move.
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 void CompactingPermGenGen::invalidate_remembered_set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 _rs->invalidate(used_region());
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 void CompactingPermGenGen::verify(bool allow_dirty) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 the_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
423 if (!SharedSkipVerify && spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
424 ro_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
425 rw_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
426 }
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 HeapWord* CompactingPermGenGen::unshared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 HeapWord* CompactingPermGenGen::unshared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
432 HeapWord* CompactingPermGenGen::shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 HeapWord* CompactingPermGenGen::shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 HeapWord* CompactingPermGenGen::readonly_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 HeapWord* CompactingPermGenGen::readonly_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 HeapWord* CompactingPermGenGen::readwrite_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
437 HeapWord* CompactingPermGenGen::readwrite_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 HeapWord* CompactingPermGenGen::miscdata_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 HeapWord* CompactingPermGenGen::miscdata_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 HeapWord* CompactingPermGenGen::misccode_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
441 HeapWord* CompactingPermGenGen::misccode_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
444 bool CompactingPermGenGen::remap_shared_readonly_as_readwrite() {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 if (UseSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // remap the shared readonly space to shared readwrite, private
a61af66fc99e Initial load
duke
parents:
diff changeset
449 FileMapInfo* mapinfo = FileMapInfo::current_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 if (!mapinfo->remap_shared_readonly_as_readwrite()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 void** CompactingPermGenGen::_vtbl_list;