annotate src/share/vm/memory/filemap.hpp @ 12301:2c022e432e10

8024974: Incorrect use of GC_locker::is_active() Summary: SymbolTable and StringTable can make calls to GC_locker::is_active() outside a safepoint. This isn't safe because the GC_locker active state (lock count) is only updated at a safepoint and only remains valid as long as _needs_gc is true. However, outside a safepoint_needs_gc can change to false at any time, which makes it impossible to do a correct call to is_active() in that context. In this case these calls can just be removed since the input argument to basic_add() should never be on the heap and so there's no need to check the GC_locker state. This change also adjusts the assert() in is_active() to makes sure all calls to this function are always done under a safepoint. Reviewed-by: brutisso, dcubed Contributed-by: per.liden@oracle.com
author stefank
date Fri, 20 Sep 2013 10:53:28 +0200
parents 740e263c80c6
children 85c1ca43713f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
2 * Copyright (c) 2003, 2013, 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
7461
561148896559 8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents: 6882
diff changeset
66 int _obj_alignment; // value of ObjectAlignmentInBytes
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 struct space_info {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 int _file_offset; // sizeof(this) rounded to vm page size
a61af66fc99e Initial load
duke
parents:
diff changeset
70 char* _base; // copy-on-write base address
a61af66fc99e Initial load
duke
parents:
diff changeset
71 size_t _capacity; // for validity checking
a61af66fc99e Initial load
duke
parents:
diff changeset
72 size_t _used; // for setting space top on read
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool _read_only; // read only space?
a61af66fc99e Initial load
duke
parents:
diff changeset
74 bool _allow_exec; // executable code in space?
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
75 } _space[MetaspaceShared::n_regions];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // The following fields are all sanity checks for whether this archive
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // will function correctly with this JVM and the bootclasspath it's
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // invoked with.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 char _arch[JVM_ARCH_MAX]; // architecture
a61af66fc99e Initial load
duke
parents:
diff changeset
81 char _jvm_ident[JVM_IDENT_MAX]; // identifier for jvm
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int _num_jars; // Number of jars in bootclasspath
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Per jar file data: timestamp, size.
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 time_t _timestamp; // jar timestamp.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 long _filesize; // jar file size.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 } _jar[JVM_SHARED_JARS_MAX];
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 const char* _full_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 static FileMapInfo* _current_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 bool init_from_file(int fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void align_file_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 FileMapInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _file_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _file_open = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _header._version = _invalid_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 static int current_version() { return _current_version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void populate_header(size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool validate();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void invalidate();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 int version() { return _header._version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 size_t alignment() { return _header._alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 size_t space_capacity(int i) { return _header._space[i]._capacity; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 char* region_base(int i) { return _header._space[i]._base; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 struct FileMapHeader* header() { return &_header; }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
115 static void set_current_info(FileMapInfo* info) {
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
116 CDS_ONLY(_current_info = info;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
117 }
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
118
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
119 static FileMapInfo* current_info() {
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
120 CDS_ONLY(return _current_info;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
121 NOT_CDS(return NULL;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
122 }
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
123
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static void assert_mark(bool check);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // File manipulation.
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
127 bool initialize() NOT_CDS_RETURN_(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 bool open_for_read();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void open_for_write();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void write_header();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
131 void write_space(int i, Metaspace* space, bool read_only);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 void write_region(int region, char* base, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 size_t capacity, bool read_only, bool allow_exec);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void write_bytes(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void write_bytes_aligned(const void* buffer, int count);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
136 char* map_region(int i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void unmap_region(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 void close();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 bool is_open() { return _file_open; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
140 ReservedSpace reserve_shared_memory();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Remap the shared readonly space to shared readwrite, private.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 bool remap_shared_readonly_as_readwrite();
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static void fail_stop(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 void fail_continue(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // Return true if given address is in the mapped shared space.
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
151 bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
11056
221df7e37535 8016075: Win32 crash with CDS enabled and small heap size
iklam
parents: 8720
diff changeset
152 void print_shared_spaces() NOT_CDS_RETURN;
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
153
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
154 static size_t shared_spaces_size() {
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
155 return align_size_up(SharedReadOnlySize + SharedReadWriteSize +
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
156 SharedMiscDataSize + SharedMiscCodeSize,
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
157 os::vm_allocation_granularity());
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
158 }
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
159
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
160 // Stop CDS sharing and unmap CDS regions.
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
161 static void stop_sharing_and_unmap(const char* msg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
163
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
164 #endif // SHARE_VM_MEMORY_FILEMAP_HPP