comparison 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
comparison
equal deleted inserted replaced
6724:36d1d483d5d6 6725:da91efe96a93
1 /* 1 /*
2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #include "precompiled.hpp" 25 #include "precompiled.hpp"
26 #include "memory/compactPermGen.hpp" 26 #include "memory/binaryTreeDictionary.hpp"
27 #include "memory/defNewGeneration.hpp" 27 #include "memory/defNewGeneration.hpp"
28 #include "memory/filemap.hpp" 28 #include "memory/filemap.hpp"
29 #include "memory/genRemSet.hpp" 29 #include "memory/genRemSet.hpp"
30 #include "memory/generationSpec.hpp" 30 #include "memory/generationSpec.hpp"
31 #include "memory/tenuredGeneration.hpp" 31 #include "memory/tenuredGeneration.hpp"
32 #include "runtime/java.hpp" 32 #include "runtime/java.hpp"
33 #ifndef SERIALGC 33 #ifndef SERIALGC
34 #include "gc_implementation/concurrentMarkSweep/cmsPermGen.hpp"
35 #include "gc_implementation/parNew/asParNewGeneration.hpp" 34 #include "gc_implementation/parNew/asParNewGeneration.hpp"
35 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
36 #include "gc_implementation/parNew/parNewGeneration.hpp" 36 #include "gc_implementation/parNew/parNewGeneration.hpp"
37 #endif 37 #endif
38 38
39 Generation* GenerationSpec::init(ReservedSpace rs, int level, 39 Generation* GenerationSpec::init(ReservedSpace rs, int level,
40 GenRemSet* remset) { 40 GenRemSet* remset) {
99 default: 99 default:
100 guarantee(false, "unrecognized GenerationName"); 100 guarantee(false, "unrecognized GenerationName");
101 return NULL; 101 return NULL;
102 } 102 }
103 } 103 }
104
105
106 PermanentGenerationSpec::PermanentGenerationSpec(PermGen::Name name,
107 size_t init_size, size_t max_size,
108 size_t read_only_size, size_t read_write_size,
109 size_t misc_data_size, size_t misc_code_size) {
110 _name = name;
111 _init_size = init_size;
112
113 if (UseSharedSpaces || DumpSharedSpaces) {
114 _enable_shared_spaces = true;
115 if (UseSharedSpaces) {
116 // Override shared space sizes from those in the file.
117 FileMapInfo* mapinfo = FileMapInfo::current_info();
118 _read_only_size = mapinfo->space_capacity(CompactingPermGenGen::ro);
119 _read_write_size = mapinfo->space_capacity(CompactingPermGenGen::rw);
120 _misc_data_size = mapinfo->space_capacity(CompactingPermGenGen::md);
121 _misc_code_size = mapinfo->space_capacity(CompactingPermGenGen::mc);
122 } else {
123 _read_only_size = read_only_size;
124 _read_write_size = read_write_size;
125 _misc_data_size = misc_data_size;
126 _misc_code_size = misc_code_size;
127 }
128 } else {
129 _enable_shared_spaces = false;
130 _read_only_size = 0;
131 _read_write_size = 0;
132 _misc_data_size = 0;
133 _misc_code_size = 0;
134 }
135
136 _max_size = max_size;
137 }
138
139
140 PermGen* PermanentGenerationSpec::init(ReservedSpace rs,
141 size_t init_size,
142 GenRemSet *remset) {
143
144 // Break the reserved spaces into pieces for the permanent space
145 // and the shared spaces.
146 ReservedSpace perm_rs = rs.first_part(_max_size, UseSharedSpaces,
147 UseSharedSpaces);
148 ReservedSpace shared_rs = rs.last_part(_max_size);
149
150 if (enable_shared_spaces()) {
151 if (!perm_rs.is_reserved() ||
152 perm_rs.base() + perm_rs.size() != shared_rs.base()) {
153 FileMapInfo* mapinfo = FileMapInfo::current_info();
154 mapinfo->fail_continue("Sharing disabled - unable to "
155 "reserve address space.");
156 shared_rs.release();
157 disable_sharing();
158 }
159 }
160
161 switch (name()) {
162 case PermGen::MarkSweepCompact:
163 return new CompactingPermGen(perm_rs, shared_rs, init_size, remset, this);
164
165 #ifndef SERIALGC
166 case PermGen::MarkSweep:
167 guarantee(false, "NYI");
168 return NULL;
169
170 case PermGen::ConcurrentMarkSweep: {
171 assert(UseConcMarkSweepGC, "UseConcMarkSweepGC should be set");
172 CardTableRS* ctrs = remset->as_CardTableRS();
173 if (ctrs == NULL) {
174 vm_exit_during_initialization("RemSet/generation incompatibility.");
175 }
176 // XXXPERM
177 return new CMSPermGen(perm_rs, init_size, ctrs,
178 (FreeBlockDictionary<FreeChunk>::DictionaryChoice)CMSDictionaryChoice);
179 }
180 #endif // SERIALGC
181 default:
182 guarantee(false, "unrecognized GenerationName");
183 return NULL;
184 }
185 }
186
187
188 // Alignment
189 void PermanentGenerationSpec::align(size_t alignment) {
190 _init_size = align_size_up(_init_size, alignment);
191 _max_size = align_size_up(_max_size, alignment);
192 _read_only_size = align_size_up(_read_only_size, alignment);
193 _read_write_size = align_size_up(_read_write_size, alignment);
194 _misc_data_size = align_size_up(_misc_data_size, alignment);
195 _misc_code_size = align_size_up(_misc_code_size, alignment);
196
197 assert(enable_shared_spaces() || (_read_only_size + _read_write_size == 0),
198 "Shared space when disabled?");
199 }