annotate src/share/vm/services/psMemoryPool.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 f95d63e2154a
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2007, 2010, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "gc_implementation/parallelScavenge/psPermGen.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "services/lowMemoryDetector.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "services/management.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "services/memoryManager.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "services/psMemoryPool.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 PSGenerationPool::PSGenerationPool(PSOldGen* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 PoolType type,
a61af66fc99e Initial load
duke
parents:
diff changeset
40 bool support_usage_threshold) :
a61af66fc99e Initial load
duke
parents:
diff changeset
41 CollectedMemoryPool(name, type, gen->capacity_in_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
42 gen->reserved().byte_size(), support_usage_threshold), _gen(gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 PSGenerationPool::PSGenerationPool(PSPermGen* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
46 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 PoolType type,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool support_usage_threshold) :
a61af66fc99e Initial load
duke
parents:
diff changeset
49 CollectedMemoryPool(name, type, gen->capacity_in_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
50 gen->reserved().byte_size(), support_usage_threshold), _gen(gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 MemoryUsage PSGenerationPool::get_memory_usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 size_t maxSize = (available_for_allocation() ? max_size() : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 size_t used = used_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 size_t committed = _gen->capacity_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 return MemoryUsage(initial_size(), used, committed, maxSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // The max size of EdenMutableSpacePool =
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // max size of the PSYoungGen - capacity of two survivor spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
63 //
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Max size of PS eden space is changing due to ergonomic.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // PSYoungGen, PSOldGen, Eden, Survivor spaces are all resizable.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 //
a61af66fc99e Initial load
duke
parents:
diff changeset
67 EdenMutableSpacePool::EdenMutableSpacePool(PSYoungGen* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 MutableSpace* space,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 PoolType type,
a61af66fc99e Initial load
duke
parents:
diff changeset
71 bool support_usage_threshold) :
a61af66fc99e Initial load
duke
parents:
diff changeset
72 CollectedMemoryPool(name, type, space->capacity_in_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
73 (gen->max_size() - gen->from_space()->capacity_in_bytes() - gen->to_space()->capacity_in_bytes()),
a61af66fc99e Initial load
duke
parents:
diff changeset
74 support_usage_threshold),
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _gen(gen), _space(space) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 MemoryUsage EdenMutableSpacePool::get_memory_usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 size_t maxSize = (available_for_allocation() ? max_size() : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 size_t used = used_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 size_t committed = _space->capacity_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 return MemoryUsage(initial_size(), used, committed, maxSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // The max size of SurvivorMutableSpacePool =
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // current capacity of the from-space
a61af66fc99e Initial load
duke
parents:
diff changeset
88 //
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // PS from and to survivor spaces could have different sizes.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 //
a61af66fc99e Initial load
duke
parents:
diff changeset
91 SurvivorMutableSpacePool::SurvivorMutableSpacePool(PSYoungGen* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 PoolType type,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 bool support_usage_threshold) :
a61af66fc99e Initial load
duke
parents:
diff changeset
95 CollectedMemoryPool(name, type, gen->from_space()->capacity_in_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
96 gen->from_space()->capacity_in_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
97 support_usage_threshold), _gen(gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 MemoryUsage SurvivorMutableSpacePool::get_memory_usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 size_t maxSize = (available_for_allocation() ? max_size() : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 size_t used = used_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 size_t committed = committed_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return MemoryUsage(initial_size(), used, committed, maxSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }