annotate src/share/vm/memory/filemap.hpp @ 6725:da91efe96a93

6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
author coleenp
date Sat, 01 Sep 2012 13:25:18 -0400
parents d2a62e0f25eb
children 716c64bda5ba
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_MEMORY_FILEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_MEMORY_FILEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
28 #include "memory/metaspaceShared.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Layout of the file:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // header: dump of archive instance plus versioning info, datestamp, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // [magic # = 0xF00BABA2]
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ... padding to align on page-boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // read-write space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // read-only space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // misc data (block offset table, string table, symbols, dictionary, etc.)
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // tag(666)
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static const int JVM_SHARED_JARS_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static const int JVM_SPACENAME_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static const int JVM_IDENT_MAX = 256;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static const int JVM_ARCH_MAX = 12;
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
45 class Metaspace;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 1972
diff changeset
47 class FileMapInfo : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
49 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _invalid_version = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _current_version = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
52 };
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 bool _file_open;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 int _fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 long _file_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // FileMapHeader describes the shared space data in the file to be
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // mapped. This structure gets written to a file. It is not a class, so
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // that the compilers don't add any compiler-private data to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 struct FileMapHeader {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 int _magic; // identify file type.
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int _version; // (from enum, above.)
a61af66fc99e Initial load
duke
parents:
diff changeset
65 size_t _alignment; // how shared archive should be aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 struct space_info {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 int _file_offset; // sizeof(this) rounded to vm page size
a61af66fc99e Initial load
duke
parents:
diff changeset
69 char* _base; // copy-on-write base address
a61af66fc99e Initial load
duke
parents:
diff changeset
70 size_t _capacity; // for validity checking
a61af66fc99e Initial load
duke
parents:
diff changeset
71 size_t _used; // for setting space top on read
a61af66fc99e Initial load
duke
parents:
diff changeset
72 bool _read_only; // read only space?
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool _allow_exec; // executable code in space?
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
74 } _space[MetaspaceShared::n_regions];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // The following fields are all sanity checks for whether this archive
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // will function correctly with this JVM and the bootclasspath it's
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // invoked with.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 char _arch[JVM_ARCH_MAX]; // architecture
a61af66fc99e Initial load
duke
parents:
diff changeset
80 char _jvm_ident[JVM_IDENT_MAX]; // identifier for jvm
a61af66fc99e Initial load
duke
parents:
diff changeset
81 int _num_jars; // Number of jars in bootclasspath
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // Per jar file data: timestamp, size.
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 time_t _timestamp; // jar timestamp.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 long _filesize; // jar file size.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 } _jar[JVM_SHARED_JARS_MAX];
a61af66fc99e Initial load
duke
parents:
diff changeset
89 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 const char* _full_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static FileMapInfo* _current_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 bool init_from_file(int fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void align_file_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
98 FileMapInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _file_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _file_open = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _header._version = _invalid_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static int current_version() { return _current_version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void populate_header(size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 bool validate();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void invalidate();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 int version() { return _header._version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 size_t alignment() { return _header._alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 size_t space_capacity(int i) { return _header._space[i]._capacity; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 char* region_base(int i) { return _header._space[i]._base; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 struct FileMapHeader* header() { return &_header; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static void set_current_info(FileMapInfo* info) { _current_info = info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 static FileMapInfo* current_info() { return _current_info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static void assert_mark(bool check);
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // File manipulation.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
120 bool open_for_read();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void open_for_write();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void write_header();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
123 void write_space(int i, Metaspace* space, bool read_only);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void write_region(int region, char* base, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 size_t capacity, bool read_only, bool allow_exec);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void write_bytes(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 void write_bytes_aligned(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 char* map_region(int i, ReservedSpace rs);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
129 char* map_region(int i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void unmap_region(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 void close();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 bool is_open() { return _file_open; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
133 ReservedSpace reserve_shared_memory();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Remap the shared readonly space to shared readwrite, private.
a61af66fc99e Initial load
duke
parents:
diff changeset
137 bool remap_shared_readonly_as_readwrite();
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 static void fail_stop(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 void fail_continue(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Return true if given address is in the mapped shared space.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 bool is_in_shared_space(const void* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
146
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
147 #endif // SHARE_VM_MEMORY_FILEMAP_HPP