author | jlaskey |
Tue, 23 Jul 2013 12:00:29 -0300 | |
changeset 19089 | 51cfdcf21d35 |
parent 16991 | aa4978a77e1f |
child 19696 | bd5a0131bde1 |
permissions | -rw-r--r-- |
13195 | 1 |
/* |
2 |
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
26 |
#include "runtime/threadCritical.hpp" |
|
27 |
#include "services/memTracker.hpp" |
|
28 |
#include "services/memTrackWorker.hpp" |
|
29 |
#include "utilities/decoder.hpp" |
|
30 |
#include "utilities/vmError.hpp" |
|
31 |
||
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
32 |
|
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
33 |
void GenerationData::reset() { |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
34 |
_number_of_classes = 0; |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
35 |
while (_recorder_list != NULL) { |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
36 |
MemRecorder* tmp = _recorder_list; |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
37 |
_recorder_list = _recorder_list->next(); |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
38 |
MemTracker::release_thread_recorder(tmp); |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
39 |
} |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
40 |
} |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
41 |
|
16991
aa4978a77e1f
8010151: nsk/regression/b6653214 fails "assert(snapshot != NULL) failed: Worker should not be started"
zgu
parents:
15452
diff
changeset
|
42 |
MemTrackWorker::MemTrackWorker(MemSnapshot* snapshot): _snapshot(snapshot) { |
13195 | 43 |
// create thread uses cgc thread type for now. We should revisit |
44 |
// the option, or create new thread type. |
|
45 |
_has_error = !os::create_thread(this, os::cgc_thread); |
|
46 |
set_name("MemTrackWorker", 0); |
|
47 |
||
48 |
// initial generation circuit buffer |
|
49 |
if (!has_error()) { |
|
50 |
_head = _tail = 0; |
|
51 |
for(int index = 0; index < MAX_GENERATIONS; index ++) { |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
52 |
::new ((void*)&_gen[index]) GenerationData(); |
13195 | 53 |
} |
54 |
} |
|
55 |
NOT_PRODUCT(_sync_point_count = 0;) |
|
56 |
NOT_PRODUCT(_merge_count = 0;) |
|
57 |
NOT_PRODUCT(_last_gen_in_use = 0;) |
|
58 |
} |
|
59 |
||
60 |
MemTrackWorker::~MemTrackWorker() { |
|
61 |
for (int index = 0; index < MAX_GENERATIONS; index ++) { |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
62 |
_gen[index].reset(); |
13195 | 63 |
} |
64 |
} |
|
65 |
||
66 |
void* MemTrackWorker::operator new(size_t size) { |
|
67 |
assert(false, "use nothrow version"); |
|
68 |
return NULL; |
|
69 |
} |
|
70 |
||
71 |
void* MemTrackWorker::operator new(size_t size, const std::nothrow_t& nothrow_constant) { |
|
72 |
return allocate(size, false, mtNMT); |
|
73 |
} |
|
74 |
||
75 |
void MemTrackWorker::start() { |
|
76 |
os::start_thread(this); |
|
77 |
} |
|
78 |
||
79 |
/* |
|
80 |
* Native memory tracking worker thread loop: |
|
81 |
* 1. merge one generation of memory recorders to staging area |
|
82 |
* 2. promote staging data to memory snapshot |
|
83 |
* |
|
84 |
* This thread can run through safepoint. |
|
85 |
*/ |
|
86 |
||
87 |
void MemTrackWorker::run() { |
|
88 |
assert(MemTracker::is_on(), "native memory tracking is off"); |
|
89 |
this->initialize_thread_local_storage(); |
|
90 |
this->record_stack_base_and_size(); |
|
16991
aa4978a77e1f
8010151: nsk/regression/b6653214 fails "assert(snapshot != NULL) failed: Worker should not be started"
zgu
parents:
15452
diff
changeset
|
91 |
assert(_snapshot != NULL, "Worker should not be started"); |
13195 | 92 |
MemRecorder* rec; |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
93 |
unsigned long processing_generation = 0; |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
94 |
bool worker_idle = false; |
13195 | 95 |
|
96 |
while (!MemTracker::shutdown_in_progress()) { |
|
97 |
NOT_PRODUCT(_last_gen_in_use = generations_in_use();) |
|
98 |
{ |
|
99 |
// take a recorder from earliest generation in buffer |
|
100 |
ThreadCritical tc; |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
101 |
rec = _gen[_head].next_recorder(); |
13195 | 102 |
} |
103 |
if (rec != NULL) { |
|
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
104 |
if (rec->get_generation() != processing_generation || worker_idle) { |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
105 |
processing_generation = rec->get_generation(); |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
106 |
worker_idle = false; |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
107 |
MemTracker::set_current_processing_generation(processing_generation); |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
108 |
} |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
109 |
|
13195 | 110 |
// merge the recorder into staging area |
16991
aa4978a77e1f
8010151: nsk/regression/b6653214 fails "assert(snapshot != NULL) failed: Worker should not be started"
zgu
parents:
15452
diff
changeset
|
111 |
if (!_snapshot->merge(rec)) { |
13470
a99b4dc12f9b
7185614: NMT ON: "check by caller" assertion failed on nsk ThreadMXBean test
zgu
parents:
13195
diff
changeset
|
112 |
MemTracker::shutdown(MemTracker::NMT_out_of_memory); |
a99b4dc12f9b
7185614: NMT ON: "check by caller" assertion failed on nsk ThreadMXBean test
zgu
parents:
13195
diff
changeset
|
113 |
} else { |
a99b4dc12f9b
7185614: NMT ON: "check by caller" assertion failed on nsk ThreadMXBean test
zgu
parents:
13195
diff
changeset
|
114 |
NOT_PRODUCT(_merge_count ++;) |
a99b4dc12f9b
7185614: NMT ON: "check by caller" assertion failed on nsk ThreadMXBean test
zgu
parents:
13195
diff
changeset
|
115 |
} |
13195 | 116 |
MemTracker::release_thread_recorder(rec); |
117 |
} else { |
|
118 |
// no more recorder to merge, promote staging area |
|
119 |
// to snapshot |
|
120 |
if (_head != _tail) { |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
121 |
long number_of_classes; |
13195 | 122 |
{ |
123 |
ThreadCritical tc; |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
124 |
if (_gen[_head].has_more_recorder() || _head == _tail) { |
13195 | 125 |
continue; |
126 |
} |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
127 |
number_of_classes = _gen[_head].number_of_classes(); |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
128 |
_gen[_head].reset(); |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
129 |
|
13195 | 130 |
// done with this generation, increment _head pointer |
131 |
_head = (_head + 1) % MAX_GENERATIONS; |
|
132 |
} |
|
133 |
// promote this generation data to snapshot |
|
16991
aa4978a77e1f
8010151: nsk/regression/b6653214 fails "assert(snapshot != NULL) failed: Worker should not be started"
zgu
parents:
15452
diff
changeset
|
134 |
if (!_snapshot->promote(number_of_classes)) { |
13744
631fe815def5
7181995: NMT ON: NMT assertion failure assert(cur_vm->is_uncommit_record() || cur_vm->is_deallocation_record
zgu
parents:
13470
diff
changeset
|
135 |
// failed to promote, means out of memory |
631fe815def5
7181995: NMT ON: NMT assertion failure assert(cur_vm->is_uncommit_record() || cur_vm->is_deallocation_record
zgu
parents:
13470
diff
changeset
|
136 |
MemTracker::shutdown(MemTracker::NMT_out_of_memory); |
631fe815def5
7181995: NMT ON: NMT assertion failure assert(cur_vm->is_uncommit_record() || cur_vm->is_deallocation_record
zgu
parents:
13470
diff
changeset
|
137 |
} |
13195 | 138 |
} else { |
15452
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
139 |
// worker thread is idle |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
140 |
worker_idle = true; |
3bfde2dea09d
8005012: Add WB APIs to better support NMT testing
ctornqvi
parents:
15104
diff
changeset
|
141 |
MemTracker::report_worker_idle(); |
16991
aa4978a77e1f
8010151: nsk/regression/b6653214 fails "assert(snapshot != NULL) failed: Worker should not be started"
zgu
parents:
15452
diff
changeset
|
142 |
_snapshot->wait(1000); |
13195 | 143 |
ThreadCritical tc; |
144 |
// check if more data arrived |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
145 |
if (!_gen[_head].has_more_recorder()) { |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
146 |
_gen[_head].add_recorders(MemTracker::get_pending_recorders()); |
13195 | 147 |
} |
148 |
} |
|
149 |
} |
|
150 |
} |
|
151 |
assert(MemTracker::shutdown_in_progress(), "just check"); |
|
152 |
||
13470
a99b4dc12f9b
7185614: NMT ON: "check by caller" assertion failed on nsk ThreadMXBean test
zgu
parents:
13195
diff
changeset
|
153 |
// transits to final shutdown |
13195 | 154 |
MemTracker::final_shutdown(); |
155 |
} |
|
156 |
||
157 |
// at synchronization point, where 'safepoint visible' Java threads are blocked |
|
158 |
// at a safepoint, and the rest of threads are blocked on ThreadCritical lock. |
|
159 |
// The caller MemTracker::sync() already takes ThreadCritical before calling this |
|
160 |
// method. |
|
161 |
// |
|
162 |
// Following tasks are performed: |
|
163 |
// 1. add all recorders in pending queue to current generation |
|
164 |
// 2. increase generation |
|
165 |
||
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
166 |
void MemTrackWorker::at_sync_point(MemRecorder* rec, int number_of_classes) { |
13195 | 167 |
NOT_PRODUCT(_sync_point_count ++;) |
168 |
assert(count_recorder(rec) <= MemRecorder::_instance_count, |
|
169 |
"pending queue has infinite loop"); |
|
170 |
||
171 |
bool out_of_generation_buffer = false; |
|
172 |
// check shutdown state inside ThreadCritical |
|
173 |
if (MemTracker::shutdown_in_progress()) return; |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
174 |
|
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
175 |
_gen[_tail].set_number_of_classes(number_of_classes); |
13195 | 176 |
// append the recorders to the end of the generation |
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
177 |
_gen[_tail].add_recorders(rec); |
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
178 |
assert(count_recorder(_gen[_tail].peek()) <= MemRecorder::_instance_count, |
13195 | 179 |
"after add to current generation has infinite loop"); |
180 |
// we have collected all recorders for this generation. If there is data, |
|
181 |
// we need to increment _tail to start a new generation. |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
182 |
if (_gen[_tail].has_more_recorder() || _head == _tail) { |
13195 | 183 |
_tail = (_tail + 1) % MAX_GENERATIONS; |
184 |
out_of_generation_buffer = (_tail == _head); |
|
185 |
} |
|
186 |
||
187 |
if (out_of_generation_buffer) { |
|
188 |
MemTracker::shutdown(MemTracker::NMT_out_of_generation); |
|
189 |
} |
|
190 |
} |
|
191 |
||
192 |
#ifndef PRODUCT |
|
193 |
int MemTrackWorker::count_recorder(const MemRecorder* head) { |
|
194 |
int count = 0; |
|
195 |
while(head != NULL) { |
|
196 |
count ++; |
|
197 |
head = head->next(); |
|
198 |
} |
|
199 |
return count; |
|
200 |
} |
|
201 |
||
202 |
int MemTrackWorker::count_pending_recorders() const { |
|
203 |
int count = 0; |
|
204 |
for (int index = 0; index < MAX_GENERATIONS; index ++) { |
|
15104
f5d78994619f
8005048: NMT: #loaded classes needs to just show the # defined classes
zgu
parents:
13744
diff
changeset
|
205 |
MemRecorder* head = _gen[index].peek(); |
13195 | 206 |
if (head != NULL) { |
207 |
count += count_recorder(head); |
|
208 |
} |
|
209 |
} |
|
210 |
return count; |
|
211 |
} |
|
212 |
#endif |