src/share/vm/memory/metaspaceShared.hpp

Thu, 21 Aug 2014 13:57:51 -0700

author
iklam
date
Thu, 21 Aug 2014 13:57:51 -0700
changeset 7089
6e0cb14ce59b
parent 4165
fb19af007ffc
child 7103
622c6e0ad4d6
permissions
-rw-r--r--

8046070: Class Data Sharing clean up and refactoring
Summary: Cleaned up CDS to be more configurable, maintainable and extensible
Reviewed-by: dholmes, coleenp, acorn, mchung

coleenp@4037 1 /*
coleenp@4037 2 * Copyright (c) 2012, 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 #ifndef SHARE_VM_MEMORY_METASPACE_SHARED_HPP
coleenp@4037 25 #define SHARE_VM_MEMORY_METASPACE_SHARED_HPP
coleenp@4037 26
coleenp@4037 27 #include "memory/allocation.hpp"
coleenp@4037 28 #include "memory/memRegion.hpp"
coleenp@4037 29 #include "runtime/virtualspace.hpp"
coleenp@4037 30 #include "utilities/exceptions.hpp"
coleenp@4037 31 #include "utilities/macros.hpp"
coleenp@4037 32
coleenp@4037 33 class FileMapInfo;
coleenp@4037 34
coleenp@4037 35 // Class Data Sharing Support
coleenp@4037 36 class MetaspaceShared : AllStatic {
coleenp@4037 37
coleenp@4037 38 // CDS support
coleenp@4037 39 static ReservedSpace* _shared_rs;
coleenp@4037 40 static int _max_alignment;
iklam@7089 41 static bool _link_classes_made_progress;
iklam@7089 42 static bool _check_classes_made_progress;
iklam@7089 43 static bool _has_error_classes;
iklam@7089 44 static bool _archive_loading_failed;
coleenp@4037 45 public:
coleenp@4037 46 enum {
coleenp@4037 47 vtbl_list_size = 17, // number of entries in the shared space vtable list.
coleenp@4037 48 num_virtuals = 200 // maximum number of virtual functions
coleenp@4037 49 // If virtual functions are added to Metadata,
coleenp@4037 50 // this number needs to be increased. Also,
coleenp@4037 51 // SharedMiscCodeSize will need to be increased.
coleenp@4037 52 };
coleenp@4037 53
coleenp@4037 54 enum {
coleenp@4037 55 ro = 0, // read-only shared space in the heap
coleenp@4037 56 rw = 1, // read-write shared space in the heap
coleenp@4037 57 md = 2, // miscellaneous data for initializing tables, etc.
coleenp@4037 58 mc = 3, // miscellaneous code - vtable replacement.
coleenp@4037 59 n_regions = 4
coleenp@4037 60 };
coleenp@4037 61
jprovino@4165 62 // Accessor functions to save shared space created for metadata, which has
jprovino@4165 63 // extra space allocated at the end for miscellaneous data and code.
jprovino@4165 64 static void set_max_alignment(int alignment) {
jprovino@4165 65 CDS_ONLY(_max_alignment = alignment);
jprovino@4165 66 }
coleenp@4037 67
jprovino@4165 68 static int max_alignment() {
jprovino@4165 69 CDS_ONLY(return _max_alignment);
jprovino@4165 70 NOT_CDS(return 0);
jprovino@4165 71 }
coleenp@4037 72
iklam@7089 73 static void prepare_for_dumping() NOT_CDS_RETURN;
jprovino@4165 74 static void preload_and_dump(TRAPS) NOT_CDS_RETURN;
iklam@7089 75 static int preload_and_dump(const char * class_list_path,
iklam@7089 76 GrowableArray<Klass*>* class_promote_order,
iklam@7089 77 TRAPS) NOT_CDS_RETURN;
jprovino@4165 78
jprovino@4165 79 static ReservedSpace* shared_rs() {
jprovino@4165 80 CDS_ONLY(return _shared_rs);
jprovino@4165 81 NOT_CDS(return NULL);
jprovino@4165 82 }
jprovino@4165 83
jprovino@4165 84 static void set_shared_rs(ReservedSpace* rs) {
jprovino@4165 85 CDS_ONLY(_shared_rs = rs;)
jprovino@4165 86 }
jprovino@4165 87
iklam@7089 88 static void set_archive_loading_failed() {
iklam@7089 89 _archive_loading_failed = true;
iklam@7089 90 }
jprovino@4165 91 static bool map_shared_spaces(FileMapInfo* mapinfo) NOT_CDS_RETURN_(false);
jprovino@4165 92 static void initialize_shared_spaces() NOT_CDS_RETURN;
coleenp@4037 93
coleenp@4037 94 // Return true if given address is in the mapped shared space.
jprovino@4165 95 static bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
coleenp@4037 96
coleenp@4037 97 static void generate_vtable_methods(void** vtbl_list,
coleenp@4037 98 void** vtable,
coleenp@4037 99 char** md_top, char* md_end,
coleenp@4037 100 char** mc_top, char* mc_end);
coleenp@4037 101 static void serialize(SerializeClosure* sc);
coleenp@4037 102
coleenp@4037 103 // JVM/TI RedefineClasses() support:
coleenp@4037 104 // Remap the shared readonly space to shared readwrite, private if
coleenp@4037 105 // sharing is enabled. Simply returns true if sharing is not enabled
coleenp@4037 106 // or if the remapping has already been done by a prior call.
jprovino@4165 107 static bool remap_shared_readonly_as_readwrite() NOT_CDS_RETURN_(true);
coleenp@4037 108
coleenp@4037 109 static void print_shared_spaces();
iklam@7089 110
iklam@7089 111 static bool try_link_class(InstanceKlass* ik, TRAPS);
iklam@7089 112 static void link_one_shared_class(Klass* obj, TRAPS);
iklam@7089 113 static void check_one_shared_class(Klass* obj);
iklam@7089 114 static void link_and_cleanup_shared_classes(TRAPS);
coleenp@4037 115 };
coleenp@4037 116 #endif // SHARE_VM_MEMORY_METASPACE_SHARED_HPP

mercurial