annotate src/share/vm/services/memoryService.cpp @ 5763:a3d71693e0ce

removed bytecode disassembly from CodeCacheRuntime into separate BytecodeDisassembler class removed VM call for doing bytecode disassembly added support for explicitly excluding classes from JaCoCo (put '// JaCoCo Exclude' somewhere in the source file) added node intrinsics to MaterializeNode added snippets for the UnsignedMath classes each file opened by CFGPrinter now includes a unique id in its name to avoid a race of multiple threads writing to the same file the IdealGraphPrinter uses the new BytecodeDisassembler mechanism teh UnsignedMath class is exclude from JaCoCo processing as it is used in snippets
author Doug Simon <doug.simon@oracle.com>
date Wed, 04 Jul 2012 21:57:49 +0200
parents 78542e2b5e35
children d2a62e0f25eb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 2003, 2011, 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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
27 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
28 #include "gc_implementation/shared/mutableSpace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
29 #include "memory/collectorPolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
30 #include "memory/defNewGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
31 #include "memory/genCollectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
32 #include "memory/generation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
33 #include "memory/generationSpec.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
34 #include "memory/heap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
35 #include "memory/memRegion.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
36 #include "memory/permGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
37 #include "memory/tenuredGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
38 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
39 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
40 #include "services/classLoadingService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
41 #include "services/lowMemoryDetector.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
42 #include "services/management.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
43 #include "services/memoryManager.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
44 #include "services/memoryPool.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
45 #include "services/memoryService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
46 #include "utilities/growableArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
47 #ifndef SERIALGC
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
48 #include "gc_implementation/concurrentMarkSweep/cmsPermGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
49 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
50 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
51 #include "gc_implementation/parNew/parNewGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
52 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
53 #include "gc_implementation/parallelScavenge/psOldGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
54 #include "gc_implementation/parallelScavenge/psPermGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
55 #include "gc_implementation/parallelScavenge/psYoungGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
56 #include "services/g1MemoryPool.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
57 #include "services/psMemoryPool.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1703
diff changeset
58 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 GrowableArray<MemoryPool*>* MemoryService::_pools_list =
a61af66fc99e Initial load
duke
parents:
diff changeset
61 new (ResourceObj::C_HEAP) GrowableArray<MemoryPool*>(init_pools_list_size, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 GrowableArray<MemoryManager*>* MemoryService::_managers_list =
a61af66fc99e Initial load
duke
parents:
diff changeset
63 new (ResourceObj::C_HEAP) GrowableArray<MemoryManager*>(init_managers_list_size, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 GCMemoryManager* MemoryService::_minor_gc_manager = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 GCMemoryManager* MemoryService::_major_gc_manager = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 MemoryPool* MemoryService::_code_heap_pool = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 class GcThreadCountClosure: public ThreadClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int _count;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
73 GcThreadCountClosure() : _count(0) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
74 void do_thread(Thread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 int count() { return _count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 };
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void GcThreadCountClosure::do_thread(Thread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void MemoryService::set_universe_heap(CollectedHeap* heap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 CollectedHeap::Name kind = heap->kind();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 switch (kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 case CollectedHeap::GenCollectedHeap : {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 add_gen_collected_heap_info(GenCollectedHeap::heap());
a61af66fc99e Initial load
duke
parents:
diff changeset
87 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
90 case CollectedHeap::ParallelScavengeHeap : {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 add_parallel_scavenge_heap_info(ParallelScavengeHeap::heap());
a61af66fc99e Initial load
duke
parents:
diff changeset
92 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
94 case CollectedHeap::G1CollectedHeap : {
1089
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
95 add_g1_heap_info(G1CollectedHeap::heap());
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
96 break;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
97 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
99 default: {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
100 guarantee(false, "Unrecognized kind of heap");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // set the GC thread count
a61af66fc99e Initial load
duke
parents:
diff changeset
105 GcThreadCountClosure gctcc;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 heap->gc_threads_do(&gctcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int count = gctcc.count();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 _minor_gc_manager->set_num_gc_threads(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _major_gc_manager->set_num_gc_threads(count);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // All memory pools and memory managers are initialized.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _minor_gc_manager->initialize_gc_stat_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 _major_gc_manager->initialize_gc_stat_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Add memory pools for GenCollectedHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // This function currently only supports two generations collected heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // The collector for GenCollectedHeap will have two memory managers.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void MemoryService::add_gen_collected_heap_info(GenCollectedHeap* heap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 CollectorPolicy* policy = heap->collector_policy();
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 assert(policy->is_two_generation_policy(), "Only support two generations");
a61af66fc99e Initial load
duke
parents:
diff changeset
126 guarantee(heap->n_gens() == 2, "Only support two-generation heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 TwoGenerationCollectorPolicy* two_gen_policy = policy->as_two_generation_policy();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (two_gen_policy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 GenerationSpec** specs = two_gen_policy->generations();
a61af66fc99e Initial load
duke
parents:
diff changeset
131 Generation::Name kind = specs[0]->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 switch (kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case Generation::DefNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _minor_gc_manager = MemoryManager::get_copy_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
137 case Generation::ParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
138 case Generation::ASParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _minor_gc_manager = MemoryManager::get_parnew_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
142 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
143 guarantee(false, "Unrecognized generation spec");
a61af66fc99e Initial load
duke
parents:
diff changeset
144 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146 if (policy->is_mark_sweep_policy()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 _major_gc_manager = MemoryManager::get_msc_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
149 } else if (policy->is_concurrent_mark_sweep_policy()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _major_gc_manager = MemoryManager::get_cms_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
152 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 guarantee(false, "Unknown two-gen policy");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 guarantee(false, "Non two-gen policy");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 _managers_list->append(_minor_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 _managers_list->append(_major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 add_generation_memory_pool(heap->get_gen(minor), _major_gc_manager, _minor_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 add_generation_memory_pool(heap->get_gen(major), _major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 PermGen::Name name = policy->permanent_generation()->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
165 switch (name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 case PermGen::MarkSweepCompact: {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 CompactingPermGenGen* perm_gen = (CompactingPermGenGen*) heap->perm_gen();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 add_compact_perm_gen_memory_pool(perm_gen, _major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
172 case PermGen::ConcurrentMarkSweep: {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 CMSPermGenGen* cms_gen = (CMSPermGenGen*) heap->perm_gen();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 add_cms_perm_gen_memory_pool(cms_gen, _major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
178 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
179 guarantee(false, "Unrecognized perm generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
180 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // Add memory pools for ParallelScavengeHeap
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // This function currently only supports two generations collected heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // The collector for ParallelScavengeHeap will have two memory managers.
a61af66fc99e Initial load
duke
parents:
diff changeset
188 void MemoryService::add_parallel_scavenge_heap_info(ParallelScavengeHeap* heap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Two managers to keep statistics about _minor_gc_manager and _major_gc_manager GC.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _minor_gc_manager = MemoryManager::get_psScavenge_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 _major_gc_manager = MemoryManager::get_psMarkSweep_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _managers_list->append(_minor_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _managers_list->append(_major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 add_psYoung_memory_pool(heap->young_gen(), _major_gc_manager, _minor_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 add_psOld_memory_pool(heap->old_gen(), _major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 add_psPerm_memory_pool(heap->perm_gen(), _major_gc_manager);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
1089
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
199
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
200 void MemoryService::add_g1_heap_info(G1CollectedHeap* g1h) {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
201 assert(UseG1GC, "sanity");
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
202
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
203 _minor_gc_manager = MemoryManager::get_g1YoungGen_memory_manager();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
204 _major_gc_manager = MemoryManager::get_g1OldGen_memory_manager();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
205 _managers_list->append(_minor_gc_manager);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
206 _managers_list->append(_major_gc_manager);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
207
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
208 add_g1YoungGen_memory_pool(g1h, _major_gc_manager, _minor_gc_manager);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
209 add_g1OldGen_memory_pool(g1h, _major_gc_manager);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
210 add_g1PermGen_memory_pool(g1h, _major_gc_manager);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
211 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
212 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 MemoryPool* MemoryService::add_gen(Generation* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
215 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
216 bool is_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
217 bool support_usage_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 MemoryPool::PoolType type = (is_heap ? MemoryPool::Heap : MemoryPool::NonHeap);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 GenerationPool* pool = new GenerationPool(gen, name, type, support_usage_threshold);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 _pools_list->append(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return (MemoryPool*) pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 MemoryPool* MemoryService::add_space(ContiguousSpace* space,
a61af66fc99e Initial load
duke
parents:
diff changeset
226 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
227 bool is_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
228 size_t max_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
229 bool support_usage_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 MemoryPool::PoolType type = (is_heap ? MemoryPool::Heap : MemoryPool::NonHeap);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 ContiguousSpacePool* pool = new ContiguousSpacePool(space, name, type, max_size, support_usage_threshold);
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 _pools_list->append(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 return (MemoryPool*) pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 MemoryPool* MemoryService::add_survivor_spaces(DefNewGeneration* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
238 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
239 bool is_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
240 size_t max_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
241 bool support_usage_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 MemoryPool::PoolType type = (is_heap ? MemoryPool::Heap : MemoryPool::NonHeap);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 SurvivorContiguousSpacePool* pool = new SurvivorContiguousSpacePool(gen, name, type, max_size, support_usage_threshold);
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 _pools_list->append(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 return (MemoryPool*) pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
250 MemoryPool* MemoryService::add_cms_space(CompactibleFreeListSpace* space,
a61af66fc99e Initial load
duke
parents:
diff changeset
251 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
252 bool is_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
253 size_t max_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
254 bool support_usage_threshold) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 MemoryPool::PoolType type = (is_heap ? MemoryPool::Heap : MemoryPool::NonHeap);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 CompactibleFreeListSpacePool* pool = new CompactibleFreeListSpacePool(space, name, type, max_size, support_usage_threshold);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _pools_list->append(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 return (MemoryPool*) pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // Add memory pool(s) for one generation
a61af66fc99e Initial load
duke
parents:
diff changeset
263 void MemoryService::add_generation_memory_pool(Generation* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
264 MemoryManager* major_mgr,
a61af66fc99e Initial load
duke
parents:
diff changeset
265 MemoryManager* minor_mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 Generation::Name kind = gen->kind();
a61af66fc99e Initial load
duke
parents:
diff changeset
267 int index = _pools_list->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 switch (kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 case Generation::DefNew: {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 assert(major_mgr != NULL && minor_mgr != NULL, "Should have two managers");
a61af66fc99e Initial load
duke
parents:
diff changeset
272 DefNewGeneration* young_gen = (DefNewGeneration*) gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // Add a memory pool for each space and young gen doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // support low memory detection as it is expected to get filled up.
a61af66fc99e Initial load
duke
parents:
diff changeset
275 MemoryPool* eden = add_space(young_gen->eden(),
a61af66fc99e Initial load
duke
parents:
diff changeset
276 "Eden Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
277 true, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
278 young_gen->max_eden_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
279 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 MemoryPool* survivor = add_survivor_spaces(young_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
281 "Survivor Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
282 true, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
283 young_gen->max_survivor_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
284 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
289 case Generation::ParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
290 case Generation::ASParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
291 {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 assert(major_mgr != NULL && minor_mgr != NULL, "Should have two managers");
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // Add a memory pool for each space and young gen doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // support low memory detection as it is expected to get filled up.
a61af66fc99e Initial load
duke
parents:
diff changeset
295 ParNewGeneration* parnew_gen = (ParNewGeneration*) gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 MemoryPool* eden = add_space(parnew_gen->eden(),
a61af66fc99e Initial load
duke
parents:
diff changeset
297 "Par Eden Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
298 true /* is_heap */,
a61af66fc99e Initial load
duke
parents:
diff changeset
299 parnew_gen->max_eden_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
300 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 MemoryPool* survivor = add_survivor_spaces(parnew_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
302 "Par Survivor Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
303 true, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
304 parnew_gen->max_survivor_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
305 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 case Generation::MarkSweepCompact: {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 assert(major_mgr != NULL && minor_mgr == NULL, "Should have only one manager");
a61af66fc99e Initial load
duke
parents:
diff changeset
313 add_gen(gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
314 "Tenured Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
315 true, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
316 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
321 case Generation::ConcurrentMarkSweep:
a61af66fc99e Initial load
duke
parents:
diff changeset
322 case Generation::ASConcurrentMarkSweep:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 assert(major_mgr != NULL && minor_mgr == NULL, "Should have only one manager");
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ConcurrentMarkSweepGeneration* cms = (ConcurrentMarkSweepGeneration*) gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 MemoryPool* pool = add_cms_space(cms->cmsSpace(),
a61af66fc99e Initial load
duke
parents:
diff changeset
327 "CMS Old Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
328 true, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
329 cms->reserved().byte_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
330 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
336 assert(false, "should not reach here");
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // no memory pool added for others
a61af66fc99e Initial load
duke
parents:
diff changeset
338 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 assert(major_mgr != NULL, "Should have at least one manager");
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // Link managers and the memory pools together
a61af66fc99e Initial load
duke
parents:
diff changeset
343 for (int i = index; i < _pools_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 MemoryPool* pool = _pools_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 major_mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (minor_mgr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 minor_mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 void MemoryService::add_compact_perm_gen_memory_pool(CompactingPermGenGen* perm_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
353 MemoryManager* mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 PermanentGenerationSpec* spec = perm_gen->spec();
a61af66fc99e Initial load
duke
parents:
diff changeset
355 size_t max_size = spec->max_size() - spec->read_only_size() - spec->read_write_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
356 MemoryPool* pool = add_space(perm_gen->unshared_space(),
a61af66fc99e Initial load
duke
parents:
diff changeset
357 "Perm Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
358 false, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
359 max_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
360 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
361 mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 if (UseSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 pool = add_space(perm_gen->ro_space(),
a61af66fc99e Initial load
duke
parents:
diff changeset
364 "Perm Gen [shared-ro]",
a61af66fc99e Initial load
duke
parents:
diff changeset
365 false, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
366 spec->read_only_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
367 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 pool = add_space(perm_gen->rw_space(),
a61af66fc99e Initial load
duke
parents:
diff changeset
371 "Perm Gen [shared-rw]",
a61af66fc99e Initial load
duke
parents:
diff changeset
372 false, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
373 spec->read_write_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
374 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
380 void MemoryService::add_cms_perm_gen_memory_pool(CMSPermGenGen* cms_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 MemoryManager* mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 MemoryPool* pool = add_cms_space(cms_gen->cmsSpace(),
a61af66fc99e Initial load
duke
parents:
diff changeset
384 "CMS Perm Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
385 false, /* is_heap */
a61af66fc99e Initial load
duke
parents:
diff changeset
386 cms_gen->reserved().byte_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
387 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 mgr->add_pool(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 void MemoryService::add_psYoung_memory_pool(PSYoungGen* gen, MemoryManager* major_mgr, MemoryManager* minor_mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 assert(major_mgr != NULL && minor_mgr != NULL, "Should have two managers");
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // Add a memory pool for each space and young gen doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // support low memory detection as it is expected to get filled up.
a61af66fc99e Initial load
duke
parents:
diff changeset
396 EdenMutableSpacePool* eden = new EdenMutableSpacePool(gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
397 gen->eden_space(),
a61af66fc99e Initial load
duke
parents:
diff changeset
398 "PS Eden Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
399 MemoryPool::Heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
400 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 SurvivorMutableSpacePool* survivor = new SurvivorMutableSpacePool(gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
403 "PS Survivor Space",
a61af66fc99e Initial load
duke
parents:
diff changeset
404 MemoryPool::Heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 false /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 major_mgr->add_pool(eden);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 major_mgr->add_pool(survivor);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 minor_mgr->add_pool(eden);
a61af66fc99e Initial load
duke
parents:
diff changeset
410 minor_mgr->add_pool(survivor);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 _pools_list->append(eden);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 _pools_list->append(survivor);
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 void MemoryService::add_psOld_memory_pool(PSOldGen* gen, MemoryManager* mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 PSGenerationPool* old_gen = new PSGenerationPool(gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
417 "PS Old Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
418 MemoryPool::Heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
419 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 mgr->add_pool(old_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 _pools_list->append(old_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 void MemoryService::add_psPerm_memory_pool(PSPermGen* gen, MemoryManager* mgr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 PSGenerationPool* perm_gen = new PSGenerationPool(gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
426 "PS Perm Gen",
a61af66fc99e Initial load
duke
parents:
diff changeset
427 MemoryPool::NonHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
428 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
429 mgr->add_pool(perm_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
430 _pools_list->append(perm_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
1089
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
432
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
433 void MemoryService::add_g1YoungGen_memory_pool(G1CollectedHeap* g1h,
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
434 MemoryManager* major_mgr,
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
435 MemoryManager* minor_mgr) {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
436 assert(major_mgr != NULL && minor_mgr != NULL, "should have two managers");
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
437
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
438 G1EdenPool* eden = new G1EdenPool(g1h);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
439 G1SurvivorPool* survivor = new G1SurvivorPool(g1h);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
440
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
441 major_mgr->add_pool(eden);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
442 major_mgr->add_pool(survivor);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
443 minor_mgr->add_pool(eden);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
444 minor_mgr->add_pool(survivor);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
445 _pools_list->append(eden);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
446 _pools_list->append(survivor);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
447 }
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
448
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
449 void MemoryService::add_g1OldGen_memory_pool(G1CollectedHeap* g1h,
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
450 MemoryManager* mgr) {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
451 assert(mgr != NULL, "should have one manager");
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
452
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
453 G1OldGenPool* old_gen = new G1OldGenPool(g1h);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
454 mgr->add_pool(old_gen);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
455 _pools_list->append(old_gen);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
456 }
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
457
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
458 void MemoryService::add_g1PermGen_memory_pool(G1CollectedHeap* g1h,
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
459 MemoryManager* mgr) {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
460 assert(mgr != NULL, "should have one manager");
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
461
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
462 CompactingPermGenGen* perm_gen = (CompactingPermGenGen*) g1h->perm_gen();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
463 PermanentGenerationSpec* spec = perm_gen->spec();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
464 size_t max_size = spec->max_size() - spec->read_only_size()
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
465 - spec->read_write_size();
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
466 MemoryPool* pool = add_space(perm_gen->unshared_space(),
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
467 "G1 Perm Gen",
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
468 false, /* is_heap */
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
469 max_size,
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
470 true /* support_usage_threshold */);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
471 mgr->add_pool(pool);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
472
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
473 // in case we support CDS in G1
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
474 if (UseSharedSpaces) {
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
475 pool = add_space(perm_gen->ro_space(),
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
476 "G1 Perm Gen [shared-ro]",
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
477 false, /* is_heap */
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
478 spec->read_only_size(),
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
479 true /* support_usage_threshold */);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
480 mgr->add_pool(pool);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
481
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
482 pool = add_space(perm_gen->rw_space(),
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
483 "G1 Perm Gen [shared-rw]",
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
484 false, /* is_heap */
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
485 spec->read_write_size(),
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
486 true /* support_usage_threshold */);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
487 mgr->add_pool(pool);
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
488 }
db0d5eba9d20 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 342
diff changeset
489 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
490 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void MemoryService::add_code_heap_memory_pool(CodeHeap* heap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 _code_heap_pool = new CodeHeapPool(heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
494 "Code Cache",
a61af66fc99e Initial load
duke
parents:
diff changeset
495 true /* support_usage_threshold */);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 MemoryManager* mgr = MemoryManager::get_code_cache_memory_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
497 mgr->add_pool(_code_heap_pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 _pools_list->append(_code_heap_pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
500 _managers_list->append(mgr);
a61af66fc99e Initial load
duke
parents:
diff changeset
501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 MemoryManager* MemoryService::get_memory_manager(instanceHandle mh) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 for (int i = 0; i < _managers_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 MemoryManager* mgr = _managers_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (mgr->is_manager(mh)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 return mgr;
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 MemoryPool* MemoryService::get_memory_pool(instanceHandle ph) {
a61af66fc99e Initial load
duke
parents:
diff changeset
514 for (int i = 0; i < _pools_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
515 MemoryPool* pool = _pools_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
516 if (pool->is_pool(ph)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 return pool;
a61af66fc99e Initial load
duke
parents:
diff changeset
518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 void MemoryService::track_memory_usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Track the peak memory usage
a61af66fc99e Initial load
duke
parents:
diff changeset
525 for (int i = 0; i < _pools_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 MemoryPool* pool = _pools_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
527 pool->record_peak_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // Detect low memory
a61af66fc99e Initial load
duke
parents:
diff changeset
531 LowMemoryDetector::detect_low_memory();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 void MemoryService::track_memory_pool_usage(MemoryPool* pool) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // Track the peak memory usage
a61af66fc99e Initial load
duke
parents:
diff changeset
536 pool->record_peak_memory_usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // Detect low memory
a61af66fc99e Initial load
duke
parents:
diff changeset
539 if (LowMemoryDetector::is_enabled(pool)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
540 LowMemoryDetector::detect_low_memory(pool);
a61af66fc99e Initial load
duke
parents:
diff changeset
541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
543
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
544 void MemoryService::gc_begin(bool fullGC, bool recordGCBeginTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
545 bool recordAccumulatedGCTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
546 bool recordPreGCUsage, bool recordPeakUsage) {
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
547
0
a61af66fc99e Initial load
duke
parents:
diff changeset
548 GCMemoryManager* mgr;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 if (fullGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
550 mgr = _major_gc_manager;
a61af66fc99e Initial load
duke
parents:
diff changeset
551 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 mgr = _minor_gc_manager;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554 assert(mgr->is_gc_memory_manager(), "Sanity check");
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
555 mgr->gc_begin(recordGCBeginTime, recordPreGCUsage, recordAccumulatedGCTime);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
556
a61af66fc99e Initial load
duke
parents:
diff changeset
557 // Track the peak memory usage when GC begins
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
558 if (recordPeakUsage) {
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
559 for (int i = 0; i < _pools_list->length(); i++) {
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
560 MemoryPool* pool = _pools_list->at(i);
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
561 pool->record_peak_memory_usage();
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
562 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
566 void MemoryService::gc_end(bool fullGC, bool recordPostGCUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
567 bool recordAccumulatedGCTime,
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
568 bool recordGCEndTime, bool countCollection,
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
569 GCCause::Cause cause) {
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
570
0
a61af66fc99e Initial load
duke
parents:
diff changeset
571 GCMemoryManager* mgr;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 if (fullGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
573 mgr = (GCMemoryManager*) _major_gc_manager;
a61af66fc99e Initial load
duke
parents:
diff changeset
574 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 mgr = (GCMemoryManager*) _minor_gc_manager;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 assert(mgr->is_gc_memory_manager(), "Sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // register the GC end statistics and memory usage
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
580 mgr->gc_end(recordPostGCUsage, recordAccumulatedGCTime, recordGCEndTime,
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
581 countCollection, cause);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584 void MemoryService::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 for (i = 0; i < _pools_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 MemoryPool* pool = _pools_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
589 pool->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591 for (i = 0; i < _managers_list->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
592 MemoryManager* mgr = _managers_list->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
593 mgr->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597 bool MemoryService::set_verbose(bool verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
598 MutexLocker m(Management_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // verbose will be set to the previous value
a61af66fc99e Initial load
duke
parents:
diff changeset
600 bool succeed = CommandLineFlags::boolAtPut((char*)"PrintGC", &verbose, MANAGEMENT);
a61af66fc99e Initial load
duke
parents:
diff changeset
601 assert(succeed, "Setting PrintGC flag fails");
a61af66fc99e Initial load
duke
parents:
diff changeset
602 ClassLoadingService::reset_trace_class_unloading();
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 return verbose;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 }
a61af66fc99e Initial load
duke
parents:
diff changeset
606
a61af66fc99e Initial load
duke
parents:
diff changeset
607 Handle MemoryService::create_MemoryUsage_obj(MemoryUsage usage, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
608 klassOop k = Management::java_lang_management_MemoryUsage_klass(CHECK_NH);
a61af66fc99e Initial load
duke
parents:
diff changeset
609 instanceKlassHandle ik(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 instanceHandle obj = ik->allocate_instance_handle(CHECK_NH);
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 JavaValue result(T_VOID);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 JavaCallArguments args(10);
a61af66fc99e Initial load
duke
parents:
diff changeset
615 args.push_oop(obj); // receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
616 args.push_long(usage.init_size_as_jlong()); // Argument 1
a61af66fc99e Initial load
duke
parents:
diff changeset
617 args.push_long(usage.used_as_jlong()); // Argument 2
a61af66fc99e Initial load
duke
parents:
diff changeset
618 args.push_long(usage.committed_as_jlong()); // Argument 3
a61af66fc99e Initial load
duke
parents:
diff changeset
619 args.push_long(usage.max_size_as_jlong()); // Argument 4
a61af66fc99e Initial load
duke
parents:
diff changeset
620
a61af66fc99e Initial load
duke
parents:
diff changeset
621 JavaCalls::call_special(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
622 ik,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
623 vmSymbols::object_initializer_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
624 vmSymbols::long_long_long_long_void_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625 &args,
a61af66fc99e Initial load
duke
parents:
diff changeset
626 CHECK_NH);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
629 //
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
630 // GC manager type depends on the type of Generation. Depending on the space
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
631 // availablity and vm options the gc uses major gc manager or minor gc
0
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // manager or both. The type of gc manager depends on the generation kind.
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
633 // For DefNew, ParNew and ASParNew generation doing scavenge gc uses minor
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
634 // gc manager (so _fullGC is set to false ) and for other generation kinds
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
635 // doing mark-sweep-compact uses major gc manager (so _fullGC is set
0
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // to true).
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
637 TraceMemoryManagerStats::TraceMemoryManagerStats(Generation::Name kind, GCCause::Cause cause) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
638 switch (kind) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 case Generation::DefNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
640 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
641 case Generation::ParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
642 case Generation::ASParNew:
a61af66fc99e Initial load
duke
parents:
diff changeset
643 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
644 _fullGC=false;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
646 case Generation::MarkSweepCompact:
a61af66fc99e Initial load
duke
parents:
diff changeset
647 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
648 case Generation::ConcurrentMarkSweep:
a61af66fc99e Initial load
duke
parents:
diff changeset
649 case Generation::ASConcurrentMarkSweep:
a61af66fc99e Initial load
duke
parents:
diff changeset
650 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
651 _fullGC=true;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
653 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
654 assert(false, "Unrecognized gc generation kind.");
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
656 // this has to be called in a stop the world pause and represent
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
657 // an entire gc pause, start to finish:
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
658 initialize(_fullGC, cause,true, true, true, true, true, true, true);
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
659 }
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
660 TraceMemoryManagerStats::TraceMemoryManagerStats(bool fullGC,
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
661 GCCause::Cause cause,
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
662 bool recordGCBeginTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
663 bool recordPreGCUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
664 bool recordPeakUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
665 bool recordPostGCUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
666 bool recordAccumulatedGCTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
667 bool recordGCEndTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
668 bool countCollection) {
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
669 initialize(fullGC, cause, recordGCBeginTime, recordPreGCUsage, recordPeakUsage,
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
670 recordPostGCUsage, recordAccumulatedGCTime, recordGCEndTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
671 countCollection);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
672 }
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
673
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
674 // for a subclass to create then initialize an instance before invoking
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
675 // the MemoryService
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
676 void TraceMemoryManagerStats::initialize(bool fullGC,
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
677 GCCause::Cause cause,
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
678 bool recordGCBeginTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
679 bool recordPreGCUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
680 bool recordPeakUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
681 bool recordPostGCUsage,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
682 bool recordAccumulatedGCTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
683 bool recordGCEndTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
684 bool countCollection) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 _fullGC = fullGC;
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
686 _recordGCBeginTime = recordGCBeginTime;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
687 _recordPreGCUsage = recordPreGCUsage;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
688 _recordPeakUsage = recordPeakUsage;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
689 _recordPostGCUsage = recordPostGCUsage;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
690 _recordAccumulatedGCTime = recordAccumulatedGCTime;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
691 _recordGCEndTime = recordGCEndTime;
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
692 _countCollection = countCollection;
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
693 _cause = cause;
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
694
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
695 MemoryService::gc_begin(_fullGC, _recordGCBeginTime, _recordAccumulatedGCTime,
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
696 _recordPreGCUsage, _recordPeakUsage);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699 TraceMemoryManagerStats::~TraceMemoryManagerStats() {
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
700 MemoryService::gc_end(_fullGC, _recordPostGCUsage, _recordAccumulatedGCTime,
3356
78542e2b5e35 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 2426
diff changeset
701 _recordGCEndTime, _countCollection, _cause);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
702 }
1703
f6f3eef8a521 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 1552
diff changeset
703