author | coleenp |
Mon, 16 Oct 2017 22:36:06 -0400 | |
changeset 47634 | 6a0c42c40cd1 |
parent 47216 | 71c04702a3d5 |
child 48168 | cb5d2d4453d0 |
child 55767 | 8e22715afabc |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
30247
diff
changeset
|
2 |
* Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4459
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4459
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4459
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "classfile/vmSymbols.hpp" |
|
28 |
#include "oops/oop.inline.hpp" |
|
29 |
#include "runtime/handles.inline.hpp" |
|
30 |
#include "runtime/javaCalls.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22796
diff
changeset
|
31 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 32 |
#include "services/lowMemoryDetector.hpp" |
33 |
#include "services/management.hpp" |
|
34 |
#include "services/memoryManager.hpp" |
|
35 |
#include "services/memoryPool.hpp" |
|
36 |
#include "services/memoryService.hpp" |
|
9623
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
8921
diff
changeset
|
37 |
#include "services/gcNotifier.hpp" |
7397 | 38 |
#include "utilities/dtrace.hpp" |
1 | 39 |
|
40 |
MemoryManager::MemoryManager() { |
|
41 |
_num_pools = 0; |
|
24831
e4df2f64bb2e
8041623: Solaris Studio 12.4 C++ 5.13, CHECK_UNHANDLED_OOPS use of class oop's copy constructor definitions causing error level diagnostic.
lfoltan
parents:
24351
diff
changeset
|
42 |
(void)const_cast<instanceOop&>(_memory_mgr_obj = instanceOop(NULL)); |
1 | 43 |
} |
44 |
||
45 |
void MemoryManager::add_pool(MemoryPool* pool) { |
|
46 |
assert(_num_pools < MemoryManager::max_num_pools, "_num_pools exceeds the max"); |
|
47 |
if (_num_pools < MemoryManager::max_num_pools) { |
|
48 |
_pools[_num_pools] = pool; |
|
49 |
_num_pools++; |
|
50 |
} |
|
51 |
pool->add_manager(this); |
|
52 |
} |
|
53 |
||
54 |
MemoryManager* MemoryManager::get_code_cache_memory_manager() { |
|
55 |
return (MemoryManager*) new CodeCacheMemoryManager(); |
|
56 |
} |
|
57 |
||
18444
8adb4bc92f18
8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
16453
diff
changeset
|
58 |
MemoryManager* MemoryManager::get_metaspace_memory_manager() { |
8adb4bc92f18
8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
16453
diff
changeset
|
59 |
return (MemoryManager*) new MetaspaceMemoryManager(); |
8adb4bc92f18
8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
16453
diff
changeset
|
60 |
} |
8adb4bc92f18
8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents:
16453
diff
changeset
|
61 |
|
1 | 62 |
GCMemoryManager* MemoryManager::get_copy_memory_manager() { |
63 |
return (GCMemoryManager*) new CopyMemoryManager(); |
|
64 |
} |
|
65 |
||
66 |
GCMemoryManager* MemoryManager::get_msc_memory_manager() { |
|
67 |
return (GCMemoryManager*) new MSCMemoryManager(); |
|
68 |
} |
|
69 |
||
70 |
GCMemoryManager* MemoryManager::get_parnew_memory_manager() { |
|
71 |
return (GCMemoryManager*) new ParNewMemoryManager(); |
|
72 |
} |
|
73 |
||
74 |
GCMemoryManager* MemoryManager::get_cms_memory_manager() { |
|
75 |
return (GCMemoryManager*) new CMSMemoryManager(); |
|
76 |
} |
|
77 |
||
78 |
GCMemoryManager* MemoryManager::get_psScavenge_memory_manager() { |
|
79 |
return (GCMemoryManager*) new PSScavengeMemoryManager(); |
|
80 |
} |
|
81 |
||
82 |
GCMemoryManager* MemoryManager::get_psMarkSweep_memory_manager() { |
|
83 |
return (GCMemoryManager*) new PSMarkSweepMemoryManager(); |
|
84 |
} |
|
85 |
||
4459
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
86 |
GCMemoryManager* MemoryManager::get_g1YoungGen_memory_manager() { |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
87 |
return (GCMemoryManager*) new G1YoungGenMemoryManager(); |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
88 |
} |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
89 |
|
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
90 |
GCMemoryManager* MemoryManager::get_g1OldGen_memory_manager() { |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
91 |
return (GCMemoryManager*) new G1OldGenMemoryManager(); |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
92 |
} |
eb506d590394
6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents:
1
diff
changeset
|
93 |
|
1 | 94 |
instanceOop MemoryManager::get_memory_manager_instance(TRAPS) { |
95 |
// Must do an acquire so as to force ordering of subsequent |
|
96 |
// loads from anything _memory_mgr_obj points to or implies. |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47216
diff
changeset
|
97 |
instanceOop mgr_obj = OrderAccess::load_acquire(&_memory_mgr_obj); |
1 | 98 |
if (mgr_obj == NULL) { |
99 |
// It's ok for more than one thread to execute the code up to the locked region. |
|
100 |
// Extra manager instances will just be gc'ed. |
|
30247
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
101 |
Klass* k = Management::sun_management_ManagementFactoryHelper_klass(CHECK_0); |
1 | 102 |
|
103 |
Handle mgr_name = java_lang_String::create_from_str(name(), CHECK_0); |
|
104 |
||
105 |
JavaValue result(T_OBJECT); |
|
106 |
JavaCallArguments args; |
|
107 |
args.push_oop(mgr_name); // Argument 1 |
|
108 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
109 |
Symbol* method_name = NULL; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
110 |
Symbol* signature = NULL; |
1 | 111 |
if (is_gc_memory_manager()) { |
30247
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
112 |
Klass* extKlass = Management::com_sun_management_internal_GarbageCollectorExtImpl_klass(CHECK_0); |
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
113 |
// com.sun.management.GarbageCollectorMXBean is in jdk.management module which may not be present. |
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
114 |
if (extKlass != NULL) { |
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
115 |
k = extKlass; |
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
116 |
} |
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
117 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
118 |
method_name = vmSymbols::createGarbageCollector_name(); |
30247
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
119 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
120 |
signature = vmSymbols::createGarbageCollector_signature(); |
1 | 121 |
args.push_oop(Handle()); // Argument 2 (for future extension) |
122 |
} else { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
123 |
method_name = vmSymbols::createMemoryManager_name(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
124 |
signature = vmSymbols::createMemoryManager_signature(); |
1 | 125 |
} |
126 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
30247
diff
changeset
|
127 |
InstanceKlass* ik = InstanceKlass::cast(k); |
30247
9925b07bba5b
8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents:
28163
diff
changeset
|
128 |
|
1 | 129 |
JavaCalls::call_static(&result, |
130 |
ik, |
|
131 |
method_name, |
|
132 |
signature, |
|
133 |
&args, |
|
134 |
CHECK_0); |
|
135 |
||
136 |
instanceOop m = (instanceOop) result.get_jobject(); |
|
137 |
instanceHandle mgr(THREAD, m); |
|
138 |
||
139 |
{ |
|
140 |
// Get lock before setting _memory_mgr_obj |
|
141 |
// since another thread may have created the instance |
|
142 |
MutexLocker ml(Management_lock); |
|
143 |
||
144 |
// Check if another thread has created the management object. We reload |
|
145 |
// _memory_mgr_obj here because some other thread may have initialized |
|
146 |
// it while we were executing the code before the lock. |
|
147 |
// |
|
148 |
// The lock has done an acquire, so the load can't float above it, but |
|
149 |
// we need to do a load_acquire as above. |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47216
diff
changeset
|
150 |
mgr_obj = OrderAccess::load_acquire(&_memory_mgr_obj); |
1 | 151 |
if (mgr_obj != NULL) { |
152 |
return mgr_obj; |
|
153 |
} |
|
154 |
||
155 |
// Get the address of the object we created via call_special. |
|
156 |
mgr_obj = mgr(); |
|
157 |
||
158 |
// Use store barrier to make sure the memory accesses associated |
|
159 |
// with creating the management object are visible before publishing |
|
160 |
// its address. The unlock will publish the store to _memory_mgr_obj |
|
161 |
// because it does a release first. |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47216
diff
changeset
|
162 |
OrderAccess::release_store(&_memory_mgr_obj, mgr_obj); |
1 | 163 |
} |
164 |
} |
|
165 |
||
166 |
return mgr_obj; |
|
167 |
} |
|
168 |
||
169 |
void MemoryManager::oops_do(OopClosure* f) { |
|
170 |
f->do_oop((oop*) &_memory_mgr_obj); |
|
171 |
} |
|
172 |
||
173 |
GCStatInfo::GCStatInfo(int num_pools) { |
|
174 |
// initialize the arrays for memory usage |
|
13195 | 175 |
_before_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools, mtInternal); |
176 |
_after_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools, mtInternal); |
|
1 | 177 |
_usage_array_size = num_pools; |
11171
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
178 |
clear(); |
1 | 179 |
} |
180 |
||
181 |
GCStatInfo::~GCStatInfo() { |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
24831
diff
changeset
|
182 |
FREE_C_HEAP_ARRAY(MemoryUsage*, _before_gc_usage_array); |
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
24831
diff
changeset
|
183 |
FREE_C_HEAP_ARRAY(MemoryUsage*, _after_gc_usage_array); |
1 | 184 |
} |
185 |
||
186 |
void GCStatInfo::set_gc_usage(int pool_index, MemoryUsage usage, bool before_gc) { |
|
187 |
MemoryUsage* gc_usage_array; |
|
188 |
if (before_gc) { |
|
189 |
gc_usage_array = _before_gc_usage_array; |
|
190 |
} else { |
|
191 |
gc_usage_array = _after_gc_usage_array; |
|
192 |
} |
|
193 |
gc_usage_array[pool_index] = usage; |
|
194 |
} |
|
195 |
||
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
196 |
void GCStatInfo::clear() { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
197 |
_index = 0; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
198 |
_start_time = 0L; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
199 |
_end_time = 0L; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
200 |
size_t len = _usage_array_size * sizeof(MemoryUsage); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
201 |
memset(_before_gc_usage_array, 0, len); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
202 |
memset(_after_gc_usage_array, 0, len); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
203 |
} |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
204 |
|
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
205 |
|
1 | 206 |
GCMemoryManager::GCMemoryManager() : MemoryManager() { |
207 |
_num_collections = 0; |
|
208 |
_last_gc_stat = NULL; |
|
28163
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
27880
diff
changeset
|
209 |
_last_gc_lock = new Mutex(Mutex::leaf, "_last_gc_lock", true, |
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
27880
diff
changeset
|
210 |
Monitor::_safepoint_check_never); |
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
211 |
_current_gc_stat = NULL; |
1 | 212 |
_num_gc_threads = 1; |
9623
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
8921
diff
changeset
|
213 |
_notification_enabled = false; |
1 | 214 |
} |
215 |
||
216 |
GCMemoryManager::~GCMemoryManager() { |
|
217 |
delete _last_gc_stat; |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
218 |
delete _last_gc_lock; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
219 |
delete _current_gc_stat; |
1 | 220 |
} |
221 |
||
222 |
void GCMemoryManager::initialize_gc_stat_info() { |
|
223 |
assert(MemoryService::num_memory_pools() > 0, "should have one or more memory pools"); |
|
13195 | 224 |
_last_gc_stat = new(ResourceObj::C_HEAP, mtGC) GCStatInfo(MemoryService::num_memory_pools()); |
225 |
_current_gc_stat = new(ResourceObj::C_HEAP, mtGC) GCStatInfo(MemoryService::num_memory_pools()); |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
226 |
// tracking concurrent collections we need two objects: one to update, and one to |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
227 |
// hold the publicly available "last (completed) gc" information. |
1 | 228 |
} |
229 |
||
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
230 |
void GCMemoryManager::gc_begin(bool recordGCBeginTime, bool recordPreGCUsage, |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
231 |
bool recordAccumulatedGCTime) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
232 |
assert(_last_gc_stat != NULL && _current_gc_stat != NULL, "Just checking"); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
233 |
if (recordAccumulatedGCTime) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
234 |
_accumulated_timer.start(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
235 |
} |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
236 |
// _num_collections now increases in gc_end, to count completed collections |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
237 |
if (recordGCBeginTime) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
238 |
_current_gc_stat->set_index(_num_collections+1); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
239 |
_current_gc_stat->set_start_time(Management::timestamp()); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
240 |
} |
1 | 241 |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
242 |
if (recordPreGCUsage) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
243 |
// Keep memory usage of all memory pools |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
244 |
for (int i = 0; i < MemoryService::num_memory_pools(); i++) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
245 |
MemoryPool* pool = MemoryService::get_memory_pool(i); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
246 |
MemoryUsage usage = pool->get_memory_usage(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
247 |
_current_gc_stat->set_before_gc_usage(i, usage); |
10739 | 248 |
HOTSPOT_MEM_POOL_GC_BEGIN( |
249 |
(char *) name(), strlen(name()), |
|
250 |
(char *) pool->name(), strlen(pool->name()), |
|
251 |
usage.init_size(), usage.used(), |
|
252 |
usage.committed(), usage.max_size()); |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
253 |
} |
1 | 254 |
} |
255 |
} |
|
256 |
||
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
257 |
// A collector MUST, even if it does not complete for some reason, |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
258 |
// make a TraceMemoryManagerStats object where countCollection is true, |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
259 |
// to ensure the current gc stat is placed in _last_gc_stat. |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
260 |
void GCMemoryManager::gc_end(bool recordPostGCUsage, |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
261 |
bool recordAccumulatedGCTime, |
9623
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
8921
diff
changeset
|
262 |
bool recordGCEndTime, bool countCollection, |
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
8921
diff
changeset
|
263 |
GCCause::Cause cause) { |
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
264 |
if (recordAccumulatedGCTime) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
265 |
_accumulated_timer.stop(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
266 |
} |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
267 |
if (recordGCEndTime) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
268 |
_current_gc_stat->set_end_time(Management::timestamp()); |
1 | 269 |
} |
270 |
||
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
271 |
if (recordPostGCUsage) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
272 |
int i; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
273 |
// keep the last gc statistics for all memory pools |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
274 |
for (i = 0; i < MemoryService::num_memory_pools(); i++) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
275 |
MemoryPool* pool = MemoryService::get_memory_pool(i); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
276 |
MemoryUsage usage = pool->get_memory_usage(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
277 |
|
10739 | 278 |
HOTSPOT_MEM_POOL_GC_END( |
279 |
(char *) name(), strlen(name()), |
|
280 |
(char *) pool->name(), strlen(pool->name()), |
|
281 |
usage.init_size(), usage.used(), |
|
282 |
usage.committed(), usage.max_size()); |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
283 |
|
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
284 |
_current_gc_stat->set_after_gc_usage(i, usage); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
285 |
} |
1 | 286 |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
287 |
// Set last collection usage of the memory pools managed by this collector |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
288 |
for (i = 0; i < num_memory_pools(); i++) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
289 |
MemoryPool* pool = get_memory_pool(i); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
290 |
MemoryUsage usage = pool->get_memory_usage(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
291 |
|
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
292 |
// Compare with GC usage threshold |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
293 |
pool->set_last_collection_usage(usage); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
294 |
LowMemoryDetector::detect_after_gc_memory(pool); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
295 |
} |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
296 |
} |
11171
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
297 |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
298 |
if (countCollection) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
299 |
_num_collections++; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
300 |
// alternately update two objects making one public when complete |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
301 |
{ |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
302 |
MutexLockerEx ml(_last_gc_lock, Mutex::_no_safepoint_check_flag); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
303 |
GCStatInfo *tmp = _last_gc_stat; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
304 |
_last_gc_stat = _current_gc_stat; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
305 |
_current_gc_stat = tmp; |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
306 |
// reset the current stat for diagnosability purposes |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
307 |
_current_gc_stat->clear(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
308 |
} |
11171
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
309 |
|
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
310 |
if (is_notification_enabled()) { |
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
311 |
bool isMajorGC = this == MemoryService::get_major_gc_manager(); |
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
312 |
GCNotifier::pushNotification(this, isMajorGC ? "end of major GC" : "end of minor GC", |
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
313 |
GCCause::to_string(cause)); |
02c21e3d0a66
7110173: GCNotifier::pushNotification publishes stale data.
johnc
parents:
10739
diff
changeset
|
314 |
} |
1 | 315 |
} |
316 |
} |
|
6245
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
317 |
|
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
318 |
size_t GCMemoryManager::get_last_gc_stat(GCStatInfo* dest) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
319 |
MutexLockerEx ml(_last_gc_lock, Mutex::_no_safepoint_check_flag); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
320 |
if (_last_gc_stat->gc_index() != 0) { |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
321 |
dest->set_index(_last_gc_stat->gc_index()); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
322 |
dest->set_start_time(_last_gc_stat->start_time()); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
323 |
dest->set_end_time(_last_gc_stat->end_time()); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
324 |
assert(dest->usage_array_size() == _last_gc_stat->usage_array_size(), |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
325 |
"Must have same array size"); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
326 |
size_t len = dest->usage_array_size() * sizeof(MemoryUsage); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
327 |
memcpy(dest->before_gc_usage_array(), _last_gc_stat->before_gc_usage_array(), len); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
328 |
memcpy(dest->after_gc_usage_array(), _last_gc_stat->after_gc_usage_array(), len); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
329 |
} |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
330 |
return _last_gc_stat->gc_index(); |
c37d2cf6de1a
6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents:
5547
diff
changeset
|
331 |
} |