annotate src/share/vm/memory/generationSpec.cpp @ 6725:da91efe96a93

6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
author coleenp
date Sat, 01 Sep 2012 13:25:18 -0400
parents 9f059abe8cf2
children db9981fd3124
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6026
diff changeset
2 * Copyright (c) 2001, 2012, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6026
diff changeset
26 #include "memory/binaryTreeDictionary.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/defNewGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/filemap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/genRemSet.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "memory/generationSpec.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "memory/tenuredGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #ifndef SERIALGC
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "gc_implementation/parNew/asParNewGeneration.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6026
diff changeset
35 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "gc_implementation/parNew/parNewGeneration.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 Generation* GenerationSpec::init(ReservedSpace rs, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
40 GenRemSet* remset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 switch (name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 case Generation::DefNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 return new DefNewGeneration(rs, init_size(), level);
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 case Generation::MarkSweepCompact:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 return new TenuredGeneration(rs, init_size(), level, remset);
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
49 case Generation::ParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
50 return new ParNewGeneration(rs, init_size(), level);
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 case Generation::ASParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 return new ASParNewGeneration(rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
54 init_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
55 init_size() /* min size */,
a61af66fc99e Initial load
duke
parents:
diff changeset
56 level);
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 case Generation::ConcurrentMarkSweep: {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 assert(UseConcMarkSweepGC, "UseConcMarkSweepGC should be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 CardTableRS* ctrs = remset->as_CardTableRS();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (ctrs == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 vm_exit_during_initialization("Rem set incompatibility.");
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // The constructor creates the CMSCollector if needed,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // else registers with an existing CMSCollector
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 ConcurrentMarkSweepGeneration* g = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 g = new ConcurrentMarkSweepGeneration(rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 init_size(), level, ctrs, UseCMSAdaptiveFreeLists,
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
71 (FreeBlockDictionary<FreeChunk>::DictionaryChoice)CMSDictionaryChoice);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 g->initialize_performance_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return g;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case Generation::ASConcurrentMarkSweep: {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert(UseConcMarkSweepGC, "UseConcMarkSweepGC should be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 CardTableRS* ctrs = remset->as_CardTableRS();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (ctrs == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 vm_exit_during_initialization("Rem set incompatibility.");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // The constructor creates the CMSCollector if needed,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // else registers with an existing CMSCollector
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 ASConcurrentMarkSweepGeneration* g = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 g = new ASConcurrentMarkSweepGeneration(rs,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 init_size(), level, ctrs, UseCMSAdaptiveFreeLists,
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
91 (FreeBlockDictionary<FreeChunk>::DictionaryChoice)CMSDictionaryChoice);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 g->initialize_performance_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return g;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 guarantee(false, "unrecognized GenerationName");
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }