annotate src/share/vm/runtime/sweeper.cpp @ 13383:938e1e64e28f

8028306: nsk stress tests, CodeCache fills, then safepoint asserts Summary: Move handle_full_code_cache() out of block that forbids safepoints Reviewed-by: kvn, iveresov
author anoll
date Thu, 14 Nov 2013 19:27:07 +0100
parents 78da3894b86f
children 86e6d691f2e1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1538
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #include "code/codeCache.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
27 #include "code/compiledIC.hpp"
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
28 #include "code/icBuffer.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "code/nmethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "compiler/compileBroker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "memory/resourceArea.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
32 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33 #include "runtime/atomic.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
34 #include "runtime/compilationPolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
35 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
36 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
37 #include "runtime/sweeper.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
38 #include "runtime/vm_operations.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
39 #include "trace/tracing.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
40 #include "utilities/events.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
41 #include "utilities/xmlstream.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
43 #ifdef ASSERT
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
44
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
45 #define SWEEP(nm) record_sweep(nm, __LINE__)
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
46 // Sweeper logging code
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
47 class SweeperRecord {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
48 public:
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
49 int traversal;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
50 int invocation;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
51 int compile_id;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
52 long traversal_mark;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
53 int state;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
54 const char* kind;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
55 address vep;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
56 address uep;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
57 int line;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
58
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
59 void print() {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
60 tty->print_cr("traversal = %d invocation = %d compile_id = %d %s uep = " PTR_FORMAT " vep = "
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
61 PTR_FORMAT " state = %d traversal_mark %d line = %d",
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
62 traversal,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
63 invocation,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
64 compile_id,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
65 kind == NULL ? "" : kind,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
66 uep,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
67 vep,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
68 state,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
69 traversal_mark,
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
70 line);
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
71 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
72 };
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
73
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
74 static int _sweep_index = 0;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
75 static SweeperRecord* _records = NULL;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
76
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
77 void NMethodSweeper::report_events(int id, address entry) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
78 if (_records != NULL) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
79 for (int i = _sweep_index; i < SweeperLogEntries; i++) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
80 if (_records[i].uep == entry ||
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
81 _records[i].vep == entry ||
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
82 _records[i].compile_id == id) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
83 _records[i].print();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
84 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
85 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
86 for (int i = 0; i < _sweep_index; i++) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
87 if (_records[i].uep == entry ||
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
88 _records[i].vep == entry ||
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
89 _records[i].compile_id == id) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
90 _records[i].print();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
91 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
92 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
93 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
94 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
95
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
96 void NMethodSweeper::report_events() {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
97 if (_records != NULL) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
98 for (int i = _sweep_index; i < SweeperLogEntries; i++) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
99 // skip empty records
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
100 if (_records[i].vep == NULL) continue;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
101 _records[i].print();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
102 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
103 for (int i = 0; i < _sweep_index; i++) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
104 // skip empty records
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
105 if (_records[i].vep == NULL) continue;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
106 _records[i].print();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
107 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
108 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
109 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
110
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
111 void NMethodSweeper::record_sweep(nmethod* nm, int line) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
112 if (_records != NULL) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
113 _records[_sweep_index].traversal = _traversals;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
114 _records[_sweep_index].traversal_mark = nm->_stack_traversal_mark;
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
115 _records[_sweep_index].invocation = _sweep_fractions_left;
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
116 _records[_sweep_index].compile_id = nm->compile_id();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
117 _records[_sweep_index].kind = nm->compile_kind();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
118 _records[_sweep_index].state = nm->_state;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
119 _records[_sweep_index].vep = nm->verified_entry_point();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
120 _records[_sweep_index].uep = nm->entry_point();
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
121 _records[_sweep_index].line = line;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
122 _sweep_index = (_sweep_index + 1) % SweeperLogEntries;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
123 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
124 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
125 #else
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
126 #define SWEEP(nm)
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
127 #endif
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
128
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
129 nmethod* NMethodSweeper::_current = NULL; // Current nmethod
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
130 long NMethodSweeper::_traversals = 0; // Stack scan count, also sweep ID.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
131 long NMethodSweeper::_time_counter = 0; // Virtual time used to periodically invoke sweeper
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
132 long NMethodSweeper::_last_sweep = 0; // Value of _time_counter when the last sweep happened
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
133 int NMethodSweeper::_seen = 0; // Nof. nmethod we have currently processed in current pass of CodeCache
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
134 int NMethodSweeper::_flushed_count = 0; // Nof. nmethods flushed in current sweep
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
135 int NMethodSweeper::_zombified_count = 0; // Nof. nmethods made zombie in current sweep
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
136 int NMethodSweeper::_marked_for_reclamation_count = 0; // Nof. nmethods marked for reclaim in current sweep
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
138 volatile bool NMethodSweeper::_should_sweep = true; // Indicates if we should invoke the sweeper
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
139 volatile int NMethodSweeper::_sweep_fractions_left = 0; // Nof. invocations left until we are completed with this pass
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
140 volatile int NMethodSweeper::_sweep_started = 0; // Flag to control conc sweeper
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
141 volatile int NMethodSweeper::_bytes_changed = 0; // Counts the total nmethod size if the nmethod changed from:
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
142 // 1) alive -> not_entrant
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
143 // 2) not_entrant -> zombie
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
144 // 3) zombie -> marked_for_reclamation
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
146 int NMethodSweeper::_total_nof_methods_reclaimed = 0; // Accumulated nof methods flushed
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
147 jlong NMethodSweeper::_total_time_sweeping = 0; // Accumulated time sweeping
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
148 jlong NMethodSweeper::_total_time_this_sweep = 0; // Total time this sweep
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
149 jlong NMethodSweeper::_peak_sweep_time = 0; // Peak time for a full sweep
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
150 jlong NMethodSweeper::_peak_sweep_fraction_time = 0; // Peak time sweeping one fraction
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
151 int NMethodSweeper::_hotness_counter_reset_val = 0;
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
152
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
153
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
154 class MarkActivationClosure: public CodeBlobClosure {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
155 public:
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
156 virtual void do_code_blob(CodeBlob* cb) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
157 if (cb->is_nmethod()) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
158 nmethod* nm = (nmethod*)cb;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
159 nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
160 // If we see an activation belonging to a non_entrant nmethod, we mark it.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
161 if (nm->is_not_entrant()) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
162 nm->mark_as_seen_on_stack();
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
163 }
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
164 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
165 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
166 };
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
167 static MarkActivationClosure mark_activation_closure;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
168
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
169 class SetHotnessClosure: public CodeBlobClosure {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
170 public:
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
171 virtual void do_code_blob(CodeBlob* cb) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
172 if (cb->is_nmethod()) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
173 nmethod* nm = (nmethod*)cb;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
174 nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
175 }
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
176 }
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
177 };
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
178 static SetHotnessClosure set_hotness_closure;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
179
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
180
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
181 int NMethodSweeper::hotness_counter_reset_val() {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
182 if (_hotness_counter_reset_val == 0) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
183 _hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
184 }
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
185 return _hotness_counter_reset_val;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
186 }
10206
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
187 bool NMethodSweeper::sweep_in_progress() {
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
188 return (_current != NULL);
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
189 }
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
190
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
191 // Scans the stacks of all Java threads and marks activations of not-entrant methods.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
192 // No need to synchronize access, since 'mark_active_nmethods' is always executed at a
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
193 // safepoint.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
194 void NMethodSweeper::mark_active_nmethods() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195 assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint");
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
196 // If we do not want to reclaim not-entrant or zombie methods there is no need
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
197 // to scan stacks
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
198 if (!MethodFlushing) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
199 return;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
200 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
202 // Increase time so that we can estimate when to invoke the sweeper again.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
203 _time_counter++;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
204
0
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Check for restart
a61af66fc99e Initial load
duke
parents:
diff changeset
206 assert(CodeCache::find_blob_unsafe(_current) == _current, "Sweeper nmethod cached state invalid");
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
207 if (!sweep_in_progress()) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
208 _seen = 0;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
209 _sweep_fractions_left = NmethodSweepFraction;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
210 _current = CodeCache::first_nmethod();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
211 _traversals += 1;
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
212 _total_time_this_sweep = 0;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
213
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (PrintMethodFlushing) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 tty->print_cr("### Sweep: stack traversal %d", _traversals);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
217 Threads::nmethods_do(&mark_activation_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
219 } else {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
220 // Only set hotness counter
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
221 Threads::nmethods_do(&set_hotness_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
224 OrderAccess::storestore();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
226 /**
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
227 * This function invokes the sweeper if at least one of the three conditions is met:
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
228 * (1) The code cache is getting full
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
229 * (2) There are sufficient state changes in/since the last sweep.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
230 * (3) We have not been sweeping for 'some time'
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
231 */
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
232 void NMethodSweeper::possibly_sweep() {
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
233 assert(JavaThread::current()->thread_state() == _thread_in_vm, "must run in vm mode");
13383
938e1e64e28f 8028306: nsk stress tests, CodeCache fills, then safepoint asserts
anoll
parents: 13074
diff changeset
234 // Only compiler threads are allowed to sweep
938e1e64e28f 8028306: nsk stress tests, CodeCache fills, then safepoint asserts
anoll
parents: 13074
diff changeset
235 if (!MethodFlushing || !sweep_in_progress() || !Thread::current()->is_Compiler_thread()) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
236 return;
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
237 }
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
238
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
239 // If there was no state change while nmethod sweeping, 'should_sweep' will be false.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
240 // This is one of the two places where should_sweep can be set to true. The general
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
241 // idea is as follows: If there is enough free space in the code cache, there is no
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
242 // need to invoke the sweeper. The following formula (which determines whether to invoke
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
243 // the sweeper or not) depends on the assumption that for larger ReservedCodeCacheSizes
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
244 // we need less frequent sweeps than for smaller ReservedCodecCacheSizes. Furthermore,
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
245 // the formula considers how much space in the code cache is currently used. Here are
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
246 // some examples that will (hopefully) help in understanding.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
247 //
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
248 // Small ReservedCodeCacheSizes: (e.g., < 16M) We invoke the sweeper every time, since
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
249 // the result of the division is 0. This
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
250 // keeps the used code cache size small
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
251 // (important for embedded Java)
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
252 // Large ReservedCodeCacheSize : (e.g., 256M + code cache is 10% full). The formula
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
253 // computes: (256 / 16) - 1 = 15
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
254 // As a result, we invoke the sweeper after
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
255 // 15 invocations of 'mark_active_nmethods.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
256 // Large ReservedCodeCacheSize: (e.g., 256M + code Cache is 90% full). The formula
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
257 // computes: (256 / 16) - 10 = 6.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
258 if (!_should_sweep) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
259 int time_since_last_sweep = _time_counter - _last_sweep;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
260 double wait_until_next_sweep = (ReservedCodeCacheSize / (16 * M)) - time_since_last_sweep -
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
261 CodeCache::reverse_free_ratio();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
262
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
263 if ((wait_until_next_sweep <= 0.0) || !CompileBroker::should_compile_new_jobs()) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
264 _should_sweep = true;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
265 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
266 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
267
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
268 if (_should_sweep && _sweep_fractions_left > 0) {
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
269 // Only one thread at a time will sweep
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
270 jint old = Atomic::cmpxchg( 1, &_sweep_started, 0 );
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
271 if (old != 0) {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
272 return;
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
273 }
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
274 #ifdef ASSERT
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
275 if (LogSweeper && _records == NULL) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
276 // Create the ring buffer for the logging code
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4945
diff changeset
277 _records = NEW_C_HEAP_ARRAY(SweeperRecord, SweeperLogEntries, mtGC);
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
278 memset(_records, 0, sizeof(SweeperRecord) * SweeperLogEntries);
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
279 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
280 #endif
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
281
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
282 if (_sweep_fractions_left > 0) {
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
283 sweep_code_cache();
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
284 _sweep_fractions_left--;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
285 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
286
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
287 // We are done with sweeping the code cache once.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
288 if (_sweep_fractions_left == 0) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
289 _last_sweep = _time_counter;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
290 // Reset flag; temporarily disables sweeper
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
291 _should_sweep = false;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
292 // If there was enough state change, 'possibly_enable_sweeper()'
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
293 // sets '_should_sweep' to true
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
294 possibly_enable_sweeper();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
295 // Reset _bytes_changed only if there was enough state change. _bytes_changed
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
296 // can further increase by calls to 'report_state_change'.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
297 if (_should_sweep) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
298 _bytes_changed = 0;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
299 }
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
300 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
301 _sweep_started = 0;
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
302 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
303 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
304
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
305 void NMethodSweeper::sweep_code_cache() {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
306 jlong sweep_start_counter = os::elapsed_counter();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
307
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
308 _flushed_count = 0;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
309 _zombified_count = 0;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
310 _marked_for_reclamation_count = 0;
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
311
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
312 if (PrintMethodFlushing && Verbose) {
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
313 tty->print_cr("### Sweep at %d out of %d. Invocations left: %d", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
314 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
315
10206
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
316 if (!CompileBroker::should_compile_new_jobs()) {
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
317 // If we have turned off compilations we might as well do full sweeps
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
318 // in order to reach the clean state faster. Otherwise the sleeping compiler
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
319 // threads will slow down sweeping.
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
320 _sweep_fractions_left = 1;
10206
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
321 }
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
322
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
323 // We want to visit all nmethods after NmethodSweepFraction
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
324 // invocations so divide the remaining number of nmethods by the
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
325 // remaining number of invocations. This is only an estimate since
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
326 // the number of nmethods changes during the sweep so the final
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
327 // stage must iterate until it there are no more nmethods.
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
328 int todo = (CodeCache::nof_nmethods() - _seen) / _sweep_fractions_left;
12266
ab274453d37f 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 10405
diff changeset
329 int swept_count = 0;
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
330
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
331
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
332 assert(!SafepointSynchronize::is_at_safepoint(), "should not be in safepoint when we get here");
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
333 assert(!CodeCache_lock->owned_by_self(), "just checking");
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
334
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
335 int freed_memory = 0;
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
336 {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
337 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
338
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
339 // The last invocation iterates until there are no more nmethods
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
340 for (int i = 0; (i < todo || _sweep_fractions_left == 1) && _current != NULL; i++) {
12266
ab274453d37f 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 10405
diff changeset
341 swept_count++;
4945
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
342 if (SafepointSynchronize::is_synchronizing()) { // Safepoint request
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
343 if (PrintMethodFlushing && Verbose) {
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
344 tty->print_cr("### Sweep at %d out of %d, invocation: %d, yielding to safepoint", _seen, CodeCache::nof_nmethods(), _sweep_fractions_left);
4945
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
345 }
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
346 MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
347
4945
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
348 assert(Thread::current()->is_Java_thread(), "should be java thread");
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
349 JavaThread* thread = (JavaThread*)Thread::current();
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
350 ThreadBlockInVM tbivm(thread);
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
351 thread->java_suspend_self();
cfdfbeac0a5b 7145345: Code cache sweeper must cooperate with safepoints
iveresov
parents: 3384
diff changeset
352 }
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
353 // Since we will give up the CodeCache_lock, always skip ahead
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
354 // to the next nmethod. Other blobs can be deleted by other
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
355 // threads but nmethods are only reclaimed by the sweeper.
1615
ff38d05ea86f 6956958: assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted() || is_optimized() || is_megam
never
parents: 1552
diff changeset
356 nmethod* next = CodeCache::next_nmethod(_current);
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
357
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
358 // Now ready to process nmethod and give up CodeCache_lock
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
359 {
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
360 MutexUnlockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
361 freed_memory += process_nmethod(_current);
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
362 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
363 _seen++;
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
364 _current = next;
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
365 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
366 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
367
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
368 assert(_sweep_fractions_left > 1 || _current == NULL, "must have scanned the whole cache");
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
369
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
370 jlong sweep_end_counter = os::elapsed_counter();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
371 jlong sweep_time = sweep_end_counter - sweep_start_counter;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
372 _total_time_sweeping += sweep_time;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
373 _total_time_this_sweep += sweep_time;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
374 _peak_sweep_fraction_time = MAX2(sweep_time, _peak_sweep_fraction_time);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
375 _total_nof_methods_reclaimed += _flushed_count;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
376
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
377 EventSweepCodeCache event(UNTIMED);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
378 if (event.should_commit()) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
379 event.set_starttime(sweep_start_counter);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
380 event.set_endtime(sweep_end_counter);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
381 event.set_sweepIndex(_traversals);
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
382 event.set_sweepFractionIndex(NmethodSweepFraction - _sweep_fractions_left + 1);
12266
ab274453d37f 8022883: Assertion failed: sweptCount >= flushedCount + markedCount + zombifiedCount
anoll
parents: 10405
diff changeset
383 event.set_sweptCount(swept_count);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
384 event.set_flushedCount(_flushed_count);
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
385 event.set_markedCount(_marked_for_reclamation_count);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
386 event.set_zombifiedCount(_zombified_count);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
387 event.commit();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
388 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
389
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
390 #ifdef ASSERT
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
391 if(PrintMethodFlushing) {
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
392 tty->print_cr("### sweeper: sweep time(%d): " INT64_FORMAT, _sweep_fractions_left, (jlong)sweep_time);
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
393 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
394 #endif
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
395
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
396 if (_sweep_fractions_left == 1) {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
397 _peak_sweep_time = MAX2(_peak_sweep_time, _total_time_this_sweep);
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
398 log_sweep("finished");
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
399 }
10206
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
400
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
401 // Sweeper is the only case where memory is released, check here if it
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
402 // is time to restart the compiler. Only checking if there is a certain
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
403 // amount of free memory in the code cache might lead to re-enabling
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
404 // compilation although no memory has been released. For example, there are
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
405 // cases when compilation was disabled although there is 4MB (or more) free
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
406 // memory in the code cache. The reason is code cache fragmentation. Therefore,
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
407 // it only makes sense to re-enable compilation if we have actually freed memory.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
408 // Note that typically several kB are released for sweeping 16MB of the code
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
409 // cache. As a result, 'freed_memory' > 0 to restart the compiler.
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
410 if (!CompileBroker::should_compile_new_jobs() && (freed_memory > 0)) {
10206
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
411 CompileBroker::set_should_compile_new_jobs(CompileBroker::run_compilation);
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
412 log_sweep("restart_compiler");
0cfa93c2fcc4 8012547: Code cache flushing can get stuck reclaming of memory
neliasso
parents: 6725
diff changeset
413 }
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
414 }
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
415
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
416 /**
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
417 * This function updates the sweeper statistics that keep track of nmethods
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
418 * state changes. If there is 'enough' state change, the sweeper is invoked
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
419 * as soon as possible. There can be data races on _bytes_changed. The data
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
420 * races are benign, since it does not matter if we loose a couple of bytes.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
421 * In the worst case we call the sweeper a little later. Also, we are guaranteed
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
422 * to invoke the sweeper if the code cache gets full.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
423 */
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
424 void NMethodSweeper::report_state_change(nmethod* nm) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
425 _bytes_changed += nm->total_size();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
426 possibly_enable_sweeper();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
427 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
428
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
429 /**
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
430 * Function determines if there was 'enough' state change in the code cache to invoke
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
431 * the sweeper again. Currently, we determine 'enough' as more than 1% state change in
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
432 * the code cache since the last sweep.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
433 */
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
434 void NMethodSweeper::possibly_enable_sweeper() {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
435 double percent_changed = ((double)_bytes_changed / (double)ReservedCodeCacheSize) * 100;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
436 if (percent_changed > 1.0) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
437 _should_sweep = true;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
438 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
439 }
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
440
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
441 class NMethodMarker: public StackObj {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
442 private:
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
443 CompilerThread* _thread;
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
444 public:
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
445 NMethodMarker(nmethod* nm) {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
446 _thread = CompilerThread::current();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
447 if (!nm->is_zombie() && !nm->is_unloaded()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
448 // Only expose live nmethods for scanning
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
449 _thread->set_scanned_nmethod(nm);
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
450 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
451 }
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
452 ~NMethodMarker() {
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
453 _thread->set_scanned_nmethod(NULL);
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
454 }
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
455 };
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
456
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
457 void NMethodSweeper::release_nmethod(nmethod *nm) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
458 // Clean up any CompiledICHolders
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
459 {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
460 ResourceMark rm;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
461 MutexLocker ml_patch(CompiledIC_lock);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
462 RelocIterator iter(nm);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
463 while (iter.next()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
464 if (iter.type() == relocInfo::virtual_call_type) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
465 CompiledIC::cleanup_call_site(iter.virtual_call_reloc());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
466 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
467 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
468 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
469
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
470 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
471 nm->flush();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
472 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
473
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
474 int NMethodSweeper::process_nmethod(nmethod *nm) {
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
475 assert(!CodeCache_lock->owned_by_self(), "just checking");
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
476
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
477 int freed_memory = 0;
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
478 // Make sure this nmethod doesn't get unloaded during the scan,
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
479 // since safepoints may happen during acquired below locks.
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
480 NMethodMarker nmm(nm);
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
481 SWEEP(nm);
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
482
0
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // Skip methods that are currently referenced by the VM
a61af66fc99e Initial load
duke
parents:
diff changeset
484 if (nm->is_locked_by_vm()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // But still remember to clean-up inline caches for alive nmethods
a61af66fc99e Initial load
duke
parents:
diff changeset
486 if (nm->is_alive()) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
487 // Clean inline caches that point to zombie/non-entrant methods
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
488 MutexLocker cl(CompiledIC_lock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
489 nm->cleanup_inline_caches();
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
490 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
491 }
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
492 return freed_memory;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 if (nm->is_zombie()) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
496 // If it is the first time we see nmethod then we mark it. Otherwise,
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
497 // we reclaim it. When we have seen a zombie method twice, we know that
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
498 // there are no inline caches that refer to it.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
499 if (nm->is_marked_for_reclamation()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 assert(!nm->is_locked_by_vm(), "must not flush locked nmethods");
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
501 if (PrintMethodFlushing && Verbose) {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
502 tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (marked for reclamation) being flushed", nm->compile_id(), nm);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
503 }
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
504 freed_memory = nm->total_size();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
505 release_nmethod(nm);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
506 _flushed_count++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
507 } else {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
508 if (PrintMethodFlushing && Verbose) {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
509 tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (zombie) being marked for reclamation", nm->compile_id(), nm);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
510 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
511 nm->mark_for_reclamation();
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
512 // Keep track of code cache state change
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
513 _bytes_changed += nm->total_size();
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
514 _marked_for_reclamation_count++;
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
515 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517 } else if (nm->is_not_entrant()) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
518 // If there are no current activations of this method on the
0
a61af66fc99e Initial load
duke
parents:
diff changeset
519 // stack we can safely convert it to a zombie method
a61af66fc99e Initial load
duke
parents:
diff changeset
520 if (nm->can_not_entrant_be_converted()) {
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
521 if (PrintMethodFlushing && Verbose) {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
522 tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (not entrant) being made zombie", nm->compile_id(), nm);
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
523 }
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
524 // Code cache state change is tracked in make_zombie()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
525 nm->make_zombie();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
526 _zombified_count++;
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
527 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
528 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // Still alive, clean up its inline caches
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
530 MutexLocker cl(CompiledIC_lock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 nm->cleanup_inline_caches();
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
532 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534 } else if (nm->is_unloaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // Unloaded code, just make it a zombie
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
536 if (PrintMethodFlushing && Verbose) {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
537 tty->print_cr("### Nmethod %3d/" PTR_FORMAT " (unloaded) being made zombie", nm->compile_id(), nm);
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
538 }
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 0
diff changeset
539 if (nm->is_osr_method()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
540 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // No inline caches will ever point to osr methods, so we can just remove it
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
542 freed_memory = nm->total_size();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
543 release_nmethod(nm);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
544 _flushed_count++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
545 } else {
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
546 // Code cache state change is tracked in make_zombie()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
547 nm->make_zombie();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10206
diff changeset
548 _zombified_count++;
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
549 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 } else {
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
552 if (UseCodeCacheFlushing) {
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
553 if (!nm->is_locked_by_vm() && !nm->is_osr_method() && !nm->is_native_method()) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
554 // Do not make native methods and OSR-methods not-entrant
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
555 nm->dec_hotness_counter();
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
556 // Get the initial value of the hotness counter. This value depends on the
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
557 // ReservedCodeCacheSize
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
558 int reset_val = hotness_counter_reset_val();
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
559 int time_since_reset = reset_val - nm->hotness_counter();
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
560 double threshold = -reset_val + (CodeCache::reverse_free_ratio() * NmethodSweepActivity);
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
561 // The less free space in the code cache we have - the bigger reverse_free_ratio() is.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
562 // I.e., 'threshold' increases with lower available space in the code cache and a higher
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
563 // NmethodSweepActivity. If the current hotness counter - which decreases from its initial
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
564 // value until it is reset by stack walking - is smaller than the computed threshold, the
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
565 // corresponding nmethod is considered for removal.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
566 if ((NmethodSweepActivity > 0) && (nm->hotness_counter() < threshold) && (time_since_reset > 10)) {
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
567 // A method is marked as not-entrant if the method is
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
568 // 1) 'old enough': nm->hotness_counter() < threshold
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
569 // 2) The method was in_use for a minimum amount of time: (time_since_reset > 10)
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
570 // The second condition is necessary if we are dealing with very small code cache
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
571 // sizes (e.g., <10m) and the code cache size is too small to hold all hot methods.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
572 // The second condition ensures that methods are not immediately made not-entrant
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
573 // after compilation.
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
574 nm->make_not_entrant();
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
575 // Code cache state change is tracked in make_not_entrant()
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
576 if (PrintMethodFlushing && Verbose) {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
577 tty->print_cr("### Nmethod %d/" PTR_FORMAT "made not-entrant: hotness counter %d/%d threshold %f",
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
578 nm->compile_id(), nm, nm->hotness_counter(), reset_val, threshold);
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12324
diff changeset
579 }
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
580 }
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
581 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
582 }
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
583 // Clean-up all inline caches that point to zombie/non-reentrant methods
1538
bfe29ec02863 6950075: nmethod sweeper should operate concurrently
never
parents: 1202
diff changeset
584 MutexLocker cl(CompiledIC_lock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585 nm->cleanup_inline_caches();
3384
f52ed367b66d 6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents: 2482
diff changeset
586 SWEEP(nm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
12324
510fbd28919c 8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents: 12266
diff changeset
588 return freed_memory;
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
589 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1000
diff changeset
590
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
591 // Print out some state information about the current sweep and the
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
592 // state of the code cache if it's requested.
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
593 void NMethodSweeper::log_sweep(const char* msg, const char* format, ...) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
594 if (PrintMethodFlushing) {
2482
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
595 stringStream s;
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
596 // Dump code cache state into a buffer before locking the tty,
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
597 // because log_state() will use locks causing lock conflicts.
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
598 CodeCache::log_state(&s);
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
599
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
600 ttyLocker ttyl;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
601 tty->print("### sweeper: %s ", msg);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
602 if (format != NULL) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
603 va_list ap;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
604 va_start(ap, format);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
605 tty->vprint(format, ap);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
606 va_end(ap);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
607 }
2482
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
608 tty->print_cr(s.as_string());
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
609 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
610
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
611 if (LogCompilation && (xtty != NULL)) {
2482
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
612 stringStream s;
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
613 // Dump code cache state into a buffer before locking the tty,
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
614 // because log_state() will use locks causing lock conflicts.
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
615 CodeCache::log_state(&s);
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
616
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
617 ttyLocker ttyl;
1646
8d5934a77f10 6968385: malformed xml in sweeper logging
never
parents: 1644
diff changeset
618 xtty->begin_elem("sweeper state='%s' traversals='" INTX_FORMAT "' ", msg, (intx)traversal_count());
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
619 if (format != NULL) {
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
620 va_list ap;
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
621 va_start(ap, format);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
622 xtty->vprint(format, ap);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
623 va_end(ap);
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
624 }
2482
dbccacb79c63 7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents: 2426
diff changeset
625 xtty->print(s.as_string());
1644
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
626 xtty->stamp();
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
627 xtty->end_elem();
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
628 }
2a47bd84841f 6965184: possible races in make_not_entrant_or_zombie
never
parents: 1615
diff changeset
629 }