author | pliden |
Tue, 18 Sep 2018 22:46:35 +0200 | |
changeset 51794 | 4129f43607cb |
parent 51743 | 47466ac8dcf0 |
child 51817 | 46eac084082d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49829
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 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:
5251
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5251
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:
5251
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_THREADLOCALALLOCBUFFER_HPP |
26 |
#define SHARE_VM_GC_SHARED_THREADLOCALALLOCBUFFER_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/gcUtil.hpp" |
7397 | 29 |
#include "oops/typeArrayOop.hpp" |
30 |
#include "runtime/perfData.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
22552
diff
changeset
|
31 |
#include "runtime/vm_version.hpp" |
7397 | 32 |
|
1 | 33 |
class GlobalTLABStats; |
34 |
||
35 |
// ThreadLocalAllocBuffer: a descriptor for thread-local storage used by |
|
36 |
// the threads for allocation. |
|
37 |
// It is thread-private at any time, but maybe multiplexed over |
|
38 |
// time across multiple threads. The park()/unpark() pair is |
|
13925 | 39 |
// used to make it available for such multiplexing. |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
40 |
// |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
41 |
// Heap sampling is performed via the end and allocation_end |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
42 |
// fields. |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
43 |
// allocation_end contains the real end of the tlab allocation, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
44 |
// whereas end can be set to an arbitrary spot in the tlab to |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
45 |
// trip the return and sample the allocation. |
13195 | 46 |
class ThreadLocalAllocBuffer: public CHeapObj<mtThread> { |
1 | 47 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
30764
diff
changeset
|
48 |
friend class JVMCIVMStructs; |
1 | 49 |
private: |
50 |
HeapWord* _start; // address of TLAB |
|
51 |
HeapWord* _top; // address after last allocation |
|
52 |
HeapWord* _pf_top; // allocation prefetch watermark |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
53 |
HeapWord* _end; // allocation end (can be the sampling end point or _allocation_end) |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
54 |
HeapWord* _allocation_end; // end for allocations (actual TLAB end, excluding alignment_reserve) |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
55 |
|
1 | 56 |
size_t _desired_size; // desired size (including alignment_reserve) |
57 |
size_t _refill_waste_limit; // hold onto tlab if free() is larger than this |
|
22552 | 58 |
size_t _allocated_before_last_gc; // total bytes allocated up until the last gc |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
59 |
size_t _bytes_since_last_sample_point; // bytes since last sample point. |
1 | 60 |
|
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
35548
diff
changeset
|
61 |
static size_t _max_size; // maximum size of any TLAB |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
35548
diff
changeset
|
62 |
static int _reserve_for_allocation_prefetch; // Reserve at the end of the TLAB |
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
35548
diff
changeset
|
63 |
static unsigned _target_refills; // expected number of refills between GCs |
1 | 64 |
|
65 |
unsigned _number_of_refills; |
|
66 |
unsigned _fast_refill_waste; |
|
67 |
unsigned _slow_refill_waste; |
|
68 |
unsigned _gc_waste; |
|
69 |
unsigned _slow_allocations; |
|
49946 | 70 |
size_t _allocated_size; |
1 | 71 |
|
72 |
AdaptiveWeightedAverage _allocation_fraction; // fraction of eden allocated in tlabs |
|
73 |
||
74 |
void accumulate_statistics(); |
|
75 |
void initialize_statistics(); |
|
76 |
||
77 |
void set_start(HeapWord* start) { _start = start; } |
|
78 |
void set_end(HeapWord* end) { _end = end; } |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
79 |
void set_allocation_end(HeapWord* ptr) { _allocation_end = ptr; } |
1 | 80 |
void set_top(HeapWord* top) { _top = top; } |
81 |
void set_pf_top(HeapWord* pf_top) { _pf_top = pf_top; } |
|
82 |
void set_desired_size(size_t desired_size) { _desired_size = desired_size; } |
|
83 |
void set_refill_waste_limit(size_t waste) { _refill_waste_limit = waste; } |
|
84 |
||
85 |
size_t initial_refill_waste_limit() { return desired_size() / TLABRefillWasteFraction; } |
|
86 |
||
87 |
static int target_refills() { return _target_refills; } |
|
88 |
size_t initial_desired_size(); |
|
89 |
||
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
90 |
size_t remaining(); |
1 | 91 |
|
92 |
// Make parsable and release it. |
|
93 |
void reset(); |
|
94 |
||
95 |
void invariants() const { assert(top() >= start() && top() <= end(), "invalid tlab"); } |
|
96 |
||
97 |
void initialize(HeapWord* start, HeapWord* top, HeapWord* end); |
|
98 |
||
99 |
void print_stats(const char* tag); |
|
100 |
||
51742
3dd95a83791b
8210710: Rename ThreadLocalAllocBuffer::myThread() to thread()
pliden
parents:
51332
diff
changeset
|
101 |
Thread* thread(); |
1 | 102 |
|
103 |
// statistics |
|
104 |
||
105 |
int number_of_refills() const { return _number_of_refills; } |
|
106 |
int fast_refill_waste() const { return _fast_refill_waste; } |
|
107 |
int slow_refill_waste() const { return _slow_refill_waste; } |
|
108 |
int gc_waste() const { return _gc_waste; } |
|
109 |
int slow_allocations() const { return _slow_allocations; } |
|
110 |
||
111 |
static GlobalTLABStats* _global_stats; |
|
112 |
static GlobalTLABStats* global_stats() { return _global_stats; } |
|
113 |
||
114 |
public: |
|
51332 | 115 |
ThreadLocalAllocBuffer() : _allocated_before_last_gc(0), _allocation_fraction(TLABAllocationWeight) { |
1 | 116 |
// do nothing. tlabs must be inited by initialize() calls |
117 |
} |
|
118 |
||
39278
f3f298ae1023
8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents:
39220
diff
changeset
|
119 |
static size_t min_size() { return align_object_size(MinTLABSize / HeapWordSize) + alignment_reserve(); } |
f3f298ae1023
8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents:
39220
diff
changeset
|
120 |
static size_t max_size() { assert(_max_size != 0, "max_size not set up"); return _max_size; } |
f3f298ae1023
8159045: Remove const from methods returning size_t in threadLocalAllocBuffer.hpp
ehelin
parents:
39220
diff
changeset
|
121 |
static size_t max_size_in_bytes() { return max_size() * BytesPerWord; } |
22552 | 122 |
static void set_max_size(size_t max_size) { _max_size = max_size; } |
1 | 123 |
|
124 |
HeapWord* start() const { return _start; } |
|
125 |
HeapWord* end() const { return _end; } |
|
126 |
HeapWord* top() const { return _top; } |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
127 |
HeapWord* hard_end(); |
1 | 128 |
HeapWord* pf_top() const { return _pf_top; } |
129 |
size_t desired_size() const { return _desired_size; } |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
130 |
size_t used() const { return pointer_delta(top(), start()); } |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
131 |
size_t used_bytes() const { return pointer_delta(top(), start(), 1); } |
1 | 132 |
size_t free() const { return pointer_delta(end(), top()); } |
133 |
// Don't discard tlab if remaining space is larger than this. |
|
134 |
size_t refill_waste_limit() const { return _refill_waste_limit; } |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
135 |
size_t bytes_since_last_sample_point() const { return _bytes_since_last_sample_point; } |
1 | 136 |
|
137 |
// Allocate size HeapWords. The memory is NOT initialized to zero. |
|
138 |
inline HeapWord* allocate(size_t size); |
|
5251
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
139 |
|
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
140 |
// Reserve space at the end of TLAB |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
141 |
static size_t end_reserve() { |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
142 |
int reserve_size = typeArrayOopDesc::header_size(T_INT); |
38220
8d86b82e0ac7
8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents:
35548
diff
changeset
|
143 |
return MAX2(reserve_size, _reserve_for_allocation_prefetch); |
5251
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
144 |
} |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
1
diff
changeset
|
145 |
static size_t alignment_reserve() { return align_object_size(end_reserve()); } |
1 | 146 |
static size_t alignment_reserve_in_bytes() { return alignment_reserve() * HeapWordSize; } |
147 |
||
148 |
// Return tlab size or remaining space in eden such that the |
|
149 |
// space is large enough to hold obj_size and necessary fill space. |
|
150 |
// Otherwise return 0; |
|
151 |
inline size_t compute_size(size_t obj_size); |
|
152 |
||
49945 | 153 |
// Compute the minimal needed tlab size for the given object size. |
154 |
static inline size_t compute_min_size(size_t obj_size); |
|
155 |
||
1 | 156 |
// Record slow allocation |
157 |
inline void record_slow_allocation(size_t obj_size); |
|
158 |
||
159 |
// Initialization at startup |
|
160 |
static void startup_initialization(); |
|
161 |
||
35548
8d3afe96ffea
8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents:
35123
diff
changeset
|
162 |
// Make an in-use tlab parsable, optionally retiring and/or zapping it. |
8d3afe96ffea
8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents:
35123
diff
changeset
|
163 |
void make_parsable(bool retire, bool zap = true); |
1 | 164 |
|
165 |
// Retire in-use tlab before allocation of a new tlab |
|
166 |
void clear_before_allocation(); |
|
167 |
||
51794
4129f43607cb
8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents:
51743
diff
changeset
|
168 |
// Resize based on amount of allocation, etc. |
4129f43607cb
8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents:
51743
diff
changeset
|
169 |
void resize(); |
4129f43607cb
8210753: Make ThreadLocalAllocBuffer::resize() public
pliden
parents:
51743
diff
changeset
|
170 |
|
1 | 171 |
// Accumulate statistics across all tlabs before gc |
172 |
static void accumulate_statistics_before_gc(); |
|
173 |
||
174 |
void fill(HeapWord* start, HeapWord* top, size_t new_size); |
|
175 |
void initialize(); |
|
176 |
||
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
177 |
void set_back_allocation_end(); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
178 |
void set_sample_end(); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
179 |
|
1 | 180 |
static size_t refill_waste_limit_increment() { return TLABWasteIncrement; } |
181 |
||
49829
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
182 |
template <typename T> void addresses_do(T f) { |
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
183 |
f(&_start); |
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
184 |
f(&_top); |
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
185 |
f(&_pf_top); |
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
186 |
f(&_end); |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50101
diff
changeset
|
187 |
f(&_allocation_end); |
49829
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
188 |
} |
19b137cb2d42
8201800: Add support for adjusting heap addresses in a TLAB
pliden
parents:
47216
diff
changeset
|
189 |
|
1 | 190 |
// Code generation support |
191 |
static ByteSize start_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _start); } |
|
51743
47466ac8dcf0
8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents:
51742
diff
changeset
|
192 |
static ByteSize end_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _end); } |
47466ac8dcf0
8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents:
51742
diff
changeset
|
193 |
static ByteSize top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _top); } |
47466ac8dcf0
8210711: Remove unused offset getters in ThreadLocalAllocBuffer
pliden
parents:
51742
diff
changeset
|
194 |
static ByteSize pf_top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _pf_top); } |
1 | 195 |
|
196 |
void verify(); |
|
197 |
}; |
|
198 |
||
13195 | 199 |
class GlobalTLABStats: public CHeapObj<mtThread> { |
1 | 200 |
private: |
201 |
||
202 |
// Accumulate perfdata in private variables because |
|
203 |
// PerfData should be write-only for security reasons |
|
204 |
// (see perfData.hpp) |
|
205 |
unsigned _allocating_threads; |
|
206 |
unsigned _total_refills; |
|
207 |
unsigned _max_refills; |
|
208 |
size_t _total_allocation; |
|
209 |
size_t _total_gc_waste; |
|
210 |
size_t _max_gc_waste; |
|
211 |
size_t _total_slow_refill_waste; |
|
212 |
size_t _max_slow_refill_waste; |
|
213 |
size_t _total_fast_refill_waste; |
|
214 |
size_t _max_fast_refill_waste; |
|
215 |
unsigned _total_slow_allocations; |
|
216 |
unsigned _max_slow_allocations; |
|
217 |
||
218 |
PerfVariable* _perf_allocating_threads; |
|
219 |
PerfVariable* _perf_total_refills; |
|
220 |
PerfVariable* _perf_max_refills; |
|
221 |
PerfVariable* _perf_allocation; |
|
222 |
PerfVariable* _perf_gc_waste; |
|
223 |
PerfVariable* _perf_max_gc_waste; |
|
224 |
PerfVariable* _perf_slow_refill_waste; |
|
225 |
PerfVariable* _perf_max_slow_refill_waste; |
|
226 |
PerfVariable* _perf_fast_refill_waste; |
|
227 |
PerfVariable* _perf_max_fast_refill_waste; |
|
228 |
PerfVariable* _perf_slow_allocations; |
|
229 |
PerfVariable* _perf_max_slow_allocations; |
|
230 |
||
231 |
AdaptiveWeightedAverage _allocating_threads_avg; |
|
232 |
||
233 |
public: |
|
234 |
GlobalTLABStats(); |
|
235 |
||
236 |
// Initialize all counters |
|
237 |
void initialize(); |
|
238 |
||
239 |
// Write all perf counters to the perf_counters |
|
240 |
void publish(); |
|
241 |
||
242 |
void print(); |
|
243 |
||
244 |
// Accessors |
|
245 |
unsigned allocating_threads_avg() { |
|
246 |
return MAX2((unsigned)(_allocating_threads_avg.average() + 0.5), 1U); |
|
247 |
} |
|
248 |
||
249 |
size_t allocation() { |
|
250 |
return _total_allocation; |
|
251 |
} |
|
252 |
||
253 |
// Update methods |
|
254 |
||
255 |
void update_allocating_threads() { |
|
256 |
_allocating_threads++; |
|
257 |
} |
|
258 |
void update_number_of_refills(unsigned value) { |
|
259 |
_total_refills += value; |
|
260 |
_max_refills = MAX2(_max_refills, value); |
|
261 |
} |
|
262 |
void update_allocation(size_t value) { |
|
263 |
_total_allocation += value; |
|
264 |
} |
|
265 |
void update_gc_waste(size_t value) { |
|
266 |
_total_gc_waste += value; |
|
267 |
_max_gc_waste = MAX2(_max_gc_waste, value); |
|
268 |
} |
|
269 |
void update_fast_refill_waste(size_t value) { |
|
270 |
_total_fast_refill_waste += value; |
|
271 |
_max_fast_refill_waste = MAX2(_max_fast_refill_waste, value); |
|
272 |
} |
|
273 |
void update_slow_refill_waste(size_t value) { |
|
274 |
_total_slow_refill_waste += value; |
|
275 |
_max_slow_refill_waste = MAX2(_max_slow_refill_waste, value); |
|
276 |
} |
|
277 |
void update_slow_allocations(unsigned value) { |
|
278 |
_total_slow_allocations += value; |
|
279 |
_max_slow_allocations = MAX2(_max_slow_allocations, value); |
|
280 |
} |
|
281 |
}; |
|
7397 | 282 |
|
30764 | 283 |
#endif // SHARE_VM_GC_SHARED_THREADLOCALALLOCBUFFER_HPP |