annotate src/share/vm/memory/compactingPermGenGen.cpp @ 2368:dde920245681

6896099: Integrate CMS heap ergo with default heap sizing ergo 6627787: CMS: JVM refuses to start up with -Xms16m -Xmx16m 7000125: CMS: Anti-monotone young gen sizing with respect to maximum whole heap size specification 7027529: CMS: retire CMSUseOldDefaults flag Summary: Simplify CMS heap sizing code, relying on ergonomic initial sizing consistent with other collectors for the most part, controlling only young gen sizing to rein in pause times. Make CMS young gen sizing default statically cpu-dependant. Remove inconsistencies wrt generation sizing and policy code, allowing for the fixing for 6627787 and 7000125. For 7027529, retire the flag CMSUseOldDefaults which had been introduced as a bridge from JDK 5 to JDK 6 a number of years ago. Reviewed-by: brutisso, poonam
author ysr
date Wed, 16 Mar 2011 10:37:08 -0700
parents 3582bf76420e
children 1d1603768966
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2003, 2010, 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: 1051
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1051
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: 1051
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: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/compactingPermGenGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/filemap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "memory/genOopClosures.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "memory/generation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "memory/generationSpec.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #ifndef SERIALGC
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39
47
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
40 // An ObjectClosure helper: Recursively adjust all pointers in an object
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
41 // and all objects by referenced it. Clear marks on objects in order to
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
42 // prevent visiting any object twice. This helper is used when the
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
43 // RedefineClasses() API has been called.
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
44
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
45 class AdjustSharedObjectClosure : public ObjectClosure {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
46 public:
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
47 void do_object(oop obj) {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
48 if (obj->is_shared_readwrite()) {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
49 if (obj->mark()->is_marked()) {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
50 obj->init_mark(); // Don't revisit this object.
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
51 obj->adjust_pointers(); // Adjust this object's references.
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
52 }
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
53 }
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
54 }
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
55 };
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
56
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
57
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
58 // An OopClosure helper: Recursively adjust all pointers in an object
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
59 // and all objects by referenced it. Clear marks on objects in order
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
60 // to prevent visiting any object twice.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 class RecursiveAdjustSharedObjectClosure : public OopClosure {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
63 protected:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
64 template <class T> inline void do_oop_work(T* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
65 oop obj = oopDesc::load_decode_heap_oop_not_null(p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (obj->is_shared_readwrite()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (obj->mark()->is_marked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 obj->init_mark(); // Don't revisit this object.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 obj->oop_iterate(this); // Recurse - adjust objects referenced.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 obj->adjust_pointers(); // Adjust this object's references.
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Special case: if a class has a read-only constant pool,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // then the read-write objects referenced by the pool must
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // have their marks reset.
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (obj->klass() == Universe::instanceKlassKlassObj()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 instanceKlass* ik = instanceKlass::cast((klassOop)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 constantPoolOop cp = ik->constants();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (cp->is_shared_readonly()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 cp->oop_iterate(this);
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 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
85 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
86 public:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
87 virtual void do_oop(oop* p) { RecursiveAdjustSharedObjectClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 47
diff changeset
88 virtual void do_oop(narrowOop* p) { RecursiveAdjustSharedObjectClosure::do_oop_work(p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 };
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // We need to go through all placeholders in the system dictionary and
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // try to resolve them into shared classes. Other threads might be in
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // the process of loading a shared class and have strong roots on
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // their stack to the class without having added the class to the
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // dictionary yet. This means the class will be marked during phase 1
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // but will not be unmarked during the application of the
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
98 // RecursiveAdjustSharedObjectClosure to the SystemDictionary.
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
99 class TraversePlaceholdersClosure {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
100 public:
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
101 static void placeholders_do(Symbol* sym, oop loader) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
102 if (CompactingPermGenGen::is_shared(sym)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 oop k = SystemDictionary::find_shared_class(sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 RecursiveAdjustSharedObjectClosure clo;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 clo.do_oop(&k);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 };
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void CompactingPermGenGen::initialize_performance_counters() {
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 const char* gen_name = "perm";
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Generation Counters - generation 2, 1 subspace
a61af66fc99e Initial load
duke
parents:
diff changeset
117 _gen_counters = new GenerationCounters(gen_name, 2, 1, &_virtual_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _space_counters = new CSpaceCounters(gen_name, 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _virtual_space.reserved_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _the_space, _gen_counters);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void CompactingPermGenGen::update_counters() {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _space_counters->update_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _gen_counters->update_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 CompactingPermGenGen::CompactingPermGenGen(ReservedSpace rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 ReservedSpace shared_rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 size_t initial_byte_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
135 int level, GenRemSet* remset,
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ContiguousSpace* space,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 PermanentGenerationSpec* spec_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
138 OneContigSpaceCardGeneration(rs, initial_byte_size, MinPermHeapExpansion,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 level, remset, space) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 set_spec(spec_);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 if (!UseSharedSpaces && !DumpSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 spec()->disable_sharing();
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Break virtual space into address ranges for all spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 shared_end = (HeapWord*)(shared_rs.base() + shared_rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
150 misccode_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 misccode_bottom = misccode_end - heap_word_size(spec()->misc_code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
152 miscdata_end = misccode_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 miscdata_bottom = miscdata_end - heap_word_size(spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
154 readwrite_end = miscdata_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 readwrite_bottom =
a61af66fc99e Initial load
duke
parents:
diff changeset
156 readwrite_end - heap_word_size(spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
157 readonly_end = readwrite_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 readonly_bottom =
a61af66fc99e Initial load
duke
parents:
diff changeset
159 readonly_end - heap_word_size(spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
160 shared_bottom = readonly_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 unshared_end = shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 assert((char*)shared_bottom == shared_rs.base(), "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
163 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 shared_end = (HeapWord*)(rs.base() + rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
165 misccode_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 misccode_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 miscdata_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 miscdata_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 readwrite_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 readwrite_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 readonly_end = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 readonly_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 shared_bottom = shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 unshared_end = shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 unshared_bottom = (HeapWord*) rs.base();
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Verify shared and unshared spaces adjacent.
a61af66fc99e Initial load
duke
parents:
diff changeset
179 assert((char*)shared_bottom == rs.base()+rs.size(), "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
180 assert(unshared_end > unshared_bottom, "shared space mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Split reserved memory into pieces.
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 ReservedSpace ro_rs = shared_rs.first_part(spec()->read_only_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
185 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 ReservedSpace tmp_rs1 = shared_rs.last_part(spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
187 ReservedSpace rw_rs = tmp_rs1.first_part(spec()->read_write_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
188 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 ReservedSpace tmp_rs2 = tmp_rs1.last_part(spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ReservedSpace md_rs = tmp_rs2.first_part(spec()->misc_data_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
191 UseSharedSpaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 ReservedSpace mc_rs = tmp_rs2.last_part(spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _shared_space_size = spec()->read_only_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
195 + spec()->read_write_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
196 + spec()->misc_data_size()
a61af66fc99e Initial load
duke
parents:
diff changeset
197 + spec()->misc_code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // Allocate the unshared (default) space.
a61af66fc99e Initial load
duke
parents:
diff changeset
200 _the_space = new ContigPermSpace(_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
201 MemRegion(unshared_bottom, heap_word_size(initial_byte_size)));
a61af66fc99e Initial load
duke
parents:
diff changeset
202 if (_the_space == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
203 vm_exit_during_initialization("Could not allocate an unshared"
a61af66fc99e Initial load
duke
parents:
diff changeset
204 " CompactingPermGen Space");
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // Allocate shared spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
207 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // If mapping a shared file, the space is not committed, don't
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // mangle.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 NOT_PRODUCT(bool old_ZapUnusedHeapArea = ZapUnusedHeapArea;)
a61af66fc99e Initial load
duke
parents:
diff changeset
212 NOT_PRODUCT(if (UseSharedSpaces) ZapUnusedHeapArea = false;)
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Commit the memory behind the shared spaces if dumping (not
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // mapping).
a61af66fc99e Initial load
duke
parents:
diff changeset
216 if (DumpSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _ro_vs.initialize(ro_rs, spec()->read_only_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
218 _rw_vs.initialize(rw_rs, spec()->read_write_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
219 _md_vs.initialize(md_rs, spec()->misc_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _mc_vs.initialize(mc_rs, spec()->misc_code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Allocate the shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _ro_bts = new BlockOffsetSharedArray(
a61af66fc99e Initial load
duke
parents:
diff changeset
225 MemRegion(readonly_bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
226 heap_word_size(spec()->read_only_size())),
a61af66fc99e Initial load
duke
parents:
diff changeset
227 heap_word_size(spec()->read_only_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _ro_space = new OffsetTableContigSpace(_ro_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
229 MemRegion(readonly_bottom, readonly_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
230 _rw_bts = new BlockOffsetSharedArray(
a61af66fc99e Initial load
duke
parents:
diff changeset
231 MemRegion(readwrite_bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
232 heap_word_size(spec()->read_write_size())),
a61af66fc99e Initial load
duke
parents:
diff changeset
233 heap_word_size(spec()->read_write_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _rw_space = new OffsetTableContigSpace(_rw_bts,
a61af66fc99e Initial load
duke
parents:
diff changeset
235 MemRegion(readwrite_bottom, readwrite_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Restore mangling flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 NOT_PRODUCT(ZapUnusedHeapArea = old_ZapUnusedHeapArea;)
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 if (_ro_space == NULL || _rw_space == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
241 vm_exit_during_initialization("Could not allocate a shared space");
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // Cover both shared spaces entirely with cards.
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _rs->resize_covered_region(MemRegion(readonly_bottom, readwrite_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (UseSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // Map in the regions in the shared file.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 FileMapInfo* mapinfo = FileMapInfo::current_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
250 size_t image_alignment = mapinfo->alignment();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 CollectedHeap* ch = Universe::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if ((!mapinfo->map_space(ro, ro_rs, _ro_space)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
253 (!mapinfo->map_space(rw, rw_rs, _rw_space)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
254 (!mapinfo->map_space(md, md_rs, NULL)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
255 (!mapinfo->map_space(mc, mc_rs, NULL)) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // check the alignment constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
257 (ch == NULL || ch->kind() != CollectedHeap::GenCollectedHeap ||
a61af66fc99e Initial load
duke
parents:
diff changeset
258 image_alignment !=
a61af66fc99e Initial load
duke
parents:
diff changeset
259 ((GenCollectedHeap*)ch)->gen_policy()->max_alignment())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // Base addresses didn't match; skip sharing, but continue
a61af66fc99e Initial load
duke
parents:
diff changeset
261 shared_rs.release();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 spec()->disable_sharing();
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // If -Xshare:on is specified, print out the error message and exit VM,
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // otherwise, set UseSharedSpaces to false and continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (RequireSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 vm_exit_during_initialization("Unable to use shared archive.", NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 FLAG_SET_DEFAULT(UseSharedSpaces, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Note: freeing the block offset array objects does not
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // currently free up the underlying storage.
a61af66fc99e Initial load
duke
parents:
diff changeset
273 delete _ro_bts;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 _ro_bts = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 delete _ro_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 _ro_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 delete _rw_bts;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 _rw_bts = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 delete _rw_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 _rw_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 shared_end = (HeapWord*)(rs.base() + rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _rs->resize_covered_region(MemRegion(shared_bottom, shared_bottom));
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // Reserved region includes shared spaces for oop.is_in_reserved().
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _reserved.set_end(shared_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
290 _ro_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 _rw_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Do a complete scan of the shared read write space to catch all
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // objects which contain references to any younger generation. Forward
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // the pointers. Avoid space_iterate, as actually visiting all the
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // objects in the space will page in more objects than we need.
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Instead, use the system dictionary as strong roots into the read
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // write space.
47
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
302 //
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
303 // If a RedefineClasses() call has been made, then we have to iterate
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
304 // over the entire shared read-write space in order to find all the
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
305 // objects that need to be forwarded. For example, it is possible for
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
306 // an nmethod to be found and marked in GC phase-1 only for the nmethod
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
307 // to be freed by the time we reach GC phase-3. The underlying method
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
308 // is still marked, but we can't (easily) find it in GC phase-3 so we
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
309 // blow up in GC phase-4. With RedefineClasses() we want replaced code
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
310 // (EMCP or obsolete) to go away (i.e., be collectible) once it is no
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
311 // longer being executed by any thread so we keep minimal attachments
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
312 // to the replaced code. However, we can't guarantee when those EMCP
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
313 // or obsolete methods will be collected so they may still be out there
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
314 // even after we've severed our minimal attachments.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 void CompactingPermGenGen::pre_adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 if (spec()->enable_shared_spaces()) {
47
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
318 if (JvmtiExport::has_redefined_a_class()) {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
319 // RedefineClasses() requires a brute force approach
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
320 AdjustSharedObjectClosure blk;
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
321 rw_space()->object_iterate(&blk);
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
322 } else {
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
323 RecursiveAdjustSharedObjectClosure blk;
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
324 Universe::oops_do(&blk);
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
325 StringTable::oops_do(&blk);
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
326 SystemDictionary::always_strong_classes_do(&blk);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
327 SystemDictionary::placeholders_do(TraversePlaceholdersClosure::placeholders_do);
47
2c106685d6d0 6497639: 4/3 Profiling Swing application caused JVM crash
dcubed
parents: 0
diff changeset
328 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
334 class VerifyMarksClearedClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
336 void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
337 assert(SharedSkipVerify || !obj->mark()->is_marked(),
a61af66fc99e Initial load
duke
parents:
diff changeset
338 "Shared oop still marked?");
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340 };
a61af66fc99e Initial load
duke
parents:
diff changeset
341 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 void CompactingPermGenGen::post_compact() {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (!SharedSkipVerify && spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 VerifyMarksClearedClosure blk;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 rw_space()->object_iterate(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353
1051
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
354 // Do not use in time-critical operations due to the possibility of paging
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
355 // in otherwise untouched or previously unread portions of the perm gen,
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
356 // for instance, the shared spaces. NOTE: Because CompactingPermGenGen
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
357 // derives from OneContigSpaceCardGeneration which is supposed to have a
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
358 // single space, and does not override its object_iterate() method,
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
359 // object iteration via that interface does not look at the objects in
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
360 // the shared spaces when using CDS. This should be fixed; see CR 6897798.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
361 void CompactingPermGenGen::space_iterate(SpaceClosure* blk, bool usedOnly) {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 OneContigSpaceCardGeneration::space_iterate(blk, usedOnly);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Making the rw_space walkable will page in the entire space, and
1051
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
365 // is to be avoided in the case of time-critical operations.
26f1542097f1 6801625: CDS: HeapDump tests crash with internal error in compactingPermGenGen.cpp
ysr
parents: 291
diff changeset
366 // However, this is required for Verify and heap dump operations.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
367 blk->do_space(ro_space());
a61af66fc99e Initial load
duke
parents:
diff changeset
368 blk->do_space(rw_space());
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 void CompactingPermGenGen::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 OneContigSpaceCardGeneration::print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 st->print(" ro");
a61af66fc99e Initial load
duke
parents:
diff changeset
377 ro_space()->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 st->print(" rw");
a61af66fc99e Initial load
duke
parents:
diff changeset
379 rw_space()->print_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 st->print_cr("No shared spaces configured.");
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // References from the perm gen to the younger generation objects may
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // occur in static fields in Java classes or in constant pool references
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // to String objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 void CompactingPermGenGen::younger_refs_iterate(OopsInGenClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 OneContigSpaceCardGeneration::younger_refs_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 if (spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 blk->set_generation(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // ro_space has no younger gen refs.
a61af66fc99e Initial load
duke
parents:
diff changeset
395 _rs->younger_refs_in_space_iterate(rw_space(), blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 blk->reset_generation();
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
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 // Shared spaces are addressed in pre_adjust_pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
402 void CompactingPermGenGen::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 the_space()->adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 void CompactingPermGenGen::compact() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 the_space()->compact();
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 size_t CompactingPermGenGen::contiguous_available() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // Don't include shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
414 return OneContigSpaceCardGeneration::contiguous_available()
a61af66fc99e Initial load
duke
parents:
diff changeset
415 - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 size_t CompactingPermGenGen::max_capacity() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // Don't include shared spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
420 assert(UseSharedSpaces || (_shared_space_size == 0),
a61af66fc99e Initial load
duke
parents:
diff changeset
421 "If not used, the size of shared spaces should be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return OneContigSpaceCardGeneration::max_capacity()
a61af66fc99e Initial load
duke
parents:
diff changeset
423 - _shared_space_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // No young generation references, clear this generation's main space's
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // card table entries. Do NOT clear the card table entries for the
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // read-only space (always clear) or the read-write space (valuable
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // information).
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 void CompactingPermGenGen::clear_remembered_set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 _rs->clear(MemRegion(the_space()->bottom(), the_space()->end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // Objects in this generation's main space may have moved, invalidate
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // that space's cards. Do NOT invalidate the card table entries for the
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // read-only or read-write spaces, as those objects never move.
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 void CompactingPermGenGen::invalidate_remembered_set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 _rs->invalidate(used_region());
a61af66fc99e Initial load
duke
parents:
diff changeset
443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 void CompactingPermGenGen::verify(bool allow_dirty) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 the_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
448 if (!SharedSkipVerify && spec()->enable_shared_spaces()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 ro_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
450 rw_space()->verify(allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455 HeapWord* CompactingPermGenGen::unshared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
456 HeapWord* CompactingPermGenGen::unshared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 HeapWord* CompactingPermGenGen::shared_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
458 HeapWord* CompactingPermGenGen::shared_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 HeapWord* CompactingPermGenGen::readonly_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 HeapWord* CompactingPermGenGen::readonly_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 HeapWord* CompactingPermGenGen::readwrite_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 HeapWord* CompactingPermGenGen::readwrite_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
463 HeapWord* CompactingPermGenGen::miscdata_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 HeapWord* CompactingPermGenGen::miscdata_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 HeapWord* CompactingPermGenGen::misccode_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 HeapWord* CompactingPermGenGen::misccode_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
469 bool CompactingPermGenGen::remap_shared_readonly_as_readwrite() {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 if (UseSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // remap the shared readonly space to shared readwrite, private
a61af66fc99e Initial load
duke
parents:
diff changeset
474 FileMapInfo* mapinfo = FileMapInfo::current_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
475 if (!mapinfo->remap_shared_readonly_as_readwrite()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }