author | mgerdin |
Thu, 23 Feb 2012 14:58:35 +0100 | |
changeset 12095 | cc3d6f08a4c4 |
parent 11789 | 2ff80dcfc1cf |
child 13195 | be27e1b6a4b9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8672
diff
changeset
|
2 |
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5533
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5533
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5533
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "code/codeCache.hpp" |
|
27 |
#include "code/nmethod.hpp" |
|
28 |
#include "compiler/compileBroker.hpp" |
|
29 |
#include "memory/resourceArea.hpp" |
|
30 |
#include "oops/methodOop.hpp" |
|
31 |
#include "runtime/atomic.hpp" |
|
32 |
#include "runtime/compilationPolicy.hpp" |
|
33 |
#include "runtime/mutexLocker.hpp" |
|
34 |
#include "runtime/os.hpp" |
|
35 |
#include "runtime/sweeper.hpp" |
|
36 |
#include "runtime/vm_operations.hpp" |
|
37 |
#include "utilities/events.hpp" |
|
38 |
#include "utilities/xmlstream.hpp" |
|
1 | 39 |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
40 |
#ifdef ASSERT |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
41 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
42 |
#define SWEEP(nm) record_sweep(nm, __LINE__) |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
43 |
// Sweeper logging code |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
44 |
class SweeperRecord { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
45 |
public: |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
46 |
int traversal; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
47 |
int invocation; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
48 |
int compile_id; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
49 |
long traversal_mark; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
50 |
int state; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
51 |
const char* kind; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
52 |
address vep; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
53 |
address uep; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
54 |
int line; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
55 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
56 |
void print() { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
57 |
tty->print_cr("traversal = %d invocation = %d compile_id = %d %s uep = " PTR_FORMAT " vep = " |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
58 |
PTR_FORMAT " state = %d traversal_mark %d line = %d", |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
59 |
traversal, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
60 |
invocation, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
61 |
compile_id, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
62 |
kind == NULL ? "" : kind, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
63 |
uep, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
64 |
vep, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
65 |
state, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
66 |
traversal_mark, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
67 |
line); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
68 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
69 |
}; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
70 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
71 |
static int _sweep_index = 0; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
72 |
static SweeperRecord* _records = NULL; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
73 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
74 |
void NMethodSweeper::report_events(int id, address entry) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
75 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
76 |
for (int i = _sweep_index; i < SweeperLogEntries; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
77 |
if (_records[i].uep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
78 |
_records[i].vep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
79 |
_records[i].compile_id == id) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
80 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
81 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
82 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
83 |
for (int i = 0; i < _sweep_index; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
84 |
if (_records[i].uep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
85 |
_records[i].vep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
86 |
_records[i].compile_id == id) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
87 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
88 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
89 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
90 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
91 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
92 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
93 |
void NMethodSweeper::report_events() { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
94 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
95 |
for (int i = _sweep_index; i < SweeperLogEntries; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
96 |
// skip empty records |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
97 |
if (_records[i].vep == NULL) continue; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
98 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
99 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
100 |
for (int i = 0; i < _sweep_index; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
101 |
// skip empty records |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
102 |
if (_records[i].vep == NULL) continue; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
103 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
104 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
105 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
106 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
107 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
108 |
void NMethodSweeper::record_sweep(nmethod* nm, int line) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
109 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
110 |
_records[_sweep_index].traversal = _traversals; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
111 |
_records[_sweep_index].traversal_mark = nm->_stack_traversal_mark; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
112 |
_records[_sweep_index].invocation = _invocations; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
113 |
_records[_sweep_index].compile_id = nm->compile_id(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
114 |
_records[_sweep_index].kind = nm->compile_kind(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
115 |
_records[_sweep_index].state = nm->_state; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
116 |
_records[_sweep_index].vep = nm->verified_entry_point(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
117 |
_records[_sweep_index].uep = nm->entry_point(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
118 |
_records[_sweep_index].line = line; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
119 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
120 |
_sweep_index = (_sweep_index + 1) % SweeperLogEntries; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
121 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
122 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
123 |
#else |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
124 |
#define SWEEP(nm) |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
125 |
#endif |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
126 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
127 |
|
1 | 128 |
long NMethodSweeper::_traversals = 0; // No. of stack traversals performed |
5895
7127e98012e3
6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam
never
parents:
5547
diff
changeset
|
129 |
nmethod* NMethodSweeper::_current = NULL; // Current nmethod |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
130 |
int NMethodSweeper::_seen = 0 ; // No. of nmethods we have currently processed in current pass of CodeCache |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
131 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
132 |
volatile int NMethodSweeper::_invocations = 0; // No. of invocations left until we are completed with this pass |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
133 |
volatile int NMethodSweeper::_sweep_started = 0; // Whether a sweep is in progress. |
1 | 134 |
|
135 |
jint NMethodSweeper::_locked_seen = 0; |
|
136 |
jint NMethodSweeper::_not_entrant_seen_on_stack = 0; |
|
137 |
bool NMethodSweeper::_rescan = false; |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
138 |
bool NMethodSweeper::_do_sweep = false; |
4750 | 139 |
bool NMethodSweeper::_was_full = false; |
140 |
jint NMethodSweeper::_advise_to_sweep = 0; |
|
141 |
jlong NMethodSweeper::_last_was_full = 0; |
|
142 |
uint NMethodSweeper::_highest_marked = 0; |
|
143 |
long NMethodSweeper::_was_full_traversal = 0; |
|
1 | 144 |
|
3908 | 145 |
class MarkActivationClosure: public CodeBlobClosure { |
146 |
public: |
|
147 |
virtual void do_code_blob(CodeBlob* cb) { |
|
148 |
// If we see an activation belonging to a non_entrant nmethod, we mark it. |
|
149 |
if (cb->is_nmethod() && ((nmethod*)cb)->is_not_entrant()) { |
|
150 |
((nmethod*)cb)->mark_as_seen_on_stack(); |
|
151 |
} |
|
152 |
} |
|
153 |
}; |
|
154 |
static MarkActivationClosure mark_activation_closure; |
|
155 |
||
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
156 |
void NMethodSweeper::scan_stacks() { |
1 | 157 |
assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint"); |
158 |
if (!MethodFlushing) return; |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
159 |
_do_sweep = true; |
1 | 160 |
|
161 |
// No need to synchronize access, since this is always executed at a |
|
162 |
// safepoint. If we aren't in the middle of scan and a rescan |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
163 |
// hasn't been requested then just return. If UseCodeCacheFlushing is on and |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
164 |
// code cache flushing is in progress, don't skip sweeping to help make progress |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
165 |
// clearing space in the code cache. |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
166 |
if ((_current == NULL && !_rescan) && !(UseCodeCacheFlushing && !CompileBroker::should_compile_new_jobs())) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
167 |
_do_sweep = false; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
168 |
return; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
169 |
} |
1 | 170 |
|
171 |
// Make sure CompiledIC_lock in unlocked, since we might update some |
|
172 |
// inline caches. If it is, we just bail-out and try later. |
|
173 |
if (CompiledIC_lock->is_locked() || Patching_lock->is_locked()) return; |
|
174 |
||
175 |
// Check for restart |
|
176 |
assert(CodeCache::find_blob_unsafe(_current) == _current, "Sweeper nmethod cached state invalid"); |
|
177 |
if (_current == NULL) { |
|
178 |
_seen = 0; |
|
179 |
_invocations = NmethodSweepFraction; |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
180 |
_current = CodeCache::first_nmethod(); |
1 | 181 |
_traversals += 1; |
182 |
if (PrintMethodFlushing) { |
|
183 |
tty->print_cr("### Sweep: stack traversal %d", _traversals); |
|
184 |
} |
|
3908 | 185 |
Threads::nmethods_do(&mark_activation_closure); |
1 | 186 |
|
187 |
// reset the flags since we started a scan from the beginning. |
|
188 |
_rescan = false; |
|
189 |
_locked_seen = 0; |
|
190 |
_not_entrant_seen_on_stack = 0; |
|
191 |
} |
|
192 |
||
4750 | 193 |
if (UseCodeCacheFlushing) { |
194 |
if (!CodeCache::needs_flushing()) { |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
195 |
// scan_stacks() runs during a safepoint, no race with setters |
4750 | 196 |
_advise_to_sweep = 0; |
197 |
} |
|
198 |
||
199 |
if (was_full()) { |
|
200 |
// There was some progress so attempt to restart the compiler |
|
201 |
jlong now = os::javaTimeMillis(); |
|
202 |
jlong max_interval = (jlong)MinCodeCacheFlushingInterval * (jlong)1000; |
|
203 |
jlong curr_interval = now - _last_was_full; |
|
204 |
if ((!CodeCache::needs_flushing()) && (curr_interval > max_interval)) { |
|
205 |
CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation); |
|
206 |
set_was_full(false); |
|
207 |
||
208 |
// Update the _last_was_full time so we can tell how fast the |
|
209 |
// code cache is filling up |
|
210 |
_last_was_full = os::javaTimeMillis(); |
|
211 |
||
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
212 |
log_sweep("restart_compiler"); |
4750 | 213 |
} |
214 |
} |
|
215 |
} |
|
1 | 216 |
} |
217 |
||
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
218 |
void NMethodSweeper::possibly_sweep() { |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
219 |
assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode"); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
220 |
if ((!MethodFlushing) || (!_do_sweep)) return; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
221 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
222 |
if (_invocations > 0) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
223 |
// Only one thread at a time will sweep |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
224 |
jint old = Atomic::cmpxchg( 1, &_sweep_started, 0 ); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
225 |
if (old != 0) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
226 |
return; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
227 |
} |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
228 |
#ifdef ASSERT |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
229 |
if (LogSweeper && _records == NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
230 |
// Create the ring buffer for the logging code |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
231 |
_records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
232 |
memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
233 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
234 |
#endif |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
235 |
if (_invocations > 0) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
236 |
sweep_code_cache(); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
237 |
_invocations--; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
238 |
} |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
239 |
_sweep_started = 0; |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
240 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
241 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
242 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
243 |
void NMethodSweeper::sweep_code_cache() { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
244 |
#ifdef ASSERT |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
245 |
jlong sweep_start; |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
246 |
if (PrintMethodFlushing) { |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
247 |
sweep_start = os::javaTimeMillis(); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
248 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
249 |
#endif |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
250 |
if (PrintMethodFlushing && Verbose) { |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
251 |
tty->print_cr("### Sweep at %d out of %d. Invocations left: %d", _seen, CodeCache::nof_nmethods(), _invocations); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
252 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
253 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
254 |
// We want to visit all nmethods after NmethodSweepFraction |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
255 |
// invocations so divide the remaining number of nmethods by the |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
256 |
// remaining number of invocations. This is only an estimate since |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
257 |
// the number of nmethods changes during the sweep so the final |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
258 |
// stage must iterate until it there are no more nmethods. |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
259 |
int todo = (CodeCache::nof_nmethods() - _seen) / _invocations; |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
260 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
261 |
assert(!SafepointSynchronize::is_at_safepoint(), "should not be in safepoint when we get here"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
262 |
assert(!CodeCache_lock->owned_by_self(), "just checking"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
263 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
264 |
{ |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
265 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
266 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
267 |
// The last invocation iterates until there are no more nmethods |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
268 |
for (int i = 0; (i < todo || _invocations == 1) && _current != NULL; i++) { |
11789
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
269 |
if (SafepointSynchronize::is_synchronizing()) { // Safepoint request |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
270 |
if (PrintMethodFlushing && Verbose) { |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
271 |
tty->print_cr("### Sweep at %d out of %d, invocation: %d, yielding to safepoint", _seen, CodeCache::nof_nmethods(), _invocations); |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
272 |
} |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
273 |
MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
274 |
|
11789
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
275 |
assert(Thread::current()->is_Java_thread(), "should be java thread"); |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
276 |
JavaThread* thread = (JavaThread*)Thread::current(); |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
277 |
ThreadBlockInVM tbivm(thread); |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
278 |
thread->java_suspend_self(); |
2ff80dcfc1cf
7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents:
9942
diff
changeset
|
279 |
} |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
280 |
// Since we will give up the CodeCache_lock, always skip ahead |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
281 |
// to the next nmethod. Other blobs can be deleted by other |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
282 |
// threads but nmethods are only reclaimed by the sweeper. |
5895
7127e98012e3
6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam
never
parents:
5547
diff
changeset
|
283 |
nmethod* next = CodeCache::next_nmethod(_current); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
284 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
285 |
// Now ready to process nmethod and give up CodeCache_lock |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
286 |
{ |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
287 |
MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
5895
7127e98012e3
6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam
never
parents:
5547
diff
changeset
|
288 |
process_nmethod(_current); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
289 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
290 |
_seen++; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
291 |
_current = next; |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
292 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
293 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
294 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
295 |
assert(_invocations > 1 || _current == NULL, "must have scanned the whole cache"); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
296 |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
297 |
if (_current == NULL && !_rescan && (_locked_seen || _not_entrant_seen_on_stack)) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
298 |
// we've completed a scan without making progress but there were |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
299 |
// nmethods we were unable to process either because they were |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
300 |
// locked or were still on stack. We don't have to aggresively |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
301 |
// clean them up so just stop scanning. We could scan once more |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
302 |
// but that complicates the control logic and it's unlikely to |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
303 |
// matter much. |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
304 |
if (PrintMethodFlushing) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
305 |
tty->print_cr("### Couldn't make progress on some nmethods so stopping sweep"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
306 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
307 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
308 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
309 |
#ifdef ASSERT |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
310 |
if(PrintMethodFlushing) { |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
311 |
jlong sweep_end = os::javaTimeMillis(); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
312 |
tty->print_cr("### sweeper: sweep time(%d): " INT64_FORMAT, _invocations, sweep_end - sweep_start); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
313 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
314 |
#endif |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
315 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
316 |
if (_invocations == 1) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
317 |
log_sweep("finished"); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
318 |
} |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
319 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
320 |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
321 |
class NMethodMarker: public StackObj { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
322 |
private: |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
323 |
CompilerThread* _thread; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
324 |
public: |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
325 |
NMethodMarker(nmethod* nm) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
326 |
_thread = CompilerThread::current(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
327 |
_thread->set_scanned_nmethod(nm); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
328 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
329 |
~NMethodMarker() { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
330 |
_thread->set_scanned_nmethod(NULL); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
331 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
332 |
}; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
333 |
|
1 | 334 |
|
335 |
void NMethodSweeper::process_nmethod(nmethod *nm) { |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
336 |
assert(!CodeCache_lock->owned_by_self(), "just checking"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
337 |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
338 |
// Make sure this nmethod doesn't get unloaded during the scan, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
339 |
// since the locks acquired below might safepoint. |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
340 |
NMethodMarker nmm(nm); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
341 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
342 |
SWEEP(nm); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
343 |
|
1 | 344 |
// Skip methods that are currently referenced by the VM |
345 |
if (nm->is_locked_by_vm()) { |
|
346 |
// But still remember to clean-up inline caches for alive nmethods |
|
347 |
if (nm->is_alive()) { |
|
348 |
// Clean-up all inline caches that points to zombie/non-reentrant methods |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
349 |
MutexLocker cl(CompiledIC_lock); |
1 | 350 |
nm->cleanup_inline_caches(); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
351 |
SWEEP(nm); |
1 | 352 |
} else { |
353 |
_locked_seen++; |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
354 |
SWEEP(nm); |
1 | 355 |
} |
356 |
return; |
|
357 |
} |
|
358 |
||
359 |
if (nm->is_zombie()) { |
|
360 |
// If it is first time, we see nmethod then we mark it. Otherwise, |
|
361 |
// we reclame it. When we have seen a zombie method twice, we know that |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
362 |
// there are no inline caches that refer to it. |
1 | 363 |
if (nm->is_marked_for_reclamation()) { |
364 |
assert(!nm->is_locked_by_vm(), "must not flush locked nmethods"); |
|
3696 | 365 |
if (PrintMethodFlushing && Verbose) { |
4750 | 366 |
tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (marked for reclamation) being flushed", nm->compile_id(), nm); |
3696 | 367 |
} |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
368 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
1 | 369 |
nm->flush(); |
370 |
} else { |
|
3696 | 371 |
if (PrintMethodFlushing && Verbose) { |
4750 | 372 |
tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (zombie) being marked for reclamation", nm->compile_id(), nm); |
3696 | 373 |
} |
1 | 374 |
nm->mark_for_reclamation(); |
375 |
_rescan = true; |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
376 |
SWEEP(nm); |
1 | 377 |
} |
378 |
} else if (nm->is_not_entrant()) { |
|
379 |
// If there is no current activations of this method on the |
|
380 |
// stack we can safely convert it to a zombie method |
|
381 |
if (nm->can_not_entrant_be_converted()) { |
|
3696 | 382 |
if (PrintMethodFlushing && Verbose) { |
4750 | 383 |
tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (not entrant) being made zombie", nm->compile_id(), nm); |
3696 | 384 |
} |
1 | 385 |
nm->make_zombie(); |
386 |
_rescan = true; |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
387 |
SWEEP(nm); |
1 | 388 |
} else { |
389 |
// Still alive, clean up its inline caches |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
390 |
MutexLocker cl(CompiledIC_lock); |
1 | 391 |
nm->cleanup_inline_caches(); |
392 |
// we coudn't transition this nmethod so don't immediately |
|
393 |
// request a rescan. If this method stays on the stack for a |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
394 |
// long time we don't want to keep rescanning the code cache. |
1 | 395 |
_not_entrant_seen_on_stack++; |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
396 |
SWEEP(nm); |
1 | 397 |
} |
398 |
} else if (nm->is_unloaded()) { |
|
399 |
// Unloaded code, just make it a zombie |
|
3696 | 400 |
if (PrintMethodFlushing && Verbose) |
4750 | 401 |
tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (unloaded) being made zombie", nm->compile_id(), nm); |
3696 | 402 |
if (nm->is_osr_method()) { |
1 | 403 |
// No inline caches will ever point to osr methods, so we can just remove it |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
404 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
405 |
SWEEP(nm); |
1 | 406 |
nm->flush(); |
407 |
} else { |
|
408 |
nm->make_zombie(); |
|
409 |
_rescan = true; |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
410 |
SWEEP(nm); |
1 | 411 |
} |
412 |
} else { |
|
413 |
assert(nm->is_alive(), "should be alive"); |
|
4750 | 414 |
|
415 |
if (UseCodeCacheFlushing) { |
|
416 |
if ((nm->method()->code() != nm) && !(nm->is_locked_by_vm()) && !(nm->is_osr_method()) && |
|
417 |
(_traversals > _was_full_traversal+2) && (((uint)nm->compile_id()) < _highest_marked) && |
|
418 |
CodeCache::needs_flushing()) { |
|
419 |
// This method has not been called since the forced cleanup happened |
|
420 |
nm->make_not_entrant(); |
|
421 |
} |
|
422 |
} |
|
423 |
||
1 | 424 |
// Clean-up all inline caches that points to zombie/non-reentrant methods |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
425 |
MutexLocker cl(CompiledIC_lock); |
1 | 426 |
nm->cleanup_inline_caches(); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
427 |
SWEEP(nm); |
1 | 428 |
} |
429 |
} |
|
4750 | 430 |
|
431 |
// Code cache unloading: when compilers notice the code cache is getting full, |
|
432 |
// they will call a vm op that comes here. This code attempts to speculatively |
|
433 |
// unload the oldest half of the nmethods (based on the compile job id) by |
|
434 |
// saving the old code in a list in the CodeCache. Then |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
435 |
// execution resumes. If a method so marked is not called by the second sweeper |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
436 |
// stack traversal after the current one, the nmethod will be marked non-entrant and |
4750 | 437 |
// got rid of by normal sweeping. If the method is called, the methodOop's |
438 |
// _code field is restored and the methodOop/nmethod |
|
439 |
// go back to their normal state. |
|
440 |
void NMethodSweeper::handle_full_code_cache(bool is_full) { |
|
441 |
// Only the first one to notice can advise us to start early cleaning |
|
442 |
if (!is_full){ |
|
443 |
jint old = Atomic::cmpxchg( 1, &_advise_to_sweep, 0 ); |
|
444 |
if (old != 0) { |
|
445 |
return; |
|
446 |
} |
|
447 |
} |
|
448 |
||
449 |
if (is_full) { |
|
450 |
// Since code cache is full, immediately stop new compiles |
|
451 |
bool did_set = CompileBroker::set_should_compile_new_jobs(CompileBroker::stop_compilation); |
|
452 |
if (!did_set) { |
|
453 |
// only the first to notice can start the cleaning, |
|
454 |
// others will go back and block |
|
455 |
return; |
|
456 |
} |
|
457 |
set_was_full(true); |
|
458 |
||
459 |
// If we run out within MinCodeCacheFlushingInterval of the last unload time, give up |
|
460 |
jlong now = os::javaTimeMillis(); |
|
461 |
jlong max_interval = (jlong)MinCodeCacheFlushingInterval * (jlong)1000; |
|
462 |
jlong curr_interval = now - _last_was_full; |
|
463 |
if (curr_interval < max_interval) { |
|
464 |
_rescan = true; |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
465 |
log_sweep("disable_compiler", "flushing_interval='" UINT64_FORMAT "'", |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
466 |
curr_interval/1000); |
4750 | 467 |
return; |
468 |
} |
|
469 |
} |
|
470 |
||
471 |
VM_HandleFullCodeCache op(is_full); |
|
472 |
VMThread::execute(&op); |
|
473 |
||
474 |
// rescan again as soon as possible |
|
475 |
_rescan = true; |
|
476 |
} |
|
477 |
||
478 |
void NMethodSweeper::speculative_disconnect_nmethods(bool is_full) { |
|
479 |
// If there was a race in detecting full code cache, only run |
|
480 |
// one vm op for it or keep the compiler shut off |
|
481 |
||
482 |
debug_only(jlong start = os::javaTimeMillis();) |
|
483 |
||
484 |
if ((!was_full()) && (is_full)) { |
|
485 |
if (!CodeCache::needs_flushing()) { |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
486 |
log_sweep("restart_compiler"); |
4750 | 487 |
CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation); |
488 |
return; |
|
489 |
} |
|
490 |
} |
|
491 |
||
492 |
// Traverse the code cache trying to dump the oldest nmethods |
|
493 |
uint curr_max_comp_id = CompileBroker::get_compilation_id(); |
|
494 |
uint flush_target = ((curr_max_comp_id - _highest_marked) >> 1) + _highest_marked; |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
495 |
log_sweep("start_cleaning"); |
4750 | 496 |
|
497 |
nmethod* nm = CodeCache::alive_nmethod(CodeCache::first()); |
|
498 |
jint disconnected = 0; |
|
499 |
jint made_not_entrant = 0; |
|
500 |
while ((nm != NULL)){ |
|
501 |
uint curr_comp_id = nm->compile_id(); |
|
502 |
||
503 |
// OSR methods cannot be flushed like this. Also, don't flush native methods |
|
504 |
// since they are part of the JDK in most cases |
|
505 |
if (nm->is_in_use() && (!nm->is_osr_method()) && (!nm->is_locked_by_vm()) && |
|
506 |
(!nm->is_native_method()) && ((curr_comp_id < flush_target))) { |
|
507 |
||
508 |
if ((nm->method()->code() == nm)) { |
|
509 |
// This method has not been previously considered for |
|
510 |
// unloading or it was restored already |
|
511 |
CodeCache::speculatively_disconnect(nm); |
|
512 |
disconnected++; |
|
513 |
} else if (nm->is_speculatively_disconnected()) { |
|
514 |
// This method was previously considered for preemptive unloading and was not called since then |
|
6453 | 515 |
CompilationPolicy::policy()->delay_compilation(nm->method()); |
4750 | 516 |
nm->make_not_entrant(); |
517 |
made_not_entrant++; |
|
518 |
} |
|
519 |
||
520 |
if (curr_comp_id > _highest_marked) { |
|
521 |
_highest_marked = curr_comp_id; |
|
522 |
} |
|
523 |
} |
|
524 |
nm = CodeCache::alive_nmethod(CodeCache::next(nm)); |
|
525 |
} |
|
526 |
||
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
527 |
log_sweep("stop_cleaning", |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
528 |
"disconnected='" UINT32_FORMAT "' made_not_entrant='" UINT32_FORMAT "'", |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
529 |
disconnected, made_not_entrant); |
4750 | 530 |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
531 |
// Shut off compiler. Sweeper will start over with a new stack scan and |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
532 |
// traversal cycle and turn it back on if it clears enough space. |
4750 | 533 |
if (was_full()) { |
534 |
_last_was_full = os::javaTimeMillis(); |
|
535 |
CompileBroker::set_should_compile_new_jobs(CompileBroker::stop_compilation); |
|
536 |
} |
|
537 |
||
538 |
// After two more traversals the sweeper will get rid of unrestored nmethods |
|
539 |
_was_full_traversal = _traversals; |
|
540 |
#ifdef ASSERT |
|
541 |
jlong end = os::javaTimeMillis(); |
|
542 |
if(PrintMethodFlushing && Verbose) { |
|
543 |
tty->print_cr("### sweeper: unload time: " INT64_FORMAT, end-start); |
|
544 |
} |
|
545 |
#endif |
|
546 |
} |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
547 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
548 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
549 |
// Print out some state information about the current sweep and the |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
550 |
// state of the code cache if it's requested. |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
551 |
void NMethodSweeper::log_sweep(const char* msg, const char* format, ...) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
552 |
if (PrintMethodFlushing) { |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
553 |
stringStream s; |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
554 |
// Dump code cache state into a buffer before locking the tty, |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
555 |
// because log_state() will use locks causing lock conflicts. |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
556 |
CodeCache::log_state(&s); |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
557 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
558 |
ttyLocker ttyl; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
559 |
tty->print("### sweeper: %s ", msg); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
560 |
if (format != NULL) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
561 |
va_list ap; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
562 |
va_start(ap, format); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
563 |
tty->vprint(format, ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
564 |
va_end(ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
565 |
} |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
566 |
tty->print_cr(s.as_string()); |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
567 |
} |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
568 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
569 |
if (LogCompilation && (xtty != NULL)) { |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
570 |
stringStream s; |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
571 |
// Dump code cache state into a buffer before locking the tty, |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
572 |
// because log_state() will use locks causing lock conflicts. |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
573 |
CodeCache::log_state(&s); |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
574 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
575 |
ttyLocker ttyl; |
5926 | 576 |
xtty->begin_elem("sweeper state='%s' traversals='" INTX_FORMAT "' ", msg, (intx)traversal_count()); |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
577 |
if (format != NULL) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
578 |
va_list ap; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
579 |
va_start(ap, format); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
580 |
xtty->vprint(format, ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
581 |
va_end(ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
582 |
} |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
583 |
xtty->print(s.as_string()); |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
584 |
xtty->stamp(); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
585 |
xtty->end_elem(); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
586 |
} |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
587 |
} |