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

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c0492d52d55b
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 2000-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/_permGen.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 CompactingPermGen::CompactingPermGen(ReservedSpace rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
29 ReservedSpace shared_rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
30 size_t initial_byte_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
31 GenRemSet* remset,
a61af66fc99e Initial load
duke
parents:
diff changeset
32 PermanentGenerationSpec* perm_spec)
a61af66fc99e Initial load
duke
parents:
diff changeset
33 {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 CompactingPermGenGen* g =
a61af66fc99e Initial load
duke
parents:
diff changeset
35 new CompactingPermGenGen(rs, shared_rs, initial_byte_size, -1, remset,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 NULL, perm_spec);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 if (g == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
38 vm_exit_during_initialization("Could not allocate a CompactingPermGen");
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _gen = g;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 g->initialize_performance_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _capacity_expansion_limit = g->capacity() + MaxPermHeapExpansion;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 HeapWord* CompactingPermGen::mem_allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 MutexLocker ml(Heap_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 HeapWord* obj = _gen->allocate(size, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 bool tried_collection = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 bool tried_expansion = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 while (obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 if (_gen->capacity() >= _capacity_expansion_limit || tried_expansion) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Expansion limit reached, try collection before expanding further
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // For now we force a full collection, this could be changed
a61af66fc99e Initial load
duke
parents:
diff changeset
55 SharedHeap::heap()->collect_locked(GCCause::_permanent_generation_full);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 obj = _gen->allocate(size, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 tried_collection = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 tried_expansion = false; // ... following the collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // the collection may have shrunk the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (obj == NULL && !tried_expansion) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 obj = _gen->expand_and_allocate(size, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 tried_expansion = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (obj == NULL && tried_collection && tried_expansion) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // We have not been able to allocate despite a collection and
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // an attempted space expansion. We now make a last-ditch collection
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // attempt that will try to reclaim as much space as possible (for
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // example by aggressively clearing all soft refs).
a61af66fc99e Initial load
duke
parents:
diff changeset
70 SharedHeap::heap()->collect_locked(GCCause::_last_ditch_collection);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 obj = _gen->allocate(size, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if (obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // An expansion attempt is necessary since the previous
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // collection may have shrunk the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 obj = _gen->expand_and_allocate(size, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void CompactingPermGen::compute_new_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 size_t desired_capacity = align_size_up(_gen->used(), MinPermHeapExpansion);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (desired_capacity < PermSize) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 desired_capacity = PermSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (_gen->capacity() > desired_capacity) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 _gen->shrink(_gen->capacity() - desired_capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _capacity_expansion_limit = _gen->capacity() + MaxPermHeapExpansion;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }