annotate src/share/vm/memory/filemap.hpp @ 269:850fdf70db2b

Merge
author jmasa
date Mon, 28 Jul 2008 15:30:23 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Layout of the file:
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // header: dump of archive instance plus versioning info, datestamp, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // [magic # = 0xF00BABA2]
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ... padding to align on page-boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // read-write space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // read-only space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // misc data (block offset table, string table, symbols, dictionary, etc.)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // tag(666)
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static const int JVM_SHARED_JARS_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 static const int JVM_SPACENAME_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 static const int JVM_IDENT_MAX = 256;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static const int JVM_ARCH_MAX = 12;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class FileMapInfo : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _invalid_version = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 _current_version = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
46 };
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool _file_open;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int _fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 long _file_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // FileMapHeader describes the shared space data in the file to be
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // mapped. This structure gets written to a file. It is not a class, so
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // that the compilers don't add any compiler-private data to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 struct FileMapHeader {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int _magic; // identify file type.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int _version; // (from enum, above.)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 size_t _alignment; // how shared archive should be aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 struct space_info {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int _file_offset; // sizeof(this) rounded to vm page size
a61af66fc99e Initial load
duke
parents:
diff changeset
63 char* _base; // copy-on-write base address
a61af66fc99e Initial load
duke
parents:
diff changeset
64 size_t _capacity; // for validity checking
a61af66fc99e Initial load
duke
parents:
diff changeset
65 size_t _used; // for setting space top on read
a61af66fc99e Initial load
duke
parents:
diff changeset
66 bool _read_only; // read only space?
a61af66fc99e Initial load
duke
parents:
diff changeset
67 bool _allow_exec; // executable code in space?
a61af66fc99e Initial load
duke
parents:
diff changeset
68 } _space[CompactingPermGenGen::n_regions];
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // The following fields are all sanity checks for whether this archive
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // will function correctly with this JVM and the bootclasspath it's
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // invoked with.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 char _arch[JVM_ARCH_MAX]; // architecture
a61af66fc99e Initial load
duke
parents:
diff changeset
74 char _jvm_ident[JVM_IDENT_MAX]; // identifier for jvm
a61af66fc99e Initial load
duke
parents:
diff changeset
75 int _num_jars; // Number of jars in bootclasspath
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Per jar file data: timestamp, size.
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 time_t _timestamp; // jar timestamp.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 long _filesize; // jar file size.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 } _jar[JVM_SHARED_JARS_MAX];
a61af66fc99e Initial load
duke
parents:
diff changeset
83 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 const char* _full_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static FileMapInfo* _current_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 bool init_from_file(int fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 void align_file_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 FileMapInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _file_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _file_open = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _header._version = _invalid_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 static int current_version() { return _current_version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void populate_header(size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 bool validate();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void invalidate();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 int version() { return _header._version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 size_t alignment() { return _header._alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 size_t space_capacity(int i) { return _header._space[i]._capacity; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 char* region_base(int i) { return _header._space[i]._base; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 struct FileMapHeader* header() { return &_header; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static void set_current_info(FileMapInfo* info) { _current_info = info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static FileMapInfo* current_info() { return _current_info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static void assert_mark(bool check);
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // File manipulation.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 bool open_for_read();
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void open_for_write();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void write_header();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void write_space(int i, CompactibleSpace* space, bool read_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void write_region(int region, char* base, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
119 size_t capacity, bool read_only, bool allow_exec);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void write_bytes(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void write_bytes_aligned(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 bool map_space(int i, ReservedSpace rs, ContiguousSpace *space);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 char* map_region(int i, ReservedSpace rs);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 char* map_region(int i, bool address_must_match);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void unmap_region(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void close();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 bool is_open() { return _file_open; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Remap the shared readonly space to shared readwrite, private.
a61af66fc99e Initial load
duke
parents:
diff changeset
131 bool remap_shared_readonly_as_readwrite();
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 static void fail_stop(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void fail_continue(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Return true if given address is in the mapped shared space.
a61af66fc99e Initial load
duke
parents:
diff changeset
138 bool is_in_shared_space(const void* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 };