annotate src/share/vm/memory/restore.cpp @ 16:f8236e79048a

6664627: Merge changes made only in hotspot 11 forward to jdk 7 Reviewed-by: jcoomes
author dcubed
date Wed, 05 Dec 2007 09:00:00 -0800
parents a61af66fc99e
children ba764ed4b6f2
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 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_restore.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Closure for serializing initialization data in from a data area
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // (oop_array) read from the shared file.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ReadClosure : public SerializeOopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 oop** _oop_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 inline oop nextOop() {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 return *(*_oop_array)++;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 }
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ReadClosure(oop** oop_array) { _oop_array = oop_array; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 assert(SharedSkipVerify || *p == NULL || *p == Universe::klassKlassObj(),
a61af66fc99e Initial load
duke
parents:
diff changeset
45 "initializing previously initialized oop.");
a61af66fc99e Initial load
duke
parents:
diff changeset
46 oop obj = nextOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
47 assert(SharedSkipVerify || (intptr_t)obj >= 0 || (intptr_t)obj < -100,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 "hit tag while initializing oops.");
a61af66fc99e Initial load
duke
parents:
diff changeset
49 assert(SharedSkipVerify || obj->is_oop_or_null(), "invalid oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
50 *p = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void do_ptr(void** p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(*p == NULL, "initializing previous initialized pointer.");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void* obj = nextOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert((intptr_t)obj >= 0 || (intptr_t)obj < -100,
a61af66fc99e Initial load
duke
parents:
diff changeset
57 "hit tag while initializing ptrs.");
a61af66fc99e Initial load
duke
parents:
diff changeset
58 *p = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void do_ptr(HeapWord** p) { do_ptr((void **) p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void do_int(int* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 *p = (int)(intptr_t)nextOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void do_size_t(size_t* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Assumes that size_t and pointers are the same size.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 *p = (size_t)nextOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void do_tag(int tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 int old_tag;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 do_int(&old_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 FileMapInfo::assert_mark(tag == old_tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void do_region(u_char* start, size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert((intptr_t)start % sizeof(oop) == 0, "bad alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 assert(size % sizeof(oop) == 0, "bad size");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 do_tag((int)size);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 while (size > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 *(oop*)start = nextOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 start += sizeof(oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 size -= sizeof(oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 bool reading() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 };
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Read the oop and miscellaneous data from the shared file, and
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // serialize it out to its various destinations.
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void CompactingPermGenGen::initialize_oops() {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 FileMapInfo *mapinfo = FileMapInfo::current_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 char* buffer = mapinfo->region_base(md);
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Skip over (reserve space for) a list of addresses of C++ vtables
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // for Klass objects. They get filled in later.
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Skip over (reserve space for) dummy C++ vtables Klass objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // They are used as is.
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void** vtbl_list = (void**)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 buffer += vtbl_list_size * sizeof(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 intptr_t vtable_size = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 buffer += vtable_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Create the symbol table using the bucket array at this spot in the
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // misc data space. Since the symbol table is often modified, this
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // region (of mapped pages) will be copy-on-write.
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 int symbolTableLen = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 int number_of_entries = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 SymbolTable::create_table((HashtableBucket*)buffer, symbolTableLen,
a61af66fc99e Initial load
duke
parents:
diff changeset
122 number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 buffer += symbolTableLen;
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Create the string table using the bucket array at this spot in the
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // misc data space. Since the string table is often modified, this
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // region (of mapped pages) will be copy-on-write.
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int stringTableLen = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 number_of_entries = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 StringTable::create_table((HashtableBucket*)buffer, stringTableLen,
a61af66fc99e Initial load
duke
parents:
diff changeset
134 number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 buffer += stringTableLen;
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Create the shared dictionary using the bucket array at this spot in
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // the misc data space. Since the shared dictionary table is never
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // modified, this region (of mapped pages) will be (effectively, if
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // not explicitly) read-only.
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int sharedDictionaryLen = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 number_of_entries = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 SystemDictionary::set_shared_dictionary((HashtableBucket*)buffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 sharedDictionaryLen,
a61af66fc99e Initial load
duke
parents:
diff changeset
148 number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
149 buffer += sharedDictionaryLen;
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // Create the package info table using the bucket array at this spot in
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // the misc data space. Since the package info table is never
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // modified, this region (of mapped pages) will be (effectively, if
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // not explicitly) read-only.
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 int pkgInfoLen = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 number_of_entries = *(intptr_t*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 ClassLoader::create_package_info_table((HashtableBucket*)buffer, pkgInfoLen,
a61af66fc99e Initial load
duke
parents:
diff changeset
161 number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 buffer += pkgInfoLen;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 ClassLoader::verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // The following data in the shared misc data region are the linked
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // list elements (HashtableEntry objects) for the symbol table, string
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // table, and shared dictionary. The heap objects refered to by the
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // symbol table, string table, and shared dictionary are permanent and
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // unmovable. Since new entries added to the string and symbol tables
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // are always added at the beginning of the linked lists, THESE LINKED
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // LIST ELEMENTS ARE READ-ONLY.
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 int len = *(intptr_t*)buffer; // skip over symbol table entries
a61af66fc99e Initial load
duke
parents:
diff changeset
174 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 buffer += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 len = *(intptr_t*)buffer; // skip over string table entries
a61af66fc99e Initial load
duke
parents:
diff changeset
178 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 buffer += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 len = *(intptr_t*)buffer; // skip over shared dictionary entries
a61af66fc99e Initial load
duke
parents:
diff changeset
182 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 buffer += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 len = *(intptr_t*)buffer; // skip over package info table entries
a61af66fc99e Initial load
duke
parents:
diff changeset
186 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 buffer += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 len = *(intptr_t*)buffer; // skip over package info table char[] arrays.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 buffer += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 buffer += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 oop* oop_array = (oop*)buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 ReadClosure rc(&oop_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 serialize_oops(&rc);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }