author | coleenp |
Fri, 10 Oct 2014 19:36:12 +0000 | |
changeset 27162 | 0a4a7276949b |
parent 26288 | 631bf42cf7c2 |
child 46711 | 0ccef2260315 |
permissions | -rw-r--r-- |
13195 | 1 |
/* |
25946 | 2 |
* Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. |
13195 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_SERVICES_MEM_BASELINE_HPP |
|
26 |
#define SHARE_VM_SERVICES_MEM_BASELINE_HPP |
|
27 |
||
25946 | 28 |
#if INCLUDE_NMT |
29 |
||
13195 | 30 |
#include "memory/allocation.hpp" |
31 |
#include "runtime/mutex.hpp" |
|
25946 | 32 |
#include "services/mallocSiteTable.hpp" |
33 |
#include "services/mallocTracker.hpp" |
|
34 |
#include "services/nmtCommon.hpp" |
|
35 |
#include "services/virtualMemoryTracker.hpp" |
|
36 |
#include "utilities/linkedlist.hpp" |
|
13195 | 37 |
|
25946 | 38 |
typedef LinkedListIterator<MallocSite> MallocSiteIterator; |
39 |
typedef LinkedListIterator<VirtualMemoryAllocationSite> VirtualMemorySiteIterator; |
|
40 |
typedef LinkedListIterator<ReservedMemoryRegion> VirtualMemoryAllocationIterator; |
|
13195 | 41 |
|
42 |
/* |
|
25946 | 43 |
* Baseline a memory snapshot |
13195 | 44 |
*/ |
25946 | 45 |
class MemBaseline VALUE_OBJ_CLASS_SPEC { |
13195 | 46 |
public: |
25946 | 47 |
enum BaselineThreshold { |
48 |
SIZE_THRESHOLD = K // Only allocation size over this threshold will be baselined. |
|
49 |
}; |
|
13195 | 50 |
|
25946 | 51 |
enum BaselineType { |
52 |
Not_baselined, |
|
53 |
Summary_baselined, |
|
54 |
Detail_baselined |
|
55 |
}; |
|
13195 | 56 |
|
25946 | 57 |
enum SortingOrder { |
58 |
by_address, // by memory address |
|
59 |
by_size, // by memory size |
|
60 |
by_site // by call site where the memory is allocated from |
|
13195 | 61 |
}; |
62 |
||
25946 | 63 |
private: |
64 |
// Summary information |
|
26288 | 65 |
MallocMemorySnapshot _malloc_memory_snapshot; |
66 |
VirtualMemorySnapshot _virtual_memory_snapshot; |
|
25946 | 67 |
|
68 |
size_t _class_count; |
|
13195 | 69 |
|
25946 | 70 |
// Allocation sites information |
71 |
// Malloc allocation sites |
|
26288 | 72 |
LinkedListImpl<MallocSite> _malloc_sites; |
25946 | 73 |
|
74 |
// All virtual memory allocations |
|
26288 | 75 |
LinkedListImpl<ReservedMemoryRegion> _virtual_memory_allocations; |
13195 | 76 |
|
25946 | 77 |
// Virtual memory allocations by allocation sites, always in by_address |
78 |
// order |
|
26288 | 79 |
LinkedListImpl<VirtualMemoryAllocationSite> _virtual_memory_sites; |
25946 | 80 |
|
81 |
SortingOrder _malloc_sites_order; |
|
82 |
SortingOrder _virtual_memory_sites_order; |
|
83 |
||
84 |
BaselineType _baseline_type; |
|
13195 | 85 |
|
86 |
public: |
|
25946 | 87 |
// create a memory baseline |
88 |
MemBaseline(): |
|
89 |
_baseline_type(Not_baselined), |
|
26288 | 90 |
_class_count(0) { |
13195 | 91 |
} |
92 |
||
25946 | 93 |
bool baseline(bool summaryOnly = true); |
13195 | 94 |
|
25946 | 95 |
BaselineType baseline_type() const { return _baseline_type; } |
13195 | 96 |
|
26288 | 97 |
MallocMemorySnapshot* malloc_memory_snapshot() { |
98 |
return &_malloc_memory_snapshot; |
|
13195 | 99 |
} |
100 |
||
26288 | 101 |
VirtualMemorySnapshot* virtual_memory_snapshot() { |
102 |
return &_virtual_memory_snapshot; |
|
13195 | 103 |
} |
104 |
||
25946 | 105 |
MallocSiteIterator malloc_sites(SortingOrder order); |
106 |
VirtualMemorySiteIterator virtual_memory_sites(SortingOrder order); |
|
13195 | 107 |
|
25946 | 108 |
// Virtual memory allocation iterator always returns in virtual memory |
109 |
// base address order. |
|
110 |
VirtualMemoryAllocationIterator virtual_memory_allocations() { |
|
111 |
assert(!_virtual_memory_allocations.is_empty(), "Not detail baseline"); |
|
112 |
return VirtualMemoryAllocationIterator(_virtual_memory_allocations.head()); |
|
13195 | 113 |
} |
114 |
||
25946 | 115 |
// Total reserved memory = total malloc'd memory + total reserved virtual |
116 |
// memory |
|
117 |
size_t total_reserved_memory() const { |
|
118 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
26288 | 119 |
size_t amount = _malloc_memory_snapshot.total() + |
120 |
_virtual_memory_snapshot.total_reserved(); |
|
25946 | 121 |
return amount; |
13195 | 122 |
} |
123 |
||
25946 | 124 |
// Total committed memory = total malloc'd memory + total committed |
125 |
// virtual memory |
|
126 |
size_t total_committed_memory() const { |
|
127 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
26288 | 128 |
size_t amount = _malloc_memory_snapshot.total() + |
129 |
_virtual_memory_snapshot.total_committed(); |
|
25946 | 130 |
return amount; |
13195 | 131 |
} |
132 |
||
25946 | 133 |
size_t total_arena_memory() const { |
134 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
26288 | 135 |
return _malloc_memory_snapshot.total_arena(); |
13195 | 136 |
} |
137 |
||
25946 | 138 |
size_t malloc_tracking_overhead() const { |
139 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
26288 | 140 |
MemBaseline* bl = const_cast<MemBaseline*>(this); |
141 |
return bl->_malloc_memory_snapshot.malloc_overhead()->size(); |
|
13195 | 142 |
} |
143 |
||
26288 | 144 |
MallocMemory* malloc_memory(MEMFLAGS flag) { |
145 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
146 |
return _malloc_memory_snapshot.by_type(flag); |
|
13195 | 147 |
} |
148 |
||
26288 | 149 |
VirtualMemory* virtual_memory(MEMFLAGS flag) { |
150 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
151 |
return _virtual_memory_snapshot.by_type(flag); |
|
13195 | 152 |
} |
153 |
||
154 |
||
25946 | 155 |
size_t class_count() const { |
156 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
157 |
return _class_count; |
|
13195 | 158 |
} |
159 |
||
25946 | 160 |
size_t thread_count() const { |
161 |
assert(baseline_type() != Not_baselined, "Not yet baselined"); |
|
26288 | 162 |
return _malloc_memory_snapshot.thread_count(); |
13195 | 163 |
} |
164 |
||
165 |
// reset the baseline for reuse |
|
25946 | 166 |
void reset() { |
167 |
_baseline_type = Not_baselined; |
|
27162
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26288
diff
changeset
|
168 |
// _malloc_memory_snapshot and _virtual_memory_snapshot are copied over. |
25946 | 169 |
_class_count = 0; |
13195 | 170 |
|
26288 | 171 |
_malloc_sites.clear(); |
172 |
_virtual_memory_sites.clear(); |
|
173 |
_virtual_memory_allocations.clear(); |
|
13195 | 174 |
} |
175 |
||
25946 | 176 |
private: |
177 |
// Baseline summary information |
|
178 |
bool baseline_summary(); |
|
13195 | 179 |
|
25946 | 180 |
// Baseline allocation sites (detail tracking only) |
181 |
bool baseline_allocation_sites(); |
|
182 |
||
183 |
// Aggregate virtual memory allocation by allocation sites |
|
184 |
bool aggregate_virtual_memory_allocation_sites(); |
|
13195 | 185 |
|
25946 | 186 |
// Sorting allocation sites in different orders |
187 |
// Sort allocation sites in size order |
|
188 |
void malloc_sites_to_size_order(); |
|
189 |
// Sort allocation sites in call site address order |
|
190 |
void malloc_sites_to_allocation_site_order(); |
|
13195 | 191 |
|
25946 | 192 |
// Sort allocation sites in reserved size order |
193 |
void virtual_memory_sites_to_size_order(); |
|
194 |
// Sort allocation sites in call site address order |
|
195 |
void virtual_memory_sites_to_reservation_site_order(); |
|
13195 | 196 |
}; |
197 |
||
25946 | 198 |
#endif // INCLUDE_NMT |
13195 | 199 |
|
200 |
#endif // SHARE_VM_SERVICES_MEM_BASELINE_HPP |