author | brutisso |
Mon, 01 Dec 2014 14:37:25 +0100 | |
changeset 27904 | d606512952cc |
parent 27025 | f4805f778f16 |
child 27562 | 47f369e3c69c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
20406
diff
changeset
|
2 |
* Copyright (c) 2003, 2014, 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:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_MEMORY_FILEMAP_HPP |
26 |
#define SHARE_VM_MEMORY_FILEMAP_HPP |
|
27 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
28 |
#include "memory/metaspaceShared.hpp" |
20406
934f0b12daa9
8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents:
19319
diff
changeset
|
29 |
#include "memory/metaspace.hpp" |
7397 | 30 |
|
1 | 31 |
// Layout of the file: |
32 |
// header: dump of archive instance plus versioning info, datestamp, etc. |
|
33 |
// [magic # = 0xF00BABA2] |
|
34 |
// ... padding to align on page-boundary |
|
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
20406
diff
changeset
|
35 |
// read-write space |
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
20406
diff
changeset
|
36 |
// read-only space |
1 | 37 |
// misc data (block offset table, string table, symbols, dictionary, etc.) |
38 |
// tag(666) |
|
39 |
||
40 |
static const int JVM_IDENT_MAX = 256; |
|
41 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
42 |
class Metaspace; |
1 | 43 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
44 |
class SharedClassPathEntry VALUE_OBJ_CLASS_SPEC { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
45 |
public: |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
46 |
const char *_name; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
47 |
time_t _timestamp; // jar timestamp, 0 if is directory |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
48 |
long _filesize; // jar file size, -1 if is directory |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
49 |
bool is_dir() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
50 |
return _filesize == -1; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
51 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
52 |
}; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
53 |
|
13195 | 54 |
class FileMapInfo : public CHeapObj<mtInternal> { |
1 | 55 |
private: |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
56 |
friend class ManifestStream; |
1 | 57 |
enum { |
58 |
_invalid_version = -1, |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
59 |
_current_version = 2 |
1 | 60 |
}; |
61 |
||
62 |
bool _file_open; |
|
63 |
int _fd; |
|
27025 | 64 |
size_t _file_offset; |
1 | 65 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
66 |
private: |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
67 |
static SharedClassPathEntry* _classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
68 |
static int _classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
69 |
static size_t _classpath_entry_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
70 |
static bool _validating_classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
71 |
|
1 | 72 |
// FileMapHeader describes the shared space data in the file to be |
73 |
// mapped. This structure gets written to a file. It is not a class, so |
|
74 |
// that the compilers don't add any compiler-private data to it. |
|
75 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
76 |
public: |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
77 |
struct FileMapHeaderBase : public CHeapObj<mtClass> { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
78 |
virtual bool validate() = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
79 |
virtual void populate(FileMapInfo* info, size_t alignment) = 0; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
80 |
}; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
81 |
struct FileMapHeader : FileMapHeaderBase { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
82 |
// Use data() and data_size() to memcopy to/from the FileMapHeader. We need to |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
83 |
// avoid read/writing the C++ vtable pointer. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
84 |
static size_t data_size(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
85 |
char* data() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
86 |
return ((char*)this) + sizeof(FileMapHeaderBase); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
87 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
88 |
|
1 | 89 |
int _magic; // identify file type. |
27025 | 90 |
int _crc; // header crc checksum. |
1 | 91 |
int _version; // (from enum, above.) |
92 |
size_t _alignment; // how shared archive should be aligned |
|
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14120
diff
changeset
|
93 |
int _obj_alignment; // value of ObjectAlignmentInBytes |
1 | 94 |
|
95 |
struct space_info { |
|
27025 | 96 |
int _crc; // crc checksum of the current space |
97 |
size_t _file_offset; // sizeof(this) rounded to vm page size |
|
1 | 98 |
char* _base; // copy-on-write base address |
99 |
size_t _capacity; // for validity checking |
|
100 |
size_t _used; // for setting space top on read |
|
101 |
bool _read_only; // read only space? |
|
102 |
bool _allow_exec; // executable code in space? |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
103 |
} _space[MetaspaceShared::n_regions]; |
1 | 104 |
|
105 |
// The following fields are all sanity checks for whether this archive |
|
106 |
// will function correctly with this JVM and the bootclasspath it's |
|
107 |
// invoked with. |
|
108 |
char _jvm_ident[JVM_IDENT_MAX]; // identifier for jvm |
|
109 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
110 |
// The _paths_misc_info is a variable-size structure that records "miscellaneous" |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
111 |
// information during dumping. It is generated and validated by the |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
112 |
// SharedPathsMiscInfo class. See SharedPathsMiscInfo.hpp and sharedClassUtil.hpp for |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
113 |
// detailed description. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
114 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
115 |
// The _paths_misc_info data is stored as a byte array in the archive file header, |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
116 |
// immediately after the _header field. This information is used only when |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
117 |
// checking the validity of the archive and is deallocated after the archive is loaded. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
118 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
119 |
// Note that the _paths_misc_info does NOT include information for JAR files |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
120 |
// that existed during dump time. Their information is stored in _classpath_entry_table. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
121 |
int _paths_misc_info_size; |
1 | 122 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
123 |
// The following is a table of all the class path entries that were used |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
124 |
// during dumping. At run time, we require these files to exist and have the same |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
125 |
// size/modification time, or else the archive will refuse to load. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
126 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
127 |
// All of these entries must be JAR files. The dumping process would fail if a non-empty |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
128 |
// directory was specified in the classpaths. If an empty directory was specified |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
129 |
// it is checked by the _paths_misc_info as described above. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
130 |
// |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
131 |
// FIXME -- if JAR files in the tail of the list were specified but not used during dumping, |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
132 |
// they should be removed from this table, to save space and to avoid spurious |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
133 |
// loading failures during runtime. |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
134 |
int _classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
135 |
size_t _classpath_entry_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
136 |
SharedClassPathEntry* _classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
137 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
138 |
virtual bool validate(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
139 |
virtual void populate(FileMapInfo* info, size_t alignment); |
27025 | 140 |
int compute_crc(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
141 |
}; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
142 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
143 |
FileMapHeader * _header; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
144 |
|
1 | 145 |
const char* _full_path; |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
146 |
char* _paths_misc_info; |
1 | 147 |
|
148 |
static FileMapInfo* _current_info; |
|
149 |
||
150 |
bool init_from_file(int fd); |
|
151 |
void align_file_position(); |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
152 |
bool validate_header_impl(); |
1 | 153 |
|
154 |
public: |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
155 |
FileMapInfo(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
156 |
~FileMapInfo(); |
1 | 157 |
|
158 |
static int current_version() { return _current_version; } |
|
27025 | 159 |
int compute_header_crc() { return _header->compute_crc(); } |
160 |
void set_header_crc(int crc) { _header->_crc = crc; } |
|
1 | 161 |
void populate_header(size_t alignment); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
162 |
bool validate_header(); |
1 | 163 |
void invalidate(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
164 |
int version() { return _header->_version; } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
165 |
size_t alignment() { return _header->_alignment; } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
166 |
size_t space_capacity(int i) { return _header->_space[i]._capacity; } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
167 |
char* region_base(int i) { return _header->_space[i]._base; } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
168 |
struct FileMapHeader* header() { return _header; } |
15936
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
169 |
|
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
170 |
static FileMapInfo* current_info() { |
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
171 |
CDS_ONLY(return _current_info;) |
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
172 |
NOT_CDS(return NULL;) |
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
173 |
} |
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
174 |
|
1 | 175 |
static void assert_mark(bool check); |
176 |
||
177 |
// File manipulation. |
|
15936
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
178 |
bool initialize() NOT_CDS_RETURN_(false); |
1 | 179 |
bool open_for_read(); |
180 |
void open_for_write(); |
|
181 |
void write_header(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
182 |
void write_space(int i, Metaspace* space, bool read_only); |
1 | 183 |
void write_region(int region, char* base, size_t size, |
184 |
size_t capacity, bool read_only, bool allow_exec); |
|
185 |
void write_bytes(const void* buffer, int count); |
|
186 |
void write_bytes_aligned(const void* buffer, int count); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
187 |
char* map_region(int i); |
1 | 188 |
void unmap_region(int i); |
27025 | 189 |
bool verify_region_checksum(int i); |
1 | 190 |
void close(); |
191 |
bool is_open() { return _file_open; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
192 |
ReservedSpace reserve_shared_memory(); |
1 | 193 |
|
194 |
// JVM/TI RedefineClasses() support: |
|
195 |
// Remap the shared readonly space to shared readwrite, private. |
|
196 |
bool remap_shared_readonly_as_readwrite(); |
|
197 |
||
198 |
// Errors. |
|
26296 | 199 |
static void fail_stop(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2); |
200 |
static void fail_continue(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2); |
|
1 | 201 |
|
202 |
// Return true if given address is in the mapped shared space. |
|
15936
4fda1079e8a3
8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents:
15101
diff
changeset
|
203 |
bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false); |
18483
c021907fa0a7
8016075: Win32 crash with CDS enabled and small heap size
iklam
parents:
15936
diff
changeset
|
204 |
void print_shared_spaces() NOT_CDS_RETURN; |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
205 |
|
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
206 |
static size_t shared_spaces_size() { |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
207 |
return align_size_up(SharedReadOnlySize + SharedReadWriteSize + |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
208 |
SharedMiscDataSize + SharedMiscCodeSize, |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
209 |
os::vm_allocation_granularity()); |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
210 |
} |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
211 |
|
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
212 |
// Stop CDS sharing and unmap CDS regions. |
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18483
diff
changeset
|
213 |
static void stop_sharing_and_unmap(const char* msg); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
214 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
215 |
static void allocate_classpath_entry_table(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
216 |
bool validate_classpath_entry_table(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
217 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
218 |
static SharedClassPathEntry* shared_classpath(int index) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
219 |
char* p = (char*)_classpath_entry_table; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
220 |
p += _classpath_entry_size * index; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
221 |
return (SharedClassPathEntry*)p; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
222 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
223 |
static const char* shared_classpath_name(int index) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
224 |
return shared_classpath(index)->_name; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
225 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
226 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
227 |
static int get_number_of_share_classpaths() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
228 |
return _classpath_entry_table_size; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23515
diff
changeset
|
229 |
} |
1 | 230 |
}; |
7397 | 231 |
|
232 |
#endif // SHARE_VM_MEMORY_FILEMAP_HPP |