annotate src/share/vm/services/memoryManager.cpp @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents db0d5eba9d20
children f6f3eef8a521
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1089
diff changeset
2 * Copyright (c) 2003, 2005, 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: 1089
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1089
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: 1089
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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_memoryManager.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 HS_DTRACE_PROBE_DECL8(hotspot, mem__pool__gc__begin, char*, int, char*, int,
a61af66fc99e Initial load
duke
parents:
diff changeset
29 size_t, size_t, size_t, size_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
30 HS_DTRACE_PROBE_DECL8(hotspot, mem__pool__gc__end, char*, int, char*, int,
a61af66fc99e Initial load
duke
parents:
diff changeset
31 size_t, size_t, size_t, size_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 MemoryManager::MemoryManager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 _num_pools = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _memory_mgr_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 }
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 void MemoryManager::add_pool(MemoryPool* pool) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 assert(_num_pools < MemoryManager::max_num_pools, "_num_pools exceeds the max");
a61af66fc99e Initial load
duke
parents:
diff changeset
40 if (_num_pools < MemoryManager::max_num_pools) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _pools[_num_pools] = pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _num_pools++;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 pool->add_manager(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 MemoryManager* MemoryManager::get_code_cache_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 return (MemoryManager*) new CodeCacheMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 GCMemoryManager* MemoryManager::get_copy_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return (GCMemoryManager*) new CopyMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 GCMemoryManager* MemoryManager::get_msc_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return (GCMemoryManager*) new MSCMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 GCMemoryManager* MemoryManager::get_parnew_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 return (GCMemoryManager*) new ParNewMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 GCMemoryManager* MemoryManager::get_cms_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 return (GCMemoryManager*) new CMSMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 GCMemoryManager* MemoryManager::get_psScavenge_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 return (GCMemoryManager*) new PSScavengeMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 GCMemoryManager* MemoryManager::get_psMarkSweep_memory_manager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return (GCMemoryManager*) new PSMarkSweepMemoryManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
1089
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
75 GCMemoryManager* MemoryManager::get_g1YoungGen_memory_manager() {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
76 return (GCMemoryManager*) new G1YoungGenMemoryManager();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
77 }
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
78
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
79 GCMemoryManager* MemoryManager::get_g1OldGen_memory_manager() {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
80 return (GCMemoryManager*) new G1OldGenMemoryManager();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
81 }
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 0
diff changeset
82
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 instanceOop MemoryManager::get_memory_manager_instance(TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Must do an acquire so as to force ordering of subsequent
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // loads from anything _memory_mgr_obj points to or implies.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 instanceOop mgr_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_mgr_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (mgr_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // It's ok for more than one thread to execute the code up to the locked region.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Extra manager instances will just be gc'ed.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 klassOop k = Management::sun_management_ManagementFactory_klass(CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 instanceKlassHandle ik(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Handle mgr_name = java_lang_String::create_from_str(name(), CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 JavaValue result(T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 JavaCallArguments args;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 args.push_oop(mgr_name); // Argument 1
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 symbolHandle method_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 symbolHandle signature;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 if (is_gc_memory_manager()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 method_name = vmSymbolHandles::createGarbageCollector_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 signature = vmSymbolHandles::createGarbageCollector_signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 args.push_oop(Handle()); // Argument 2 (for future extension)
a61af66fc99e Initial load
duke
parents:
diff changeset
105 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 method_name = vmSymbolHandles::createMemoryManager_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 signature = vmSymbolHandles::createMemoryManager_signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 JavaCalls::call_static(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ik,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 method_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 &args,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 instanceOop m = (instanceOop) result.get_jobject();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 instanceHandle mgr(THREAD, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Get lock before setting _memory_mgr_obj
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // since another thread may have created the instance
a61af66fc99e Initial load
duke
parents:
diff changeset
123 MutexLocker ml(Management_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Check if another thread has created the management object. We reload
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // _memory_mgr_obj here because some other thread may have initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // it while we were executing the code before the lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 //
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // The lock has done an acquire, so the load can't float above it, but
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // we need to do a load_acquire as above.
a61af66fc99e Initial load
duke
parents:
diff changeset
131 mgr_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_mgr_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 if (mgr_obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return mgr_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Get the address of the object we created via call_special.
a61af66fc99e Initial load
duke
parents:
diff changeset
137 mgr_obj = mgr();
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Use store barrier to make sure the memory accesses associated
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // with creating the management object are visible before publishing
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // its address. The unlock will publish the store to _memory_mgr_obj
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // because it does a release first.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 OrderAccess::release_store_ptr(&_memory_mgr_obj, mgr_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return mgr_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void MemoryManager::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 f->do_oop((oop*) &_memory_mgr_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 GCStatInfo::GCStatInfo(int num_pools) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // initialize the arrays for memory usage
a61af66fc99e Initial load
duke
parents:
diff changeset
156 _before_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _after_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 size_t len = num_pools * sizeof(MemoryUsage);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 memset(_before_gc_usage_array, 0, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 memset(_after_gc_usage_array, 0, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 _usage_array_size = num_pools;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 GCStatInfo::~GCStatInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 FREE_C_HEAP_ARRAY(MemoryUsage*, _before_gc_usage_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 FREE_C_HEAP_ARRAY(MemoryUsage*, _after_gc_usage_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void GCStatInfo::copy_stat(GCStatInfo* stat) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 set_index(stat->gc_index());
a61af66fc99e Initial load
duke
parents:
diff changeset
171 set_start_time(stat->start_time());
a61af66fc99e Initial load
duke
parents:
diff changeset
172 set_end_time(stat->end_time());
a61af66fc99e Initial load
duke
parents:
diff changeset
173 assert(_usage_array_size == stat->usage_array_size(), "Must have same array size");
a61af66fc99e Initial load
duke
parents:
diff changeset
174 for (int i = 0; i < _usage_array_size; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 set_before_gc_usage(i, stat->before_gc_usage_for_pool(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
176 set_after_gc_usage(i, stat->after_gc_usage_for_pool(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void GCStatInfo::set_gc_usage(int pool_index, MemoryUsage usage, bool before_gc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 MemoryUsage* gc_usage_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (before_gc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 gc_usage_array = _before_gc_usage_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 gc_usage_array = _after_gc_usage_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 gc_usage_array[pool_index] = usage;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 GCMemoryManager::GCMemoryManager() : MemoryManager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 _num_collections = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _last_gc_stat = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _num_gc_threads = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 GCMemoryManager::~GCMemoryManager() {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 delete _last_gc_stat;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void GCMemoryManager::initialize_gc_stat_info() {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 assert(MemoryService::num_memory_pools() > 0, "should have one or more memory pools");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 _last_gc_stat = new GCStatInfo(MemoryService::num_memory_pools());
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void GCMemoryManager::gc_begin() {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 assert(_last_gc_stat != NULL, "Just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
207 _accumulated_timer.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 _num_collections++;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 _last_gc_stat->set_index(_num_collections);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 _last_gc_stat->set_start_time(Management::timestamp());
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Keep memory usage of all memory pools
a61af66fc99e Initial load
duke
parents:
diff changeset
213 for (int i = 0; i < MemoryService::num_memory_pools(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 MemoryPool* pool = MemoryService::get_memory_pool(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 MemoryUsage usage = pool->get_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
216 _last_gc_stat->set_before_gc_usage(i, usage);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 HS_DTRACE_PROBE8(hotspot, mem__pool__gc__begin,
a61af66fc99e Initial load
duke
parents:
diff changeset
218 name(), strlen(name()),
a61af66fc99e Initial load
duke
parents:
diff changeset
219 pool->name(), strlen(pool->name()),
a61af66fc99e Initial load
duke
parents:
diff changeset
220 usage.init_size(), usage.used(),
a61af66fc99e Initial load
duke
parents:
diff changeset
221 usage.committed(), usage.max_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 void GCMemoryManager::gc_end() {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 _accumulated_timer.stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _last_gc_stat->set_end_time(Management::timestamp());
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // keep the last gc statistics for all memory pools
a61af66fc99e Initial load
duke
parents:
diff changeset
231 for (i = 0; i < MemoryService::num_memory_pools(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 MemoryPool* pool = MemoryService::get_memory_pool(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 MemoryUsage usage = pool->get_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 HS_DTRACE_PROBE8(hotspot, mem__pool__gc__end,
a61af66fc99e Initial load
duke
parents:
diff changeset
236 name(), strlen(name()),
a61af66fc99e Initial load
duke
parents:
diff changeset
237 pool->name(), strlen(pool->name()),
a61af66fc99e Initial load
duke
parents:
diff changeset
238 usage.init_size(), usage.used(),
a61af66fc99e Initial load
duke
parents:
diff changeset
239 usage.committed(), usage.max_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _last_gc_stat->set_after_gc_usage(i, usage);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // Set last collection usage of the memory pools managed by this collector
a61af66fc99e Initial load
duke
parents:
diff changeset
245 for (i = 0; i < num_memory_pools(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 MemoryPool* pool = get_memory_pool(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 MemoryUsage usage = pool->get_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Compare with GC usage threshold
a61af66fc99e Initial load
duke
parents:
diff changeset
250 pool->set_last_collection_usage(usage);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 LowMemoryDetector::detect_after_gc_memory(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }