author | coleenp |
Fri, 23 Mar 2012 11:16:05 -0400 | |
changeset 12263 | d20640f4f8fe |
parent 11579 | 6c94c23b3199 |
child 13963 | e5b53c306fb5 |
permissions | -rw-r--r-- |
4459 | 1 |
/* |
9338
05ee447bd420
6946417: G1: Java VisualVM does not support G1 properly.
jmasa
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. |
4459 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4463
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4463
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4463
diff
changeset
|
21 |
* questions. |
4459 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_SERVICES_G1MEMORYPOOL_HPP |
26 |
#define SHARE_VM_SERVICES_G1MEMORYPOOL_HPP |
|
27 |
||
28 |
#ifndef SERIALGC |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
29 |
#include "gc_implementation/g1/g1MonitoringSupport.hpp" |
7397 | 30 |
#include "services/memoryPool.hpp" |
31 |
#include "services/memoryUsage.hpp" |
|
32 |
#endif |
|
33 |
||
4459 | 34 |
// This file contains the three classes that represent the memory |
35 |
// pools of the G1 spaces: G1EdenPool, G1SurvivorPool, and |
|
36 |
// G1OldGenPool. In G1, unlike our other GCs, we do not have a |
|
37 |
// physical space for each of those spaces. Instead, we allocate |
|
38 |
// regions for all three spaces out of a single pool of regions (that |
|
39 |
// pool basically covers the entire heap). As a result, the eden, |
|
40 |
// survivor, and old gen are considered logical spaces in G1, as each |
|
41 |
// is a set of non-contiguous regions. This is also reflected in the |
|
42 |
// way we map them to memory pools here. The easiest way to have done |
|
43 |
// this would have been to map the entire G1 heap to a single memory |
|
44 |
// pool. However, it's helpful to show how large the eden and survivor |
|
45 |
// get, as this does affect the performance and behavior of G1. Which |
|
46 |
// is why we introduce the three memory pools implemented here. |
|
47 |
// |
|
9338
05ee447bd420
6946417: G1: Java VisualVM does not support G1 properly.
jmasa
parents:
7397
diff
changeset
|
48 |
// See comments in g1MonitoringSupport.hpp for additional details |
05ee447bd420
6946417: G1: Java VisualVM does not support G1 properly.
jmasa
parents:
7397
diff
changeset
|
49 |
// on this model. |
4459 | 50 |
// |
51 |
||
52 |
// This class is shared by the three G1 memory pool classes |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
53 |
// (G1EdenPool, G1SurvivorPool, G1OldGenPool). |
4459 | 54 |
class G1MemoryPoolSuper : public CollectedMemoryPool { |
55 |
protected: |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
56 |
const static size_t _undefined_max = (size_t) -1; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
57 |
G1MonitoringSupport* _g1mm; |
4463
699f80df7faa
6906565: G1: deal with compilation warning in g1MemoryPool.hpp
tonyp
parents:
4462
diff
changeset
|
58 |
|
4459 | 59 |
// Would only be called from subclasses. |
60 |
G1MemoryPoolSuper(G1CollectedHeap* g1h, |
|
61 |
const char* name, |
|
62 |
size_t init_size, |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
63 |
size_t max_size, |
4459 | 64 |
bool support_usage_threshold); |
65 |
}; |
|
66 |
||
67 |
// Memory pool that represents the G1 eden. |
|
68 |
class G1EdenPool : public G1MemoryPoolSuper { |
|
69 |
public: |
|
70 |
G1EdenPool(G1CollectedHeap* g1h); |
|
71 |
||
72 |
size_t used_in_bytes() { |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
73 |
return _g1mm->eden_space_used(); |
4459 | 74 |
} |
4463
699f80df7faa
6906565: G1: deal with compilation warning in g1MemoryPool.hpp
tonyp
parents:
4462
diff
changeset
|
75 |
size_t max_size() const { |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
76 |
return _undefined_max; |
4459 | 77 |
} |
78 |
MemoryUsage get_memory_usage(); |
|
79 |
}; |
|
80 |
||
81 |
// Memory pool that represents the G1 survivor. |
|
82 |
class G1SurvivorPool : public G1MemoryPoolSuper { |
|
83 |
public: |
|
84 |
G1SurvivorPool(G1CollectedHeap* g1h); |
|
85 |
||
86 |
size_t used_in_bytes() { |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
87 |
return _g1mm->survivor_space_used(); |
4459 | 88 |
} |
4463
699f80df7faa
6906565: G1: deal with compilation warning in g1MemoryPool.hpp
tonyp
parents:
4462
diff
changeset
|
89 |
size_t max_size() const { |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
90 |
return _undefined_max; |
4459 | 91 |
} |
92 |
MemoryUsage get_memory_usage(); |
|
93 |
}; |
|
94 |
||
95 |
// Memory pool that represents the G1 old gen. |
|
96 |
class G1OldGenPool : public G1MemoryPoolSuper { |
|
97 |
public: |
|
98 |
G1OldGenPool(G1CollectedHeap* g1h); |
|
99 |
||
100 |
size_t used_in_bytes() { |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
101 |
return _g1mm->old_space_used(); |
4459 | 102 |
} |
4463
699f80df7faa
6906565: G1: deal with compilation warning in g1MemoryPool.hpp
tonyp
parents:
4462
diff
changeset
|
103 |
size_t max_size() const { |
11579
6c94c23b3199
7078465: G1: Don't use the undefined value (-1) for the G1 old memory pool max size
tonyp
parents:
10671
diff
changeset
|
104 |
return _g1mm->old_gen_max(); |
4459 | 105 |
} |
106 |
MemoryUsage get_memory_usage(); |
|
107 |
}; |
|
7397 | 108 |
|
109 |
#endif // SHARE_VM_SERVICES_G1MEMORYPOOL_HPP |