src/share/vm/memory/metaspaceShared.cpp

Thu, 24 Mar 2016 21:38:15 -0700

author
iklam
date
Thu, 24 Mar 2016 21:38:15 -0700
changeset 8497
50e62b688ddc
parent 7414
0558eb13dcf3
child 8509
cb4af293fe70
permissions
-rw-r--r--

8150752: Share Class Data
Reviewed-by: acorn, hseigel, mschoene

coleenp@4037 1 /*
iklam@8497 2 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
coleenp@4037 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
coleenp@4037 4 *
coleenp@4037 5 * This code is free software; you can redistribute it and/or modify it
coleenp@4037 6 * under the terms of the GNU General Public License version 2 only, as
coleenp@4037 7 * published by the Free Software Foundation.
coleenp@4037 8 *
coleenp@4037 9 * This code is distributed in the hope that it will be useful, but WITHOUT
coleenp@4037 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
coleenp@4037 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
coleenp@4037 12 * version 2 for more details (a copy is included in the LICENSE file that
coleenp@4037 13 * accompanied this code).
coleenp@4037 14 *
coleenp@4037 15 * You should have received a copy of the GNU General Public License version
coleenp@4037 16 * 2 along with this work; if not, write to the Free Software Foundation,
coleenp@4037 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
coleenp@4037 18 *
coleenp@4037 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
coleenp@4037 20 * or visit www.oracle.com if you need additional information or have any
coleenp@4037 21 * questions.
coleenp@4037 22 *
coleenp@4037 23 */
coleenp@4037 24
coleenp@4037 25 #include "precompiled.hpp"
coleenp@4037 26 #include "classfile/dictionary.hpp"
iklam@7322 27 #include "classfile/classLoaderExt.hpp"
coleenp@4037 28 #include "classfile/loaderConstraints.hpp"
coleenp@4037 29 #include "classfile/placeholders.hpp"
iklam@7089 30 #include "classfile/sharedClassUtil.hpp"
coleenp@4037 31 #include "classfile/symbolTable.hpp"
coleenp@4037 32 #include "classfile/systemDictionary.hpp"
iklam@8497 33 #include "classfile/systemDictionaryShared.hpp"
coleenp@4037 34 #include "code/codeCache.hpp"
coleenp@4037 35 #include "memory/filemap.hpp"
coleenp@4037 36 #include "memory/gcLocker.hpp"
coleenp@4037 37 #include "memory/metaspace.hpp"
coleenp@4037 38 #include "memory/metaspaceShared.hpp"
coleenp@4037 39 #include "oops/objArrayOop.hpp"
coleenp@4037 40 #include "oops/oop.inline.hpp"
coleenp@4037 41 #include "runtime/signature.hpp"
coleenp@4037 42 #include "runtime/vm_operations.hpp"
coleenp@4037 43 #include "runtime/vmThread.hpp"
iklam@7322 44 #include "utilities/hashtable.hpp"
coleenp@4037 45 #include "utilities/hashtable.inline.hpp"
coleenp@4037 46
drchase@6680 47 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
coleenp@4037 48
coleenp@4037 49 int MetaspaceShared::_max_alignment = 0;
coleenp@4037 50
coleenp@4037 51 ReservedSpace* MetaspaceShared::_shared_rs = NULL;
coleenp@4037 52
iklam@7089 53 bool MetaspaceShared::_link_classes_made_progress;
iklam@7089 54 bool MetaspaceShared::_check_classes_made_progress;
iklam@7089 55 bool MetaspaceShared::_has_error_classes;
iklam@7089 56 bool MetaspaceShared::_archive_loading_failed = false;
coleenp@4037 57 // Read/write a data stream for restoring/preserving metadata pointers and
coleenp@4037 58 // miscellaneous data from/to the shared archive file.
coleenp@4037 59
coleenp@4037 60 void MetaspaceShared::serialize(SerializeClosure* soc) {
coleenp@4037 61 int tag = 0;
coleenp@4037 62 soc->do_tag(--tag);
coleenp@4037 63
coleenp@4037 64 // Verify the sizes of various metadata in the system.
coleenp@4037 65 soc->do_tag(sizeof(Method));
coleenp@4037 66 soc->do_tag(sizeof(ConstMethod));
coleenp@4037 67 soc->do_tag(arrayOopDesc::base_offset_in_bytes(T_BYTE));
coleenp@4037 68 soc->do_tag(sizeof(ConstantPool));
coleenp@4037 69 soc->do_tag(sizeof(ConstantPoolCache));
coleenp@4037 70 soc->do_tag(objArrayOopDesc::base_offset_in_bytes());
coleenp@4037 71 soc->do_tag(typeArrayOopDesc::base_offset_in_bytes(T_BYTE));
coleenp@4037 72 soc->do_tag(sizeof(Symbol));
coleenp@4037 73
coleenp@4037 74 // Dump/restore miscellaneous metadata.
coleenp@4037 75 Universe::serialize(soc, true);
coleenp@4037 76 soc->do_tag(--tag);
coleenp@4037 77
coleenp@4037 78 // Dump/restore references to commonly used names and signatures.
coleenp@4037 79 vmSymbols::serialize(soc);
coleenp@4037 80 soc->do_tag(--tag);
coleenp@4037 81
coleenp@4037 82 soc->do_tag(666);
coleenp@4037 83 }
coleenp@4037 84
coleenp@4037 85
coleenp@4037 86 // CDS code for dumping shared archive.
coleenp@4037 87
coleenp@4037 88 // Global object for holding classes that have been loaded. Since this
coleenp@4037 89 // is run at a safepoint just before exit, this is the entire set of classes.
coleenp@4037 90 static GrowableArray<Klass*>* _global_klass_objects;
coleenp@4037 91 static void collect_classes(Klass* k) {
coleenp@4037 92 _global_klass_objects->append_if_missing(k);
coleenp@4037 93 if (k->oop_is_instance()) {
coleenp@4037 94 // Add in the array classes too
coleenp@4037 95 InstanceKlass* ik = InstanceKlass::cast(k);
coleenp@4037 96 ik->array_klasses_do(collect_classes);
coleenp@4037 97 }
coleenp@4037 98 }
coleenp@4037 99
coleenp@4037 100 static void remove_unshareable_in_classes() {
coleenp@4037 101 for (int i = 0; i < _global_klass_objects->length(); i++) {
coleenp@4037 102 Klass* k = _global_klass_objects->at(i);
coleenp@4037 103 k->remove_unshareable_info();
coleenp@4037 104 }
coleenp@4037 105 }
coleenp@4037 106
coleenp@4037 107 // Walk all methods in the class list and assign a fingerprint.
coleenp@4037 108 // so that this part of the ConstMethod* is read only.
coleenp@4037 109 static void calculate_fingerprints() {
coleenp@4037 110 for (int i = 0; i < _global_klass_objects->length(); i++) {
coleenp@4037 111 Klass* k = _global_klass_objects->at(i);
coleenp@4037 112 if (k->oop_is_instance()) {
coleenp@4037 113 InstanceKlass* ik = InstanceKlass::cast(k);
coleenp@4037 114 for (int i = 0; i < ik->methods()->length(); i++) {
coleenp@4037 115 Method* m = ik->methods()->at(i);
coleenp@5749 116 Fingerprinter fp(m);
coleenp@5749 117 // The side effect of this call sets method's fingerprint field.
coleenp@5749 118 fp.fingerprint();
coleenp@4037 119 }
coleenp@4037 120 }
coleenp@4037 121 }
coleenp@4037 122 }
coleenp@4037 123
coleenp@4037 124 // Patch C++ vtable pointer in metadata.
coleenp@4037 125
coleenp@4037 126 // Klass and other metadata objects contain references to c++ vtables in the
coleenp@4037 127 // JVM library.
coleenp@4037 128 // Fix them to point to our constructed vtables. However, don't iterate
coleenp@4037 129 // across the space while doing this, as that causes the vtables to be
coleenp@4037 130 // patched, undoing our useful work. Instead, iterate to make a list,
coleenp@4037 131 // then use the list to do the fixing.
coleenp@4037 132 //
coleenp@4037 133 // Our constructed vtables:
coleenp@4037 134 // Dump time:
coleenp@4037 135 // 1. init_self_patching_vtbl_list: table of pointers to current virtual method addrs
coleenp@4037 136 // 2. generate_vtable_methods: create jump table, appended to above vtbl_list
coleenp@4037 137 // 3. patch_klass_vtables: for Klass list, patch the vtable entry in klass and
coleenp@4037 138 // associated metadata to point to jump table rather than to current vtbl
coleenp@4037 139 // Table layout: NOTE FIXED SIZE
coleenp@4037 140 // 1. vtbl pointers
coleenp@4037 141 // 2. #Klass X #virtual methods per Klass
coleenp@4037 142 // 1 entry for each, in the order:
coleenp@4037 143 // Klass1:method1 entry, Klass1:method2 entry, ... Klass1:method<num_virtuals> entry
coleenp@4037 144 // Klass2:method1 entry, Klass2:method2 entry, ... Klass2:method<num_virtuals> entry
coleenp@4037 145 // ...
coleenp@4037 146 // Klass<vtbl_list_size>:method1 entry, Klass<vtbl_list_size>:method2 entry,
coleenp@4037 147 // ... Klass<vtbl_list_size>:method<num_virtuals> entry
coleenp@4037 148 // Sample entry: (Sparc):
coleenp@4037 149 // save(sp, -256, sp)
coleenp@4037 150 // ba,pt common_code
coleenp@4037 151 // mov XXX, %L0 %L0 gets: Klass index <<8 + method index (note: max method index 255)
coleenp@4037 152 //
coleenp@4037 153 // Restore time:
coleenp@4037 154 // 1. initialize_shared_space: reserve space for table
coleenp@4037 155 // 2. init_self_patching_vtbl_list: update pointers to NEW virtual method addrs in text
coleenp@4037 156 //
coleenp@4037 157 // Execution time:
coleenp@4037 158 // First virtual method call for any object of these metadata types:
coleenp@4045 159 // 1. object->klass
coleenp@4045 160 // 2. vtable entry for that klass points to the jump table entries
coleenp@4045 161 // 3. branches to common_code with %O0/klass, %L0: Klass index <<8 + method index
coleenp@4037 162 // 4. common_code:
coleenp@4037 163 // Get address of new vtbl pointer for this Klass from updated table
coleenp@4037 164 // Update new vtbl pointer in the Klass: future virtual calls go direct
coleenp@4037 165 // Jump to method, using new vtbl pointer and method index
coleenp@4037 166
coleenp@4037 167
coleenp@4037 168 static void* find_matching_vtbl_ptr(void** vtbl_list, void* new_vtable_start, void* obj) {
coleenp@4037 169 void* old_vtbl_ptr = *(void**)obj;
coleenp@4037 170 for (int i = 0; i < MetaspaceShared::vtbl_list_size; i++) {
coleenp@4037 171 if (vtbl_list[i] == old_vtbl_ptr) {
coleenp@4037 172 return (void**)new_vtable_start + i * MetaspaceShared::num_virtuals;
coleenp@4037 173 }
coleenp@4037 174 }
coleenp@4037 175 ShouldNotReachHere();
coleenp@4037 176 return NULL;
coleenp@4037 177 }
coleenp@4037 178
coleenp@4037 179 // Assumes the vtable is in first slot in object.
coleenp@4037 180 static void patch_klass_vtables(void** vtbl_list, void* new_vtable_start) {
coleenp@4037 181 int n = _global_klass_objects->length();
coleenp@4037 182 for (int i = 0; i < n; i++) {
coleenp@4037 183 Klass* obj = _global_klass_objects->at(i);
coleenp@4037 184 // Note oop_is_instance() is a virtual call. After patching vtables
coleenp@4037 185 // all virtual calls on the dummy vtables will restore the original!
coleenp@4037 186 if (obj->oop_is_instance()) {
coleenp@4037 187 InstanceKlass* ik = InstanceKlass::cast(obj);
coleenp@4037 188 *(void**)ik = find_matching_vtbl_ptr(vtbl_list, new_vtable_start, ik);
coleenp@4037 189 ConstantPool* cp = ik->constants();
coleenp@4037 190 *(void**)cp = find_matching_vtbl_ptr(vtbl_list, new_vtable_start, cp);
coleenp@4037 191 for (int j = 0; j < ik->methods()->length(); j++) {
coleenp@4037 192 Method* m = ik->methods()->at(j);
coleenp@4037 193 *(void**)m = find_matching_vtbl_ptr(vtbl_list, new_vtable_start, m);
coleenp@4037 194 }
coleenp@4037 195 } else {
coleenp@4037 196 // Array klasses
coleenp@4037 197 Klass* k = obj;
coleenp@4037 198 *(void**)k = find_matching_vtbl_ptr(vtbl_list, new_vtable_start, k);
coleenp@4037 199 }
coleenp@4037 200 }
coleenp@4037 201 }
coleenp@4037 202
coleenp@4037 203 // Closure for serializing initialization data out to a data area to be
coleenp@4037 204 // written to the shared file.
coleenp@4037 205
coleenp@4037 206 class WriteClosure : public SerializeClosure {
coleenp@4037 207 private:
coleenp@4037 208 intptr_t* top;
coleenp@4037 209 char* end;
coleenp@4037 210
coleenp@4037 211 inline void check_space() {
coleenp@4037 212 if ((char*)top + sizeof(intptr_t) > end) {
coleenp@4037 213 report_out_of_shared_space(SharedMiscData);
coleenp@4037 214 }
coleenp@4037 215 }
coleenp@4037 216
coleenp@4037 217 public:
coleenp@4037 218 WriteClosure(char* md_top, char* md_end) {
coleenp@4037 219 top = (intptr_t*)md_top;
coleenp@4037 220 end = md_end;
coleenp@4037 221 }
coleenp@4037 222
coleenp@4037 223 char* get_top() { return (char*)top; }
coleenp@4037 224
coleenp@4037 225 void do_ptr(void** p) {
coleenp@4037 226 check_space();
coleenp@4037 227 *top = (intptr_t)*p;
coleenp@4037 228 ++top;
coleenp@4037 229 }
coleenp@4037 230
coleenp@4037 231 void do_tag(int tag) {
coleenp@4037 232 check_space();
coleenp@4037 233 *top = (intptr_t)tag;
coleenp@4037 234 ++top;
coleenp@4037 235 }
coleenp@4037 236
coleenp@4037 237 void do_region(u_char* start, size_t size) {
coleenp@4037 238 if ((char*)top + size > end) {
coleenp@4037 239 report_out_of_shared_space(SharedMiscData);
coleenp@4037 240 }
coleenp@4037 241 assert((intptr_t)start % sizeof(intptr_t) == 0, "bad alignment");
coleenp@4037 242 assert(size % sizeof(intptr_t) == 0, "bad size");
coleenp@4037 243 do_tag((int)size);
coleenp@4037 244 while (size > 0) {
coleenp@4037 245 *top = *(intptr_t*)start;
coleenp@4037 246 ++top;
coleenp@4037 247 start += sizeof(intptr_t);
coleenp@4037 248 size -= sizeof(intptr_t);
coleenp@4037 249 }
coleenp@4037 250 }
coleenp@4037 251
coleenp@4037 252 bool reading() const { return false; }
coleenp@4037 253 };
coleenp@4037 254
iklam@5208 255 // This is for dumping detailed statistics for the allocations
iklam@5208 256 // in the shared spaces.
iklam@5208 257 class DumpAllocClosure : public Metaspace::AllocRecordClosure {
iklam@5208 258 public:
iklam@5208 259
iklam@5208 260 // Here's poor man's enum inheritance
iklam@5208 261 #define SHAREDSPACE_OBJ_TYPES_DO(f) \
iklam@5208 262 METASPACE_OBJ_TYPES_DO(f) \
iklam@5208 263 f(SymbolHashentry) \
iklam@5208 264 f(SymbolBuckets) \
iklam@5208 265 f(Other)
iklam@5208 266
iklam@5208 267 #define SHAREDSPACE_OBJ_TYPE_DECLARE(name) name ## Type,
iklam@5208 268 #define SHAREDSPACE_OBJ_TYPE_NAME_CASE(name) case name ## Type: return #name;
iklam@5208 269
iklam@5208 270 enum Type {
iklam@5208 271 // Types are MetaspaceObj::ClassType, MetaspaceObj::SymbolType, etc
iklam@5208 272 SHAREDSPACE_OBJ_TYPES_DO(SHAREDSPACE_OBJ_TYPE_DECLARE)
iklam@5208 273 _number_of_types
iklam@5208 274 };
iklam@5208 275
iklam@5208 276 static const char * type_name(Type type) {
iklam@5208 277 switch(type) {
iklam@5208 278 SHAREDSPACE_OBJ_TYPES_DO(SHAREDSPACE_OBJ_TYPE_NAME_CASE)
iklam@5208 279 default:
iklam@5208 280 ShouldNotReachHere();
iklam@5208 281 return NULL;
iklam@5208 282 }
iklam@5208 283 }
iklam@5208 284
iklam@5208 285 public:
iklam@5208 286 enum {
iklam@5208 287 RO = 0,
iklam@5208 288 RW = 1
iklam@5208 289 };
iklam@5208 290
iklam@5208 291 int _counts[2][_number_of_types];
iklam@5208 292 int _bytes [2][_number_of_types];
iklam@5208 293 int _which;
iklam@5208 294
iklam@5208 295 DumpAllocClosure() {
iklam@5208 296 memset(_counts, 0, sizeof(_counts));
iklam@5208 297 memset(_bytes, 0, sizeof(_bytes));
iklam@5208 298 };
iklam@5208 299
iklam@5208 300 void iterate_metaspace(Metaspace* space, int which) {
iklam@5208 301 assert(which == RO || which == RW, "sanity");
iklam@5208 302 _which = which;
iklam@5208 303 space->iterate(this);
iklam@5208 304 }
iklam@5208 305
iklam@5208 306 virtual void doit(address ptr, MetaspaceObj::Type type, int byte_size) {
iklam@5208 307 assert(int(type) >= 0 && type < MetaspaceObj::_number_of_types, "sanity");
iklam@5208 308 _counts[_which][type] ++;
iklam@5208 309 _bytes [_which][type] += byte_size;
iklam@5208 310 }
iklam@5208 311
iklam@5208 312 void dump_stats(int ro_all, int rw_all, int md_all, int mc_all);
iklam@5208 313 };
iklam@5208 314
iklam@5208 315 void DumpAllocClosure::dump_stats(int ro_all, int rw_all, int md_all, int mc_all) {
iklam@5208 316 rw_all += (md_all + mc_all); // md and mc are all mapped Read/Write
iklam@5208 317 int other_bytes = md_all + mc_all;
iklam@5208 318
iklam@5208 319 // Calculate size of data that was not allocated by Metaspace::allocate()
iklam@5208 320 int symbol_count = _counts[RO][MetaspaceObj::SymbolType];
iklam@5208 321 int symhash_bytes = symbol_count * sizeof (HashtableEntry<Symbol*, mtSymbol>);
iklam@5208 322 int symbuck_count = SymbolTable::the_table()->table_size();
iklam@5208 323 int symbuck_bytes = symbuck_count * sizeof(HashtableBucket<mtSymbol>);
iklam@5208 324
iklam@5208 325 _counts[RW][SymbolHashentryType] = symbol_count;
iklam@5208 326 _bytes [RW][SymbolHashentryType] = symhash_bytes;
iklam@5208 327 other_bytes -= symhash_bytes;
iklam@5208 328
iklam@5208 329 _counts[RW][SymbolBucketsType] = symbuck_count;
iklam@5208 330 _bytes [RW][SymbolBucketsType] = symbuck_bytes;
iklam@5208 331 other_bytes -= symbuck_bytes;
iklam@5208 332
iklam@5208 333 // TODO: count things like dictionary, vtable, etc
iklam@5208 334 _bytes[RW][OtherType] = other_bytes;
iklam@5208 335
iklam@5208 336 // prevent divide-by-zero
iklam@5208 337 if (ro_all < 1) {
iklam@5208 338 ro_all = 1;
iklam@5208 339 }
iklam@5208 340 if (rw_all < 1) {
iklam@5208 341 rw_all = 1;
iklam@5208 342 }
iklam@5208 343
iklam@5208 344 int all_ro_count = 0;
iklam@5208 345 int all_ro_bytes = 0;
iklam@5208 346 int all_rw_count = 0;
iklam@5208 347 int all_rw_bytes = 0;
iklam@5208 348
drchase@6680 349 // To make fmt_stats be a syntactic constant (for format warnings), use #define.
drchase@6680 350 #define fmt_stats "%-20s: %8d %10d %5.1f | %8d %10d %5.1f | %8d %10d %5.1f"
iklam@5208 351 const char *sep = "--------------------+---------------------------+---------------------------+--------------------------";
iklam@5208 352 const char *hdr = " ro_cnt ro_bytes % | rw_cnt rw_bytes % | all_cnt all_bytes %";
iklam@5208 353
iklam@5208 354 tty->print_cr("Detailed metadata info (rw includes md and mc):");
drchase@6680 355 tty->print_cr("%s", hdr);
drchase@6680 356 tty->print_cr("%s", sep);
iklam@5208 357 for (int type = 0; type < int(_number_of_types); type ++) {
iklam@5208 358 const char *name = type_name((Type)type);
iklam@5208 359 int ro_count = _counts[RO][type];
iklam@5208 360 int ro_bytes = _bytes [RO][type];
iklam@5208 361 int rw_count = _counts[RW][type];
iklam@5208 362 int rw_bytes = _bytes [RW][type];
iklam@5208 363 int count = ro_count + rw_count;
iklam@5208 364 int bytes = ro_bytes + rw_bytes;
iklam@5208 365
iklam@5208 366 double ro_perc = 100.0 * double(ro_bytes) / double(ro_all);
iklam@5208 367 double rw_perc = 100.0 * double(rw_bytes) / double(rw_all);
iklam@5208 368 double perc = 100.0 * double(bytes) / double(ro_all + rw_all);
iklam@5208 369
drchase@6680 370 tty->print_cr(fmt_stats, name,
iklam@5208 371 ro_count, ro_bytes, ro_perc,
iklam@5208 372 rw_count, rw_bytes, rw_perc,
iklam@5208 373 count, bytes, perc);
iklam@5208 374
iklam@5208 375 all_ro_count += ro_count;
iklam@5208 376 all_ro_bytes += ro_bytes;
iklam@5208 377 all_rw_count += rw_count;
iklam@5208 378 all_rw_bytes += rw_bytes;
iklam@5208 379 }
iklam@5208 380
iklam@5208 381 int all_count = all_ro_count + all_rw_count;
iklam@5208 382 int all_bytes = all_ro_bytes + all_rw_bytes;
iklam@5208 383
iklam@5208 384 double all_ro_perc = 100.0 * double(all_ro_bytes) / double(ro_all);
iklam@5208 385 double all_rw_perc = 100.0 * double(all_rw_bytes) / double(rw_all);
iklam@5208 386 double all_perc = 100.0 * double(all_bytes) / double(ro_all + rw_all);
iklam@5208 387
drchase@6680 388 tty->print_cr("%s", sep);
drchase@6680 389 tty->print_cr(fmt_stats, "Total",
iklam@5208 390 all_ro_count, all_ro_bytes, all_ro_perc,
iklam@5208 391 all_rw_count, all_rw_bytes, all_rw_perc,
iklam@5208 392 all_count, all_bytes, all_perc);
iklam@5208 393
iklam@5208 394 assert(all_ro_bytes == ro_all, "everything should have been counted");
iklam@5208 395 assert(all_rw_bytes == rw_all, "everything should have been counted");
drchase@6680 396 #undef fmt_stats
iklam@5208 397 }
coleenp@4037 398
coleenp@4037 399 // Populate the shared space.
coleenp@4037 400
coleenp@4037 401 class VM_PopulateDumpSharedSpace: public VM_Operation {
coleenp@4037 402 private:
coleenp@4037 403 ClassLoaderData* _loader_data;
coleenp@4037 404 GrowableArray<Klass*> *_class_promote_order;
coleenp@4037 405 VirtualSpace _md_vs;
coleenp@4037 406 VirtualSpace _mc_vs;
coleenp@4037 407
coleenp@4037 408 public:
coleenp@4037 409 VM_PopulateDumpSharedSpace(ClassLoaderData* loader_data,
coleenp@4037 410 GrowableArray<Klass*> *class_promote_order) :
coleenp@4037 411 _loader_data(loader_data) {
coleenp@4037 412
coleenp@4037 413 // Split up and initialize the misc code and data spaces
coleenp@4037 414 ReservedSpace* shared_rs = MetaspaceShared::shared_rs();
coleenp@4037 415 int metadata_size = SharedReadOnlySize+SharedReadWriteSize;
coleenp@4037 416 ReservedSpace shared_ro_rw = shared_rs->first_part(metadata_size);
coleenp@4037 417 ReservedSpace misc_section = shared_rs->last_part(metadata_size);
coleenp@4037 418
coleenp@4037 419 // Now split into misc sections.
coleenp@4037 420 ReservedSpace md_rs = misc_section.first_part(SharedMiscDataSize);
coleenp@4037 421 ReservedSpace mc_rs = misc_section.last_part(SharedMiscDataSize);
coleenp@4037 422 _md_vs.initialize(md_rs, SharedMiscDataSize);
coleenp@4037 423 _mc_vs.initialize(mc_rs, SharedMiscCodeSize);
coleenp@4037 424 _class_promote_order = class_promote_order;
coleenp@4037 425 }
coleenp@4037 426
coleenp@4037 427 VMOp_Type type() const { return VMOp_PopulateDumpSharedSpace; }
coleenp@4037 428 void doit(); // outline because gdb sucks
coleenp@4037 429 }; // class VM_PopulateDumpSharedSpace
coleenp@4037 430
coleenp@4037 431
coleenp@4037 432 void VM_PopulateDumpSharedSpace::doit() {
coleenp@4037 433 Thread* THREAD = VMThread::vm_thread();
coleenp@4037 434 NOT_PRODUCT(SystemDictionary::verify();)
coleenp@4037 435 // The following guarantee is meant to ensure that no loader constraints
coleenp@4037 436 // exist yet, since the constraints table is not shared. This becomes
coleenp@4037 437 // more important now that we don't re-initialize vtables/itables for
coleenp@4037 438 // shared classes at runtime, where constraints were previously created.
coleenp@4037 439 guarantee(SystemDictionary::constraints()->number_of_entries() == 0,
coleenp@4037 440 "loader constraints are not saved");
coleenp@4037 441 guarantee(SystemDictionary::placeholders()->number_of_entries() == 0,
coleenp@4037 442 "placeholders are not saved");
coleenp@4037 443 // Revisit and implement this if we prelink method handle call sites:
coleenp@4037 444 guarantee(SystemDictionary::invoke_method_table() == NULL ||
coleenp@4037 445 SystemDictionary::invoke_method_table()->number_of_entries() == 0,
coleenp@4037 446 "invoke method table is not saved");
coleenp@4037 447
coleenp@4037 448 // At this point, many classes have been loaded.
coleenp@4037 449 // Gather systemDictionary classes in a global array and do everything to
coleenp@4037 450 // that so we don't have to walk the SystemDictionary again.
coleenp@4037 451 _global_klass_objects = new GrowableArray<Klass*>(1000);
coleenp@4037 452 Universe::basic_type_classes_do(collect_classes);
coleenp@4037 453 SystemDictionary::classes_do(collect_classes);
coleenp@4037 454
coleenp@4037 455 tty->print_cr("Number of classes %d", _global_klass_objects->length());
iklam@7089 456 {
iklam@7089 457 int num_type_array = 0, num_obj_array = 0, num_inst = 0;
iklam@7089 458 for (int i = 0; i < _global_klass_objects->length(); i++) {
iklam@7089 459 Klass* k = _global_klass_objects->at(i);
iklam@7089 460 if (k->oop_is_instance()) {
iklam@7089 461 num_inst ++;
iklam@7089 462 } else if (k->oop_is_objArray()) {
iklam@7089 463 num_obj_array ++;
iklam@7089 464 } else {
iklam@7089 465 assert(k->oop_is_typeArray(), "sanity");
iklam@7089 466 num_type_array ++;
iklam@7089 467 }
iklam@7089 468 }
iklam@7089 469 tty->print_cr(" instance classes = %5d", num_inst);
iklam@7089 470 tty->print_cr(" obj array classes = %5d", num_obj_array);
iklam@7089 471 tty->print_cr(" type array classes = %5d", num_type_array);
iklam@7089 472 }
coleenp@4037 473
coleenp@4037 474 // Update all the fingerprints in the shared methods.
coleenp@4037 475 tty->print("Calculating fingerprints ... ");
coleenp@4037 476 calculate_fingerprints();
coleenp@4037 477 tty->print_cr("done. ");
coleenp@4037 478
coleenp@4037 479 // Remove all references outside the metadata
coleenp@4037 480 tty->print("Removing unshareable information ... ");
coleenp@4037 481 remove_unshareable_in_classes();
coleenp@4037 482 tty->print_cr("done. ");
coleenp@4037 483
coleenp@4037 484 // Set up the share data and shared code segments.
coleenp@4037 485 char* md_low = _md_vs.low();
coleenp@4037 486 char* md_top = md_low;
coleenp@4037 487 char* md_end = _md_vs.high();
coleenp@4037 488 char* mc_low = _mc_vs.low();
coleenp@4037 489 char* mc_top = mc_low;
coleenp@4037 490 char* mc_end = _mc_vs.high();
coleenp@4037 491
coleenp@4037 492 // Reserve space for the list of Klass*s whose vtables are used
coleenp@4037 493 // for patching others as needed.
coleenp@4037 494
coleenp@4037 495 void** vtbl_list = (void**)md_top;
coleenp@4037 496 int vtbl_list_size = MetaspaceShared::vtbl_list_size;
coleenp@4037 497 Universe::init_self_patching_vtbl_list(vtbl_list, vtbl_list_size);
coleenp@4037 498
coleenp@4037 499 md_top += vtbl_list_size * sizeof(void*);
coleenp@4037 500 void* vtable = md_top;
coleenp@4037 501
coleenp@4037 502 // Reserve space for a new dummy vtable for klass objects in the
coleenp@4037 503 // heap. Generate self-patching vtable entries.
coleenp@4037 504
coleenp@4037 505 MetaspaceShared::generate_vtable_methods(vtbl_list, &vtable,
coleenp@4037 506 &md_top, md_end,
coleenp@4037 507 &mc_top, mc_end);
coleenp@4037 508
coleenp@4037 509 // Reorder the system dictionary. (Moving the symbols affects
coleenp@4037 510 // how the hash table indices are calculated.)
coleenp@4037 511 // Not doing this either.
coleenp@4037 512
coleenp@4037 513 SystemDictionary::reorder_dictionary();
coleenp@4037 514
coleenp@4037 515 NOT_PRODUCT(SystemDictionary::verify();)
coleenp@4037 516
coleenp@4037 517 // Copy the the symbol table, and the system dictionary to the shared
coleenp@4037 518 // space in usable form. Copy the hastable
coleenp@4037 519 // buckets first [read-write], then copy the linked lists of entries
coleenp@4037 520 // [read-only].
coleenp@4037 521
coleenp@4037 522 SymbolTable::reverse(md_top);
coleenp@4037 523 NOT_PRODUCT(SymbolTable::verify());
coleenp@4037 524 SymbolTable::copy_buckets(&md_top, md_end);
coleenp@4037 525
coleenp@4037 526 SystemDictionary::reverse();
coleenp@4037 527 SystemDictionary::copy_buckets(&md_top, md_end);
coleenp@4037 528
coleenp@4037 529 ClassLoader::verify();
coleenp@4037 530 ClassLoader::copy_package_info_buckets(&md_top, md_end);
coleenp@4037 531 ClassLoader::verify();
coleenp@4037 532
coleenp@4037 533 SymbolTable::copy_table(&md_top, md_end);
coleenp@4037 534 SystemDictionary::copy_table(&md_top, md_end);
coleenp@4037 535 ClassLoader::verify();
coleenp@4037 536 ClassLoader::copy_package_info_table(&md_top, md_end);
coleenp@4037 537 ClassLoader::verify();
coleenp@4037 538
iklam@7322 539 ClassLoaderExt::copy_lookup_cache_to_archive(&md_top, md_end);
iklam@7322 540
coleenp@4037 541 // Write the other data to the output array.
coleenp@4037 542 WriteClosure wc(md_top, md_end);
coleenp@4037 543 MetaspaceShared::serialize(&wc);
coleenp@4037 544 md_top = wc.get_top();
coleenp@4037 545
coleenp@4037 546 // Print shared spaces all the time
drchase@6680 547 // To make fmt_space be a syntactic constant (for format warnings), use #define.
drchase@6680 548 #define fmt_space "%s space: %9d [ %4.1f%% of total] out of %9d bytes [%4.1f%% used] at " PTR_FORMAT
coleenp@4037 549 Metaspace* ro_space = _loader_data->ro_metaspace();
coleenp@4037 550 Metaspace* rw_space = _loader_data->rw_metaspace();
coleenp@4434 551
coleenp@4434 552 // Allocated size of each space (may not be all occupied)
jmasa@5015 553 const size_t ro_alloced = ro_space->capacity_bytes_slow(Metaspace::NonClassType);
jmasa@5015 554 const size_t rw_alloced = rw_space->capacity_bytes_slow(Metaspace::NonClassType);
coleenp@4434 555 const size_t md_alloced = md_end-md_low;
coleenp@4434 556 const size_t mc_alloced = mc_end-mc_low;
coleenp@4434 557 const size_t total_alloced = ro_alloced + rw_alloced + md_alloced + mc_alloced;
coleenp@4434 558
coleenp@4434 559 // Occupied size of each space.
jmasa@5015 560 const size_t ro_bytes = ro_space->used_bytes_slow(Metaspace::NonClassType);
jmasa@5015 561 const size_t rw_bytes = rw_space->used_bytes_slow(Metaspace::NonClassType);
coleenp@4434 562 const size_t md_bytes = size_t(md_top - md_low);
coleenp@4434 563 const size_t mc_bytes = size_t(mc_top - mc_low);
coleenp@4434 564
coleenp@4434 565 // Percent of total size
coleenp@4434 566 const size_t total_bytes = ro_bytes + rw_bytes + md_bytes + mc_bytes;
coleenp@4434 567 const double ro_t_perc = ro_bytes / double(total_bytes) * 100.0;
coleenp@4434 568 const double rw_t_perc = rw_bytes / double(total_bytes) * 100.0;
coleenp@4434 569 const double md_t_perc = md_bytes / double(total_bytes) * 100.0;
coleenp@4434 570 const double mc_t_perc = mc_bytes / double(total_bytes) * 100.0;
coleenp@4434 571
coleenp@4434 572 // Percent of fullness of each space
coleenp@4434 573 const double ro_u_perc = ro_bytes / double(ro_alloced) * 100.0;
coleenp@4434 574 const double rw_u_perc = rw_bytes / double(rw_alloced) * 100.0;
coleenp@4434 575 const double md_u_perc = md_bytes / double(md_alloced) * 100.0;
coleenp@4434 576 const double mc_u_perc = mc_bytes / double(mc_alloced) * 100.0;
coleenp@4434 577 const double total_u_perc = total_bytes / double(total_alloced) * 100.0;
coleenp@4434 578
drchase@6680 579 tty->print_cr(fmt_space, "ro", ro_bytes, ro_t_perc, ro_alloced, ro_u_perc, ro_space->bottom());
drchase@6680 580 tty->print_cr(fmt_space, "rw", rw_bytes, rw_t_perc, rw_alloced, rw_u_perc, rw_space->bottom());
drchase@6680 581 tty->print_cr(fmt_space, "md", md_bytes, md_t_perc, md_alloced, md_u_perc, md_low);
drchase@6680 582 tty->print_cr(fmt_space, "mc", mc_bytes, mc_t_perc, mc_alloced, mc_u_perc, mc_low);
coleenp@4434 583 tty->print_cr("total : %9d [100.0%% of total] out of %9d bytes [%4.1f%% used]",
coleenp@4434 584 total_bytes, total_alloced, total_u_perc);
coleenp@4037 585
coleenp@4037 586 // Update the vtable pointers in all of the Klass objects in the
coleenp@4037 587 // heap. They should point to newly generated vtable.
coleenp@4037 588 patch_klass_vtables(vtbl_list, vtable);
coleenp@4037 589
coleenp@4037 590 // dunno what this is for.
coleenp@4037 591 char* saved_vtbl = (char*)os::malloc(vtbl_list_size * sizeof(void*), mtClass);
coleenp@4037 592 memmove(saved_vtbl, vtbl_list, vtbl_list_size * sizeof(void*));
coleenp@4037 593 memset(vtbl_list, 0, vtbl_list_size * sizeof(void*));
coleenp@4037 594
coleenp@4037 595 // Create and write the archive file that maps the shared spaces.
coleenp@4037 596
coleenp@4037 597 FileMapInfo* mapinfo = new FileMapInfo();
coleenp@4037 598 mapinfo->populate_header(MetaspaceShared::max_alignment());
coleenp@4037 599
coleenp@4037 600 // Pass 1 - update file offsets in header.
coleenp@4037 601 mapinfo->write_header();
coleenp@4037 602 mapinfo->write_space(MetaspaceShared::ro, _loader_data->ro_metaspace(), true);
coleenp@4037 603 mapinfo->write_space(MetaspaceShared::rw, _loader_data->rw_metaspace(), false);
coleenp@4037 604 mapinfo->write_region(MetaspaceShared::md, _md_vs.low(),
coleenp@4037 605 pointer_delta(md_top, _md_vs.low(), sizeof(char)),
coleenp@4037 606 SharedMiscDataSize,
coleenp@4037 607 false, false);
coleenp@4037 608 mapinfo->write_region(MetaspaceShared::mc, _mc_vs.low(),
coleenp@4037 609 pointer_delta(mc_top, _mc_vs.low(), sizeof(char)),
coleenp@4037 610 SharedMiscCodeSize,
coleenp@4037 611 true, true);
coleenp@4037 612
coleenp@4037 613 // Pass 2 - write data.
coleenp@4037 614 mapinfo->open_for_write();
jiangli@6868 615 mapinfo->set_header_crc(mapinfo->compute_header_crc());
coleenp@4037 616 mapinfo->write_header();
coleenp@4037 617 mapinfo->write_space(MetaspaceShared::ro, _loader_data->ro_metaspace(), true);
coleenp@4037 618 mapinfo->write_space(MetaspaceShared::rw, _loader_data->rw_metaspace(), false);
coleenp@4037 619 mapinfo->write_region(MetaspaceShared::md, _md_vs.low(),
coleenp@4037 620 pointer_delta(md_top, _md_vs.low(), sizeof(char)),
coleenp@4037 621 SharedMiscDataSize,
coleenp@4037 622 false, false);
coleenp@4037 623 mapinfo->write_region(MetaspaceShared::mc, _mc_vs.low(),
coleenp@4037 624 pointer_delta(mc_top, _mc_vs.low(), sizeof(char)),
coleenp@4037 625 SharedMiscCodeSize,
coleenp@4037 626 true, true);
coleenp@4037 627 mapinfo->close();
coleenp@4037 628
coleenp@4037 629 memmove(vtbl_list, saved_vtbl, vtbl_list_size * sizeof(void*));
iklam@5208 630
iklam@5208 631 if (PrintSharedSpaces) {
iklam@5208 632 DumpAllocClosure dac;
iklam@5208 633 dac.iterate_metaspace(_loader_data->ro_metaspace(), DumpAllocClosure::RO);
iklam@5208 634 dac.iterate_metaspace(_loader_data->rw_metaspace(), DumpAllocClosure::RW);
iklam@5208 635
iklam@5208 636 dac.dump_stats(int(ro_bytes), int(rw_bytes), int(md_bytes), int(mc_bytes));
iklam@5208 637 }
drchase@6680 638 #undef fmt_space
coleenp@4037 639 }
coleenp@4037 640
iklam@7089 641
iklam@7089 642 void MetaspaceShared::link_one_shared_class(Klass* obj, TRAPS) {
hseigel@4278 643 Klass* k = obj;
coleenp@4037 644 if (k->oop_is_instance()) {
coleenp@4037 645 InstanceKlass* ik = (InstanceKlass*) k;
coleenp@4037 646 // Link the class to cause the bytecodes to be rewritten and the
iklam@7089 647 // cpcache to be created. Class verification is done according
iklam@7089 648 // to -Xverify setting.
iklam@7089 649 _link_classes_made_progress |= try_link_class(ik, THREAD);
iklam@7089 650 guarantee(!HAS_PENDING_EXCEPTION, "exception in link_class");
iklam@7089 651 }
iklam@7089 652 }
iklam@7089 653
iklam@7089 654 void MetaspaceShared::check_one_shared_class(Klass* k) {
iklam@7089 655 if (k->oop_is_instance() && InstanceKlass::cast(k)->check_sharing_error_state()) {
iklam@7089 656 _check_classes_made_progress = true;
iklam@7089 657 }
iklam@7089 658 }
iklam@7089 659
iklam@7089 660 void MetaspaceShared::link_and_cleanup_shared_classes(TRAPS) {
iklam@7089 661 // We need to iterate because verification may cause additional classes
iklam@7089 662 // to be loaded.
iklam@7089 663 do {
iklam@7089 664 _link_classes_made_progress = false;
iklam@7089 665 SystemDictionary::classes_do(link_one_shared_class, THREAD);
iklam@7089 666 guarantee(!HAS_PENDING_EXCEPTION, "exception in link_class");
iklam@7089 667 } while (_link_classes_made_progress);
iklam@7089 668
iklam@7089 669 if (_has_error_classes) {
iklam@7089 670 // Mark all classes whose super class or interfaces failed verification.
iklam@7089 671 do {
iklam@7089 672 // Not completely sure if we need to do this iteratively. Anyway,
iklam@7089 673 // we should come here only if there are unverifiable classes, which
iklam@7089 674 // shouldn't happen in normal cases. So better safe than sorry.
iklam@7089 675 _check_classes_made_progress = false;
iklam@7089 676 SystemDictionary::classes_do(check_one_shared_class);
iklam@7089 677 } while (_check_classes_made_progress);
iklam@7089 678
iklam@7089 679 if (IgnoreUnverifiableClassesDuringDump) {
iklam@7089 680 // This is useful when running JCK or SQE tests. You should not
iklam@7089 681 // enable this when running real apps.
iklam@7089 682 SystemDictionary::remove_classes_in_error_state();
iklam@7089 683 } else {
iklam@7089 684 tty->print_cr("Please remove the unverifiable classes from your class list and try again");
iklam@7089 685 exit(1);
coleenp@4037 686 }
coleenp@4037 687 }
iklam@8497 688
iklam@8497 689 // Copy the dependencies from C_HEAP-alloced GrowableArrays to RO-alloced
iklam@8497 690 // Arrays
iklam@8497 691 SystemDictionaryShared::finalize_verification_dependencies();
coleenp@4037 692 }
coleenp@4037 693
iklam@7089 694 void MetaspaceShared::prepare_for_dumping() {
iklam@7089 695 ClassLoader::initialize_shared_path();
iklam@7089 696 FileMapInfo::allocate_classpath_entry_table();
coleenp@4037 697 }
coleenp@4037 698
coleenp@4037 699 // Preload classes from a list, populate the shared spaces and dump to a
coleenp@4037 700 // file.
coleenp@4037 701 void MetaspaceShared::preload_and_dump(TRAPS) {
coleenp@4037 702 TraceTime timer("Dump Shared Spaces", TraceStartupTime);
coleenp@4037 703 ResourceMark rm;
coleenp@4037 704
iklam@7089 705 tty->print_cr("Allocated shared space: %d bytes at " PTR_FORMAT,
iklam@7089 706 MetaspaceShared::shared_rs()->size(),
iklam@7089 707 MetaspaceShared::shared_rs()->base());
iklam@7089 708
coleenp@4037 709 // Preload classes to be shared.
coleenp@4037 710 // Should use some os:: method rather than fopen() here. aB.
iklam@7089 711 const char* class_list_path;
iklam@7089 712 if (SharedClassListFile == NULL) {
iklam@7089 713 // Construct the path to the class list (in jre/lib)
iklam@7089 714 // Walk up two directories from the location of the VM and
iklam@7089 715 // optionally tack on "lib" (depending on platform)
iklam@7089 716 char class_list_path_str[JVM_MAXPATHLEN];
iklam@7089 717 os::jvm_path(class_list_path_str, sizeof(class_list_path_str));
iklam@7089 718 for (int i = 0; i < 3; i++) {
iklam@7089 719 char *end = strrchr(class_list_path_str, *os::file_separator());
iklam@7089 720 if (end != NULL) *end = '\0';
iklam@7089 721 }
iklam@7089 722 int class_list_path_len = (int)strlen(class_list_path_str);
iklam@7089 723 if (class_list_path_len >= 3) {
iklam@7089 724 if (strcmp(class_list_path_str + class_list_path_len - 3, "lib") != 0) {
iklam@7089 725 strcat(class_list_path_str, os::file_separator());
iklam@7089 726 strcat(class_list_path_str, "lib");
iklam@7089 727 }
iklam@7089 728 }
iklam@7089 729 strcat(class_list_path_str, os::file_separator());
iklam@7089 730 strcat(class_list_path_str, "classlist");
iklam@7089 731 class_list_path = class_list_path_str;
iklam@7089 732 } else {
iklam@7089 733 class_list_path = SharedClassListFile;
coleenp@4037 734 }
iklam@7089 735
iklam@7089 736 int class_count = 0;
iklam@7089 737 GrowableArray<Klass*>* class_promote_order = new GrowableArray<Klass*>();
iklam@7089 738
iklam@7089 739 // sun.io.Converters
iklam@7089 740 static const char obj_array_sig[] = "[[Ljava/lang/Object;";
iklam@7089 741 SymbolTable::new_permanent_symbol(obj_array_sig, THREAD);
iklam@7089 742
iklam@7089 743 // java.util.HashMap
iklam@7089 744 static const char map_entry_array_sig[] = "[Ljava/util/Map$Entry;";
iklam@7089 745 SymbolTable::new_permanent_symbol(map_entry_array_sig, THREAD);
iklam@7089 746
iklam@7089 747 tty->print_cr("Loading classes to share ...");
iklam@7089 748 _has_error_classes = false;
iklam@7089 749 class_count += preload_and_dump(class_list_path, class_promote_order,
iklam@7089 750 THREAD);
iklam@7089 751 if (ExtraSharedClassListFile) {
iklam@7089 752 class_count += preload_and_dump(ExtraSharedClassListFile, class_promote_order,
iklam@7089 753 THREAD);
coleenp@4037 754 }
iklam@7089 755 tty->print_cr("Loading classes to share: done.");
coleenp@4037 756
iklam@7322 757 ClassLoaderExt::init_lookup_cache(THREAD);
iklam@7322 758
iklam@7089 759 if (PrintSharedSpaces) {
iklam@7089 760 tty->print_cr("Shared spaces: preloaded %d classes", class_count);
iklam@7089 761 }
iklam@7089 762
iklam@7089 763 // Rewrite and link classes
iklam@7089 764 tty->print_cr("Rewriting and linking classes ...");
iklam@7089 765
iklam@7089 766 // Link any classes which got missed. This would happen if we have loaded classes that
iklam@7089 767 // were not explicitly specified in the classlist. E.g., if an interface implemented by class K
iklam@7089 768 // fails verification, all other interfaces that were not specified in the classlist but
iklam@7089 769 // are implemented by K are not verified.
iklam@7089 770 link_and_cleanup_shared_classes(CATCH);
iklam@7089 771 tty->print_cr("Rewriting and linking classes: done");
iklam@7089 772
iklam@7089 773 // Create and dump the shared spaces. Everything so far is loaded
iklam@7089 774 // with the null class loader.
iklam@7089 775 ClassLoaderData* loader_data = ClassLoaderData::the_null_class_loader_data();
iklam@7089 776 VM_PopulateDumpSharedSpace op(loader_data, class_promote_order);
iklam@7089 777 VMThread::execute(&op);
iklam@7089 778
iklam@7089 779 // Since various initialization steps have been undone by this process,
iklam@7089 780 // it is not reasonable to continue running a java process.
iklam@7089 781 exit(0);
iklam@7089 782 }
iklam@7089 783
iklam@7089 784 int MetaspaceShared::preload_and_dump(const char * class_list_path,
iklam@7089 785 GrowableArray<Klass*>* class_promote_order,
iklam@7089 786 TRAPS) {
coleenp@4037 787 FILE* file = fopen(class_list_path, "r");
iklam@7089 788 char class_name[256];
iklam@7089 789 int class_count = 0;
iklam@7089 790
coleenp@4037 791 if (file != NULL) {
coleenp@4037 792 while ((fgets(class_name, sizeof class_name, file)) != NULL) {
iklam@7089 793 if (*class_name == '#') { // comment
coleenp@4037 794 continue;
coleenp@4037 795 }
coleenp@4037 796 // Remove trailing newline
coleenp@4037 797 size_t name_len = strlen(class_name);
iklam@7089 798 if (class_name[name_len-1] == '\n') {
iklam@7089 799 class_name[name_len-1] = '\0';
iklam@7089 800 }
coleenp@4037 801
coleenp@4037 802 // Got a class name - load it.
coleenp@4037 803 TempNewSymbol class_name_symbol = SymbolTable::new_permanent_symbol(class_name, THREAD);
coleenp@4037 804 guarantee(!HAS_PENDING_EXCEPTION, "Exception creating a symbol.");
coleenp@4037 805 Klass* klass = SystemDictionary::resolve_or_null(class_name_symbol,
coleenp@4037 806 THREAD);
iklam@7089 807 CLEAR_PENDING_EXCEPTION;
coleenp@4037 808 if (klass != NULL) {
coleenp@4037 809 if (PrintSharedSpaces && Verbose && WizardMode) {
coleenp@4037 810 tty->print_cr("Shared spaces preloaded: %s", class_name);
coleenp@4037 811 }
coleenp@4037 812
coleenp@4037 813 InstanceKlass* ik = InstanceKlass::cast(klass);
coleenp@4037 814
coleenp@4037 815 // Should be class load order as per -XX:+TraceClassLoadingPreorder
coleenp@4037 816 class_promote_order->append(ik);
coleenp@4037 817
coleenp@4037 818 // Link the class to cause the bytecodes to be rewritten and the
coleenp@4037 819 // cpcache to be created. The linking is done as soon as classes
coleenp@4037 820 // are loaded in order that the related data structures (klass and
coleenp@4037 821 // cpCache) are located together.
iklam@7089 822 try_link_class(ik, THREAD);
iklam@7089 823 guarantee(!HAS_PENDING_EXCEPTION, "exception in link_class");
coleenp@4037 824
coleenp@4037 825 class_count++;
coleenp@4037 826 } else {
iklam@7089 827 //tty->print_cr("Preload failed: %s", class_name);
coleenp@4037 828 }
coleenp@4037 829 }
ccheung@7103 830 fclose(file);
coleenp@4037 831 } else {
coleenp@4037 832 char errmsg[JVM_MAXPATHLEN];
coleenp@4037 833 os::lasterror(errmsg, JVM_MAXPATHLEN);
coleenp@4037 834 tty->print_cr("Loading classlist failed: %s", errmsg);
coleenp@4037 835 exit(1);
coleenp@4037 836 }
coleenp@4037 837
iklam@7089 838 return class_count;
coleenp@4037 839 }
coleenp@4037 840
iklam@7089 841 // Returns true if the class's status has changed
iklam@7089 842 bool MetaspaceShared::try_link_class(InstanceKlass* ik, TRAPS) {
iklam@7089 843 assert(DumpSharedSpaces, "should only be called during dumping");
iklam@7089 844 if (ik->init_state() < InstanceKlass::linked) {
iklam@7089 845 bool saved = BytecodeVerificationLocal;
iklam@7089 846 if (!SharedClassUtil::is_shared_boot_class(ik)) {
iklam@7089 847 // The verification decision is based on BytecodeVerificationRemote
iklam@7089 848 // for non-system classes. Since we are using the NULL classloader
iklam@7089 849 // to load non-system classes during dumping, we need to temporarily
iklam@7089 850 // change BytecodeVerificationLocal to be the same as
iklam@7089 851 // BytecodeVerificationRemote. Note this can cause the parent system
iklam@7089 852 // classes also being verified. The extra overhead is acceptable during
iklam@7089 853 // dumping.
iklam@7089 854 BytecodeVerificationLocal = BytecodeVerificationRemote;
iklam@7089 855 }
iklam@7089 856 ik->link_class(THREAD);
iklam@7089 857 if (HAS_PENDING_EXCEPTION) {
iklam@7089 858 ResourceMark rm;
jiangli@7363 859 tty->print_cr("Preload Warning: Verification failed for %s",
iklam@7089 860 ik->external_name());
iklam@7089 861 CLEAR_PENDING_EXCEPTION;
iklam@7089 862 ik->set_in_error_state();
iklam@7089 863 _has_error_classes = true;
iklam@7089 864 }
iklam@7089 865 BytecodeVerificationLocal = saved;
iklam@7089 866 return true;
iklam@7089 867 } else {
iklam@7089 868 return false;
iklam@7089 869 }
iklam@7089 870 }
coleenp@4037 871
coleenp@4037 872 // Closure for serializing initialization data in from a data area
coleenp@4037 873 // (ptr_array) read from the shared file.
coleenp@4037 874
coleenp@4037 875 class ReadClosure : public SerializeClosure {
coleenp@4037 876 private:
coleenp@4037 877 intptr_t** _ptr_array;
coleenp@4037 878
coleenp@4037 879 inline intptr_t nextPtr() {
coleenp@4037 880 return *(*_ptr_array)++;
coleenp@4037 881 }
coleenp@4037 882
coleenp@4037 883 public:
coleenp@4037 884 ReadClosure(intptr_t** ptr_array) { _ptr_array = ptr_array; }
coleenp@4037 885
coleenp@4037 886 void do_ptr(void** p) {
coleenp@4037 887 assert(*p == NULL, "initializing previous initialized pointer.");
coleenp@4037 888 intptr_t obj = nextPtr();
coleenp@4037 889 assert((intptr_t)obj >= 0 || (intptr_t)obj < -100,
coleenp@4037 890 "hit tag while initializing ptrs.");
coleenp@4037 891 *p = (void*)obj;
coleenp@4037 892 }
coleenp@4037 893
coleenp@4037 894 void do_tag(int tag) {
coleenp@4037 895 int old_tag;
coleenp@4037 896 old_tag = (int)(intptr_t)nextPtr();
coleenp@4037 897 // do_int(&old_tag);
coleenp@4037 898 assert(tag == old_tag, "old tag doesn't match");
coleenp@4037 899 FileMapInfo::assert_mark(tag == old_tag);
coleenp@4037 900 }
coleenp@4037 901
coleenp@4037 902 void do_region(u_char* start, size_t size) {
coleenp@4037 903 assert((intptr_t)start % sizeof(intptr_t) == 0, "bad alignment");
coleenp@4037 904 assert(size % sizeof(intptr_t) == 0, "bad size");
coleenp@4037 905 do_tag((int)size);
coleenp@4037 906 while (size > 0) {
coleenp@4037 907 *(intptr_t*)start = nextPtr();
coleenp@4037 908 start += sizeof(intptr_t);
coleenp@4037 909 size -= sizeof(intptr_t);
coleenp@4037 910 }
coleenp@4037 911 }
coleenp@4037 912
coleenp@4037 913 bool reading() const { return true; }
coleenp@4037 914 };
coleenp@4037 915
coleenp@4037 916 // Return true if given address is in the mapped shared space.
coleenp@4037 917 bool MetaspaceShared::is_in_shared_space(const void* p) {
iklam@5329 918 return UseSharedSpaces && FileMapInfo::current_info()->is_in_shared_space(p);
coleenp@4037 919 }
coleenp@4037 920
coleenp@4037 921 void MetaspaceShared::print_shared_spaces() {
iklam@5329 922 if (UseSharedSpaces) {
iklam@5329 923 FileMapInfo::current_info()->print_shared_spaces();
iklam@5329 924 }
coleenp@4037 925 }
coleenp@4037 926
coleenp@4037 927
coleenp@4037 928 // Map shared spaces at requested addresses and return if succeeded.
coleenp@4037 929 // Need to keep the bounds of the ro and rw space for the Metaspace::contains
coleenp@4037 930 // call, or is_in_shared_space.
coleenp@4037 931 bool MetaspaceShared::map_shared_spaces(FileMapInfo* mapinfo) {
coleenp@4037 932 size_t image_alignment = mapinfo->alignment();
coleenp@4037 933
hseigel@4396 934 #ifndef _WINDOWS
hseigel@4396 935 // Map in the shared memory and then map the regions on top of it.
hseigel@4396 936 // On Windows, don't map the memory here because it will cause the
hseigel@4396 937 // mappings of the regions to fail.
coleenp@4037 938 ReservedSpace shared_rs = mapinfo->reserve_shared_memory();
coleenp@4037 939 if (!shared_rs.is_reserved()) return false;
hseigel@4396 940 #endif
hseigel@4396 941
hseigel@4396 942 assert(!DumpSharedSpaces, "Should not be called with DumpSharedSpaces");
coleenp@4037 943
iklam@5329 944 char* _ro_base = NULL;
iklam@5329 945 char* _rw_base = NULL;
iklam@5329 946 char* _md_base = NULL;
iklam@5329 947 char* _mc_base = NULL;
iklam@5329 948
coleenp@4037 949 // Map each shared region
coleenp@4037 950 if ((_ro_base = mapinfo->map_region(ro)) != NULL &&
jiangli@6868 951 mapinfo->verify_region_checksum(ro) &&
coleenp@4037 952 (_rw_base = mapinfo->map_region(rw)) != NULL &&
jiangli@6868 953 mapinfo->verify_region_checksum(rw) &&
coleenp@4037 954 (_md_base = mapinfo->map_region(md)) != NULL &&
jiangli@6868 955 mapinfo->verify_region_checksum(md) &&
coleenp@4037 956 (_mc_base = mapinfo->map_region(mc)) != NULL &&
jiangli@6868 957 mapinfo->verify_region_checksum(mc) &&
iklam@7089 958 (image_alignment == (size_t)max_alignment()) &&
iklam@7089 959 mapinfo->validate_classpath_entry_table()) {
coleenp@4037 960 // Success (no need to do anything)
coleenp@4037 961 return true;
coleenp@4037 962 } else {
coleenp@4037 963 // If there was a failure in mapping any of the spaces, unmap the ones
coleenp@4037 964 // that succeeded
coleenp@4037 965 if (_ro_base != NULL) mapinfo->unmap_region(ro);
coleenp@4037 966 if (_rw_base != NULL) mapinfo->unmap_region(rw);
coleenp@4037 967 if (_md_base != NULL) mapinfo->unmap_region(md);
coleenp@4037 968 if (_mc_base != NULL) mapinfo->unmap_region(mc);
hseigel@4396 969 #ifndef _WINDOWS
coleenp@4037 970 // Release the entire mapped region
coleenp@4037 971 shared_rs.release();
hseigel@4396 972 #endif
coleenp@4037 973 // If -Xshare:on is specified, print out the error message and exit VM,
coleenp@4037 974 // otherwise, set UseSharedSpaces to false and continue.
iklam@7414 975 if (RequireSharedSpaces || PrintSharedArchiveAndExit) {
iklam@7089 976 vm_exit_during_initialization("Unable to use shared archive.", "Failed map_region for using -Xshare:on.");
coleenp@4037 977 } else {
coleenp@4037 978 FLAG_SET_DEFAULT(UseSharedSpaces, false);
coleenp@4037 979 }
coleenp@4037 980 return false;
coleenp@4037 981 }
coleenp@4037 982 }
coleenp@4037 983
coleenp@4037 984 // Read the miscellaneous data from the shared file, and
coleenp@4037 985 // serialize it out to its various destinations.
coleenp@4037 986
coleenp@4037 987 void MetaspaceShared::initialize_shared_spaces() {
coleenp@4037 988 FileMapInfo *mapinfo = FileMapInfo::current_info();
coleenp@4037 989
coleenp@4037 990 char* buffer = mapinfo->region_base(md);
coleenp@4037 991
coleenp@4037 992 // Skip over (reserve space for) a list of addresses of C++ vtables
coleenp@4037 993 // for Klass objects. They get filled in later.
coleenp@4037 994
coleenp@4037 995 void** vtbl_list = (void**)buffer;
coleenp@4037 996 buffer += MetaspaceShared::vtbl_list_size * sizeof(void*);
coleenp@4037 997 Universe::init_self_patching_vtbl_list(vtbl_list, vtbl_list_size);
coleenp@4037 998
coleenp@4037 999 // Skip over (reserve space for) dummy C++ vtables Klass objects.
coleenp@4037 1000 // They are used as is.
coleenp@4037 1001
coleenp@4037 1002 intptr_t vtable_size = *(intptr_t*)buffer;
coleenp@4037 1003 buffer += sizeof(intptr_t);
coleenp@4037 1004 buffer += vtable_size;
coleenp@4037 1005
coleenp@4037 1006 // Create the symbol table using the bucket array at this spot in the
coleenp@4037 1007 // misc data space. Since the symbol table is often modified, this
coleenp@4037 1008 // region (of mapped pages) will be copy-on-write.
coleenp@4037 1009
coleenp@4037 1010 int symbolTableLen = *(intptr_t*)buffer;
coleenp@4037 1011 buffer += sizeof(intptr_t);
coleenp@4037 1012 int number_of_entries = *(intptr_t*)buffer;
coleenp@4037 1013 buffer += sizeof(intptr_t);
coleenp@4037 1014 SymbolTable::create_table((HashtableBucket<mtSymbol>*)buffer, symbolTableLen,
coleenp@4037 1015 number_of_entries);
coleenp@4037 1016 buffer += symbolTableLen;
coleenp@4037 1017
coleenp@4037 1018 // Create the shared dictionary using the bucket array at this spot in
coleenp@4037 1019 // the misc data space. Since the shared dictionary table is never
coleenp@4037 1020 // modified, this region (of mapped pages) will be (effectively, if
coleenp@4037 1021 // not explicitly) read-only.
coleenp@4037 1022
coleenp@4037 1023 int sharedDictionaryLen = *(intptr_t*)buffer;
coleenp@4037 1024 buffer += sizeof(intptr_t);
coleenp@4037 1025 number_of_entries = *(intptr_t*)buffer;
coleenp@4037 1026 buffer += sizeof(intptr_t);
coleenp@4037 1027 SystemDictionary::set_shared_dictionary((HashtableBucket<mtClass>*)buffer,
coleenp@4037 1028 sharedDictionaryLen,
coleenp@4037 1029 number_of_entries);
coleenp@4037 1030 buffer += sharedDictionaryLen;
coleenp@4037 1031
coleenp@4037 1032 // Create the package info table using the bucket array at this spot in
coleenp@4037 1033 // the misc data space. Since the package info table is never
coleenp@4037 1034 // modified, this region (of mapped pages) will be (effectively, if
coleenp@4037 1035 // not explicitly) read-only.
coleenp@4037 1036
coleenp@4037 1037 int pkgInfoLen = *(intptr_t*)buffer;
coleenp@4037 1038 buffer += sizeof(intptr_t);
coleenp@4037 1039 number_of_entries = *(intptr_t*)buffer;
coleenp@4037 1040 buffer += sizeof(intptr_t);
coleenp@4037 1041 ClassLoader::create_package_info_table((HashtableBucket<mtClass>*)buffer, pkgInfoLen,
coleenp@4037 1042 number_of_entries);
coleenp@4037 1043 buffer += pkgInfoLen;
coleenp@4037 1044 ClassLoader::verify();
coleenp@4037 1045
coleenp@4037 1046 // The following data in the shared misc data region are the linked
coleenp@4037 1047 // list elements (HashtableEntry objects) for the symbol table, string
coleenp@4037 1048 // table, and shared dictionary. The heap objects refered to by the
coleenp@4037 1049 // symbol table, string table, and shared dictionary are permanent and
coleenp@4037 1050 // unmovable. Since new entries added to the string and symbol tables
coleenp@4037 1051 // are always added at the beginning of the linked lists, THESE LINKED
coleenp@4037 1052 // LIST ELEMENTS ARE READ-ONLY.
coleenp@4037 1053
coleenp@4037 1054 int len = *(intptr_t*)buffer; // skip over symbol table entries
coleenp@4037 1055 buffer += sizeof(intptr_t);
coleenp@4037 1056 buffer += len;
coleenp@4037 1057
coleenp@4037 1058 len = *(intptr_t*)buffer; // skip over shared dictionary entries
coleenp@4037 1059 buffer += sizeof(intptr_t);
coleenp@4037 1060 buffer += len;
coleenp@4037 1061
coleenp@4037 1062 len = *(intptr_t*)buffer; // skip over package info table entries
coleenp@4037 1063 buffer += sizeof(intptr_t);
coleenp@4037 1064 buffer += len;
coleenp@4037 1065
coleenp@4037 1066 len = *(intptr_t*)buffer; // skip over package info table char[] arrays.
coleenp@4037 1067 buffer += sizeof(intptr_t);
coleenp@4037 1068 buffer += len;
coleenp@4037 1069
iklam@7322 1070 buffer = ClassLoaderExt::restore_lookup_cache_from_archive(buffer);
iklam@7322 1071
coleenp@4037 1072 intptr_t* array = (intptr_t*)buffer;
coleenp@4037 1073 ReadClosure rc(&array);
coleenp@4037 1074 serialize(&rc);
coleenp@4037 1075
coleenp@4037 1076 // Close the mapinfo file
coleenp@4037 1077 mapinfo->close();
iklam@7089 1078
iklam@7089 1079 if (PrintSharedArchiveAndExit) {
iklam@7089 1080 if (PrintSharedDictionary) {
iklam@7089 1081 tty->print_cr("\nShared classes:\n");
iklam@7089 1082 SystemDictionary::print_shared(false);
iklam@7089 1083 }
iklam@7089 1084 if (_archive_loading_failed) {
iklam@7089 1085 tty->print_cr("archive is invalid");
iklam@7089 1086 vm_exit(1);
iklam@7089 1087 } else {
iklam@7089 1088 tty->print_cr("archive is valid");
iklam@7089 1089 vm_exit(0);
iklam@7089 1090 }
iklam@7089 1091 }
coleenp@4037 1092 }
coleenp@4037 1093
coleenp@4037 1094 // JVM/TI RedefineClasses() support:
coleenp@4037 1095 bool MetaspaceShared::remap_shared_readonly_as_readwrite() {
coleenp@4037 1096 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
coleenp@4037 1097
coleenp@4037 1098 if (UseSharedSpaces) {
coleenp@4037 1099 // remap the shared readonly space to shared readwrite, private
coleenp@4037 1100 FileMapInfo* mapinfo = FileMapInfo::current_info();
coleenp@4037 1101 if (!mapinfo->remap_shared_readonly_as_readwrite()) {
coleenp@4037 1102 return false;
coleenp@4037 1103 }
coleenp@4037 1104 }
coleenp@4037 1105 return true;
coleenp@4037 1106 }
ccheung@7103 1107
ccheung@7103 1108 int MetaspaceShared::count_class(const char* classlist_file) {
ccheung@7103 1109 if (classlist_file == NULL) {
ccheung@7103 1110 return 0;
ccheung@7103 1111 }
ccheung@7103 1112 char class_name[256];
ccheung@7103 1113 int class_count = 0;
ccheung@7103 1114 FILE* file = fopen(classlist_file, "r");
ccheung@7103 1115 if (file != NULL) {
ccheung@7103 1116 while ((fgets(class_name, sizeof class_name, file)) != NULL) {
ccheung@7103 1117 if (*class_name == '#') { // comment
ccheung@7103 1118 continue;
ccheung@7103 1119 }
ccheung@7103 1120 class_count++;
ccheung@7103 1121 }
ccheung@7103 1122 fclose(file);
ccheung@7103 1123 } else {
ccheung@7103 1124 char errmsg[JVM_MAXPATHLEN];
ccheung@7103 1125 os::lasterror(errmsg, JVM_MAXPATHLEN);
ccheung@7103 1126 tty->print_cr("Loading classlist failed: %s", errmsg);
ccheung@7103 1127 exit(1);
ccheung@7103 1128 }
ccheung@7103 1129
ccheung@7103 1130 return class_count;
ccheung@7103 1131 }
ccheung@7103 1132
ccheung@7103 1133 // the sizes are good for typical large applications that have a lot of shared
ccheung@7103 1134 // classes
ccheung@7103 1135 void MetaspaceShared::estimate_regions_size() {
ccheung@7103 1136 int class_count = count_class(SharedClassListFile);
ccheung@7103 1137 class_count += count_class(ExtraSharedClassListFile);
ccheung@7103 1138
ccheung@7103 1139 if (class_count > LargeThresholdClassCount) {
ccheung@7103 1140 if (class_count < HugeThresholdClassCount) {
ccheung@7103 1141 SET_ESTIMATED_SIZE(Large, ReadOnly);
ccheung@7103 1142 SET_ESTIMATED_SIZE(Large, ReadWrite);
ccheung@7103 1143 SET_ESTIMATED_SIZE(Large, MiscData);
ccheung@7103 1144 SET_ESTIMATED_SIZE(Large, MiscCode);
ccheung@7103 1145 } else {
ccheung@7103 1146 SET_ESTIMATED_SIZE(Huge, ReadOnly);
ccheung@7103 1147 SET_ESTIMATED_SIZE(Huge, ReadWrite);
ccheung@7103 1148 SET_ESTIMATED_SIZE(Huge, MiscData);
ccheung@7103 1149 SET_ESTIMATED_SIZE(Huge, MiscCode);
ccheung@7103 1150 }
ccheung@7103 1151 }
ccheung@7103 1152 }

mercurial