annotate src/share/vm/memory/threadLocalAllocBuffer.hpp @ 46:8b6e49187640

Merge
author rasbold
date Thu, 13 Mar 2008 05:40:44 -0700
parents a61af66fc99e
children 9e321dcfa5b7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class GlobalTLABStats;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // ThreadLocalAllocBuffer: a descriptor for thread-local storage used by
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // the threads for allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // It is thread-private at any time, but maybe multiplexed over
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // time across multiple threads. The park()/unpark() pair is
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // used to make it avaiable for such multiplexing.
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ThreadLocalAllocBuffer: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 HeapWord* _start; // address of TLAB
a61af66fc99e Initial load
duke
parents:
diff changeset
36 HeapWord* _top; // address after last allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
37 HeapWord* _pf_top; // allocation prefetch watermark
a61af66fc99e Initial load
duke
parents:
diff changeset
38 HeapWord* _end; // allocation end (excluding alignment_reserve)
a61af66fc99e Initial load
duke
parents:
diff changeset
39 size_t _desired_size; // desired size (including alignment_reserve)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 size_t _refill_waste_limit; // hold onto tlab if free() is larger than this
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static unsigned _target_refills; // expected number of refills between GCs
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 unsigned _number_of_refills;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 unsigned _fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 unsigned _slow_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 unsigned _gc_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 unsigned _slow_allocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 AdaptiveWeightedAverage _allocation_fraction; // fraction of eden allocated in tlabs
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 void accumulate_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void initialize_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 void set_start(HeapWord* start) { _start = start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 void set_end(HeapWord* end) { _end = end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void set_top(HeapWord* top) { _top = top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void set_pf_top(HeapWord* pf_top) { _pf_top = pf_top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void set_desired_size(size_t desired_size) { _desired_size = desired_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void set_refill_waste_limit(size_t waste) { _refill_waste_limit = waste; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 size_t initial_refill_waste_limit() { return desired_size() / TLABRefillWasteFraction; }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static int target_refills() { return _target_refills; }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 size_t initial_desired_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 size_t remaining() const { return end() == NULL ? 0 : pointer_delta(hard_end(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Make parsable and release it.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Resize based on amount of allocation, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void resize();
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void invariants() const { assert(top() >= start() && top() <= end(), "invalid tlab"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void initialize(HeapWord* start, HeapWord* top, HeapWord* end);
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void print_stats(const char* tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 Thread* myThread();
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int number_of_refills() const { return _number_of_refills; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 int fast_refill_waste() const { return _fast_refill_waste; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int slow_refill_waste() const { return _slow_refill_waste; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 int gc_waste() const { return _gc_waste; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int slow_allocations() const { return _slow_allocations; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static GlobalTLABStats* _global_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static GlobalTLABStats* global_stats() { return _global_stats; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 ThreadLocalAllocBuffer() : _allocation_fraction(TLABAllocationWeight) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // do nothing. tlabs must be inited by initialize() calls
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 static const size_t min_size() { return align_object_size(MinTLABSize / HeapWordSize); }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 static const size_t max_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 HeapWord* start() const { return _start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 HeapWord* end() const { return _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 HeapWord* hard_end() const { return _end + alignment_reserve(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 HeapWord* top() const { return _top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 HeapWord* pf_top() const { return _pf_top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 size_t desired_size() const { return _desired_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 size_t free() const { return pointer_delta(end(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Don't discard tlab if remaining space is larger than this.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 size_t refill_waste_limit() const { return _refill_waste_limit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Allocate size HeapWords. The memory is NOT initialized to zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 inline HeapWord* allocate(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static size_t alignment_reserve() { return align_object_size(typeArrayOopDesc::header_size(T_INT)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 static size_t alignment_reserve_in_bytes() { return alignment_reserve() * HeapWordSize; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Return tlab size or remaining space in eden such that the
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // space is large enough to hold obj_size and necessary fill space.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Otherwise return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 inline size_t compute_size(size_t obj_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Record slow allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
123 inline void record_slow_allocation(size_t obj_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Initialization at startup
a61af66fc99e Initial load
duke
parents:
diff changeset
126 static void startup_initialization();
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Make an in-use tlab parsable, optionally also retiring it.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void make_parsable(bool retire);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Retire in-use tlab before allocation of a new tlab
a61af66fc99e Initial load
duke
parents:
diff changeset
132 void clear_before_allocation();
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Accumulate statistics across all tlabs before gc
a61af66fc99e Initial load
duke
parents:
diff changeset
135 static void accumulate_statistics_before_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Resize tlabs for all threads
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static void resize_all_tlabs();
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void fill(HeapWord* start, HeapWord* top, size_t new_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static size_t refill_waste_limit_increment() { return TLABWasteIncrement; }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Code generation support
a61af66fc99e Initial load
duke
parents:
diff changeset
146 static ByteSize start_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _start); }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static ByteSize end_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _end ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 static ByteSize top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _top ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 static ByteSize pf_top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _pf_top ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 static ByteSize size_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _desired_size ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static ByteSize refill_waste_limit_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _refill_waste_limit ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 static ByteSize number_of_refills_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _number_of_refills ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 static ByteSize fast_refill_waste_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _fast_refill_waste ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 static ByteSize slow_allocations_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _slow_allocations ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 };
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 class GlobalTLABStats: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // Accumulate perfdata in private variables because
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // PerfData should be write-only for security reasons
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // (see perfData.hpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
166 unsigned _allocating_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 unsigned _total_refills;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 unsigned _max_refills;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 size_t _total_allocation;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 size_t _total_gc_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 size_t _max_gc_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 size_t _total_slow_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 size_t _max_slow_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 size_t _total_fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 size_t _max_fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 unsigned _total_slow_allocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 unsigned _max_slow_allocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 PerfVariable* _perf_allocating_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 PerfVariable* _perf_total_refills;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 PerfVariable* _perf_max_refills;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 PerfVariable* _perf_allocation;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 PerfVariable* _perf_gc_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 PerfVariable* _perf_max_gc_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 PerfVariable* _perf_slow_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 PerfVariable* _perf_max_slow_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 PerfVariable* _perf_fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 PerfVariable* _perf_max_fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 PerfVariable* _perf_slow_allocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 PerfVariable* _perf_max_slow_allocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 AdaptiveWeightedAverage _allocating_threads_avg;
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
195 GlobalTLABStats();
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // Initialize all counters
a61af66fc99e Initial load
duke
parents:
diff changeset
198 void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Write all perf counters to the perf_counters
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void publish();
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
206 unsigned allocating_threads_avg() {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return MAX2((unsigned)(_allocating_threads_avg.average() + 0.5), 1U);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 size_t allocation() {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return _total_allocation;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Update methods
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 void update_allocating_threads() {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _allocating_threads++;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 void update_number_of_refills(unsigned value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 _total_refills += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 _max_refills = MAX2(_max_refills, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void update_allocation(size_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _total_allocation += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void update_gc_waste(size_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _total_gc_waste += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _max_gc_waste = MAX2(_max_gc_waste, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void update_fast_refill_waste(size_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _total_fast_refill_waste += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _max_fast_refill_waste = MAX2(_max_fast_refill_waste, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void update_slow_refill_waste(size_t value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 _total_slow_refill_waste += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _max_slow_refill_waste = MAX2(_max_slow_refill_waste, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 void update_slow_allocations(unsigned value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 _total_slow_allocations += value;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _max_slow_allocations = MAX2(_max_slow_allocations, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 };