src/share/vm/memory/metaspaceShared.hpp

Mon, 25 Aug 2014 00:13:36 -0700

author
ccheung
date
Mon, 25 Aug 2014 00:13:36 -0700
changeset 7103
622c6e0ad4d6
parent 7089
6e0cb14ce59b
child 7104
b23a19cd0536
permissions
-rw-r--r--

8048150: Allow easy configurations for large CDS archives
Summary: Estimate the size of shared archive based on the number of classes in the classlist file
Reviewed-by: iklam, jiangli, minqi, dholmes

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
ccheung@7103 33 #define LargeSharedArchiveSize (300*M)
ccheung@7103 34 #define HugeSharedArchiveSize (800*M)
ccheung@7103 35 #define ReadOnlyRegionPercentage 0.4
ccheung@7103 36 #define ReadWriteRegionPercentage 0.55
ccheung@7103 37 #define MiscDataRegionPercentage 0.03
ccheung@7103 38 #define MiscCodeRegionPercentage 0.02
ccheung@7103 39 #define LargeThresholdClassCount 5000
ccheung@7103 40 #define HugeThresholdClassCount 40000
ccheung@7103 41
ccheung@7103 42 #define SET_ESTIMATED_SIZE(type, region) \
ccheung@7103 43 Shared ##region## Size = FLAG_IS_DEFAULT(Shared ##region## Size) ? \
ccheung@7103 44 (type ## SharedArchiveSize * region ## RegionPercentage) : Shared ## region ## Size
ccheung@7103 45
coleenp@4037 46 class FileMapInfo;
coleenp@4037 47
coleenp@4037 48 // Class Data Sharing Support
coleenp@4037 49 class MetaspaceShared : AllStatic {
coleenp@4037 50
coleenp@4037 51 // CDS support
coleenp@4037 52 static ReservedSpace* _shared_rs;
coleenp@4037 53 static int _max_alignment;
iklam@7089 54 static bool _link_classes_made_progress;
iklam@7089 55 static bool _check_classes_made_progress;
iklam@7089 56 static bool _has_error_classes;
iklam@7089 57 static bool _archive_loading_failed;
coleenp@4037 58 public:
coleenp@4037 59 enum {
coleenp@4037 60 vtbl_list_size = 17, // number of entries in the shared space vtable list.
coleenp@4037 61 num_virtuals = 200 // maximum number of virtual functions
coleenp@4037 62 // If virtual functions are added to Metadata,
coleenp@4037 63 // this number needs to be increased. Also,
coleenp@4037 64 // SharedMiscCodeSize will need to be increased.
coleenp@4037 65 };
coleenp@4037 66
coleenp@4037 67 enum {
coleenp@4037 68 ro = 0, // read-only shared space in the heap
coleenp@4037 69 rw = 1, // read-write shared space in the heap
coleenp@4037 70 md = 2, // miscellaneous data for initializing tables, etc.
coleenp@4037 71 mc = 3, // miscellaneous code - vtable replacement.
coleenp@4037 72 n_regions = 4
coleenp@4037 73 };
coleenp@4037 74
jprovino@4165 75 // Accessor functions to save shared space created for metadata, which has
jprovino@4165 76 // extra space allocated at the end for miscellaneous data and code.
jprovino@4165 77 static void set_max_alignment(int alignment) {
jprovino@4165 78 CDS_ONLY(_max_alignment = alignment);
jprovino@4165 79 }
coleenp@4037 80
jprovino@4165 81 static int max_alignment() {
jprovino@4165 82 CDS_ONLY(return _max_alignment);
jprovino@4165 83 NOT_CDS(return 0);
jprovino@4165 84 }
coleenp@4037 85
iklam@7089 86 static void prepare_for_dumping() NOT_CDS_RETURN;
jprovino@4165 87 static void preload_and_dump(TRAPS) NOT_CDS_RETURN;
iklam@7089 88 static int preload_and_dump(const char * class_list_path,
iklam@7089 89 GrowableArray<Klass*>* class_promote_order,
iklam@7089 90 TRAPS) NOT_CDS_RETURN;
jprovino@4165 91
jprovino@4165 92 static ReservedSpace* shared_rs() {
jprovino@4165 93 CDS_ONLY(return _shared_rs);
jprovino@4165 94 NOT_CDS(return NULL);
jprovino@4165 95 }
jprovino@4165 96
jprovino@4165 97 static void set_shared_rs(ReservedSpace* rs) {
jprovino@4165 98 CDS_ONLY(_shared_rs = rs;)
jprovino@4165 99 }
jprovino@4165 100
iklam@7089 101 static void set_archive_loading_failed() {
iklam@7089 102 _archive_loading_failed = true;
iklam@7089 103 }
jprovino@4165 104 static bool map_shared_spaces(FileMapInfo* mapinfo) NOT_CDS_RETURN_(false);
jprovino@4165 105 static void initialize_shared_spaces() NOT_CDS_RETURN;
coleenp@4037 106
coleenp@4037 107 // Return true if given address is in the mapped shared space.
jprovino@4165 108 static bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
coleenp@4037 109
coleenp@4037 110 static void generate_vtable_methods(void** vtbl_list,
coleenp@4037 111 void** vtable,
coleenp@4037 112 char** md_top, char* md_end,
coleenp@4037 113 char** mc_top, char* mc_end);
coleenp@4037 114 static void serialize(SerializeClosure* sc);
coleenp@4037 115
coleenp@4037 116 // JVM/TI RedefineClasses() support:
coleenp@4037 117 // Remap the shared readonly space to shared readwrite, private if
coleenp@4037 118 // sharing is enabled. Simply returns true if sharing is not enabled
coleenp@4037 119 // or if the remapping has already been done by a prior call.
jprovino@4165 120 static bool remap_shared_readonly_as_readwrite() NOT_CDS_RETURN_(true);
coleenp@4037 121
coleenp@4037 122 static void print_shared_spaces();
iklam@7089 123
iklam@7089 124 static bool try_link_class(InstanceKlass* ik, TRAPS);
iklam@7089 125 static void link_one_shared_class(Klass* obj, TRAPS);
iklam@7089 126 static void check_one_shared_class(Klass* obj);
iklam@7089 127 static void link_and_cleanup_shared_classes(TRAPS);
ccheung@7103 128
ccheung@7103 129 static int count_class(const char* classlist_file);
ccheung@7103 130 static void estimate_regions_size() NOT_CDS_RETURN;
coleenp@4037 131 };
coleenp@4037 132 #endif // SHARE_VM_MEMORY_METASPACE_SHARED_HPP

mercurial