annotate src/share/vm/code/codeCache.cpp @ 10031:ebb32c4589f3

Force GC to process graal_installed_code references during marking (GRAAL-257)
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Tue, 11 Jun 2013 19:59:52 +0200
parents 9deda4d8e126
children 836a62f43af9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
26 #include "code/codeBlob.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
27 #include "code/codeCache.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
28 #include "code/compiledIC.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
29 #include "code/dependencies.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
30 #include "code/icBuffer.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
31 #include "code/nmethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
32 #include "code/pcDesc.hpp"
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
33 #include "compiler/compileBroker.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
34 #include "gc_implementation/shared/markSweep.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
35 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
36 #include "memory/gcLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
37 #include "memory/iterator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
38 #include "memory/resourceArea.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
39 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
40 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
41 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
42 #include "runtime/handles.inline.hpp"
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
43 #include "runtime/arguments.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
44 #include "runtime/icache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
45 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
46 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
47 #include "services/memoryService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1907
diff changeset
48 #include "utilities/xmlstream.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Helper class for printing in CodeCache
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 class CodeBlob_sizes {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int count;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 int total_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int header_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int stub_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 int relocation_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 int scopes_oop_size;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
61 int scopes_metadata_size;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int scopes_data_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 int scopes_pcs_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
66 CodeBlob_sizes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 total_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 header_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 code_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 stub_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 relocation_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 scopes_oop_size = 0;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
74 scopes_metadata_size = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 scopes_data_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 scopes_pcs_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 int total() { return total_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 bool is_empty() { return count == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void print(const char* title) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 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
84 count,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 title,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 total() / K,
a61af66fc99e Initial load
duke
parents:
diff changeset
87 header_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
88 relocation_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
89 code_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 stub_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
91 scopes_oop_size * 100 / total_size,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
92 scopes_metadata_size * 100 / total_size,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 scopes_data_size * 100 / total_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 scopes_pcs_size * 100 / total_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 void add(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 total_size += cb->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 header_size += cb->header_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 relocation_size += cb->relocation_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 if (cb->is_nmethod()) {
1563
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
103 nmethod* nm = cb->as_nmethod_or_null();
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
104 code_size += nm->insts_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 stub_size += nm->stub_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
106
1563
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
107 scopes_oop_size += nm->oops_size();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
108 scopes_metadata_size += nm->metadata_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 scopes_data_size += nm->scopes_data_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 scopes_pcs_size += nm->scopes_pcs_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 } else {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
112 code_size += cb->code_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // CodeCache implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 CodeHeap * CodeCache::_heap = new CodeHeap();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int CodeCache::_number_of_blobs = 0;
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
122 int CodeCache::_number_of_adapters = 0;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
123 int CodeCache::_number_of_nmethods = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 int CodeCache::_number_of_nmethods_with_dependencies = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 bool CodeCache::_needs_cache_clean = false;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
126 nmethod* CodeCache::_scavenge_root_nmethods = NULL;
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
127 nmethod* CodeCache::_saved_nmethods = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 CodeBlob* CodeCache::first() {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return (CodeBlob*)_heap->first();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 CodeBlob* CodeCache::next(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return (CodeBlob*)_heap->next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 CodeBlob* CodeCache::alive(CodeBlob *cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 while (cb != NULL && !cb->is_alive()) cb = next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 nmethod* CodeCache::alive_nmethod(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 return (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
155 nmethod* CodeCache::first_nmethod() {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
156 assert_locked_or_safepoint(CodeCache_lock);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
157 CodeBlob* cb = first();
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
158 while (cb != NULL && !cb->is_nmethod()) {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
159 cb = next(cb);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
160 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
161 return (nmethod*)cb;
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
162 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
163
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
164 nmethod* CodeCache::next_nmethod (CodeBlob* cb) {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
165 assert_locked_or_safepoint(CodeCache_lock);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
166 cb = next(cb);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
167 while (cb != NULL && !cb->is_nmethod()) {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
168 cb = next(cb);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
169 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
170 return (nmethod*)cb;
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
171 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
173 static size_t maxCodeCacheUsed = 0;
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
174
0
a61af66fc99e Initial load
duke
parents:
diff changeset
175 CodeBlob* CodeCache::allocate(int size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Do not seize the CodeCache lock here--if the caller has not
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // already done so, we are going to lose bigtime, since the code
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // cache will contain a garbage CodeBlob until the caller can
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // run the constructor for the CodeBlob subclass he is busy
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // instantiating.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 guarantee(size >= 0, "allocation request must be reasonable");
a61af66fc99e Initial load
duke
parents:
diff changeset
182 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 CodeBlob* cb = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 _number_of_blobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 cb = (CodeBlob*)_heap->allocate(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 if (cb != NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (!_heap->expand_by(CodeCacheExpansionSize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Expansion failed
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (PrintCodeCacheExtension) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 tty->print_cr("code cache extended to [" INTPTR_FORMAT ", " INTPTR_FORMAT "] (%d bytes)",
a61af66fc99e Initial load
duke
parents:
diff changeset
195 (intptr_t)_heap->begin(), (intptr_t)_heap->end(),
a61af66fc99e Initial load
duke
parents:
diff changeset
196 (address)_heap->end() - (address)_heap->begin());
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
199 maxCodeCacheUsed = MAX2(maxCodeCacheUsed, ((address)_heap->high_boundary() -
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
200 (address)_heap->low_boundary()) - unallocated_capacity());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 verify_if_often();
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
202 print_trace("allocation", cb, size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void CodeCache::free(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 verify_if_often();
a61af66fc99e Initial load
duke
parents:
diff changeset
209
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
210 print_trace("free", cb);
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
211 if (cb->is_nmethod()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
212 _number_of_nmethods--;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
213 if (((nmethod *)cb)->has_dependencies()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
214 _number_of_nmethods_with_dependencies--;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
215 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
216 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
217 if (cb->is_adapter_blob()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
218 _number_of_adapters--;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _number_of_blobs--;
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _heap->deallocate(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 verify_if_often();
a61af66fc99e Initial load
duke
parents:
diff changeset
225 assert(_number_of_blobs >= 0, "sanity check");
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::commit(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // this is called by nmethod::nmethod, which must already own CodeCache_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
231 assert_locked_or_safepoint(CodeCache_lock);
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
232 if (cb->is_nmethod()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
233 _number_of_nmethods++;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
234 if (((nmethod *)cb)->has_dependencies()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
235 _number_of_nmethods_with_dependencies++;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
236 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
238 if (cb->is_adapter_blob()) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
239 _number_of_adapters++;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
240 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1579
diff changeset
241
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // flush the hardware I-cache
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
243 ICache::invalidate_range(cb->content_begin(), cb->content_size());
0
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 void CodeCache::flush() {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
249 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Iteration over CodeBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 #define FOR_ALL_BLOBS(var) for (CodeBlob *var = first() ; var != NULL; var = next(var) )
a61af66fc99e Initial load
duke
parents:
diff changeset
256 #define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
a61af66fc99e Initial load
duke
parents:
diff changeset
257 #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
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 bool CodeCache::contains(void *p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // It should be ok to call contains without holding a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
262 return _heap->contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // 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
267 // 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
268 // 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
269 CodeBlob* CodeCache::find_blob(void* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 CodeBlob* result = find_blob_unsafe(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 if (result == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // We could potientially look up non_entrant methods
a61af66fc99e Initial load
duke
parents:
diff changeset
273 guarantee(!result->is_zombie() || result->is_locked_by_vm() || is_error_reported(), "unsafe access to zombie method");
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 nmethod* CodeCache::find_nmethod(void* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 CodeBlob *cb = find_blob(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
280 return (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 void CodeCache::blobs_do(void f(CodeBlob* nm)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 f(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 void CodeCache::nmethods_do(void f(nmethod* nm)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 FOR_ALL_BLOBS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 if (nm->is_nmethod()) f((nmethod*)nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
299 void CodeCache::alive_nmethods_do(void f(nmethod* nm)) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
300 assert_locked_or_safepoint(CodeCache_lock);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
301 FOR_ALL_ALIVE_NMETHODS(nm) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
302 f(nm);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
303 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
304 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
305
10031
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
306 #ifdef GRAAL
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
307 void CodeCache::alive_nmethods_do_graal_methods(OopClosure* closure) {
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
308 assert_locked_or_safepoint(CodeCache_lock);
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
309 FOR_ALL_ALIVE_NMETHODS(nm) {
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
310 nm->mark_graal_reference(closure);
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
311 }
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
312 }
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
313 #endif
ebb32c4589f3 Force GC to process graal_installed_code references during marking (GRAAL-257)
Christos Kotselidis <christos.kotselidis@oracle.com>
parents: 7595
diff changeset
314
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315 int CodeCache::alignment_unit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 return (int)_heap->alignment_unit();
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 int CodeCache::alignment_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 return (int)_heap->alignment_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324
1563
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
325 // Mark nmethods for unloading if they contain otherwise unreachable
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
326 // oops.
6787
8966c2d65d96 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 6725
diff changeset
327 void CodeCache::do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328 assert_locked_or_safepoint(CodeCache_lock);
1563
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
329 FOR_ALL_ALIVE_NMETHODS(nm) {
6787
8966c2d65d96 7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents: 6725
diff changeset
330 nm->do_unloading(is_alive, unloading_occurred);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
334 void CodeCache::blobs_do(CodeBlobClosure* f) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 FOR_ALL_ALIVE_BLOBS(cb) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
337 f->do_code_blob(cb);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
338
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
339 #ifdef ASSERT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
340 if (cb->is_nmethod())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
341 ((nmethod*)cb)->verify_scavenge_root_oops();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
342 #endif //ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
346 // 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
347 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
348 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
349 debug_only(mark_scavenge_root_nmethods());
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 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
352 debug_only(cur->clear_scavenge_root_marked());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
353 assert(cur->scavenge_root_not_marked(), "");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
354 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
355
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
356 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
357 #ifndef PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
358 if (TraceScavenge) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
359 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
360 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
361 #endif //PRODUCT
1363
ed4f78aa9282 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 1202
diff changeset
362 if (is_live) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
363 // 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
364 f->do_code_blob(cur);
1363
ed4f78aa9282 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti
parents: 1202
diff changeset
365 }
989
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
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
368 // Check for stray marks.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
369 debug_only(verify_perm_nmethods(NULL));
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
370 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
371
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
372 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
373 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
374 nm->set_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
375 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
376 set_scavenge_root_nmethods(nm);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
377 print_trace("add_scavenge_root", nm);
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
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
380 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
381 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
382 print_trace("drop_scavenge_root", nm);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
383 nmethod* last = NULL;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
384 nmethod* cur = scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
385 while (cur != NULL) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
386 nmethod* next = cur->scavenge_root_link();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
387 if (cur == nm) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
388 if (last != NULL)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
389 last->set_scavenge_root_link(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
390 else set_scavenge_root_nmethods(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
391 nm->set_scavenge_root_link(NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
392 nm->clear_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
393 return;
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 last = cur;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
396 cur = next;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
397 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
398 assert(false, "should have been on list");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
399 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
400
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
401 void CodeCache::prune_scavenge_root_nmethods() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
402 assert_locked_or_safepoint(CodeCache_lock);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
403 debug_only(mark_scavenge_root_nmethods());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
404
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
405 nmethod* last = NULL;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
406 nmethod* cur = scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
407 while (cur != NULL) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
408 nmethod* next = cur->scavenge_root_link();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
409 debug_only(cur->clear_scavenge_root_marked());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
410 assert(cur->scavenge_root_not_marked(), "");
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
411 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
412
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
413 if (!cur->is_zombie() && !cur->is_unloaded()
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
414 && cur->detect_scavenge_root_oops()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
415 // Keep it. Advance 'last' to prevent deletion.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
416 last = cur;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
417 } else {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
418 // 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
419 print_trace("prune_scavenge_root", cur);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
420 cur->set_scavenge_root_link(NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
421 cur->clear_on_scavenge_root_list();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
422 if (last != NULL)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
423 last->set_scavenge_root_link(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
424 else set_scavenge_root_nmethods(next);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
425 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
426 cur = next;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
427 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
428
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
429 // Check for stray marks.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
430 debug_only(verify_perm_nmethods(NULL));
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
431 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
432
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
433 #ifndef PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
434 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
435 // 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
436 mark_scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
437 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
438 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
439 cur->clear_scavenge_root_marked();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
440 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
441 verify_perm_nmethods(f);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
442 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
443
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
444 // 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
445 void CodeCache::mark_scavenge_root_nmethods() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
446 FOR_ALL_ALIVE_BLOBS(cb) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
447 if (cb->is_nmethod()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
448 nmethod *nm = (nmethod*)cb;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
449 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
450 if (nm->on_scavenge_root_list())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
451 nm->set_scavenge_root_marked();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
452 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
453 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
454 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
455
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
456 // 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
457 // 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
458 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
459 FOR_ALL_ALIVE_BLOBS(cb) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
460 bool call_f = (f_or_null != NULL);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
461 if (cb->is_nmethod()) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
462 nmethod *nm = (nmethod*)cb;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
463 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
464 if (nm->on_scavenge_root_list())
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
465 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
466 nm->verify_scavenge_root_oops();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
467 } else {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
468 call_f = false; // not an nmethod
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
469 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
470 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
471 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
472 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
473 #endif //PRODUCT
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
474
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
475
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
476 nmethod* CodeCache::find_and_remove_saved_code(Method* m) {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
477 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
478 nmethod* saved = _saved_nmethods;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
479 nmethod* prev = NULL;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
480 while (saved != NULL) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
481 if (saved->is_in_use() && saved->method() == m) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
482 if (prev != NULL) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
483 prev->set_saved_nmethod_link(saved->saved_nmethod_link());
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
484 } else {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
485 _saved_nmethods = saved->saved_nmethod_link();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
486 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
487 assert(saved->is_speculatively_disconnected(), "shouldn't call for other nmethods");
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
488 saved->set_speculatively_disconnected(false);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
489 saved->set_saved_nmethod_link(NULL);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
490 if (PrintMethodFlushing) {
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
491 saved->print_on(tty, " ### nmethod is reconnected\n");
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
492 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
493 if (LogCompilation && (xtty != NULL)) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
494 ttyLocker ttyl;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
495 xtty->begin_elem("nmethod_reconnected compile_id='%3d'", saved->compile_id());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
496 xtty->method(m);
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
497 xtty->stamp();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
498 xtty->end_elem();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
499 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
500 return saved;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
501 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
502 prev = saved;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
503 saved = saved->saved_nmethod_link();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
504 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
505 return NULL;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
506 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
507
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
508 void CodeCache::remove_saved_code(nmethod* nm) {
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
509 // For conc swpr this will be called with CodeCache_lock taken by caller
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
510 assert_locked_or_safepoint(CodeCache_lock);
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
511 assert(nm->is_speculatively_disconnected(), "shouldn't call for other nmethods");
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
512 nmethod* saved = _saved_nmethods;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
513 nmethod* prev = NULL;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
514 while (saved != NULL) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
515 if (saved == nm) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
516 if (prev != NULL) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
517 prev->set_saved_nmethod_link(saved->saved_nmethod_link());
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
518 } else {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
519 _saved_nmethods = saved->saved_nmethod_link();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
520 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
521 if (LogCompilation && (xtty != NULL)) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
522 ttyLocker ttyl;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
523 xtty->begin_elem("nmethod_removed compile_id='%3d'", nm->compile_id());
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
524 xtty->stamp();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
525 xtty->end_elem();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
526 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
527 return;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
528 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
529 prev = saved;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
530 saved = saved->saved_nmethod_link();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
531 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
532 ShouldNotReachHere();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
533 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
534
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
535 void CodeCache::speculatively_disconnect(nmethod* nm) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
536 assert_locked_or_safepoint(CodeCache_lock);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
537 assert(nm->is_in_use() && !nm->is_speculatively_disconnected(), "should only disconnect live nmethods");
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
538 nm->set_saved_nmethod_link(_saved_nmethods);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
539 _saved_nmethods = nm;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
540 if (PrintMethodFlushing) {
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1363
diff changeset
541 nm->print_on(tty, " ### nmethod is speculatively disconnected\n");
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
542 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
543 if (LogCompilation && (xtty != NULL)) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
544 ttyLocker ttyl;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
545 xtty->begin_elem("nmethod_disconnected compile_id='%3d'", nm->compile_id());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
546 xtty->method(nm->method());
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
547 xtty->stamp();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
548 xtty->end_elem();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
549 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
550 nm->method()->clear_code();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
551 nm->set_speculatively_disconnected(true);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
552 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
553
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 989
diff changeset
554
0
a61af66fc99e Initial load
duke
parents:
diff changeset
555 void CodeCache::gc_prologue() {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
556 assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_epilogue must be called");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 void CodeCache::gc_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
562 FOR_ALL_ALIVE_BLOBS(cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 nmethod *nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 assert(!nm->is_unloaded(), "Tautology");
a61af66fc99e Initial load
duke
parents:
diff changeset
566 if (needs_cache_clean()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
567 nm->cleanup_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
1563
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
569 DEBUG_ONLY(nm->verify());
1a5913bf5e19 6951083: oops and relocations should part of nmethod not CodeBlob
twisti
parents: 1538
diff changeset
570 nm->fix_oop_relocations();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
573 set_needs_cache_clean(false);
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
574 prune_scavenge_root_nmethods();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
575 assert(!nmethod::oops_do_marking_is_active(), "oops_do_marking_prologue must be called");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
576
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
577 #ifdef ASSERT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
578 // make sure that we aren't leaking icholders
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
579 int count = 0;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
580 FOR_ALL_BLOBS(cb) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
581 if (cb->is_nmethod()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
582 RelocIterator iter((nmethod*)cb);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
583 while(iter.next()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
584 if (iter.type() == relocInfo::virtual_call_type) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
585 if (CompiledIC::is_icholder_call_site(iter.virtual_call_reloc())) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
586 CompiledIC *ic = CompiledIC_at(iter.reloc());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
587 if (TraceCompiledIC) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
588 tty->print("noticed icholder " INTPTR_FORMAT " ", ic->cached_icholder());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
589 ic->print();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
590 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
591 assert(ic->cached_icholder() != NULL, "must be non-NULL");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
592 count++;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
593 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
594 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
595 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
596 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
597 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
598
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
599 assert(count + InlineCacheBuffer::pending_icholder_count() + CompiledICHolder::live_not_claimed_count() ==
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
600 CompiledICHolder::live_count(), "must agree");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
601 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604
2375
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
605 void CodeCache::verify_oops() {
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
606 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
607 VerifyOopClosure voc;
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
608 FOR_ALL_ALIVE_BLOBS(cb) {
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
609 if (cb->is_nmethod()) {
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
610 nmethod *nm = (nmethod*)cb;
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
611 nm->oops_do(&voc);
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
612 nm->verify_oop_relocations();
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
613 }
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
614 }
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
615 }
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
616
d673ef06fe96 7028374: race in fix_oop_relocations for scavengeable nmethods
never
parents: 2353
diff changeset
617
0
a61af66fc99e Initial load
duke
parents:
diff changeset
618 address CodeCache::first_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
619 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 return (address)_heap->begin();
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 address CodeCache::last_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
625 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
626 return (address)_heap->end();
a61af66fc99e Initial load
duke
parents:
diff changeset
627 }
a61af66fc99e Initial load
duke
parents:
diff changeset
628
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 void icache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 void CodeCache::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 assert(CodeCacheSegmentSize >= (uintx)CodeEntryAlignment, "CodeCacheSegmentSize must be large enough to align entry points");
a61af66fc99e Initial load
duke
parents:
diff changeset
634 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
635 assert(CodeCacheSegmentSize >= (uintx)OptoLoopAlignment, "CodeCacheSegmentSize must be large enough to align inner loops");
a61af66fc99e Initial load
duke
parents:
diff changeset
636 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
637 assert(CodeCacheSegmentSize >= sizeof(jdouble), "CodeCacheSegmentSize must be large enough to align constants");
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // This was originally just a check of the alignment, causing failure, instead, round
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // the code cache to the page size. In particular, Solaris is moving to a larger
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // default page size.
a61af66fc99e Initial load
duke
parents:
diff changeset
641 CodeCacheExpansionSize = round_to(CodeCacheExpansionSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
642 InitialCodeCacheSize = round_to(InitialCodeCacheSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
643 ReservedCodeCacheSize = round_to(ReservedCodeCacheSize, os::vm_page_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
644 if (!_heap->reserve(ReservedCodeCacheSize, InitialCodeCacheSize, CodeCacheSegmentSize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 vm_exit_during_initialization("Could not reserve enough space for code cache");
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 MemoryService::add_code_heap_memory_pool(_heap);
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // Initialize ICache flush mechanism
a61af66fc99e Initial load
duke
parents:
diff changeset
651 // This service is needed for os::register_code_area
a61af66fc99e Initial load
duke
parents:
diff changeset
652 icache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // Give OS a chance to register generated code area.
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // This is used on Windows 64 bit platforms to register
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Structured Exception Handlers for our generated code.
a61af66fc99e Initial load
duke
parents:
diff changeset
657 os::register_code_area(_heap->low_boundary(), _heap->high_boundary());
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 void codeCache_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 CodeCache::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
663 }
a61af66fc99e Initial load
duke
parents:
diff changeset
664
a61af66fc99e Initial load
duke
parents:
diff changeset
665 //------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667 int CodeCache::number_of_nmethods_with_dependencies() {
a61af66fc99e Initial load
duke
parents:
diff changeset
668 return _number_of_nmethods_with_dependencies;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 }
a61af66fc99e Initial load
duke
parents:
diff changeset
670
a61af66fc99e Initial load
duke
parents:
diff changeset
671 void CodeCache::clear_inline_caches() {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 nm->clear_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
677
a61af66fc99e Initial load
duke
parents:
diff changeset
678 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
679 // used to keep track of how much time is spent in mark_for_deoptimization
a61af66fc99e Initial load
duke
parents:
diff changeset
680 static elapsedTimer dependentCheckTime;
a61af66fc99e Initial load
duke
parents:
diff changeset
681 static int dependentCheckCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
682 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684
a61af66fc99e Initial load
duke
parents:
diff changeset
685 int CodeCache::mark_for_deoptimization(DepChange& changes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
686 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
689 dependentCheckTime.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
690 dependentCheckCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
691 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
692
a61af66fc99e Initial load
duke
parents:
diff changeset
693 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // search the hierarchy looking for nmethods which are affected by the loading of this class
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 // then search the interfaces this class implements looking for nmethods
a61af66fc99e Initial load
duke
parents:
diff changeset
698 // which might be dependent of the fact that an interface only had one
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // implementor.
a61af66fc99e Initial load
duke
parents:
diff changeset
700
a61af66fc99e Initial load
duke
parents:
diff changeset
701 { No_Safepoint_Verifier nsv;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 for (DepChange::ContextStream str(changes, nsv); str.next(); ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
703 Klass* d = str.klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
704 number_of_marked_CodeBlobs += InstanceKlass::cast(d)->mark_dependent_nmethods(changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
707
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
710 NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
a61af66fc99e Initial load
duke
parents:
diff changeset
711 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 if (!nm->is_marked_for_deoptimization() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
713 nm->check_all_dependencies()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
715 tty->print_cr("Should have been marked for deoptimization:");
a61af66fc99e Initial load
duke
parents:
diff changeset
716 changes.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
717 nm->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
718 nm->print_dependencies();
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
a61af66fc99e Initial load
duke
parents:
diff changeset
723 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
724 dependentCheckTime.stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
725 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
726
a61af66fc99e Initial load
duke
parents:
diff changeset
727 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 #ifdef HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
732 int CodeCache::mark_for_evol_deoptimization(instanceKlassHandle dependee) {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
734 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // Deoptimize all methods of the evolving class itself
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
737 Array<Method*>* old_methods = dependee->methods();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
738 for (int i = 0; i < old_methods->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
739 ResourceMark rm;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
740 Method* old_method = old_methods->at(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
741 nmethod *nm = old_method->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
742 if (nm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
743 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
744 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
745 }
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747
a61af66fc99e Initial load
duke
parents:
diff changeset
748 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
749 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
750 // ...Already marked in the previous pass; don't count it again.
a61af66fc99e Initial load
duke
parents:
diff changeset
751 } else if (nm->is_evol_dependent_on(dependee())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
754 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
756 // flush caches in case they refer to a redefined Method*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
757 nm->clear_inline_caches();
a61af66fc99e Initial load
duke
parents:
diff changeset
758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
760
a61af66fc99e Initial load
duke
parents:
diff changeset
761 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763 #endif // HOTSWAP
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // Deoptimize all methods
a61af66fc99e Initial load
duke
parents:
diff changeset
767 void CodeCache::mark_all_nmethods_for_deoptimization() {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
769 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
770 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
772 }
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
775 int CodeCache::mark_for_deoptimization(Method* dependee) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
776 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
777 int number_of_marked_CodeBlobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
780 if (nm->is_dependent_on_method(dependee)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
781 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
782 nm->mark_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
783 number_of_marked_CodeBlobs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785 }
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 return number_of_marked_CodeBlobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 void CodeCache::make_marked_nmethods_zombies() {
a61af66fc99e Initial load
duke
parents:
diff changeset
791 assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
792 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
793 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795 // If the nmethod has already been made non-entrant and it can be converted
a61af66fc99e Initial load
duke
parents:
diff changeset
796 // then zombie it now. Otherwise make it non-entrant and it will eventually
a61af66fc99e Initial load
duke
parents:
diff changeset
797 // be zombied when it is no longer seen on the stack. Note that the nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
798 // might be "entrant" and not on the stack and so could be zombied immediately
a61af66fc99e Initial load
duke
parents:
diff changeset
799 // but we can't tell because we don't track it on stack until it becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
800 // non-entrant.
a61af66fc99e Initial load
duke
parents:
diff changeset
801
a61af66fc99e Initial load
duke
parents:
diff changeset
802 if (nm->is_not_entrant() && nm->can_not_entrant_be_converted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
803 nm->make_zombie();
a61af66fc99e Initial load
duke
parents:
diff changeset
804 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 nm->make_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 void CodeCache::make_marked_nmethods_not_entrant() {
a61af66fc99e Initial load
duke
parents:
diff changeset
812 assert_locked_or_safepoint(CodeCache_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
813 FOR_ALL_ALIVE_NMETHODS(nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
814 if (nm->is_marked_for_deoptimization()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 nm->make_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 }
a61af66fc99e Initial load
duke
parents:
diff changeset
818 }
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 void CodeCache::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
821 _heap->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
822 FOR_ALL_ALIVE_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
823 p->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
824 }
a61af66fc99e Initial load
duke
parents:
diff changeset
825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 //------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
828 // Non-product version
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
831
a61af66fc99e Initial load
duke
parents:
diff changeset
832 void CodeCache::verify_if_often() {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 if (VerifyCodeCacheOften) {
a61af66fc99e Initial load
duke
parents:
diff changeset
834 _heap->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
835 }
a61af66fc99e Initial load
duke
parents:
diff changeset
836 }
a61af66fc99e Initial load
duke
parents:
diff changeset
837
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
838 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
839 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
840 ResourceMark rm;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
841 if (size == 0) size = cb->size();
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
842 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
843 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
844 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
845
0
a61af66fc99e Initial load
duke
parents:
diff changeset
846 void CodeCache::print_internals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
847 int nmethodCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
848 int runtimeStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
849 int adapterCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
850 int deoptimizationStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
851 int uncommonTrapStubCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
852 int bufferBlobCount = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
853 int total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
854 int nmethodAlive = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
855 int nmethodNotEntrant = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
856 int nmethodZombie = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
857 int nmethodUnloaded = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
858 int nmethodJava = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
859 int nmethodNative = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
860 int maxCodeSize = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
861 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 CodeBlob *cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
864 for (cb = first(); cb != NULL; cb = next(cb)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
865 total++;
a61af66fc99e Initial load
duke
parents:
diff changeset
866 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
867 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869 if (Verbose && nm->method() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
870 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
871 char *method_name = nm->method()->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
872 tty->print("%s", method_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
873 if(nm->is_alive()) { tty->print_cr(" alive"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
874 if(nm->is_not_entrant()) { tty->print_cr(" not-entrant"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
875 if(nm->is_zombie()) { tty->print_cr(" zombie"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
877
a61af66fc99e Initial load
duke
parents:
diff changeset
878 nmethodCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880 if(nm->is_alive()) { nmethodAlive++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
881 if(nm->is_not_entrant()) { nmethodNotEntrant++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
882 if(nm->is_zombie()) { nmethodZombie++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
883 if(nm->is_unloaded()) { nmethodUnloaded++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
884 if(nm->is_native_method()) { nmethodNative++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
885
a61af66fc99e Initial load
duke
parents:
diff changeset
886 if(nm->method() != NULL && nm->is_java_method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
887 nmethodJava++;
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
888 if (nm->insts_size() > maxCodeSize) {
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
889 maxCodeSize = nm->insts_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
892 } else if (cb->is_runtime_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
893 runtimeStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 } else if (cb->is_deoptimization_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
895 deoptimizationStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
896 } else if (cb->is_uncommon_trap_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
897 uncommonTrapStubCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
898 } else if (cb->is_adapter_blob()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
899 adapterCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
900 } else if (cb->is_buffer_blob()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
901 bufferBlobCount++;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 }
a61af66fc99e Initial load
duke
parents:
diff changeset
903 }
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 int bucketSize = 512;
a61af66fc99e Initial load
duke
parents:
diff changeset
906 int bucketLimit = maxCodeSize / bucketSize + 1;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3363
diff changeset
907 int *buckets = NEW_C_HEAP_ARRAY(int, bucketLimit, mtCode);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
908 memset(buckets,0,sizeof(int) * bucketLimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
909
a61af66fc99e Initial load
duke
parents:
diff changeset
910 for (cb = first(); cb != NULL; cb = next(cb)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
911 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
912 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
913 if(nm->is_java_method()) {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
914 buckets[nm->insts_size() / bucketSize]++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918 tty->print_cr("Code Cache Entries (total of %d)",total);
a61af66fc99e Initial load
duke
parents:
diff changeset
919 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
920 tty->print_cr("nmethods: %d",nmethodCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
921 tty->print_cr("\talive: %d",nmethodAlive);
a61af66fc99e Initial load
duke
parents:
diff changeset
922 tty->print_cr("\tnot_entrant: %d",nmethodNotEntrant);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 tty->print_cr("\tzombie: %d",nmethodZombie);
a61af66fc99e Initial load
duke
parents:
diff changeset
924 tty->print_cr("\tunloaded: %d",nmethodUnloaded);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 tty->print_cr("\tjava: %d",nmethodJava);
a61af66fc99e Initial load
duke
parents:
diff changeset
926 tty->print_cr("\tnative: %d",nmethodNative);
a61af66fc99e Initial load
duke
parents:
diff changeset
927 tty->print_cr("runtime_stubs: %d",runtimeStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
928 tty->print_cr("adapters: %d",adapterCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
929 tty->print_cr("buffer blobs: %d",bufferBlobCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
930 tty->print_cr("deoptimization_stubs: %d",deoptimizationStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
931 tty->print_cr("uncommon_traps: %d",uncommonTrapStubCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
932 tty->print_cr("\nnmethod size distribution (non-zombie java)");
a61af66fc99e Initial load
duke
parents:
diff changeset
933 tty->print_cr("-------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
934
a61af66fc99e Initial load
duke
parents:
diff changeset
935 for(int i=0; i<bucketLimit; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
936 if(buckets[i] != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
937 tty->print("%d - %d bytes",i*bucketSize,(i+1)*bucketSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 tty->fill_to(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 tty->print_cr("%d",buckets[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941 }
a61af66fc99e Initial load
duke
parents:
diff changeset
942
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3363
diff changeset
943 FREE_C_HEAP_ARRAY(int, buckets, mtCode);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
944 }
a61af66fc99e Initial load
duke
parents:
diff changeset
945
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
946 #endif // !PRODUCT
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
947
0
a61af66fc99e Initial load
duke
parents:
diff changeset
948 void CodeCache::print() {
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
949 print_summary(tty);
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
950
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
951 #ifndef PRODUCT
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
952 if (!Verbose) return;
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
953
0
a61af66fc99e Initial load
duke
parents:
diff changeset
954 CodeBlob_sizes live;
a61af66fc99e Initial load
duke
parents:
diff changeset
955 CodeBlob_sizes dead;
a61af66fc99e Initial load
duke
parents:
diff changeset
956
a61af66fc99e Initial load
duke
parents:
diff changeset
957 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 if (!p->is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
959 dead.add(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
960 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
961 live.add(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
964
a61af66fc99e Initial load
duke
parents:
diff changeset
965 tty->print_cr("CodeCache:");
a61af66fc99e Initial load
duke
parents:
diff changeset
966
a61af66fc99e Initial load
duke
parents:
diff changeset
967 tty->print_cr("nmethod dependency checking time %f", dependentCheckTime.seconds(),
a61af66fc99e Initial load
duke
parents:
diff changeset
968 dependentCheckTime.seconds() / dependentCheckCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 if (!live.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 live.print("live");
a61af66fc99e Initial load
duke
parents:
diff changeset
972 }
a61af66fc99e Initial load
duke
parents:
diff changeset
973 if (!dead.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
974 dead.print("dead");
a61af66fc99e Initial load
duke
parents:
diff changeset
975 }
a61af66fc99e Initial load
duke
parents:
diff changeset
976
a61af66fc99e Initial load
duke
parents:
diff changeset
977
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
978 if (WizardMode) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
979 // print the oop_map usage
a61af66fc99e Initial load
duke
parents:
diff changeset
980 int code_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
981 int number_of_blobs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
982 int number_of_oop_maps = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
983 int map_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
984 FOR_ALL_BLOBS(p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 if (p->is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
986 number_of_blobs++;
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
987 code_size += p->code_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
988 OopMapSet* set = p->oop_maps();
a61af66fc99e Initial load
duke
parents:
diff changeset
989 if (set != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 number_of_oop_maps += set->size();
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1644
diff changeset
991 map_size += set->heap_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
993 }
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995 tty->print_cr("OopMaps");
a61af66fc99e Initial load
duke
parents:
diff changeset
996 tty->print_cr(" #blobs = %d", number_of_blobs);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 tty->print_cr(" code size = %d", code_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
998 tty->print_cr(" #oop_maps = %d", number_of_oop_maps);
a61af66fc99e Initial load
duke
parents:
diff changeset
999 tty->print_cr(" map size = %d", map_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1001
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1002 #endif // !PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1004
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1005 void CodeCache::print_summary(outputStream* st, bool detailed) {
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1006 size_t total = (_heap->high_boundary() - _heap->low_boundary());
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1007 st->print_cr("CodeCache: size=" SIZE_FORMAT "Kb used=" SIZE_FORMAT
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1008 "Kb max_used=" SIZE_FORMAT "Kb free=" SIZE_FORMAT
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1009 "Kb max_free_chunk=" SIZE_FORMAT "Kb",
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1010 total/K, (total - unallocated_capacity())/K,
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1011 maxCodeCacheUsed/K, unallocated_capacity()/K, largest_free_block()/K);
1907
1e9a9d2e6509 6970683: improvements to hs_err output
never
parents: 1748
diff changeset
1012
7595
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1013 if (detailed) {
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1014 st->print_cr(" bounds [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT "]",
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1015 _heap->low_boundary(),
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1016 _heap->high(),
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1017 _heap->high_boundary());
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1018 st->print_cr(" total_blobs=" UINT32_FORMAT " nmethods=" UINT32_FORMAT
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1019 " adapters=" UINT32_FORMAT,
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1020 nof_blobs(), nof_nmethods(), nof_adapters());
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1021 st->print_cr(" compilation: %s", CompileBroker::should_compile_new_jobs() ?
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1022 "enabled" : Arguments::mode() == Arguments::_int ?
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1023 "disabled (interpreter mode)" :
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1024 "disabled (not enough contiguous free space left)");
9deda4d8e126 8005204: Code Cache Reduction: command line options implementation
vladidan
parents: 6787
diff changeset
1025 }
1907
1e9a9d2e6509 6970683: improvements to hs_err output
never
parents: 1748
diff changeset
1026 }
2353
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1027
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1028 void CodeCache::log_state(outputStream* st) {
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1029 st->print(" total_blobs='" UINT32_FORMAT "' nmethods='" UINT32_FORMAT "'"
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1030 " adapters='" UINT32_FORMAT "' free_code_cache='" SIZE_FORMAT "'"
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1031 " largest_free_block='" SIZE_FORMAT "'",
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1032 nof_blobs(), nof_nmethods(), nof_adapters(),
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1033 unallocated_capacity(), largest_free_block());
1c0cf339481b 7025742: Can not use CodeCache::unallocated_capacity() with fragmented CodeCache
kvn
parents: 2091
diff changeset
1034 }
2457
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1035
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1036 size_t CodeCache::largest_free_block() {
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1037 // This is called both with and without CodeCache_lock held so
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1038 // handle both cases.
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1039 if (CodeCache_lock->owned_by_self()) {
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1040 return _heap->largest_free_block();
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1041 } else {
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1042 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1043 return _heap->largest_free_block();
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1044 }
527977d4f740 7033779: CodeCache::largest_free_block may need to hold the CodeCache lock
never
parents: 2376
diff changeset
1045 }