author | stuefe |
Fri, 21 Jul 2017 09:50:12 +0200 | |
changeset 46701 | f559541c0daa |
parent 46630 | 75aa3e39d02c |
child 46742 | 24ec8a039c90 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
2 |
* Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/classLoader.hpp" |
|
34659
3a7071043457
8143615: compactHashtable.hpp includes .inline.hpp file
iklam
parents:
33628
diff
changeset
|
27 |
#include "classfile/compactHashtable.inline.hpp" |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
28 |
#include "classfile/sharedClassUtil.hpp" |
7397 | 29 |
#include "classfile/symbolTable.hpp" |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
30 |
#include "classfile/systemDictionaryShared.hpp" |
14577
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
31 |
#include "classfile/altHashing.hpp" |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
32 |
#if INCLUDE_ALL_GCS |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
33 |
#include "gc/g1/g1CollectedHeap.hpp" |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
34 |
#endif |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
35 |
#include "logging/log.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46630
diff
changeset
|
36 |
#include "logging/logStream.hpp" |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
37 |
#include "logging/logMessage.hpp" |
7397 | 38 |
#include "memory/filemap.hpp" |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
39 |
#include "memory/metadataFactory.hpp" |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
40 |
#include "memory/oopFactory.hpp" |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
41 |
#include "oops/objArrayOop.hpp" |
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
46522
diff
changeset
|
42 |
#include "prims/jvm.h" |
31332
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
43 |
#include "prims/jvmtiExport.hpp" |
7397 | 44 |
#include "runtime/arguments.hpp" |
45 |
#include "runtime/java.hpp" |
|
46 |
#include "runtime/os.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24424
diff
changeset
|
47 |
#include "runtime/vm_version.hpp" |
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
48 |
#include "services/memTracker.hpp" |
46625 | 49 |
#include "utilities/align.hpp" |
7397 | 50 |
#include "utilities/defaultStream.hpp" |
51 |
||
1 | 52 |
# include <sys/stat.h> |
53 |
# include <errno.h> |
|
54 |
||
55 |
#ifndef O_BINARY // if defined (Win32) use binary files. |
|
56 |
#define O_BINARY 0 // otherwise do nothing. |
|
57 |
#endif |
|
58 |
||
59 |
extern address JVM_FunctionAtStart(); |
|
60 |
extern address JVM_FunctionAtEnd(); |
|
61 |
||
2131 | 62 |
// Complain and stop. All error conditions occurring during the writing of |
1 | 63 |
// an archive file should stop the process. Unrecoverable errors during |
64 |
// the reading of the archive file should stop the process. |
|
65 |
||
66 |
static void fail(const char *msg, va_list ap) { |
|
67 |
// This occurs very early during initialization: tty is not initialized. |
|
68 |
jio_fprintf(defaultStream::error_stream(), |
|
2131 | 69 |
"An error has occurred while processing the" |
1 | 70 |
" shared archive file.\n"); |
71 |
jio_vfprintf(defaultStream::error_stream(), msg, ap); |
|
72 |
jio_fprintf(defaultStream::error_stream(), "\n"); |
|
19707
fecaabc8e462
8023381: VM fails to initialize in runtime/CDSCompressedKPtrs/XShareAuto.java runtime/SharedArchiveFile/CdsSameObjectAlignment.java
hseigel
parents:
19319
diff
changeset
|
73 |
// Do not change the text of the below message because some tests check for it. |
1 | 74 |
vm_exit_during_initialization("Unable to use shared archive.", NULL); |
75 |
} |
|
76 |
||
77 |
||
78 |
void FileMapInfo::fail_stop(const char *msg, ...) { |
|
79 |
va_list ap; |
|
80 |
va_start(ap, msg); |
|
81 |
fail(msg, ap); // Never returns. |
|
82 |
va_end(ap); // for completeness. |
|
83 |
} |
|
84 |
||
85 |
||
86 |
// Complain and continue. Recoverable errors during the reading of the |
|
87 |
// archive file may continue (with sharing disabled). |
|
88 |
// |
|
89 |
// If we continue, then disable shared spaces and close the file. |
|
90 |
||
91 |
void FileMapInfo::fail_continue(const char *msg, ...) { |
|
92 |
va_list ap; |
|
93 |
va_start(ap, msg); |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
94 |
MetaspaceShared::set_archive_loading_failed(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
95 |
if (PrintSharedArchiveAndExit && _validating_classpath_entry_table) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
96 |
// If we are doing PrintSharedArchiveAndExit and some of the classpath entries |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
97 |
// do not validate, we can still continue "limping" to validate the remaining |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
98 |
// entries. No need to quit. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
99 |
tty->print("["); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
100 |
tty->vprint(msg, ap); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
101 |
tty->print_cr("]"); |
23186
9396c6fb571b
8033990: Add message to verbose output to indicate when JVM was unable to use shared archive (with -Xshare:auto)
mseledtsov
parents:
19707
diff
changeset
|
102 |
} else { |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
103 |
if (RequireSharedSpaces) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
104 |
fail(msg, ap); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
105 |
} else { |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
106 |
if (log_is_enabled(Info, cds)) { |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
107 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46630
diff
changeset
|
108 |
LogStream ls(Log(cds)::info()); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46630
diff
changeset
|
109 |
ls.print("UseSharedSpaces: "); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46630
diff
changeset
|
110 |
ls.vprint_cr(msg, ap); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
111 |
} |
23186
9396c6fb571b
8033990: Add message to verbose output to indicate when JVM was unable to use shared archive (with -Xshare:auto)
mseledtsov
parents:
19707
diff
changeset
|
112 |
} |
28017
84009002b566
8066670: PrintSharedArchiveAndExit does not exit the VM when the archive is invalid
iklam
parents:
27880
diff
changeset
|
113 |
UseSharedSpaces = false; |
84009002b566
8066670: PrintSharedArchiveAndExit does not exit the VM when the archive is invalid
iklam
parents:
27880
diff
changeset
|
114 |
assert(current_info() != NULL, "singleton must be registered"); |
84009002b566
8066670: PrintSharedArchiveAndExit does not exit the VM when the archive is invalid
iklam
parents:
27880
diff
changeset
|
115 |
current_info()->close(); |
1 | 116 |
} |
117 |
va_end(ap); |
|
118 |
} |
|
119 |
||
14577
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
120 |
// Fill in the fileMapInfo structure with data about this VM instance. |
1 | 121 |
|
14577
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
122 |
// This method copies the vm version info into header_version. If the version is too |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
123 |
// long then a truncated version, which has a hash code appended to it, is copied. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
124 |
// |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
125 |
// Using a template enables this method to verify that header_version is an array of |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
126 |
// length JVM_IDENT_MAX. This ensures that the code that writes to the CDS file and |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
127 |
// the code that reads the CDS file will both use the same size buffer. Hence, will |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
128 |
// use identical truncation. This is necessary for matching of truncated versions. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
129 |
template <int N> static void get_header_version(char (&header_version) [N]) { |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
130 |
assert(N == JVM_IDENT_MAX, "Bad header_version size"); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
131 |
|
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
132 |
const char *vm_version = VM_Version::internal_vm_info_string(); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
133 |
const int version_len = (int)strlen(vm_version); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
134 |
|
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
135 |
if (version_len < (JVM_IDENT_MAX-1)) { |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
136 |
strcpy(header_version, vm_version); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
137 |
|
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
138 |
} else { |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
139 |
// Get the hash value. Use a static seed because the hash needs to return the same |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
140 |
// value over multiple jvm invocations. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
141 |
unsigned int hash = AltHashing::murmur3_32(8191, (const jbyte*)vm_version, version_len); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
142 |
|
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
143 |
// Truncate the ident, saving room for the 8 hex character hash value. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
144 |
strncpy(header_version, vm_version, JVM_IDENT_MAX-9); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
145 |
|
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
146 |
// Append the hash code as eight hex digits. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
147 |
sprintf(&header_version[JVM_IDENT_MAX-9], "%08x", hash); |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
148 |
header_version[JVM_IDENT_MAX-1] = 0; // Null terminate. |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
149 |
} |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
150 |
} |
1 | 151 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
152 |
FileMapInfo::FileMapInfo() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
153 |
assert(_current_info == NULL, "must be singleton"); // not thread safe |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
154 |
_current_info = this; |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46625
diff
changeset
|
155 |
memset((void*)this, 0, sizeof(FileMapInfo)); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
156 |
_file_offset = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
157 |
_file_open = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
158 |
_header = SharedClassUtil::allocate_file_map_header(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
159 |
_header->_version = _invalid_version; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
160 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
161 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
162 |
FileMapInfo::~FileMapInfo() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
163 |
assert(_current_info == this, "must be singleton"); // not thread safe |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
164 |
_current_info = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
165 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
166 |
|
1 | 167 |
void FileMapInfo::populate_header(size_t alignment) { |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
168 |
_header->populate(this, alignment); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
169 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
170 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
171 |
size_t FileMapInfo::FileMapHeader::data_size() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
172 |
return SharedClassUtil::file_map_header_size() - sizeof(FileMapInfo::FileMapHeaderBase); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
173 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
174 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
175 |
void FileMapInfo::FileMapHeader::populate(FileMapInfo* mapinfo, size_t alignment) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
176 |
_magic = 0xf00baba2; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
177 |
_version = _current_version; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
178 |
_alignment = alignment; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
179 |
_obj_alignment = ObjectAlignmentInBytes; |
33628 | 180 |
_compact_strings = CompactStrings; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
181 |
_narrow_oop_mode = Universe::narrow_oop_mode(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
182 |
_narrow_oop_shift = Universe::narrow_oop_shift(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
183 |
_max_heap_size = MaxHeapSize; |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
184 |
_narrow_klass_base = Universe::narrow_klass_base(); |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
185 |
_narrow_klass_shift = Universe::narrow_klass_shift(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
186 |
_classpath_entry_table_size = mapinfo->_classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
187 |
_classpath_entry_table = mapinfo->_classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
188 |
_classpath_entry_size = mapinfo->_classpath_entry_size; |
1 | 189 |
|
190 |
// The following fields are for sanity checks for whether this archive |
|
191 |
// will function correctly with this JVM and the bootclasspath it's |
|
192 |
// invoked with. |
|
193 |
||
194 |
// JVM version string ... changes on each build. |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
195 |
get_header_version(_jvm_ident); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
196 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
197 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
198 |
void FileMapInfo::allocate_classpath_entry_table() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
199 |
int bytes = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
200 |
int count = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
201 |
char* strptr = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
202 |
char* strptr_max = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
203 |
Thread* THREAD = Thread::current(); |
1 | 204 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
205 |
ClassLoaderData* loader_data = ClassLoaderData::the_null_class_loader_data(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
206 |
size_t entry_size = SharedClassUtil::shared_class_path_entry_size(); |
1 | 207 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
208 |
for (int pass=0; pass<2; pass++) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
209 |
|
40013 | 210 |
// Process the modular java runtime image first |
211 |
ClassPathEntry* jrt_entry = ClassLoader::get_jrt_entry(); |
|
212 |
assert(jrt_entry != NULL, |
|
213 |
"No modular java runtime image present when allocating the CDS classpath entry table"); |
|
214 |
const char *name = jrt_entry->name(); |
|
215 |
int name_bytes = (int)(strlen(name) + 1); |
|
216 |
if (pass == 0) { |
|
217 |
count++; |
|
218 |
bytes += (int)entry_size; |
|
219 |
bytes += name_bytes; |
|
220 |
log_info(class, path)("add main shared path for modular java runtime image %s", name); |
|
221 |
} else { |
|
222 |
// The java runtime image is always in slot 0 on the shared class path. |
|
223 |
SharedClassPathEntry* ent = shared_classpath(0); |
|
224 |
struct stat st; |
|
225 |
if (os::stat(name, &st) == 0) { |
|
226 |
ent->_timestamp = st.st_mtime; |
|
227 |
ent->_filesize = st.st_size; |
|
228 |
} |
|
229 |
if (ent->_filesize == 0) { |
|
230 |
// unknown |
|
231 |
ent->_filesize = -2; |
|
232 |
} |
|
233 |
ent->_name = strptr; |
|
234 |
assert(strptr + name_bytes <= strptr_max, "miscalculated buffer size"); |
|
235 |
strncpy(strptr, name, (size_t)name_bytes); // name_bytes includes trailing 0. |
|
236 |
strptr += name_bytes; |
|
237 |
} |
|
238 |
||
239 |
// Walk the appended entries, which includes the entries added for the classpath. |
|
240 |
ClassPathEntry *cpe = ClassLoader::classpath_entry(1); |
|
241 |
||
242 |
// Since the java runtime image is always in slot 0 on the shared class path, the |
|
243 |
// appended entries are started at slot 1 immediately after. |
|
244 |
for (int cur_entry = 1 ; cpe != NULL; cpe = cpe->next(), cur_entry++) { |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
245 |
const char *name = cpe->name(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
246 |
int name_bytes = (int)(strlen(name) + 1); |
40013 | 247 |
assert(!cpe->is_jrt(), "A modular java runtime image is present on the list of appended entries"); |
1 | 248 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
249 |
if (pass == 0) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
250 |
count ++; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
251 |
bytes += (int)entry_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
252 |
bytes += name_bytes; |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
253 |
log_info(class, path)("add main shared path (%s) %s", (cpe->is_jar_file() ? "jar" : "dir"), name); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
254 |
} else { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
255 |
SharedClassPathEntry* ent = shared_classpath(cur_entry); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
256 |
if (cpe->is_jar_file()) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
257 |
struct stat st; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
258 |
if (os::stat(name, &st) != 0) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
259 |
// The file/dir must exist, or it would not have been added |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
260 |
// into ClassLoader::classpath_entry(). |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
261 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
262 |
// If we can't access a jar file in the boot path, then we can't |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
263 |
// make assumptions about where classes get loaded from. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
264 |
FileMapInfo::fail_stop("Unable to open jar file %s.", name); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
265 |
} |
1 | 266 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
267 |
EXCEPTION_MARK; // The following call should never throw, but would exit VM on error. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
268 |
SharedClassUtil::update_shared_classpath(cpe, ent, st.st_mtime, st.st_size, THREAD); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
269 |
} else { |
27562 | 270 |
struct stat st; |
36508 | 271 |
if (os::stat(name, &st) == 0) { |
41667
4a349512fde1
8166930: minor cleanups 1) remove reference to ZIP_ReadMappedEntry 2) checking of st_mode
ccheung
parents:
41281
diff
changeset
|
272 |
if ((st.st_mode & S_IFMT) == S_IFDIR) { |
36508 | 273 |
if (!os::dir_is_empty(name)) { |
274 |
ClassLoader::exit_with_path_failure( |
|
275 |
"Cannot have non-empty directory in archived classpaths", name); |
|
276 |
} |
|
277 |
ent->_filesize = -1; |
|
27562 | 278 |
} |
36508 | 279 |
} |
280 |
if (ent->_filesize == 0) { |
|
281 |
// unknown |
|
27562 | 282 |
ent->_filesize = -2; |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
283 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
284 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
285 |
ent->_name = strptr; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
286 |
if (strptr + name_bytes <= strptr_max) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
287 |
strncpy(strptr, name, (size_t)name_bytes); // name_bytes includes trailing 0. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
288 |
strptr += name_bytes; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
289 |
} else { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
290 |
assert(0, "miscalculated buffer size"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
291 |
} |
1 | 292 |
} |
293 |
} |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
294 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
295 |
if (pass == 0) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
296 |
EXCEPTION_MARK; // The following call should never throw, but would exit VM on error. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
297 |
Array<u8>* arr = MetadataFactory::new_array<u8>(loader_data, (bytes + 7)/8, THREAD); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
298 |
strptr = (char*)(arr->data()); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
299 |
strptr_max = strptr + bytes; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
300 |
SharedClassPathEntry* table = (SharedClassPathEntry*)strptr; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
301 |
strptr += entry_size * count; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
302 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
303 |
_classpath_entry_table_size = count; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
304 |
_classpath_entry_table = table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
305 |
_classpath_entry_size = entry_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
306 |
} |
1 | 307 |
} |
308 |
} |
|
309 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
310 |
bool FileMapInfo::validate_classpath_entry_table() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
311 |
_validating_classpath_entry_table = true; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
312 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
313 |
int count = _header->_classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
314 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
315 |
_classpath_entry_table = _header->_classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
316 |
_classpath_entry_size = _header->_classpath_entry_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
317 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
318 |
for (int i=0; i<count; i++) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
319 |
SharedClassPathEntry* ent = shared_classpath(i); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
320 |
struct stat st; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
321 |
const char* name = ent->_name; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
322 |
bool ok = true; |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
323 |
log_info(class, path)("checking shared classpath entry: %s", name); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
324 |
if (os::stat(name, &st) != 0) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
325 |
fail_continue("Required classpath entry does not exist: %s", name); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
326 |
ok = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
327 |
} else if (ent->is_dir()) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
328 |
if (!os::dir_is_empty(name)) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
329 |
fail_continue("directory is not empty: %s", name); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
330 |
ok = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
331 |
} |
36508 | 332 |
} else if (ent->is_jar_or_bootimage()) { |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
333 |
if (ent->_timestamp != st.st_mtime || |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
334 |
ent->_filesize != st.st_size) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
335 |
ok = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
336 |
if (PrintSharedArchiveAndExit) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
337 |
fail_continue(ent->_timestamp != st.st_mtime ? |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
338 |
"Timestamp mismatch" : |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
339 |
"File size mismatch"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
340 |
} else { |
36508 | 341 |
fail_continue("A jar/jimage file is not the one used while building" |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
342 |
" the shared archive file: %s", name); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
343 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
344 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
345 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
346 |
if (ok) { |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
347 |
log_info(class, path)("ok"); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
348 |
} else if (!PrintSharedArchiveAndExit) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
349 |
_validating_classpath_entry_table = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
350 |
return false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
351 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
352 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
353 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
354 |
_classpath_entry_table_size = _header->_classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
355 |
_validating_classpath_entry_table = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
356 |
return true; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
357 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
358 |
|
1 | 359 |
|
360 |
// Read the FileMapInfo information from the file. |
|
361 |
||
362 |
bool FileMapInfo::init_from_file(int fd) { |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
363 |
size_t sz = _header->data_size(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
364 |
char* addr = _header->data(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
365 |
size_t n = os::read(fd, addr, (unsigned int)sz); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
366 |
if (n != sz) { |
1 | 367 |
fail_continue("Unable to read the file header."); |
368 |
return false; |
|
369 |
} |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
370 |
if (_header->_version != current_version()) { |
1 | 371 |
fail_continue("The shared archive file has the wrong version."); |
372 |
return false; |
|
373 |
} |
|
374 |
_file_offset = (long)n; |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
375 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
376 |
size_t info_size = _header->_paths_misc_info_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
377 |
_paths_misc_info = NEW_C_HEAP_ARRAY_RETURN_NULL(char, info_size, mtClass); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
378 |
if (_paths_misc_info == NULL) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
379 |
fail_continue("Unable to read the file header."); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
380 |
return false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
381 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
382 |
n = os::read(fd, _paths_misc_info, (unsigned int)info_size); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
383 |
if (n != info_size) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
384 |
fail_continue("Unable to read the shared path info header."); |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27025
diff
changeset
|
385 |
FREE_C_HEAP_ARRAY(char, _paths_misc_info); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
386 |
_paths_misc_info = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
387 |
return false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
388 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
389 |
|
27025 | 390 |
size_t len = lseek(fd, 0, SEEK_END); |
391 |
struct FileMapInfo::FileMapHeader::space_info* si = |
|
392 |
&_header->_space[MetaspaceShared::mc]; |
|
393 |
if (si->_file_offset >= len || len - si->_file_offset < si->_used) { |
|
394 |
fail_continue("The shared archive file has been truncated."); |
|
395 |
return false; |
|
396 |
} |
|
397 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
398 |
_file_offset += (long)n; |
1 | 399 |
return true; |
400 |
} |
|
401 |
||
402 |
||
403 |
// Read the FileMapInfo information from the file. |
|
404 |
bool FileMapInfo::open_for_read() { |
|
405 |
_full_path = Arguments::GetSharedArchivePath(); |
|
406 |
int fd = open(_full_path, O_RDONLY | O_BINARY, 0); |
|
407 |
if (fd < 0) { |
|
408 |
if (errno == ENOENT) { |
|
409 |
// Not locating the shared archive is ok. |
|
410 |
fail_continue("Specified shared archive not found."); |
|
411 |
} else { |
|
412 |
fail_continue("Failed to open shared archive file (%s).", |
|
37113 | 413 |
os::strerror(errno)); |
1 | 414 |
} |
415 |
return false; |
|
416 |
} |
|
417 |
||
418 |
_fd = fd; |
|
419 |
_file_open = true; |
|
420 |
return true; |
|
421 |
} |
|
422 |
||
423 |
||
424 |
// Write the FileMapInfo information to the file. |
|
425 |
||
426 |
void FileMapInfo::open_for_write() { |
|
427 |
_full_path = Arguments::GetSharedArchivePath(); |
|
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
428 |
if (log_is_enabled(Info, cds)) { |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
429 |
ResourceMark rm; |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
430 |
LogMessage(cds) msg; |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
431 |
stringStream info_stream; |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
432 |
info_stream.print_cr("Dumping shared data to file: "); |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
433 |
info_stream.print_cr(" %s", _full_path); |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
434 |
msg.info("%s", info_stream.as_string()); |
1 | 435 |
} |
436 |
||
15461
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
437 |
#ifdef _WINDOWS // On Windows, need WRITE permission to remove the file. |
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
438 |
chmod(_full_path, _S_IREAD | _S_IWRITE); |
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
439 |
#endif |
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
440 |
|
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
441 |
// Use remove() to delete the existing file because, on Unix, this will |
e3acbfdabafa
7197672: There are issues with shared data on windows
hseigel
parents:
15101
diff
changeset
|
442 |
// allow processes that have it open continued access to the file. |
1 | 443 |
remove(_full_path); |
444 |
int fd = open(_full_path, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0444); |
|
445 |
if (fd < 0) { |
|
28950
693ae3d5e1ff
8072694: Need errno info when CDS archive creation fails
hseigel
parents:
28023
diff
changeset
|
446 |
fail_stop("Unable to create shared archive file %s: (%s).", _full_path, |
37113 | 447 |
os::strerror(errno)); |
1 | 448 |
} |
449 |
_fd = fd; |
|
450 |
_file_offset = 0; |
|
451 |
_file_open = true; |
|
452 |
} |
|
453 |
||
454 |
||
455 |
// Write the header to the file, seek to the next allocation boundary. |
|
456 |
||
457 |
void FileMapInfo::write_header() { |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
458 |
int info_size = ClassLoader::get_shared_paths_misc_info_size(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
459 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
460 |
_header->_paths_misc_info_size = info_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
461 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
462 |
align_file_position(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
463 |
size_t sz = _header->data_size(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
464 |
char* addr = _header->data(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
465 |
write_bytes(addr, (int)sz); // skip the C++ vtable |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
466 |
write_bytes(ClassLoader::get_shared_paths_misc_info(), info_size); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
467 |
align_file_position(); |
1 | 468 |
} |
469 |
||
470 |
||
471 |
// Dump shared spaces to file. |
|
472 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
473 |
void FileMapInfo::write_space(int i, Metaspace* space, bool read_only) { |
1 | 474 |
align_file_position(); |
17109
90e6c31bbbe4
8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents:
16430
diff
changeset
|
475 |
size_t used = space->used_bytes_slow(Metaspace::NonClassType); |
90e6c31bbbe4
8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents:
16430
diff
changeset
|
476 |
size_t capacity = space->capacity_bytes_slow(Metaspace::NonClassType); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
477 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[i]; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
478 |
write_region(i, (char*)space->bottom(), used, capacity, read_only, false); |
1 | 479 |
} |
480 |
||
481 |
||
482 |
// Dump region to file. |
|
483 |
||
484 |
void FileMapInfo::write_region(int region, char* base, size_t size, |
|
485 |
size_t capacity, bool read_only, |
|
486 |
bool allow_exec) { |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
487 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[region]; |
1 | 488 |
|
489 |
if (_file_open) { |
|
490 |
guarantee(si->_file_offset == _file_offset, "file offset mismatch."); |
|
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
491 |
log_info(cds)("Shared file region %d: " SIZE_FORMAT_HEX_W(6) |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
492 |
" bytes, addr " INTPTR_FORMAT " file offset " SIZE_FORMAT_HEX_W(6), |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
493 |
region, size, p2i(base), _file_offset); |
1 | 494 |
} else { |
495 |
si->_file_offset = _file_offset; |
|
496 |
} |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
497 |
if (MetaspaceShared::is_string_region(region)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
498 |
assert((base - (char*)Universe::narrow_oop_base()) % HeapWordSize == 0, "Sanity"); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
499 |
if (base != NULL) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
500 |
si->_addr._offset = (intx)oopDesc::encode_heap_oop_not_null((oop)base); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
501 |
} else { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
502 |
si->_addr._offset = 0; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
503 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
504 |
} else { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
505 |
si->_addr._base = base; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
506 |
} |
1 | 507 |
si->_used = size; |
508 |
si->_capacity = capacity; |
|
509 |
si->_read_only = read_only; |
|
510 |
si->_allow_exec = allow_exec; |
|
27025 | 511 |
si->_crc = ClassLoader::crc32(0, base, (jint)size); |
1 | 512 |
write_bytes_aligned(base, (int)size); |
513 |
} |
|
514 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
515 |
// Write the string space. The string space contains one or multiple GC(G1) regions. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
516 |
// When the total string space size is smaller than one GC region of the dump time, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
517 |
// only one string region is used for shared strings. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
518 |
// |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
519 |
// If the total string space size is bigger than one GC region, there would be more |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
520 |
// than one GC regions allocated for shared strings. The first/bottom GC region might |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
521 |
// be a partial GC region with the empty portion at the higher address within that region. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
522 |
// The non-empty portion of the first region is written into the archive as one string |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
523 |
// region. The rest are consecutive full GC regions if they exist, which can be written |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
524 |
// out in one chunk as another string region. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
525 |
void FileMapInfo::write_string_regions(GrowableArray<MemRegion> *regions) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
526 |
for (int i = MetaspaceShared::first_string; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
527 |
i < MetaspaceShared::first_string + MetaspaceShared::max_strings; i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
528 |
char* start = NULL; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
529 |
size_t size = 0; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
530 |
if (regions->is_nonempty()) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
531 |
if (i == MetaspaceShared::first_string) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
532 |
MemRegion first = regions->first(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
533 |
start = (char*)first.start(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
534 |
size = first.byte_size(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
535 |
} else { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
536 |
int len = regions->length(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
537 |
if (len > 1) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
538 |
start = (char*)regions->at(1).start(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
539 |
size = (char*)regions->at(len - 1).end() - start; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
540 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
541 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
542 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
543 |
write_region(i, start, size, size, false, false); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
544 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
545 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
546 |
|
1 | 547 |
|
548 |
// Dump bytes to file -- at the current file position. |
|
549 |
||
550 |
void FileMapInfo::write_bytes(const void* buffer, int nbytes) { |
|
551 |
if (_file_open) { |
|
552 |
int n = ::write(_fd, buffer, nbytes); |
|
553 |
if (n != nbytes) { |
|
554 |
// It is dangerous to leave the corrupted shared archive file around, |
|
555 |
// close and remove the file. See bug 6372906. |
|
556 |
close(); |
|
557 |
remove(_full_path); |
|
26296 | 558 |
fail_stop("Unable to write to shared archive file."); |
1 | 559 |
} |
560 |
} |
|
561 |
_file_offset += nbytes; |
|
562 |
} |
|
563 |
||
564 |
||
565 |
// Align file position to an allocation unit boundary. |
|
566 |
||
567 |
void FileMapInfo::align_file_position() { |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46560
diff
changeset
|
568 |
size_t new_file_offset = align_up(_file_offset, |
27025 | 569 |
os::vm_allocation_granularity()); |
1 | 570 |
if (new_file_offset != _file_offset) { |
571 |
_file_offset = new_file_offset; |
|
572 |
if (_file_open) { |
|
573 |
// Seek one byte back from the target and write a byte to insure |
|
574 |
// that the written file is the correct length. |
|
575 |
_file_offset -= 1; |
|
27025 | 576 |
if (lseek(_fd, (long)_file_offset, SEEK_SET) < 0) { |
26296 | 577 |
fail_stop("Unable to seek."); |
1 | 578 |
} |
579 |
char zero = 0; |
|
580 |
write_bytes(&zero, 1); |
|
581 |
} |
|
582 |
} |
|
583 |
} |
|
584 |
||
585 |
||
586 |
// Dump bytes to file -- at the current file position. |
|
587 |
||
588 |
void FileMapInfo::write_bytes_aligned(const void* buffer, int nbytes) { |
|
589 |
align_file_position(); |
|
590 |
write_bytes(buffer, nbytes); |
|
591 |
align_file_position(); |
|
592 |
} |
|
593 |
||
594 |
||
595 |
// Close the shared archive file. This does NOT unmap mapped regions. |
|
596 |
||
597 |
void FileMapInfo::close() { |
|
598 |
if (_file_open) { |
|
599 |
if (::close(_fd) < 0) { |
|
600 |
fail_stop("Unable to close the shared archive file."); |
|
601 |
} |
|
602 |
_file_open = false; |
|
603 |
_fd = -1; |
|
604 |
} |
|
605 |
} |
|
606 |
||
607 |
||
608 |
// JVM/TI RedefineClasses() support: |
|
609 |
// Remap the shared readonly space to shared readwrite, private. |
|
610 |
bool FileMapInfo::remap_shared_readonly_as_readwrite() { |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
611 |
int idx = 0; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
612 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[idx]; |
1 | 613 |
if (!si->_read_only) { |
614 |
// the space is already readwrite so we are done |
|
615 |
return true; |
|
616 |
} |
|
617 |
size_t used = si->_used; |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46560
diff
changeset
|
618 |
size_t size = align_up(used, os::vm_allocation_granularity()); |
1 | 619 |
if (!open_for_read()) { |
620 |
return false; |
|
621 |
} |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
622 |
char *addr = _header->region_addr(idx); |
1 | 623 |
char *base = os::remap_memory(_fd, _full_path, si->_file_offset, |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
624 |
addr, size, false /* !read_only */, |
1 | 625 |
si->_allow_exec); |
626 |
close(); |
|
627 |
if (base == NULL) { |
|
628 |
fail_continue("Unable to remap shared readonly space (errno=%d).", errno); |
|
629 |
return false; |
|
630 |
} |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
631 |
if (base != addr) { |
1 | 632 |
fail_continue("Unable to remap shared readonly space at required address."); |
633 |
return false; |
|
634 |
} |
|
635 |
si->_read_only = false; |
|
636 |
return true; |
|
637 |
} |
|
638 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
639 |
// Map the whole region at once, assumed to be allocated contiguously. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
640 |
ReservedSpace FileMapInfo::reserve_shared_memory() { |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
641 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[0]; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
642 |
char* requested_addr = _header->region_addr(0); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
643 |
|
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
644 |
size_t size = FileMapInfo::shared_spaces_size(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
645 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
646 |
// Reserve the space first, then map otherwise map will go right over some |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
647 |
// other reserved memory (like the code cache). |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
648 |
ReservedSpace rs(size, os::vm_allocation_granularity(), false, requested_addr); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
649 |
if (!rs.is_reserved()) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32589
diff
changeset
|
650 |
fail_continue("Unable to reserve shared space at required address " |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32589
diff
changeset
|
651 |
INTPTR_FORMAT, p2i(requested_addr)); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
652 |
return rs; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
653 |
} |
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
654 |
// the reserved virtual memory is for mapping class data sharing archive |
15100
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
655 |
MemTracker::record_virtual_memory_type((address)rs.base(), mtClassShared); |
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
656 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
657 |
return rs; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
658 |
} |
1 | 659 |
|
660 |
// Memory map a region in the address space. |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
661 |
static const char* shared_region_name[] = { "ReadOnly", "ReadWrite", "MiscData", "MiscCode", |
41182 | 662 |
"String1", "String2", "OptionalData" }; |
1 | 663 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
664 |
char* FileMapInfo::map_region(int i) { |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
665 |
assert(!MetaspaceShared::is_string_region(i), "sanity"); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
666 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[i]; |
1 | 667 |
size_t used = si->_used; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
668 |
size_t alignment = os::vm_allocation_granularity(); |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46560
diff
changeset
|
669 |
size_t size = align_up(used, alignment); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
670 |
char *requested_addr = _header->region_addr(i); |
31332
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
671 |
|
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
672 |
// If a tool agent is in use (debugging enabled), we must map the address space RW |
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
673 |
if (JvmtiExport::can_modify_any_class() || JvmtiExport::can_walk_any_space()) { |
31375
aa5ecd9a5716
8087153: EXCEPTION_ACCESS_VIOLATION when CDS RO section vanished on win32
cjplummer
parents:
31364
diff
changeset
|
674 |
si->_read_only = false; |
31332
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
675 |
} |
dc17890f352d
8054386: Allow Java debugging when CDS is enabled
cjplummer
parents:
28950
diff
changeset
|
676 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
677 |
// map the contents of the CDS archive in this memory |
1 | 678 |
char *base = os::map_memory(_fd, _full_path, si->_file_offset, |
31375
aa5ecd9a5716
8087153: EXCEPTION_ACCESS_VIOLATION when CDS RO section vanished on win32
cjplummer
parents:
31364
diff
changeset
|
679 |
requested_addr, size, si->_read_only, |
1 | 680 |
si->_allow_exec); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
681 |
if (base == NULL || base != requested_addr) { |
26296 | 682 |
fail_continue("Unable to map %s shared space at required address.", shared_region_name[i]); |
1 | 683 |
return NULL; |
684 |
} |
|
15100
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
685 |
#ifdef _WINDOWS |
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
686 |
// This call is Windows-only because the memory_type gets recorded for the other platforms |
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
687 |
// in method FileMapInfo::reserve_shared_memory(), which is not called on Windows. |
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
688 |
MemTracker::record_virtual_memory_type((address)base, mtClassShared); |
0ae85ac7c8b0
8003705: CDS failed on Windows: can not map in the CDS.
hseigel
parents:
14577
diff
changeset
|
689 |
#endif |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
690 |
|
1 | 691 |
return base; |
692 |
} |
|
693 |
||
31360
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
694 |
static MemRegion *string_ranges = NULL; |
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
695 |
static int num_ranges = 0; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
696 |
bool FileMapInfo::map_string_regions() { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
697 |
#if INCLUDE_ALL_GCS |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
698 |
if (UseG1GC && UseCompressedOops && UseCompressedClassPointers) { |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
699 |
// Check that all the narrow oop and klass encodings match the archive |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
700 |
if (narrow_oop_mode() != Universe::narrow_oop_mode() || |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
701 |
narrow_oop_shift() != Universe::narrow_oop_shift() || |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
702 |
narrow_klass_base() != Universe::narrow_klass_base() || |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
703 |
narrow_klass_shift() != Universe::narrow_klass_shift()) { |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
704 |
if (log_is_enabled(Info, cds) && _header->_space[MetaspaceShared::first_string]._used > 0) { |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
705 |
log_info(cds)("Shared string data from the CDS archive is being ignored. " |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
706 |
"The current CompressedOops/CompressedClassPointers encoding differs from " |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
707 |
"that archived due to heap size change. The archive was dumped using max heap " |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
708 |
"size " UINTX_FORMAT "M.", max_heap_size()/M); |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
709 |
} |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
710 |
} else { |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
711 |
string_ranges = new MemRegion[MetaspaceShared::max_strings]; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
712 |
struct FileMapInfo::FileMapHeader::space_info* si; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
713 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
714 |
for (int i = MetaspaceShared::first_string; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
715 |
i < MetaspaceShared::first_string + MetaspaceShared::max_strings; i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
716 |
si = &_header->_space[i]; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
717 |
size_t used = si->_used; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
718 |
if (used > 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
719 |
size_t size = used; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
720 |
char* requested_addr = (char*)((void*)oopDesc::decode_heap_oop_not_null( |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
721 |
(narrowOop)si->_addr._offset)); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
722 |
string_ranges[num_ranges] = MemRegion((HeapWord*)requested_addr, size / HeapWordSize); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
723 |
num_ranges ++; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
724 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
725 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
726 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
727 |
if (num_ranges == 0) { |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
728 |
StringTable::ignore_shared_strings(true); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
729 |
return true; // no shared string data |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
730 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
731 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
732 |
// Check that ranges are within the java heap |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
733 |
if (!G1CollectedHeap::heap()->check_archive_addresses(string_ranges, num_ranges)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
734 |
fail_continue("Unable to allocate shared string space: range is not " |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
735 |
"within java heap."); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
736 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
737 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
738 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
739 |
// allocate from java heap |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
740 |
if (!G1CollectedHeap::heap()->alloc_archive_regions(string_ranges, num_ranges)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
741 |
fail_continue("Unable to allocate shared string space: range is " |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
742 |
"already in use."); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
743 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
744 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
745 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
746 |
// Map the string data. No need to call MemTracker::record_virtual_memory_type() |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
747 |
// for mapped string regions as they are part of the reserved java heap, which |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
748 |
// is already recorded. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
749 |
for (int i = 0; i < num_ranges; i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
750 |
si = &_header->_space[MetaspaceShared::first_string + i]; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
751 |
char* addr = (char*)string_ranges[i].start(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
752 |
char* base = os::map_memory(_fd, _full_path, si->_file_offset, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
753 |
addr, string_ranges[i].byte_size(), si->_read_only, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
754 |
si->_allow_exec); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
755 |
if (base == NULL || base != addr) { |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
756 |
// dealloc the string regions from java heap |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
757 |
dealloc_string_regions(); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
758 |
fail_continue("Unable to map shared string space at required address."); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
759 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
760 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
761 |
} |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
762 |
|
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
763 |
if (!verify_string_regions()) { |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
764 |
// dealloc the string regions from java heap |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
765 |
dealloc_string_regions(); |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
766 |
fail_continue("Shared string regions are corrupt"); |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
767 |
return false; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
768 |
} |
31362
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
769 |
|
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
770 |
// the shared string data is mapped successfully |
8957ccbb5821
8098821: Crash in system dictionary initialization with shared strings
coleenp
parents:
31345
diff
changeset
|
771 |
return true; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
772 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
773 |
} else { |
46522
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
774 |
if (log_is_enabled(Info, cds) && _header->_space[MetaspaceShared::first_string]._used > 0) { |
86b13b03a053
8176132: -XX:+PrintSharedSpaces should be converted to use Unified Logging.
rprotacio
parents:
42876
diff
changeset
|
775 |
log_info(cds)("Shared string data from the CDS archive is being ignored. UseG1GC, " |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
776 |
"UseCompressedOops and UseCompressedClassPointers are required."); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
777 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
778 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
779 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
780 |
// if we get here, the shared string data is not mapped |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
781 |
assert(string_ranges == NULL && num_ranges == 0, "sanity"); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
782 |
StringTable::ignore_shared_strings(true); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
783 |
#endif |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
784 |
return true; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
785 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
786 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
787 |
bool FileMapInfo::verify_string_regions() { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
788 |
for (int i = MetaspaceShared::first_string; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
789 |
i < MetaspaceShared::first_string + MetaspaceShared::max_strings; i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
790 |
if (!verify_region_checksum(i)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
791 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
792 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
793 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
794 |
return true; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
795 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
796 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
797 |
void FileMapInfo::fixup_string_regions() { |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
798 |
#if INCLUDE_ALL_GCS |
31360
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
799 |
// If any string regions were found, call the fill routine to make them parseable. |
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
800 |
// Note that string_ranges may be non-NULL even if no ranges were found. |
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
801 |
if (num_ranges != 0) { |
87d3a62c7e35
8098815: Assertion failure in CDS shared string archive support on Windows
iklam
parents:
31345
diff
changeset
|
802 |
assert(string_ranges != NULL, "Null string_ranges array with non-zero count"); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
803 |
G1CollectedHeap::heap()->fill_archive_regions(string_ranges, num_ranges); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
804 |
} |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
805 |
#endif |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
806 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
807 |
|
27025 | 808 |
bool FileMapInfo::verify_region_checksum(int i) { |
809 |
if (!VerifySharedSpaces) { |
|
810 |
return true; |
|
811 |
} |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
812 |
|
27025 | 813 |
size_t sz = _header->_space[i]._used; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
814 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
815 |
if (sz == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
816 |
return true; // no data |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
817 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
818 |
if (MetaspaceShared::is_string_region(i) && StringTable::shared_string_ignored()) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
819 |
return true; // shared string data are not mapped |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
820 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
821 |
const char* buf = _header->region_addr(i); |
27025 | 822 |
int crc = ClassLoader::crc32(0, buf, (jint)sz); |
823 |
if (crc != _header->_space[i]._crc) { |
|
824 |
fail_continue("Checksum verification failed."); |
|
825 |
return false; |
|
826 |
} |
|
827 |
return true; |
|
828 |
} |
|
1 | 829 |
|
830 |
// Unmap a memory region in the address space. |
|
831 |
||
832 |
void FileMapInfo::unmap_region(int i) { |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
833 |
assert(!MetaspaceShared::is_string_region(i), "sanity"); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
834 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[i]; |
1 | 835 |
size_t used = si->_used; |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46560
diff
changeset
|
836 |
size_t size = align_up(used, os::vm_allocation_granularity()); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
837 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
838 |
if (used == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
839 |
return; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
840 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
841 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
842 |
char* addr = _header->region_addr(i); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
843 |
if (!os::unmap_memory(addr, size)) { |
1 | 844 |
fail_stop("Unable to unmap shared space."); |
845 |
} |
|
846 |
} |
|
847 |
||
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
848 |
// dealloc the archived string region from java heap |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
849 |
void FileMapInfo::dealloc_string_regions() { |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
850 |
#if INCLUDE_ALL_GCS |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
851 |
if (num_ranges > 0) { |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
852 |
assert(string_ranges != NULL, "Null string_ranges array with non-zero count"); |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
853 |
G1CollectedHeap::heap()->dealloc_archive_regions(string_ranges, num_ranges); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
854 |
} |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
855 |
#endif |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
856 |
} |
1 | 857 |
|
858 |
void FileMapInfo::assert_mark(bool check) { |
|
859 |
if (!check) { |
|
26296 | 860 |
fail_stop("Mark mismatch while restoring from shared file."); |
1 | 861 |
} |
862 |
} |
|
863 |
||
864 |
||
865 |
FileMapInfo* FileMapInfo::_current_info = NULL; |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
866 |
SharedClassPathEntry* FileMapInfo::_classpath_entry_table = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
867 |
int FileMapInfo::_classpath_entry_table_size = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
868 |
size_t FileMapInfo::_classpath_entry_size = 0x1234baad; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
869 |
bool FileMapInfo::_validating_classpath_entry_table = false; |
1 | 870 |
|
871 |
// Open the shared archive file, read and validate the header |
|
872 |
// information (version, boot classpath, etc.). If initialization |
|
873 |
// fails, shared spaces are disabled and the file is closed. [See |
|
874 |
// fail_continue.] |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
875 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
876 |
// Validation of the archive is done in two steps: |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
877 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
878 |
// [1] validate_header() - done here. This checks the header, including _paths_misc_info. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
879 |
// [2] validate_classpath_entry_table - this is done later, because the table is in the RW |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
880 |
// region of the archive, which is not mapped yet. |
1 | 881 |
bool FileMapInfo::initialize() { |
882 |
assert(UseSharedSpaces, "UseSharedSpaces expected."); |
|
883 |
||
884 |
if (!open_for_read()) { |
|
885 |
return false; |
|
886 |
} |
|
887 |
||
888 |
init_from_file(_fd); |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
889 |
if (!validate_header()) { |
1 | 890 |
return false; |
891 |
} |
|
892 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
893 |
SharedReadOnlySize = _header->_space[0]._capacity; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
894 |
SharedReadWriteSize = _header->_space[1]._capacity; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
895 |
SharedMiscDataSize = _header->_space[2]._capacity; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
896 |
SharedMiscCodeSize = _header->_space[3]._capacity; |
1 | 897 |
return true; |
898 |
} |
|
899 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
900 |
char* FileMapInfo::FileMapHeader::region_addr(int idx) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
901 |
if (MetaspaceShared::is_string_region(idx)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
902 |
return (char*)((void*)oopDesc::decode_heap_oop_not_null( |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
903 |
(narrowOop)_space[idx]._addr._offset)); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
904 |
} else { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
905 |
return _space[idx]._addr._base; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
906 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
907 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
908 |
|
27025 | 909 |
int FileMapInfo::FileMapHeader::compute_crc() { |
910 |
char* header = data(); |
|
911 |
// start computing from the field after _crc |
|
912 |
char* buf = (char*)&_crc + sizeof(int); |
|
913 |
size_t sz = data_size() - (buf - header); |
|
914 |
int crc = ClassLoader::crc32(0, buf, (jint)sz); |
|
915 |
return crc; |
|
916 |
} |
|
917 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
918 |
bool FileMapInfo::FileMapHeader::validate() { |
27025 | 919 |
if (VerifySharedSpaces && compute_crc() != _crc) { |
920 |
fail_continue("Header checksum verification failed."); |
|
921 |
return false; |
|
922 |
} |
|
923 |
||
40013 | 924 |
if (!Arguments::has_jimage()) { |
925 |
FileMapInfo::fail_continue("The shared archive file cannot be used with an exploded module build."); |
|
926 |
return false; |
|
927 |
} |
|
928 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
929 |
if (_version != current_version()) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
930 |
FileMapInfo::fail_continue("The shared archive file is the wrong version."); |
1 | 931 |
return false; |
932 |
} |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
933 |
if (_magic != (int)0xf00baba2) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
934 |
FileMapInfo::fail_continue("The shared archive file has a bad magic number."); |
1 | 935 |
return false; |
936 |
} |
|
14577
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
937 |
char header_version[JVM_IDENT_MAX]; |
fd68d810d86b
6924920: Class Data Sharing limit on the java version string can create failures
hseigel
parents:
14120
diff
changeset
|
938 |
get_header_version(header_version); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
939 |
if (strncmp(_jvm_ident, header_version, JVM_IDENT_MAX-1) != 0) { |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
940 |
log_info(class, path)("expected: %s", header_version); |
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
941 |
log_info(class, path)("actual: %s", _jvm_ident); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
942 |
FileMapInfo::fail_continue("The shared archive file was created by a different" |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
943 |
" version or build of HotSpot"); |
1 | 944 |
return false; |
945 |
} |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
946 |
if (_obj_alignment != ObjectAlignmentInBytes) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
947 |
FileMapInfo::fail_continue("The shared archive file's ObjectAlignmentInBytes of %d" |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32589
diff
changeset
|
948 |
" does not equal the current ObjectAlignmentInBytes of " INTX_FORMAT ".", |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
949 |
_obj_alignment, ObjectAlignmentInBytes); |
1 | 950 |
return false; |
951 |
} |
|
33628 | 952 |
if (_compact_strings != CompactStrings) { |
953 |
FileMapInfo::fail_continue("The shared archive file's CompactStrings setting (%s)" |
|
954 |
" does not equal the current CompactStrings setting (%s).", |
|
955 |
_compact_strings ? "enabled" : "disabled", |
|
956 |
CompactStrings ? "enabled" : "disabled"); |
|
957 |
return false; |
|
958 |
} |
|
1 | 959 |
|
960 |
return true; |
|
961 |
} |
|
962 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
963 |
bool FileMapInfo::validate_header() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
964 |
bool status = _header->validate(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
965 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
966 |
if (status) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
967 |
if (!ClassLoader::check_shared_paths_misc_info(_paths_misc_info, _header->_paths_misc_info_size)) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
968 |
if (!PrintSharedArchiveAndExit) { |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
38108
diff
changeset
|
969 |
fail_continue("shared class paths mismatch (hint: enable -Xlog:class+path=info to diagnose the failure)"); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
970 |
status = false; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
971 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
972 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
973 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
974 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
975 |
if (_paths_misc_info != NULL) { |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27025
diff
changeset
|
976 |
FREE_C_HEAP_ARRAY(char, _paths_misc_info); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
977 |
_paths_misc_info = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
978 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
979 |
return status; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
980 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
981 |
|
1 | 982 |
// The following method is provided to see whether a given pointer |
983 |
// falls in the mapped shared space. |
|
984 |
// Param: |
|
985 |
// p, The given pointer |
|
986 |
// Return: |
|
987 |
// True if the p is within the mapped shared space, otherwise, false. |
|
988 |
bool FileMapInfo::is_in_shared_space(const void* p) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7405
diff
changeset
|
989 |
for (int i = 0; i < MetaspaceShared::n_regions; i++) { |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
990 |
char *base; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
991 |
if (MetaspaceShared::is_string_region(i) && _header->_space[i]._used == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
992 |
continue; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
993 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
994 |
base = _header->region_addr(i); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
995 |
if (p >= base && p < base + _header->_space[i]._used) { |
1 | 996 |
return true; |
997 |
} |
|
998 |
} |
|
999 |
||
1000 |
return false; |
|
1001 |
} |
|
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1002 |
|
37439
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1003 |
// Check if a given address is within one of the shared regions (ro, rw, md, mc) |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1004 |
bool FileMapInfo::is_in_shared_region(const void* p, int idx) { |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1005 |
assert((idx >= MetaspaceShared::ro) && (idx <= MetaspaceShared::mc), "invalid region index"); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1006 |
char* base = _header->region_addr(idx); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1007 |
if (p >= base && p < base + _header->_space[idx]._used) { |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1008 |
return true; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1009 |
} |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1010 |
return false; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1011 |
} |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
37179
diff
changeset
|
1012 |
|
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1013 |
void FileMapInfo::print_shared_spaces() { |
35061 | 1014 |
tty->print_cr("Shared Spaces:"); |
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1015 |
for (int i = 0; i < MetaspaceShared::n_regions; i++) { |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25715
diff
changeset
|
1016 |
struct FileMapInfo::FileMapHeader::space_info* si = &_header->_space[i]; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
1017 |
char *base = _header->region_addr(i); |
35061 | 1018 |
tty->print(" %s " INTPTR_FORMAT "-" INTPTR_FORMAT, |
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1019 |
shared_region_name[i], |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32589
diff
changeset
|
1020 |
p2i(base), p2i(base + si->_used)); |
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1021 |
} |
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
17109
diff
changeset
|
1022 |
} |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1023 |
|
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1024 |
// Unmap mapped regions of shared space. |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1025 |
void FileMapInfo::stop_sharing_and_unmap(const char* msg) { |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1026 |
FileMapInfo *map_info = FileMapInfo::current_info(); |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1027 |
if (map_info) { |
26296 | 1028 |
map_info->fail_continue("%s", msg); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
1029 |
for (int i = 0; i < MetaspaceShared::num_non_strings; i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
1030 |
char *addr = map_info->_header->region_addr(i); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
1031 |
if (addr != NULL && !MetaspaceShared::is_string_region(i)) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1032 |
map_info->unmap_region(i); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
31332
diff
changeset
|
1033 |
map_info->_header->_space[i]._addr._base = NULL; |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1034 |
} |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1035 |
} |
32589
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
1036 |
// Dealloc the string regions only without unmapping. The string regions are part |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
1037 |
// of the java heap. Unmapping of the heap regions are managed by GC. |
f86fb16fcab0
8131734: assert(!is_null(v)) failed: narrow klass value can never be zero with -Xshared:auto
jiangli
parents:
31375
diff
changeset
|
1038 |
map_info->dealloc_string_regions(); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1039 |
} else if (DumpSharedSpaces) { |
26296 | 1040 |
fail_stop("%s", msg); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1041 |
} |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
1042 |
} |