annotate src/share/vm/code/codeCache.cpp @ 989:148e5441d916

6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
author jrose
date Tue, 15 Sep 2009 21:53:47 -0700
parents a61af66fc99e
children 5f24d0319e54
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 1997-2007 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/_codeCache.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Helper class for printing in CodeCache
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class CodeBlob_sizes {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 int count;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 int total_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 int header_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 int code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 int stub_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 int relocation_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 int scopes_oop_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 int scopes_data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 int scopes_pcs_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 CodeBlob_sizes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 total_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 header_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 code_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 stub_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 relocation_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 scopes_oop_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 scopes_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 scopes_pcs_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 int total() { return total_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 bool is_empty() { return count == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void print(const char* title) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 tty->print_cr(" #%d %s = %dK (hdr %d%%, loc %d%%, code %d%%, stub %d%%, [oops %d%%, data %d%%, pcs %d%%])",
a61af66fc99e Initial load
duke
parents:
diff changeset
60 count,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 title,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 total() / K,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 header_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 relocation_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
65 code_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 stub_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 scopes_oop_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 scopes_data_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 scopes_pcs_size * 100 / total_size);
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 add(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 total_size += cb->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 header_size += cb->header_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 relocation_size += cb->relocation_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 scopes_oop_size += cb->oops_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 nmethod *nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 code_size += nm->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 stub_size += nm->stub_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 scopes_data_size += nm->scopes_data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 scopes_pcs_size += nm->scopes_pcs_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 code_size += cb->instructions_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 };
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // CodeCache implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 CodeHeap * CodeCache::_heap = new CodeHeap();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int CodeCache::_number_of_blobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 int CodeCache::_number_of_nmethods_with_dependencies = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool CodeCache::_needs_cache_clean = false;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
98 nmethod* CodeCache::_scavenge_root_nmethods = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 CodeBlob* CodeCache::first() {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return (CodeBlob*)_heap->first();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 CodeBlob* CodeCache::next(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return (CodeBlob*)_heap->next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 CodeBlob* CodeCache::alive(CodeBlob *cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 while (cb != NULL && !cb->is_alive()) cb = next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 return cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 return (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 CodeBlob* CodeCache::allocate(int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Do not seize the CodeCache lock here--if the caller has not
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // already done so, we are going to lose bigtime, since the code
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // cache will contain a garbage CodeBlob until the caller can
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // run the constructor for the CodeBlob subclass he is busy
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // instantiating.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 guarantee(size >= 0, "allocation request must be reasonable");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 CodeBlob* cb = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 _number_of_blobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 cb = (CodeBlob*)_heap->allocate(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 if (cb != NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 if (!_heap->expand_by(CodeCacheExpansionSize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Expansion failed
a61af66fc99e Initial load
duke
parents:
diff changeset
142 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (PrintCodeCacheExtension) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (%d bytes)",
a61af66fc99e Initial load
duke
parents:
diff changeset
147 (intptr_t)_heap->begin(), (intptr_t)_heap->end(),
a61af66fc99e Initial load
duke
parents:
diff changeset
148 (address)_heap->end() - (address)_heap->begin());
a61af66fc99e Initial load
duke
parents:
diff changeset
149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 verify_if_often();
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
152 print_trace("allocation", cb, size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void CodeCache::free(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 verify_if_often();
a61af66fc99e Initial load
duke
parents:
diff changeset
159
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
160 print_trace("free", cb);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 _number_of_nmethods_with_dependencies--;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _number_of_blobs--;
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 _heap->deallocate(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 verify_if_often();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 assert(_number_of_blobs >= 0, "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void CodeCache::commit(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // this is called by nmethod::nmethod, which must already own CodeCache_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
175 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 if (cb->is_nmethod() && ((nmethod *)cb)->has_dependencies()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 _number_of_nmethods_with_dependencies++;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // flush the hardware I-cache
a61af66fc99e Initial load
duke
parents:
diff changeset
180 ICache::invalidate_range(cb->instructions_begin(), cb->instructions_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void CodeCache::flush() {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Iteration over CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 #define FOR_ALL_BLOBS(var) for (CodeBlob *var = first() ; var != NULL; var = next(var) )
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
a61af66fc99e Initial load
duke
parents:
diff changeset
194 #define FOR_ALL_ALIVE_NMETHODS(var) for (nmethod *var = alive_nmethod(first()); var != NULL; var = alive_nmethod(next(var)))
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 bool CodeCache::contains(void *p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // It should be ok to call contains without holding a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
199 return _heap->contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // This method is safe to call without holding the CodeCache_lock, as long as a dead codeblob is not
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // looked up (i.e., one that has been marked for deletion). It only dependes on the _segmap to contain
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // valid indices, which it will always do, as long as the CodeBlob is not in the process of being recycled.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 CodeBlob* CodeCache::find_blob(void* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 CodeBlob* result = find_blob_unsafe(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (result == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // We could potientially look up non_entrant methods
a61af66fc99e Initial load
duke
parents:
diff changeset
210 guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 nmethod* CodeCache::find_nmethod(void* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 CodeBlob *cb = find_blob(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
217 return (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 void CodeCache::blobs_do(void f(CodeBlob* nm)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 f(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 void CodeCache::nmethods_do(void f(nmethod* nm)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 FOR_ALL_BLOBS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 if (nm->is_nmethod()) f((nmethod*)nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int CodeCache::alignment_unit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 return (int)_heap->alignment_unit();
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 int CodeCache::alignment_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return (int)_heap->alignment_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // Mark code blobs for unloading if they contain otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // unreachable oops.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void CodeCache::do_unloading(BoolObjectClosure* is_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
250 OopClosure* keep_alive,
a61af66fc99e Initial load
duke
parents:
diff changeset
251 bool unloading_occurred) {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 FOR_ALL_ALIVE_BLOBS(cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 cb->do_unloading(is_alive, keep_alive, unloading_occurred);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
258 void CodeCache::blobs_do(CodeBlobClosure* f) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
259 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 FOR_ALL_ALIVE_BLOBS(cb) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
261 f->do_code_blob(cb);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
262
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
263 #ifdef ASSERT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
264 if (cb->is_nmethod())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
265 ((nmethod*)cb)->verify_scavenge_root_oops();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
266 #endif //ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
270 // Walk the list of methods which might contain non-perm oops.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
271 void CodeCache::scavenge_root_nmethods_do(CodeBlobClosure* f) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
272 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
273 debug_only(mark_scavenge_root_nmethods());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
274
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
275 for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
276 debug_only(cur->clear_scavenge_root_marked());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
277 assert(cur->scavenge_root_not_marked(), "");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
278 assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
279
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
280 bool is_live = (!cur->is_zombie() && !cur->is_unloaded());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
281 #ifndef PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
282 if (TraceScavenge) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
283 cur->print_on(tty, is_live ? "scavenge root" : "dead scavenge root"); tty->cr();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
284 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
285 #endif //PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
286 if (is_live)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
287 // Perform cur->oops_do(f), maybe just once per nmethod.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
288 f->do_code_blob(cur);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
289 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
290
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
291 // Check for stray marks.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
292 debug_only(verify_perm_nmethods(NULL));
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
293 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
294
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
295 void CodeCache::add_scavenge_root_nmethod(nmethod* nm) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
296 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
297 nm->set_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
298 nm->set_scavenge_root_link(_scavenge_root_nmethods);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
299 set_scavenge_root_nmethods(nm);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
300 print_trace("add_scavenge_root", nm);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
301 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
302
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
303 void CodeCache::drop_scavenge_root_nmethod(nmethod* nm) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
304 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
305 print_trace("drop_scavenge_root", nm);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
306 nmethod* last = NULL;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
307 nmethod* cur = scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
308 while (cur != NULL) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
309 nmethod* next = cur->scavenge_root_link();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
310 if (cur == nm) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
311 if (last != NULL)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
312 last->set_scavenge_root_link(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
313 else set_scavenge_root_nmethods(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
314 nm->set_scavenge_root_link(NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
315 nm->clear_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
316 return;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
317 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
318 last = cur;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
319 cur = next;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
320 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
321 assert(false, "should have been on list");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
322 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
323
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
324 void CodeCache::prune_scavenge_root_nmethods() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
325 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
326 debug_only(mark_scavenge_root_nmethods());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
327
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
328 nmethod* last = NULL;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
329 nmethod* cur = scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
330 while (cur != NULL) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
331 nmethod* next = cur->scavenge_root_link();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
332 debug_only(cur->clear_scavenge_root_marked());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
333 assert(cur->scavenge_root_not_marked(), "");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
334 assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
335
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
336 if (!cur->is_zombie() && !cur->is_unloaded()
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
337 && cur->detect_scavenge_root_oops()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
338 // Keep it. Advance 'last' to prevent deletion.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
339 last = cur;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
340 } else {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
341 // Prune it from the list, so we don't have to look at it any more.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
342 print_trace("prune_scavenge_root", cur);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
343 cur->set_scavenge_root_link(NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
344 cur->clear_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
345 if (last != NULL)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
346 last->set_scavenge_root_link(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
347 else set_scavenge_root_nmethods(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
348 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
349 cur = next;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
350 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
351
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
352 // Check for stray marks.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
353 debug_only(verify_perm_nmethods(NULL));
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
354 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
355
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
356 #ifndef PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
357 void CodeCache::asserted_non_scavengable_nmethods_do(CodeBlobClosure* f) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
358 // While we are here, verify the integrity of the list.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
359 mark_scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
360 for (nmethod* cur = scavenge_root_nmethods(); cur != NULL; cur = cur->scavenge_root_link()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
361 assert(cur->on_scavenge_root_list(), "else shouldn't be on this list");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
362 cur->clear_scavenge_root_marked();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
363 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
364 verify_perm_nmethods(f);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
365 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
366
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
367 // Temporarily mark nmethods that are claimed to be on the non-perm list.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
368 void CodeCache::mark_scavenge_root_nmethods() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
369 FOR_ALL_ALIVE_BLOBS(cb) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
370 if (cb->is_nmethod()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
371 nmethod *nm = (nmethod*)cb;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
372 assert(nm->scavenge_root_not_marked(), "clean state");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
373 if (nm->on_scavenge_root_list())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
374 nm->set_scavenge_root_marked();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
375 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
376 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
377 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
378
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
379 // If the closure is given, run it on the unlisted nmethods.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
380 // Also make sure that the effects of mark_scavenge_root_nmethods is gone.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
381 void CodeCache::verify_perm_nmethods(CodeBlobClosure* f_or_null) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
382 FOR_ALL_ALIVE_BLOBS(cb) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
383 bool call_f = (f_or_null != NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
384 if (cb->is_nmethod()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
385 nmethod *nm = (nmethod*)cb;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
386 assert(nm->scavenge_root_not_marked(), "must be already processed");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
387 if (nm->on_scavenge_root_list())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
388 call_f = false; // don't show this one to the client
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
389 nm->verify_scavenge_root_oops();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
390 } else {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
391 call_f = false; // not an nmethod
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
392 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
393 if (call_f) f_or_null->do_code_blob(cb);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
394 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
395 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
396 #endif //PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
397
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398 void CodeCache::gc_prologue() {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
399 assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_epilogue must be called");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 void CodeCache::gc_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
405 FOR_ALL_ALIVE_BLOBS(cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
407 nmethod *nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
408 assert(!nm->is_unloaded(), "Tautology");
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (needs_cache_clean()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 nm->cleanup_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 debug_only(nm->verify();)
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 cb->fix_oop_relocations();
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416 set_needs_cache_clean(false);
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
417 prune_scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
418 assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_prologue must be called");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 address CodeCache::first_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 return (address)_heap->begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 address CodeCache::last_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return (address)_heap->end();
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 void icache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 void CodeCache::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
438 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
439 assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment, "CodeCacheSegmentSize must be large enough to align inner loops");
a61af66fc99e Initial load
duke
parents:
diff changeset
440 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
441 assert(CodeCacheSegmentSize >= sizeof(jdouble), "CodeCacheSegmentSize must be large enough to align constants");
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // This was originally just a check of the alignment, causing failure, instead, round
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // the code cache to the page size. In particular, Solaris is moving to a larger
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // default page size.
a61af66fc99e Initial load
duke
parents:
diff changeset
445 CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
446 InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
447 ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
448 if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 vm_exit_during_initialization("Could not reserve enough space for code cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 MemoryService::add_code_heap_memory_pool(_heap);
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // Initialize ICache flush mechanism
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // This service is needed for os::register_code_area
a61af66fc99e Initial load
duke
parents:
diff changeset
456 icache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // Give OS a chance to register generated code area.
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // This is used on Windows 64 bit platforms to register
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // Structured Exception Handlers for our generated code.
a61af66fc99e Initial load
duke
parents:
diff changeset
461 os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 void codeCache_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 CodeCache::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 //------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 int CodeCache::number_of_nmethods_with_dependencies() {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 return _number_of_nmethods_with_dependencies;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 void CodeCache::clear_inline_caches() {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
477 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 nm->clear_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // used to keep track of how much time is spent in mark_for_deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
484 static elapsedTimer dependentCheckTime;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 static int dependentCheckCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 int CodeCache::mark_for_deoptimization(DepChange& changes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
493 dependentCheckTime.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
494 dependentCheckCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
495 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // search the hierarchy looking for nmethods which are affected by the loading of this class
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // then search the interfaces this class implements looking for nmethods
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // which might be dependent of the fact that an interface only had one
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // implementor.
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 { No_Safepoint_Verifier nsv;
a61af66fc99e Initial load
duke
parents:
diff changeset
506 for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 klassOop d = str.klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
508 number_of_marked_CodeBlobs += instanceKlass::cast(d)->mark_dependent_nmethods(changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
a61af66fc99e Initial load
duke
parents:
diff changeset
515 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 if (!nm->is_marked_for_deoptimization() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
517 nm->check_all_dependencies()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 tty->print_cr("Should have been marked for deoptimization:");
a61af66fc99e Initial load
duke
parents:
diff changeset
520 changes.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
521 nm->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
522 nm->print_dependencies();
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
528 dependentCheckTime.stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
529 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 #ifdef HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
536 int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
538 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // Deoptimize all methods of the evolving class itself
a61af66fc99e Initial load
duke
parents:
diff changeset
541 objArrayOop old_methods = dependee->methods();
a61af66fc99e Initial load
duke
parents:
diff changeset
542 for (int i = 0; i < old_methods->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 methodOop old_method = (methodOop) old_methods->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
545 nmethod *nm = old_method->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
546 if (nm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
547 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
548 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // ...Already marked in the previous pass; don't count it again.
a61af66fc99e Initial load
duke
parents:
diff changeset
555 } else if (nm->is_evol_dependent_on(dependee())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
557 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
558 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
559 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // flush caches in case they refer to a redefined methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
561 nm->clear_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 #endif // HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // Deoptimize all methods
a61af66fc99e Initial load
duke
parents:
diff changeset
571 void CodeCache::mark_all_nmethods_for_deoptimization() {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
573 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 int CodeCache::mark_for_deoptimization(methodOop dependee) {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
584 if (nm->is_dependent_on_method(dependee)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
587 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 void CodeCache::make_marked_nmethods_zombies() {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
596 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
597 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // If the nmethod has already been made non-entrant and it can be converted
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // then zombie it now. Otherwise make it non-entrant and it will eventually
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // be zombied when it is no longer seen on the stack. Note that the nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // might be "entrant" and not on the stack and so could be zombied immediately
a61af66fc99e Initial load
duke
parents:
diff changeset
603 // but we can't tell because we don't track it on stack until it becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // non-entrant.
a61af66fc99e Initial load
duke
parents:
diff changeset
605
a61af66fc99e Initial load
duke
parents:
diff changeset
606 if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
607 nm->make_zombie();
a61af66fc99e Initial load
duke
parents:
diff changeset
608 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 nm->make_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611 }
a61af66fc99e Initial load
duke
parents:
diff changeset
612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
614
a61af66fc99e Initial load
duke
parents:
diff changeset
615 void CodeCache::make_marked_nmethods_not_entrant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
619 nm->make_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 void CodeCache::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
625 _heap->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
626 FOR_ALL_ALIVE_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 p->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631 //------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // Non-product version
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 void CodeCache::verify_if_often() {
a61af66fc99e Initial load
duke
parents:
diff changeset
637 if (VerifyCodeCacheOften) {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 _heap->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
641
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
642 void CodeCache::print_trace(const char* event, CodeBlob* cb, int size) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
643 if (PrintCodeCache2) { // Need to add a new flag
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
644 ResourceMark rm;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
645 if (size == 0) size = cb->size();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
646 tty->print_cr("CodeCache %s: addr: " INTPTR_FORMAT ", size: 0x%x", event, cb, size);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
647 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
648 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
649
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 void CodeCache::print_internals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
651 int nmethodCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 int runtimeStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
653 int adapterCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
654 int deoptimizationStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 int uncommonTrapStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 int bufferBlobCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
657 int total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 int nmethodAlive = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
659 int nmethodNotEntrant = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
660 int nmethodZombie = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
661 int nmethodUnloaded = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 int nmethodJava = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
663 int nmethodNative = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
664 int maxCodeSize = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667 CodeBlob *cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 for (cb = first(); cb != NULL; cb = next(cb)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
669 total++;
a61af66fc99e Initial load
duke
parents:
diff changeset
670 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
672
a61af66fc99e Initial load
duke
parents:
diff changeset
673 if (Verbose && nm->method() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
675 char *method_name = nm->method()->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
676 tty->print("%s", method_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
677 if(nm->is_alive()) { tty->print_cr(" alive"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
678 if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 if(nm->is_zombie()) { tty->print_cr(" zombie"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 nmethodCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 if(nm->is_alive()) { nmethodAlive++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
685 if(nm->is_not_entrant()) { nmethodNotEntrant++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
686 if(nm->is_zombie()) { nmethodZombie++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
687 if(nm->is_unloaded()) { nmethodUnloaded++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
688 if(nm->is_native_method()) { nmethodNative++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
689
a61af66fc99e Initial load
duke
parents:
diff changeset
690 if(nm->method() != NULL && nm->is_java_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
691 nmethodJava++;
a61af66fc99e Initial load
duke
parents:
diff changeset
692 if(nm->code_size() > maxCodeSize) {
a61af66fc99e Initial load
duke
parents:
diff changeset
693 maxCodeSize = nm->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
694 }
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696 } else if (cb->is_runtime_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
697 runtimeStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
698 } else if (cb->is_deoptimization_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 deoptimizationStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
700 } else if (cb->is_uncommon_trap_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 uncommonTrapStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 } else if (cb->is_adapter_blob()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
703 adapterCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
704 } else if (cb->is_buffer_blob()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
705 bufferBlobCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709 int bucketSize = 512;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 int bucketLimit = maxCodeSize / bucketSize + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
712 memset(buckets,0,sizeof(int) * bucketLimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 for (cb = first(); cb != NULL; cb = next(cb)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
717 if(nm->is_java_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 buckets[nm->code_size() / bucketSize]++;
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721 }
a61af66fc99e Initial load
duke
parents:
diff changeset
722 tty->print_cr("Code Cache Entries (total of %d)",total);
a61af66fc99e Initial load
duke
parents:
diff changeset
723 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
724 tty->print_cr("nmethods: %d",nmethodCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
725 tty->print_cr("\talive: %d",nmethodAlive);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
a61af66fc99e Initial load
duke
parents:
diff changeset
727 tty->print_cr("\tzombie: %d",nmethodZombie);
a61af66fc99e Initial load
duke
parents:
diff changeset
728 tty->print_cr("\tunloaded: %d",nmethodUnloaded);
a61af66fc99e Initial load
duke
parents:
diff changeset
729 tty->print_cr("\tjava: %d",nmethodJava);
a61af66fc99e Initial load
duke
parents:
diff changeset
730 tty->print_cr("\tnative: %d",nmethodNative);
a61af66fc99e Initial load
duke
parents:
diff changeset
731 tty->print_cr("runtime_stubs: %d",runtimeStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
732 tty->print_cr("adapters: %d",adapterCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 tty->print_cr("buffer blobs: %d",bufferBlobCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
734 tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
735 tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
736 tty->print_cr("\nnmethod size distribution (non-zombie java)");
a61af66fc99e Initial load
duke
parents:
diff changeset
737 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 for(int i=0; i<bucketLimit; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 if(buckets[i] != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 tty->fill_to(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
743 tty->print_cr("%d",buckets[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
744 }
a61af66fc99e Initial load
duke
parents:
diff changeset
745 }
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 FREE_C_HEAP_ARRAY(int, buckets);
a61af66fc99e Initial load
duke
parents:
diff changeset
748 }
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750 void CodeCache::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 CodeBlob_sizes live;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 CodeBlob_sizes dead;
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
755 if (!p->is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 dead.add(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
757 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 live.add(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762 tty->print_cr("CodeCache:");
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 tty->print_cr("nmethod dependency checking time %f", dependentCheckTime.seconds(),
a61af66fc99e Initial load
duke
parents:
diff changeset
765 dependentCheckTime.seconds() / dependentCheckCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
766
a61af66fc99e Initial load
duke
parents:
diff changeset
767 if (!live.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 live.print("live");
a61af66fc99e Initial load
duke
parents:
diff changeset
769 }
a61af66fc99e Initial load
duke
parents:
diff changeset
770 if (!dead.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
771 dead.print("dead");
a61af66fc99e Initial load
duke
parents:
diff changeset
772 }
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774
a61af66fc99e Initial load
duke
parents:
diff changeset
775 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // print the oop_map usage
a61af66fc99e Initial load
duke
parents:
diff changeset
777 int code_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
778 int number_of_blobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
779 int number_of_oop_maps = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 int map_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
781 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
782 if (p->is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
783 number_of_blobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
784 code_size += p->instructions_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
785 OopMapSet* set = p->oop_maps();
a61af66fc99e Initial load
duke
parents:
diff changeset
786 if (set != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 number_of_oop_maps += set->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
788 map_size += set->heap_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792 tty->print_cr("OopMaps");
a61af66fc99e Initial load
duke
parents:
diff changeset
793 tty->print_cr(" #blobs = %d", number_of_blobs);
a61af66fc99e Initial load
duke
parents:
diff changeset
794 tty->print_cr(" code size = %d", code_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 tty->print_cr(" #oop_maps = %d", number_of_oop_maps);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 tty->print_cr(" map size = %d", map_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 #endif // PRODUCT