author | eosterlund |
Tue, 27 Aug 2019 16:35:50 +0200 | |
changeset 57891 | 460f412c1358 |
parent 54645 | 05aaccf7d558 |
child 58545 | 725244418646 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
54385
9559ba212c18
8221102: Allow GC threads to participate in threads claiming protocol
kbarrett
parents:
53651
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, 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" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
27 |
#include "code/compiledIC.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
28 |
#include "code/icBuffer.hpp" |
7397 | 29 |
#include "code/nmethod.hpp" |
30 |
#include "compiler/compileBroker.hpp" |
|
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
31 |
#include "gc/shared/collectedHeap.hpp" |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
32 |
#include "gc/shared/workgroup.hpp" |
50113 | 33 |
#include "jfr/jfrEvents.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46269
diff
changeset
|
34 |
#include "logging/log.hpp" |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46269
diff
changeset
|
35 |
#include "logging/logStream.hpp" |
49360 | 36 |
#include "memory/allocation.inline.hpp" |
7397 | 37 |
#include "memory/resourceArea.hpp" |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
38 |
#include "memory/universe.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
39 |
#include "oops/method.hpp" |
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
38133
diff
changeset
|
40 |
#include "runtime/atomic.hpp" |
7397 | 41 |
#include "runtime/compilationPolicy.hpp" |
49449
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49360
diff
changeset
|
42 |
#include "runtime/interfaceSupport.inline.hpp" |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
43 |
#include "runtime/handshake.hpp" |
7397 | 44 |
#include "runtime/mutexLocker.hpp" |
50429
83aec1d357d4
8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents:
50113
diff
changeset
|
45 |
#include "runtime/orderAccess.hpp" |
7397 | 46 |
#include "runtime/os.hpp" |
47 |
#include "runtime/sweeper.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22872
diff
changeset
|
48 |
#include "runtime/thread.inline.hpp" |
52877
9e041366c764
8214850: Rename vm_operations.?pp files to vmOperations.?pp files
tschatzl
parents:
52857
diff
changeset
|
49 |
#include "runtime/vmOperations.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49449
diff
changeset
|
50 |
#include "runtime/vmThread.hpp" |
7397 | 51 |
#include "utilities/events.hpp" |
52 |
#include "utilities/xmlstream.hpp" |
|
1 | 53 |
|
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
54 |
#ifdef ASSERT |
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 |
#define SWEEP(nm) record_sweep(nm, __LINE__) |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
57 |
// Sweeper logging code |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
58 |
class SweeperRecord { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
59 |
public: |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
60 |
int traversal; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
61 |
int compile_id; |
47099
49f5fa3fc2ae
8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents:
46702
diff
changeset
|
62 |
long traversal_mark; |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
63 |
int state; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
64 |
const char* kind; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
65 |
address vep; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
66 |
address uep; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
67 |
int 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 |
void print() { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
70 |
tty->print_cr("traversal = %d compile_id = %d %s uep = " PTR_FORMAT " vep = " |
47099
49f5fa3fc2ae
8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents:
46702
diff
changeset
|
71 |
PTR_FORMAT " state = %d traversal_mark %ld line = %d", |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
72 |
traversal, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
73 |
compile_id, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
74 |
kind == NULL ? "" : kind, |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32466
diff
changeset
|
75 |
p2i(uep), |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32466
diff
changeset
|
76 |
p2i(vep), |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
77 |
state, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
78 |
traversal_mark, |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
79 |
line); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
80 |
} |
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 |
static int _sweep_index = 0; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
84 |
static SweeperRecord* _records = NULL; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
85 |
|
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
86 |
void NMethodSweeper::report_events(int id, address entry) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
87 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
88 |
for (int i = _sweep_index; i < SweeperLogEntries; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
89 |
if (_records[i].uep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
90 |
_records[i].vep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
91 |
_records[i].compile_id == id) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
92 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
93 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
94 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
95 |
for (int i = 0; i < _sweep_index; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
96 |
if (_records[i].uep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
97 |
_records[i].vep == entry || |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
98 |
_records[i].compile_id == id) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
99 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
100 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
101 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
102 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
103 |
} |
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 |
void NMethodSweeper::report_events() { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
106 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
107 |
for (int i = _sweep_index; i < SweeperLogEntries; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
108 |
// skip empty records |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
109 |
if (_records[i].vep == NULL) continue; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
110 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
111 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
112 |
for (int i = 0; i < _sweep_index; i++) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
113 |
// skip empty records |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
114 |
if (_records[i].vep == NULL) continue; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
115 |
_records[i].print(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
116 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
117 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
118 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
119 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
120 |
void NMethodSweeper::record_sweep(CompiledMethod* nm, int line) { |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
121 |
if (_records != NULL) { |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
122 |
_records[_sweep_index].traversal = _traversals; |
46702 | 123 |
_records[_sweep_index].traversal_mark = nm->is_nmethod() ? ((nmethod*)nm)->stack_traversal_mark() : 0; |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
124 |
_records[_sweep_index].compile_id = nm->compile_id(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
125 |
_records[_sweep_index].kind = nm->compile_kind(); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
126 |
_records[_sweep_index].state = nm->get_state(); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
127 |
_records[_sweep_index].vep = nm->verified_entry_point(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
128 |
_records[_sweep_index].uep = nm->entry_point(); |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
129 |
_records[_sweep_index].line = line; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
130 |
_sweep_index = (_sweep_index + 1) % SweeperLogEntries; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
131 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
132 |
} |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
133 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
134 |
void NMethodSweeper::init_sweeper_log() { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
135 |
if (LogSweeper && _records == NULL) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
136 |
// Create the ring buffer for the logging code |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
137 |
_records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries, mtGC); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
138 |
memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
139 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
140 |
} |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
141 |
#else |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
142 |
#define SWEEP(nm) |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
143 |
#endif |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
144 |
|
52661
4f45c682eab0
8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents:
52450
diff
changeset
|
145 |
CompiledMethodIterator NMethodSweeper::_current(CompiledMethodIterator::all_blobs); // Current compiled method |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
146 |
long NMethodSweeper::_traversals = 0; // Stack scan count, also sweep ID. |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
147 |
long NMethodSweeper::_total_nof_code_cache_sweeps = 0; // Total number of full sweeps of the code cache |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
148 |
long NMethodSweeper::_time_counter = 0; // Virtual time used to periodically invoke sweeper |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
149 |
long NMethodSweeper::_last_sweep = 0; // Value of _time_counter when the last sweep happened |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
150 |
int NMethodSweeper::_seen = 0; // Nof. nmethod we have currently processed in current pass of CodeCache |
1 | 151 |
|
53091
5bf5b773fc41
8215555: TieredCompilation C2 threads can excessively block handshakes
redestad
parents:
53085
diff
changeset
|
152 |
volatile bool NMethodSweeper::_should_sweep = false;// Indicates if we should invoke the sweeper |
30205 | 153 |
volatile bool NMethodSweeper::_force_sweep = false;// Indicates if we should force a sweep |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
154 |
volatile int NMethodSweeper::_bytes_changed = 0; // Counts the total nmethod size if the nmethod changed from: |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
155 |
// 1) alive -> not_entrant |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
156 |
// 2) not_entrant -> zombie |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
157 |
int NMethodSweeper::_hotness_counter_reset_val = 0; |
1 | 158 |
|
26796 | 159 |
long NMethodSweeper::_total_nof_methods_reclaimed = 0; // Accumulated nof methods flushed |
160 |
long NMethodSweeper::_total_nof_c2_methods_reclaimed = 0; // Accumulated nof methods flushed |
|
161 |
size_t NMethodSweeper::_total_flushed_size = 0; // Total number of bytes flushed from the code cache |
|
162 |
Tickspan NMethodSweeper::_total_time_sweeping; // Accumulated time sweeping |
|
163 |
Tickspan NMethodSweeper::_total_time_this_sweep; // Total time this sweep |
|
164 |
Tickspan NMethodSweeper::_peak_sweep_time; // Peak time for a full sweep |
|
165 |
Tickspan NMethodSweeper::_peak_sweep_fraction_time; // Peak time sweeping one fraction |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
166 |
|
3908 | 167 |
class MarkActivationClosure: public CodeBlobClosure { |
168 |
public: |
|
169 |
virtual void do_code_blob(CodeBlob* cb) { |
|
26796 | 170 |
assert(cb->is_nmethod(), "CodeBlob should be nmethod"); |
171 |
nmethod* nm = (nmethod*)cb; |
|
172 |
nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val()); |
|
173 |
// If we see an activation belonging to a non_entrant nmethod, we mark it. |
|
174 |
if (nm->is_not_entrant()) { |
|
175 |
nm->mark_as_seen_on_stack(); |
|
3908 | 176 |
} |
177 |
} |
|
178 |
}; |
|
179 |
static MarkActivationClosure mark_activation_closure; |
|
180 |
||
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
181 |
class SetHotnessClosure: public CodeBlobClosure { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
182 |
public: |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
183 |
virtual void do_code_blob(CodeBlob* cb) { |
26796 | 184 |
assert(cb->is_nmethod(), "CodeBlob should be nmethod"); |
185 |
nmethod* nm = (nmethod*)cb; |
|
186 |
nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val()); |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
187 |
} |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
188 |
}; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
189 |
static SetHotnessClosure set_hotness_closure; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
190 |
|
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
191 |
|
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
192 |
int NMethodSweeper::hotness_counter_reset_val() { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
193 |
if (_hotness_counter_reset_val == 0) { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
194 |
_hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
195 |
} |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
196 |
return _hotness_counter_reset_val; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
197 |
} |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
198 |
bool NMethodSweeper::wait_for_stack_scanning() { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
199 |
return _current.end(); |
17132
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
200 |
} |
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
201 |
|
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
202 |
class NMethodMarkingThreadClosure : public ThreadClosure { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
203 |
private: |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
204 |
CodeBlobClosure* _cl; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
205 |
public: |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
206 |
NMethodMarkingThreadClosure(CodeBlobClosure* cl) : _cl(cl) {} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
207 |
void do_thread(Thread* thread) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
208 |
if (thread->is_Java_thread() && ! thread->is_Code_cache_sweeper_thread()) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
209 |
JavaThread* jt = (JavaThread*) thread; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
210 |
jt->nmethods_do(_cl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
211 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
212 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
213 |
}; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
214 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
215 |
class NMethodMarkingTask : public AbstractGangTask { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
216 |
private: |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
217 |
NMethodMarkingThreadClosure* _cl; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
218 |
public: |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
219 |
NMethodMarkingTask(NMethodMarkingThreadClosure* cl) : |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
220 |
AbstractGangTask("Parallel NMethod Marking"), |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
221 |
_cl(cl) { |
54385
9559ba212c18
8221102: Allow GC threads to participate in threads claiming protocol
kbarrett
parents:
53651
diff
changeset
|
222 |
Threads::change_thread_claim_token(); |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
223 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
224 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
225 |
~NMethodMarkingTask() { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
226 |
Threads::assert_all_threads_claimed(); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
227 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
228 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
229 |
void work(uint worker_id) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
230 |
Threads::possibly_parallel_threads_do(true, _cl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
231 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
232 |
}; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
233 |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
234 |
/** |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
235 |
* Scans the stacks of all Java threads and marks activations of not-entrant methods. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
236 |
* No need to synchronize access, since 'mark_active_nmethods' is always executed at a |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
237 |
* safepoint. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
238 |
*/ |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
239 |
void NMethodSweeper::mark_active_nmethods() { |
46702 | 240 |
CodeBlobClosure* cl = prepare_mark_active_nmethods(); |
241 |
if (cl != NULL) { |
|
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
242 |
WorkGang* workers = Universe::heap()->get_safepoint_workers(); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
243 |
if (workers != NULL) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
244 |
NMethodMarkingThreadClosure tcl(cl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
245 |
NMethodMarkingTask task(&tcl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
246 |
workers->run_task(&task); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
247 |
} else { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
248 |
Threads::nmethods_do(cl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
249 |
} |
46702 | 250 |
} |
251 |
} |
|
252 |
||
253 |
CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() { |
|
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
254 |
#ifdef ASSERT |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
255 |
if (ThreadLocalHandshakes) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
256 |
assert(Thread::current()->is_Code_cache_sweeper_thread(), "must be executed under CodeCache_lock and in sweeper thread"); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
257 |
assert_lock_strong(CodeCache_lock); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
258 |
} else { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
259 |
assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint"); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
260 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
261 |
#endif |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
262 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
263 |
// If we do not want to reclaim not-entrant or zombie methods there is no need |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
264 |
// to scan stacks |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
265 |
if (!MethodFlushing) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
266 |
return NULL; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
267 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
268 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
269 |
// Increase time so that we can estimate when to invoke the sweeper again. |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
270 |
_time_counter++; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
271 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
272 |
// Check for restart |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
273 |
assert(_current.method() == NULL, "should only happen between sweeper cycles"); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
274 |
assert(wait_for_stack_scanning(), "should only happen between sweeper cycles"); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
275 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
276 |
_seen = 0; |
52661
4f45c682eab0
8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents:
52450
diff
changeset
|
277 |
_current = CompiledMethodIterator(CompiledMethodIterator::all_blobs); |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
278 |
// Initialize to first nmethod |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
279 |
_current.next(); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
280 |
_traversals += 1; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
281 |
_total_time_this_sweep = Tickspan(); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
282 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
283 |
if (PrintMethodFlushing) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
284 |
tty->print_cr("### Sweep: stack traversal %ld", _traversals); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
285 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
286 |
return &mark_activation_closure; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
287 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
288 |
|
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
289 |
CodeBlobClosure* NMethodSweeper::prepare_reset_hotness_counters() { |
1 | 290 |
assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint"); |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
291 |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
292 |
// If we do not want to reclaim not-entrant or zombie methods there is no need |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
293 |
// to scan stacks |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
294 |
if (!MethodFlushing) { |
46702 | 295 |
return NULL; |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
296 |
} |
1 | 297 |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
298 |
// Increase time so that we can estimate when to invoke the sweeper again. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
299 |
_time_counter++; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
300 |
|
1 | 301 |
// Check for restart |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
302 |
if (_current.method() != NULL) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
303 |
if (_current.method()->is_nmethod()) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
304 |
assert(CodeCache::find_blob_unsafe(_current.method()) == _current.method(), "Sweeper nmethod cached state invalid"); |
42650 | 305 |
} else if (_current.method()->is_aot()) { |
306 |
assert(CodeCache::find_blob_unsafe(_current.method()->code_begin()) == _current.method(), "Sweeper AOT method cached state invalid"); |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
307 |
} else { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
308 |
ShouldNotReachHere(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
309 |
} |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
310 |
} |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
311 |
|
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
312 |
return &set_hotness_closure; |
1 | 313 |
} |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
314 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
315 |
/** |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
316 |
* This function triggers a VM operation that does stack scanning of active |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
317 |
* methods. Stack scanning is mandatory for the sweeper to make progress. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
318 |
*/ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
319 |
void NMethodSweeper::do_stack_scanning() { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
320 |
assert(!CodeCache_lock->owned_by_self(), "just checking"); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
321 |
if (wait_for_stack_scanning()) { |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
322 |
if (ThreadLocalHandshakes) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
323 |
CodeBlobClosure* code_cl; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
324 |
{ |
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
325 |
MutexLocker ccl(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
51865
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
326 |
code_cl = prepare_mark_active_nmethods(); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
327 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
328 |
if (code_cl != NULL) { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
329 |
NMethodMarkingThreadClosure tcl(code_cl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
330 |
Handshake::execute(&tcl); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
331 |
} |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
332 |
} else { |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
333 |
VM_MarkActiveNMethods op; |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
334 |
VMThread::execute(&op); |
eb954a4b6083
8132849: Increased stop time in cleanup phase because of single-threaded walk of thread stacks in NMethodSweeper::mark_active_nmethods()
rkennke
parents:
50429
diff
changeset
|
335 |
} |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
336 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
337 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
338 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
339 |
void NMethodSweeper::sweeper_loop() { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
340 |
bool timeout; |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
341 |
while (true) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
342 |
{ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
343 |
ThreadBlockInVM tbivm(JavaThread::current()); |
54645
05aaccf7d558
8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents:
54623
diff
changeset
|
344 |
MonitorLocker waiter(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
345 |
const long wait_time = 60*60*24 * 1000; |
54645
05aaccf7d558
8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents:
54623
diff
changeset
|
346 |
timeout = waiter.wait(wait_time); |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
347 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
348 |
if (!timeout) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
349 |
possibly_sweep(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
350 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
351 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
352 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
353 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
354 |
/** |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
355 |
* Wakes up the sweeper thread to possibly sweep. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
356 |
*/ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
357 |
void NMethodSweeper::notify(int code_blob_type) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
358 |
// Makes sure that we do not invoke the sweeper too often during startup. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
359 |
double start_threshold = 100.0 / (double)StartAggressiveSweepingAt; |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
360 |
double aggressive_sweep_threshold = MIN2(start_threshold, 1.1); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
361 |
if (CodeCache::reverse_free_ratio(code_blob_type) >= aggressive_sweep_threshold) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
362 |
assert_locked_or_safepoint(CodeCache_lock); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
363 |
CodeCache_lock->notify(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
364 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
365 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
366 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
367 |
/** |
30205 | 368 |
* Wakes up the sweeper thread and forces a sweep. Blocks until it finished. |
369 |
*/ |
|
370 |
void NMethodSweeper::force_sweep() { |
|
371 |
ThreadBlockInVM tbivm(JavaThread::current()); |
|
54645
05aaccf7d558
8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents:
54623
diff
changeset
|
372 |
MonitorLocker waiter(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
30205 | 373 |
// Request forced sweep |
374 |
_force_sweep = true; |
|
375 |
while (_force_sweep) { |
|
376 |
// Notify sweeper that we want to force a sweep and wait for completion. |
|
377 |
// In case a sweep currently takes place we timeout and try again because |
|
378 |
// we want to enforce a full sweep. |
|
379 |
CodeCache_lock->notify(); |
|
54645
05aaccf7d558
8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents:
54623
diff
changeset
|
380 |
waiter.wait(1000); |
30205 | 381 |
} |
382 |
} |
|
383 |
||
384 |
/** |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
385 |
* Handle a safepoint request |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
386 |
*/ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
387 |
void NMethodSweeper::handle_safepoint_request() { |
52374
5ea020bcaa0d
8209495: NMethodSweeper::sweep_code_cache cause severe delays
rehn
parents:
51974
diff
changeset
|
388 |
JavaThread* thread = JavaThread::current(); |
52450 | 389 |
if (SafepointMechanism::should_block(thread)) { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
390 |
if (PrintMethodFlushing && Verbose) { |
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
33148
diff
changeset
|
391 |
tty->print_cr("### Sweep at %d out of %d, yielding to safepoint", _seen, CodeCache::nmethod_count()); |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
392 |
} |
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
393 |
MutexUnlocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
394 |
|
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
395 |
ThreadBlockInVM tbivm(thread); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
396 |
thread->java_suspend_self(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
397 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
398 |
} |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
399 |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
400 |
/** |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
401 |
* This function invokes the sweeper if at least one of the three conditions is met: |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
402 |
* (1) The code cache is getting full |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
403 |
* (2) There are sufficient state changes in/since the last sweep. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
404 |
* (3) We have not been sweeping for 'some time' |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
405 |
*/ |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
406 |
void NMethodSweeper::possibly_sweep() { |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
407 |
assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode"); |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
408 |
// If there was no state change while nmethod sweeping, 'should_sweep' will be false. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
409 |
// This is one of the two places where should_sweep can be set to true. The general |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
410 |
// idea is as follows: If there is enough free space in the code cache, there is no |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
411 |
// need to invoke the sweeper. The following formula (which determines whether to invoke |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
412 |
// the sweeper or not) depends on the assumption that for larger ReservedCodeCacheSizes |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
413 |
// we need less frequent sweeps than for smaller ReservedCodecCacheSizes. Furthermore, |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
414 |
// the formula considers how much space in the code cache is currently used. Here are |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
415 |
// some examples that will (hopefully) help in understanding. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
416 |
// |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
417 |
// Small ReservedCodeCacheSizes: (e.g., < 16M) We invoke the sweeper every time, since |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
418 |
// the result of the division is 0. This |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
419 |
// keeps the used code cache size small |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
420 |
// (important for embedded Java) |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
421 |
// Large ReservedCodeCacheSize : (e.g., 256M + code cache is 10% full). The formula |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
422 |
// computes: (256 / 16) - 1 = 15 |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
423 |
// As a result, we invoke the sweeper after |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
424 |
// 15 invocations of 'mark_active_nmethods. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
425 |
// Large ReservedCodeCacheSize: (e.g., 256M + code Cache is 90% full). The formula |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
426 |
// computes: (256 / 16) - 10 = 6. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
427 |
if (!_should_sweep) { |
22208
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
428 |
const int time_since_last_sweep = _time_counter - _last_sweep; |
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
429 |
// ReservedCodeCacheSize has an 'unsigned' type. We need a 'signed' type for max_wait_time, |
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
430 |
// since 'time_since_last_sweep' can be larger than 'max_wait_time'. If that happens using |
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
431 |
// an unsigned type would cause an underflow (wait_until_next_sweep becomes a large positive |
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
432 |
// value) that disables the intended periodic sweeps. |
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
433 |
const int max_wait_time = ReservedCodeCacheSize / (16 * M); |
26796 | 434 |
double wait_until_next_sweep = max_wait_time - time_since_last_sweep - |
435 |
MAX2(CodeCache::reverse_free_ratio(CodeBlobType::MethodProfiled), |
|
436 |
CodeCache::reverse_free_ratio(CodeBlobType::MethodNonProfiled)); |
|
22208
fb1e20bd389f
8029091: Bug in calculation of code cache sweeping interval
anoll
parents:
21767
diff
changeset
|
437 |
assert(wait_until_next_sweep <= (double)max_wait_time, "Calculation of code cache sweeper interval is incorrect"); |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
438 |
|
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
439 |
if ((wait_until_next_sweep <= 0.0) || !CompileBroker::should_compile_new_jobs()) { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
440 |
_should_sweep = true; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
441 |
} |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
442 |
} |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
443 |
|
30205 | 444 |
// Remember if this was a forced sweep |
445 |
bool forced = _force_sweep; |
|
446 |
||
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
447 |
// Force stack scanning if there is only 10% free space in the code cache. |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
448 |
// We force stack scanning only if the non-profiled code heap gets full, since critical |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
449 |
// allocations go to the non-profiled heap and we must be make sure that there is |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
450 |
// enough space. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
451 |
double free_percent = 1 / CodeCache::reverse_free_ratio(CodeBlobType::MethodNonProfiled) * 100; |
51974
c5b97602cd4b
8211129: compiler/whitebox/ForceNMethodSweepTest.java fails after JDK-8132849
rkennke
parents:
51865
diff
changeset
|
452 |
if (free_percent <= StartAggressiveSweepingAt || forced || _should_sweep) { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
453 |
do_stack_scanning(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
454 |
} |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
455 |
|
30205 | 456 |
if (_should_sweep || forced) { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
457 |
init_sweeper_log(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
458 |
sweep_code_cache(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
459 |
} |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
460 |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
461 |
// We are done with sweeping the code cache once. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
462 |
_total_nof_code_cache_sweeps++; |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
463 |
_last_sweep = _time_counter; |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
464 |
// Reset flag; temporarily disables sweeper |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
465 |
_should_sweep = false; |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
466 |
// If there was enough state change, 'possibly_enable_sweeper()' |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
467 |
// sets '_should_sweep' to true |
30205 | 468 |
possibly_enable_sweeper(); |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
469 |
// Reset _bytes_changed only if there was enough state change. _bytes_changed |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
470 |
// can further increase by calls to 'report_state_change'. |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
471 |
if (_should_sweep) { |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
472 |
_bytes_changed = 0; |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
473 |
} |
30205 | 474 |
|
475 |
if (forced) { |
|
476 |
// Notify requester that forced sweep finished |
|
477 |
assert(_force_sweep, "Should be a forced sweep"); |
|
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
478 |
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
30205 | 479 |
_force_sweep = false; |
480 |
CodeCache_lock->notify(); |
|
481 |
} |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
482 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
483 |
|
50113 | 484 |
static void post_sweep_event(EventSweepCodeCache* event, |
485 |
const Ticks& start, |
|
486 |
const Ticks& end, |
|
487 |
s4 traversals, |
|
488 |
int swept, |
|
489 |
int flushed, |
|
490 |
int zombified) { |
|
491 |
assert(event != NULL, "invariant"); |
|
492 |
assert(event->should_commit(), "invariant"); |
|
493 |
event->set_starttime(start); |
|
494 |
event->set_endtime(end); |
|
495 |
event->set_sweepId(traversals); |
|
496 |
event->set_sweptCount(swept); |
|
497 |
event->set_flushedCount(flushed); |
|
498 |
event->set_zombifiedCount(zombified); |
|
499 |
event->commit(); |
|
500 |
} |
|
501 |
||
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
502 |
void NMethodSweeper::sweep_code_cache() { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
503 |
ResourceMark rm; |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21727
diff
changeset
|
504 |
Ticks sweep_start_counter = Ticks::now(); |
18025 | 505 |
|
46269
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
506 |
log_debug(codecache, sweep, start)("CodeCache flushing"); |
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
507 |
|
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
508 |
int flushed_count = 0; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
509 |
int zombified_count = 0; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
510 |
int flushed_c2_count = 0; |
18025 | 511 |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
512 |
if (PrintMethodFlushing && Verbose) { |
34158
1f8d643b02d5
8067378: Add segmented code heaps info into jfr events: vm/code_cache/stats and vm/code_cache/config
thartmann
parents:
33148
diff
changeset
|
513 |
tty->print_cr("### Sweep at %d out of %d", _seen, CodeCache::nmethod_count()); |
17132
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
514 |
} |
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
515 |
|
20019
3e9220f93c61
8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents:
18025
diff
changeset
|
516 |
int swept_count = 0; |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
517 |
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
|
518 |
assert(!CodeCache_lock->owned_by_self(), "just checking"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
519 |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
520 |
int freed_memory = 0; |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
521 |
{ |
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
522 |
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
523 |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
524 |
while (!_current.end()) { |
20019
3e9220f93c61
8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents:
18025
diff
changeset
|
525 |
swept_count++; |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
526 |
// 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
|
527 |
// 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
|
528 |
// threads but nmethods are only reclaimed by the sweeper. |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
529 |
CompiledMethod* nm = _current.method(); |
26796 | 530 |
_current.next(); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
531 |
|
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
532 |
// Now ready to process nmethod and give up CodeCache_lock |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
533 |
{ |
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
534 |
MutexUnlocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
535 |
// Save information before potentially flushing the nmethod |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
536 |
// Only flushing nmethods so size only matters for them. |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
537 |
int size = nm->is_nmethod() ? ((nmethod*)nm)->total_size() : 0; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
538 |
bool is_c2_method = nm->is_compiled_by_c2(); |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
539 |
bool is_osr = nm->is_osr_method(); |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
540 |
int compile_id = nm->compile_id(); |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
541 |
intptr_t address = p2i(nm); |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
542 |
const char* state_before = nm->state(); |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
543 |
const char* state_after = ""; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
544 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
545 |
MethodStateChange type = process_compiled_method(nm); |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
546 |
switch (type) { |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
547 |
case Flushed: |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
548 |
state_after = "flushed"; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
549 |
freed_memory += size; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
550 |
++flushed_count; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
551 |
if (is_c2_method) { |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
552 |
++flushed_c2_count; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
553 |
} |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
554 |
break; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
555 |
case MadeZombie: |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
556 |
state_after = "made zombie"; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
557 |
++zombified_count; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
558 |
break; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
559 |
case None: |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
560 |
break; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
561 |
default: |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
562 |
ShouldNotReachHere(); |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
563 |
} |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
564 |
if (PrintMethodFlushing && Verbose && type != None) { |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
565 |
tty->print_cr("### %s nmethod %3d/" PTR_FORMAT " (%s) %s", is_osr ? "osr" : "", compile_id, address, state_before, state_after); |
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
566 |
} |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
567 |
} |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
568 |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
569 |
_seen++; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
570 |
handle_safepoint_request(); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
571 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
572 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
573 |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
574 |
assert(_current.end(), "must have scanned the whole cache"); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
575 |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21727
diff
changeset
|
576 |
const Ticks sweep_end_counter = Ticks::now(); |
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21727
diff
changeset
|
577 |
const Tickspan sweep_time = sweep_end_counter - sweep_start_counter; |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
578 |
{ |
54623
1126f0607c70
8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents:
54385
diff
changeset
|
579 |
MutexLocker mu(NMethodSweeperStats_lock, Mutex::_no_safepoint_check_flag); |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
580 |
_total_time_sweeping += sweep_time; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
581 |
_total_time_this_sweep += sweep_time; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
582 |
_peak_sweep_fraction_time = MAX2(sweep_time, _peak_sweep_fraction_time); |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
583 |
_total_flushed_size += freed_memory; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
584 |
_total_nof_methods_reclaimed += flushed_count; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
585 |
_total_nof_c2_methods_reclaimed += flushed_c2_count; |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
586 |
_peak_sweep_time = MAX2(_peak_sweep_time, _total_time_this_sweep); |
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
587 |
} |
50113 | 588 |
|
18025 | 589 |
EventSweepCodeCache event(UNTIMED); |
590 |
if (event.should_commit()) { |
|
50113 | 591 |
post_sweep_event(&event, sweep_start_counter, sweep_end_counter, (s4)_traversals, swept_count, flushed_count, zombified_count); |
18025 | 592 |
} |
593 |
||
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
594 |
#ifdef ASSERT |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
595 |
if(PrintMethodFlushing) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32466
diff
changeset
|
596 |
tty->print_cr("### sweeper: sweep time(" JLONG_FORMAT "): ", sweep_time.value()); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
597 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
598 |
#endif |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
599 |
|
46269
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
600 |
Log(codecache, sweep) log; |
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
601 |
if (log.is_debug()) { |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46269
diff
changeset
|
602 |
LogStream ls(log.debug()); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46269
diff
changeset
|
603 |
CodeCache::print_summary(&ls, false); |
46269
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
604 |
} |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
605 |
log_sweep("finished"); |
17132
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
606 |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
607 |
// Sweeper is the only case where memory is released, check here if it |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
608 |
// is time to restart the compiler. Only checking if there is a certain |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
609 |
// amount of free memory in the code cache might lead to re-enabling |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
610 |
// compilation although no memory has been released. For example, there are |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
611 |
// cases when compilation was disabled although there is 4MB (or more) free |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
612 |
// memory in the code cache. The reason is code cache fragmentation. Therefore, |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
613 |
// it only makes sense to re-enable compilation if we have actually freed memory. |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
614 |
// Note that typically several kB are released for sweeping 16MB of the code |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
615 |
// cache. As a result, 'freed_memory' > 0 to restart the compiler. |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
616 |
if (!CompileBroker::should_compile_new_jobs() && (freed_memory > 0)) { |
17132
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
617 |
CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation); |
46269
7e725659ea12
8172286: CodeCacheFlushing message should be shown in UL
ysuenaga
parents:
42650
diff
changeset
|
618 |
log.debug("restart compiler"); |
17132
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
619 |
log_sweep("restart_compiler"); |
dffd513b2a8c
8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents:
13728
diff
changeset
|
620 |
} |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
621 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
622 |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
623 |
/** |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
624 |
* This function updates the sweeper statistics that keep track of nmethods |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
625 |
* state changes. If there is 'enough' state change, the sweeper is invoked |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
626 |
* as soon as possible. There can be data races on _bytes_changed. The data |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
627 |
* races are benign, since it does not matter if we loose a couple of bytes. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
628 |
* In the worst case we call the sweeper a little later. Also, we are guaranteed |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
629 |
* to invoke the sweeper if the code cache gets full. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
630 |
*/ |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
631 |
void NMethodSweeper::report_state_change(nmethod* nm) { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
632 |
_bytes_changed += nm->total_size(); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
633 |
possibly_enable_sweeper(); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
634 |
} |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
635 |
|
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
636 |
/** |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
637 |
* Function determines if there was 'enough' state change in the code cache to invoke |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
638 |
* the sweeper again. Currently, we determine 'enough' as more than 1% state change in |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
639 |
* the code cache since the last sweep. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
640 |
*/ |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
641 |
void NMethodSweeper::possibly_enable_sweeper() { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
642 |
double percent_changed = ((double)_bytes_changed / (double)ReservedCodeCacheSize) * 100; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
643 |
if (percent_changed > 1.0) { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
644 |
_should_sweep = true; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
645 |
} |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
646 |
} |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20290
diff
changeset
|
647 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
648 |
class CompiledMethodMarker: public StackObj { |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
649 |
private: |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
650 |
CodeCacheSweeperThread* _thread; |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
651 |
public: |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
652 |
CompiledMethodMarker(CompiledMethod* cm) { |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
653 |
JavaThread* current = JavaThread::current(); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27017
diff
changeset
|
654 |
assert (current->is_Code_cache_sweeper_thread(), "Must be"); |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
655 |
_thread = (CodeCacheSweeperThread*)current; |
52661
4f45c682eab0
8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents:
52450
diff
changeset
|
656 |
if (!cm->is_zombie() && !cm->is_unloading()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
657 |
// Only expose live nmethods for scanning |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
658 |
_thread->set_scanned_compiled_method(cm); |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
659 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
660 |
} |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
661 |
~CompiledMethodMarker() { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
662 |
_thread->set_scanned_compiled_method(NULL); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
663 |
} |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
664 |
}; |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
665 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
666 |
NMethodSweeper::MethodStateChange NMethodSweeper::process_compiled_method(CompiledMethod* cm) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
667 |
assert(cm != NULL, "sanity"); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
668 |
assert(!CodeCache_lock->owned_by_self(), "just checking"); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
4750
diff
changeset
|
669 |
|
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
670 |
MethodStateChange result = None; |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
671 |
// Make sure this nmethod doesn't get unloaded during the scan, |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
672 |
// since safepoints may happen during acquired below locks. |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
673 |
CompiledMethodMarker nmm(cm); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
674 |
SWEEP(cm); |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9138
diff
changeset
|
675 |
|
1 | 676 |
// Skip methods that are currently referenced by the VM |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
677 |
if (cm->is_locked_by_vm()) { |
1 | 678 |
// But still remember to clean-up inline caches for alive nmethods |
53651
0331b08811ad
8216541: CompiledICHolders of VM locked unloaded nmethods are released too late
eosterlund
parents:
53091
diff
changeset
|
679 |
if (cm->is_alive()) { |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
680 |
// Clean inline caches that point to zombie/non-entrant/unloaded nmethods |
52385
5c679ec60888
8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents:
52384
diff
changeset
|
681 |
cm->cleanup_inline_caches(false); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
682 |
SWEEP(cm); |
1 | 683 |
} |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
684 |
return result; |
1 | 685 |
} |
686 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
687 |
if (cm->is_zombie()) { |
36818
b40330c06dea
8136458: Remove "marked for reclamation" nmethod state
thartmann
parents:
36802
diff
changeset
|
688 |
// All inline caches that referred to this nmethod were cleaned in the |
b40330c06dea
8136458: Remove "marked for reclamation" nmethod state
thartmann
parents:
36802
diff
changeset
|
689 |
// previous sweeper cycle. Now flush the nmethod from the code cache. |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
690 |
assert(!cm->is_locked_by_vm(), "must not flush locked Compiled Methods"); |
53651
0331b08811ad
8216541: CompiledICHolders of VM locked unloaded nmethods are released too late
eosterlund
parents:
53091
diff
changeset
|
691 |
cm->flush(); |
36818
b40330c06dea
8136458: Remove "marked for reclamation" nmethod state
thartmann
parents:
36802
diff
changeset
|
692 |
assert(result == None, "sanity"); |
b40330c06dea
8136458: Remove "marked for reclamation" nmethod state
thartmann
parents:
36802
diff
changeset
|
693 |
result = Flushed; |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
694 |
} else if (cm->is_not_entrant()) { |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20019
diff
changeset
|
695 |
// If there are no current activations of this method on the |
1 | 696 |
// stack we can safely convert it to a zombie method |
47099
49f5fa3fc2ae
8186837: Memory ordering nmethod, _state and _stack_traversal_mark
rehn
parents:
46702
diff
changeset
|
697 |
OrderAccess::loadload(); // _stack_traversal_mark and _state |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
698 |
if (cm->can_convert_to_zombie()) { |
32401
cc58aeaec340
8075805: Crash while trying to release CompiledICHolder
thartmann
parents:
31348
diff
changeset
|
699 |
// Code cache state change is tracked in make_zombie() |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
700 |
cm->make_zombie(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
701 |
SWEEP(cm); |
57891
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
702 |
assert(result == None, "sanity"); |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
703 |
result = MadeZombie; |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
704 |
assert(cm->is_zombie(), "nmethod must be zombie"); |
1 | 705 |
} else { |
706 |
// Still alive, clean up its inline caches |
|
52385
5c679ec60888
8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents:
52384
diff
changeset
|
707 |
cm->cleanup_inline_caches(false); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
708 |
SWEEP(cm); |
1 | 709 |
} |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
710 |
} else if (cm->is_unloaded()) { |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
711 |
// Code is unloaded, so there are no activations on the stack. |
57891
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
712 |
// Convert the nmethod to zombie. |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
713 |
// Code cache state change is tracked in make_zombie() |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
714 |
cm->make_zombie(); |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
715 |
SWEEP(cm); |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
716 |
assert(result == None, "sanity"); |
460f412c1358
8219708: Stop flushing OSR nmethods earlier in the sweeper
eosterlund
parents:
54645
diff
changeset
|
717 |
result = MadeZombie; |
1 | 718 |
} else { |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
719 |
if (cm->is_nmethod()) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
720 |
possibly_flush((nmethod*)cm); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
721 |
} |
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
722 |
// Clean inline caches that point to zombie/non-entrant/unloaded nmethods |
52385
5c679ec60888
8209189: Make CompiledMethod::do_unloading more concurrent
eosterlund
parents:
52384
diff
changeset
|
723 |
cm->cleanup_inline_caches(false); |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
36844
diff
changeset
|
724 |
SWEEP(cm); |
1 | 725 |
} |
27917
c5937f7b4e8b
8064669: compiler/whitebox/AllocationCodeBlobTest.java crashes / asserts
iignatyev
parents:
27420
diff
changeset
|
726 |
return result; |
4750 | 727 |
} |
728 |
||
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
729 |
|
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
730 |
void NMethodSweeper::possibly_flush(nmethod* nm) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
731 |
if (UseCodeCacheFlushing) { |
52661
4f45c682eab0
8213755: Let nmethods be is_unloading() outside of safepoints
eosterlund
parents:
52450
diff
changeset
|
732 |
if (!nm->is_locked_by_vm() && !nm->is_native_method() && !nm->is_not_installed() && !nm->is_unloading()) { |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
733 |
bool make_not_entrant = false; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
734 |
|
36802
18b1db5a7e70
8023191: OSR nmethods should be flushed to free space in CodeCache
thartmann
parents:
34158
diff
changeset
|
735 |
// Do not make native methods not-entrant |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
736 |
nm->dec_hotness_counter(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
737 |
// Get the initial value of the hotness counter. This value depends on the |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
738 |
// ReservedCodeCacheSize |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
739 |
int reset_val = hotness_counter_reset_val(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
740 |
int time_since_reset = reset_val - nm->hotness_counter(); |
31348
c28f02c7abb5
8077279: assert(ic->is_clean()) failed: IC should be clean
sjohanss
parents:
30205
diff
changeset
|
741 |
int code_blob_type = CodeCache::get_code_blob_type(nm); |
26796 | 742 |
double threshold = -reset_val + (CodeCache::reverse_free_ratio(code_blob_type) * NmethodSweepActivity); |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
743 |
// The less free space in the code cache we have - the bigger reverse_free_ratio() is. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
744 |
// I.e., 'threshold' increases with lower available space in the code cache and a higher |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
745 |
// NmethodSweepActivity. If the current hotness counter - which decreases from its initial |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
746 |
// value until it is reset by stack walking - is smaller than the computed threshold, the |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
747 |
// corresponding nmethod is considered for removal. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
748 |
if ((NmethodSweepActivity > 0) && (nm->hotness_counter() < threshold) && (time_since_reset > MinPassesBeforeFlush)) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
749 |
// A method is marked as not-entrant if the method is |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
750 |
// 1) 'old enough': nm->hotness_counter() < threshold |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
751 |
// 2) The method was in_use for a minimum amount of time: (time_since_reset > MinPassesBeforeFlush) |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
752 |
// The second condition is necessary if we are dealing with very small code cache |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
753 |
// sizes (e.g., <10m) and the code cache size is too small to hold all hot methods. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
754 |
// The second condition ensures that methods are not immediately made not-entrant |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
755 |
// after compilation. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
756 |
make_not_entrant = true; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
757 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
758 |
|
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
759 |
// The stack-scanning low-cost detection may not see the method was used (which can happen for |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
760 |
// flat profiles). Check the age counter for possible data. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
761 |
if (UseCodeAging && make_not_entrant && (nm->is_compiled_by_c2() || nm->is_compiled_by_c1())) { |
26799
0c349e16bbe8
8058564: Tiered compilation performance drop in PIT
iveresov
parents:
26796
diff
changeset
|
762 |
MethodCounters* mc = nm->method()->get_method_counters(Thread::current()); |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
763 |
if (mc != NULL) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
764 |
// Snapshot the value as it's changed concurrently |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
765 |
int age = mc->nmethod_age(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
766 |
if (MethodCounters::is_nmethod_hot(age)) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
767 |
// The method has gone through flushing, and it became relatively hot that it deopted |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
768 |
// before we could take a look at it. Give it more time to appear in the stack traces, |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
769 |
// proportional to the number of deopts. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
770 |
MethodData* md = nm->method()->method_data(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
771 |
if (md != NULL && time_since_reset > (int)(MinPassesBeforeFlush * (md->tenure_traps() + 1))) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
772 |
// It's been long enough, we still haven't seen it on stack. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
773 |
// Try to flush it, but enable counters the next time. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
774 |
mc->reset_nmethod_age(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
775 |
} else { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
776 |
make_not_entrant = false; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
777 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
778 |
} else if (MethodCounters::is_nmethod_warm(age)) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
779 |
// Method has counters enabled, and the method was used within |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
780 |
// previous MinPassesBeforeFlush sweeps. Reset the counter. Stay in the existing |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
781 |
// compiled state. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
782 |
mc->reset_nmethod_age(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
783 |
// delay the next check |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
784 |
nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val()); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
785 |
make_not_entrant = false; |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
786 |
} else if (MethodCounters::is_nmethod_age_unset(age)) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
787 |
// No counters were used before. Set the counters to the detection |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
788 |
// limit value. If the method is going to be used again it will be compiled |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
789 |
// with counters that we're going to use for analysis the the next time. |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
790 |
mc->reset_nmethod_age(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
791 |
} else { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
792 |
// Method was totally idle for 10 sweeps |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
793 |
// The counter already has the initial value, flush it and may be recompile |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
794 |
// later with counters |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
795 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
796 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
797 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
798 |
|
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
799 |
if (make_not_entrant) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
800 |
nm->make_not_entrant(); |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
801 |
|
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
802 |
// Code cache state change is tracked in make_not_entrant() |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
803 |
if (PrintMethodFlushing && Verbose) { |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
804 |
tty->print_cr("### Nmethod %d/" PTR_FORMAT "made not-entrant: hotness counter %d/%d threshold %f", |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
32466
diff
changeset
|
805 |
nm->compile_id(), p2i(nm), nm->hotness_counter(), reset_val, threshold); |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
806 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
807 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
808 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
809 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
810 |
} |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
811 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
812 |
// 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
|
813 |
// state of the code cache if it's requested. |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
814 |
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
|
815 |
if (PrintMethodFlushing) { |
29339
f0b1b7788a51
8073257: compiler/codecache/stress/RandomAllocationTest.java + fastdebug + -XX:+LogCompilation, "allocating without ResourceMark"
thartmann
parents:
28163
diff
changeset
|
816 |
ResourceMark rm; |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
817 |
stringStream s; |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
818 |
// 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
|
819 |
// 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
|
820 |
CodeCache::log_state(&s); |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
821 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
822 |
ttyLocker ttyl; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
823 |
tty->print("### sweeper: %s ", msg); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
824 |
if (format != NULL) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
825 |
va_list ap; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
826 |
va_start(ap, format); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
827 |
tty->vprint(format, ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
828 |
va_end(ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
829 |
} |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24351
diff
changeset
|
830 |
tty->print_cr("%s", s.as_string()); |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
831 |
} |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
832 |
|
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
833 |
if (LogCompilation && (xtty != NULL)) { |
29339
f0b1b7788a51
8073257: compiler/codecache/stress/RandomAllocationTest.java + fastdebug + -XX:+LogCompilation, "allocating without ResourceMark"
thartmann
parents:
28163
diff
changeset
|
834 |
ResourceMark rm; |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
835 |
stringStream s; |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
836 |
// 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
|
837 |
// 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
|
838 |
CodeCache::log_state(&s); |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
8921
diff
changeset
|
839 |
|
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
840 |
ttyLocker ttyl; |
5926 | 841 |
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
|
842 |
if (format != NULL) { |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
843 |
va_list ap; |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
844 |
va_start(ap, format); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
845 |
xtty->vprint(format, ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
846 |
va_end(ap); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
847 |
} |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24351
diff
changeset
|
848 |
xtty->print("%s", s.as_string()); |
5924
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
849 |
xtty->stamp(); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
850 |
xtty->end_elem(); |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
851 |
} |
dc9d04930c82
6965184: possible races in make_not_entrant_or_zombie
never
parents:
5895
diff
changeset
|
852 |
} |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
853 |
|
49611 | 854 |
void NMethodSweeper::print(outputStream* out) { |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
855 |
ttyLocker ttyl; |
49611 | 856 |
out = (out == NULL) ? tty : out; |
857 |
out->print_cr("Code cache sweeper statistics:"); |
|
858 |
out->print_cr(" Total sweep time: %1.0lf ms", (double)_total_time_sweeping.value()/1000000); |
|
859 |
out->print_cr(" Total number of full sweeps: %ld", _total_nof_code_cache_sweeps); |
|
860 |
out->print_cr(" Total number of flushed methods: %ld (thereof %ld C2 methods)", _total_nof_methods_reclaimed, |
|
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
861 |
_total_nof_c2_methods_reclaimed); |
49611 | 862 |
out->print_cr(" Total size of flushed methods: " SIZE_FORMAT " kB", _total_flushed_size/K); |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
22208
diff
changeset
|
863 |
} |