src/share/vm/memory/compactingPermGenGen.cpp

Sun, 01 Apr 2012 17:04:26 -0400

author
acorn
date
Sun, 01 Apr 2012 17:04:26 -0400
changeset 3686
749b1464aa81
parent 3534
77a488cd4af2
child 3711
b632e80fc9dc
permissions
-rw-r--r--

Merge

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

mercurial