annotate src/share/vm/memory/threadLocalAllocBuffer.cpp @ 17595:3eed8712d410

Merge with jdk8u11-b12
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 12:09:28 +0200
parents a29e6e7b7a86
children 52b4284cb496
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2011, 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: 1165
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1165
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: 1165
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 "memory/genCollectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/threadLocalAllocBuffer.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "oops/oop.inline.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 3960
diff changeset
31 #include "runtime/thread.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "utilities/copy.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 // Thread-Local Edens support
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // static member initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
37 unsigned ThreadLocalAllocBuffer::_target_refills = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 GlobalTLABStats* ThreadLocalAllocBuffer::_global_stats = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void ThreadLocalAllocBuffer::clear_before_allocation() {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _slow_refill_waste += (unsigned)remaining();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 make_parsable(true); // also retire the TLAB
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void ThreadLocalAllocBuffer::accumulate_statistics_before_gc() {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 global_stats()->initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
47
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
48 for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 thread->tlab().accumulate_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
50 thread->tlab().initialize_statistics();
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
51 #ifdef GRAAL
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
52 for (jint i = 0; i < thread->get_gpu_hsail_tlabs_count(); i++) {
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
53 thread->get_gpu_hsail_tlab_at(i)->accumulate_statistics();
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
54 thread->get_gpu_hsail_tlab_at(i)->initialize_statistics();
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
55 }
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
56 #endif
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
57
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Publish new stats if some allocation occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (global_stats()->allocation() != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 global_stats()->publish();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (PrintTLAB) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 global_stats()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void ThreadLocalAllocBuffer::accumulate_statistics() {
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
70 size_t capacity = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
71 size_t unused = Universe::heap()->unsafe_max_tlab_alloc(myThread()) / HeapWordSize;
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
72 size_t used = capacity - unused;
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
73
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
74 // Update allocation history if a reasonable amount of eden was allocated.
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
75 bool update_allocation_history = used > 0.5 * capacity;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _gc_waste += (unsigned)remaining();
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (PrintTLAB && (_number_of_refills > 0 || Verbose)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 print_stats("gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (_number_of_refills > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (update_allocation_history) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Average the fraction of eden allocated in a tlab by this
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // thread for use in the next resize operation.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // _gc_waste is not subtracted because it's included in
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // "used".
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
90 size_t allocation = _number_of_refills * desired_size();
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
91 double alloc_frac = allocation / (double) used;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 _allocation_fraction.sample(alloc_frac);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 global_stats()->update_allocating_threads();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 global_stats()->update_number_of_refills(_number_of_refills);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 global_stats()->update_allocation(_number_of_refills * desired_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
97 global_stats()->update_gc_waste(_gc_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 global_stats()->update_slow_refill_waste(_slow_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 global_stats()->update_fast_refill_waste(_fast_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 } else {
7236
579ee1eb0f30 fixed overly strong assertion
Doug Simon <doug.simon@oracle.com>
parents: 7180
diff changeset
102 // (ds) _gc_waste can be non-zero (see above) even if _number_of_refills is 0
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 assert(_number_of_refills == 0 && _fast_refill_waste == 0 &&
7236
579ee1eb0f30 fixed overly strong assertion
Doug Simon <doug.simon@oracle.com>
parents: 7180
diff changeset
104 _slow_refill_waste == 0/* && _gc_waste == 0*/,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105 "tlab stats == 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 global_stats()->update_slow_allocations(_slow_allocations);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Fills the current tlab with a dummy filler array to create
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // an illusion of a contiguous Eden and optionally retires the tlab.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Waste accounting should be done in caller as appropriate; see,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // for example, clear_before_allocation().
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void ThreadLocalAllocBuffer::make_parsable(bool retire) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 if (end() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 invariants();
2100
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
117
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
118 if (retire) {
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
119 myThread()->incr_allocated_bytes(used_bytes());
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
120 }
b1a2afa37ec4 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 1972
diff changeset
121
1165
2dd52dea6d28 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 579
diff changeset
122 CollectedHeap::fill_with_object(top(), hard_end(), retire);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (retire || ZeroTLAB) { // "Reset" the TLAB
a61af66fc99e Initial load
duke
parents:
diff changeset
125 set_start(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 set_top(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 set_pf_top(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 set_end(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131 assert(!(retire || ZeroTLAB) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
132 (start() == NULL && end() == NULL && top() == NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
133 "TLAB must be reset");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 void ThreadLocalAllocBuffer::resize_all_tlabs() {
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
137 for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
138 thread->tlab().resize();
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
139 #ifdef GRAAL
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
140 for (jint i = 0; i < thread->get_gpu_hsail_tlabs_count(); i++) {
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
141 thread->get_gpu_hsail_tlab_at(i)->resize();
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
142 }
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
143 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 void ThreadLocalAllocBuffer::resize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
148
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
149 if (ResizeTLAB) {
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
150 // Compute the next tlab size using expected allocation amount
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
151 size_t alloc = (size_t)(_allocation_fraction.average() *
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
152 (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize));
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
153 size_t new_size = alloc / _target_refills;
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
154
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
155 new_size = MIN2(MAX2(new_size, min_size()), max_size());
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
156
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
157 size_t aligned_new_size = align_object_size(new_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
159 if (PrintTLAB && Verbose) {
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
160 gclog_or_tty->print("TLAB new size: thread: " INTPTR_FORMAT " [id: %2d]"
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
161 " refills %d alloc: %8.6f desired_size: " SIZE_FORMAT " -> " SIZE_FORMAT "\n",
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
162 myThread(), myThread()->osthread()->thread_id(),
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
163 _target_refills, _allocation_fraction.average(), desired_size(), aligned_new_size);
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
164 }
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
165 set_desired_size(aligned_new_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
167 set_refill_waste_limit(initial_refill_waste_limit());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void ThreadLocalAllocBuffer::initialize_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 _number_of_refills = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 _fast_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 _slow_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _gc_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 _slow_allocations = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void ThreadLocalAllocBuffer::fill(HeapWord* start,
a61af66fc99e Initial load
duke
parents:
diff changeset
180 HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
181 size_t new_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _number_of_refills++;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 if (PrintTLAB && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 print_stats("fill");
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 assert(top <= start + new_size - alignment_reserve(), "size too small");
a61af66fc99e Initial load
duke
parents:
diff changeset
187 initialize(start, top, start + new_size - alignment_reserve());
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Reset amount of internal fragmentation
a61af66fc99e Initial load
duke
parents:
diff changeset
190 set_refill_waste_limit(initial_refill_waste_limit());
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void ThreadLocalAllocBuffer::initialize(HeapWord* start,
a61af66fc99e Initial load
duke
parents:
diff changeset
194 HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
195 HeapWord* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 set_start(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 set_top(top);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 set_pf_top(top);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 set_end(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 invariants();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
203 void ThreadLocalAllocBuffer::initialize(Thread* owning_thread) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 initialize(NULL, // start
a61af66fc99e Initial load
duke
parents:
diff changeset
205 NULL, // top
a61af66fc99e Initial load
duke
parents:
diff changeset
206 NULL); // end
a61af66fc99e Initial load
duke
parents:
diff changeset
207
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
208 _owning_thread = owning_thread;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
209 set_desired_size(initial_desired_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Following check is needed because at startup the main (primordial)
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // thread is initialized before the heap is. The initialization for
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // this thread is redone in startup_initialization below.
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (Universe::heap() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 size_t capacity = Universe::heap()->tlab_capacity(myThread()) / HeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 double alloc_frac = desired_size() * target_refills() / (double) capacity;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _allocation_fraction.sample(alloc_frac);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 set_refill_waste_limit(initial_refill_waste_limit());
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 initialize_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 void ThreadLocalAllocBuffer::startup_initialization() {
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // Assuming each thread's active tlab is, on average,
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // 1/2 full at a GC
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _target_refills = 100 / (2 * TLABWasteTargetPercent);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 _target_refills = MAX2(_target_refills, (unsigned)1U);
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _global_stats = new GlobalTLABStats();
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // During jvm startup, the main (primordial) thread is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // before the heap is initialized. So reinitialize it now.
a61af66fc99e Initial load
duke
parents:
diff changeset
236 guarantee(Thread::current()->is_Java_thread(), "tlab initialization thread not Java thread");
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
237 Thread::current()->tlab().initialize(Thread::current());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if (PrintTLAB && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 gclog_or_tty->print("TLAB min: " SIZE_FORMAT " initial: " SIZE_FORMAT " max: " SIZE_FORMAT "\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
241 min_size(), Thread::current()->tlab().initial_desired_size(), max_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 size_t ThreadLocalAllocBuffer::initial_desired_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 size_t init_sz;
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if (TLABSize > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 init_sz = MIN2(TLABSize / HeapWordSize, max_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
250 } else if (global_stats() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // Startup issue - main thread initialized before heap initialized.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 init_sz = min_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
253 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Initial size is a function of the average number of allocating threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 unsigned nof_threads = global_stats()->allocating_threads_avg();
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 init_sz = (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize) /
a61af66fc99e Initial load
duke
parents:
diff changeset
258 (nof_threads * target_refills());
a61af66fc99e Initial load
duke
parents:
diff changeset
259 init_sz = align_object_size(init_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 init_sz = MIN2(MAX2(init_sz, min_size()), max_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 return init_sz;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
265 const size_t ThreadLocalAllocBuffer::max_size() {
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
266
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
267 // TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE].
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
268 // This restriction could be removed by enabling filling with multiple arrays.
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
269 // If we compute that the reasonable way as
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
270 // header_size + ((sizeof(jint) * max_jint) / HeapWordSize)
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
271 // we'll overflow on the multiply, so we do the divide first.
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
272 // We actually lose a little by dividing first,
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
273 // but that just makes the TLAB somewhat smaller than the biggest array,
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
274 // which is fine, since we'll be able to fill that.
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
275
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
276 size_t unaligned_max_size = typeArrayOopDesc::header_size(T_INT) +
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
277 sizeof(jint) *
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
278 ((juint) max_jint / (size_t) HeapWordSize);
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
279 return align_size_down(unaligned_max_size, MinObjAlignment);
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
280 }
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
281
0
a61af66fc99e Initial load
duke
parents:
diff changeset
282 void ThreadLocalAllocBuffer::print_stats(const char* tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 Thread* thrd = myThread();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 size_t waste = _gc_waste + _slow_refill_waste + _fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 size_t alloc = _number_of_refills * _desired_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 double waste_percent = alloc == 0 ? 0.0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
287 100.0 * waste / alloc;
14909
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
288 size_t tlab_used = Universe::heap()->tlab_capacity(thrd) -
4ca6dc0799b6 Backout jdk9 merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14518
diff changeset
289 Universe::heap()->unsafe_max_tlab_alloc(thrd);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290 gclog_or_tty->print("TLAB: %s thread: " INTPTR_FORMAT " [id: %2d]"
a61af66fc99e Initial load
duke
parents:
diff changeset
291 " desired_size: " SIZE_FORMAT "KB"
a61af66fc99e Initial load
duke
parents:
diff changeset
292 " slow allocs: %d refill waste: " SIZE_FORMAT "B"
a61af66fc99e Initial load
duke
parents:
diff changeset
293 " alloc:%8.5f %8.0fKB refills: %d waste %4.1f%% gc: %dB"
a61af66fc99e Initial load
duke
parents:
diff changeset
294 " slow: %dB fast: %dB\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
295 tag, thrd, thrd->osthread()->thread_id(),
a61af66fc99e Initial load
duke
parents:
diff changeset
296 _desired_size / (K / HeapWordSize),
a61af66fc99e Initial load
duke
parents:
diff changeset
297 _slow_allocations, _refill_waste_limit * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
298 _allocation_fraction.average(),
a61af66fc99e Initial load
duke
parents:
diff changeset
299 _allocation_fraction.average() * tlab_used / K,
a61af66fc99e Initial load
duke
parents:
diff changeset
300 _number_of_refills, waste_percent,
a61af66fc99e Initial load
duke
parents:
diff changeset
301 _gc_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
302 _slow_refill_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
303 _fast_refill_waste * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 void ThreadLocalAllocBuffer::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 HeapWord* p = start();
a61af66fc99e Initial load
duke
parents:
diff changeset
308 HeapWord* t = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
309 HeapWord* prev_p = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
310 while (p < t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 oop(p)->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
312 prev_p = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 p += oop(p)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 guarantee(p == top(), "end of last object must match end of space");
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 Thread* ThreadLocalAllocBuffer::myThread() {
16795
a29e6e7b7a86 Replace hsail donor threads with hsail tlabs
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 14909
diff changeset
319 return _owning_thread;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 GlobalTLABStats::GlobalTLABStats() :
a61af66fc99e Initial load
duke
parents:
diff changeset
324 _allocating_threads_avg(TLABAllocationWeight) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 _allocating_threads_avg.sample(1); // One allocating thread at startup
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
333 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 char* cname = PerfDataManager::counter_name("tlab", "allocThreads");
a61af66fc99e Initial load
duke
parents:
diff changeset
336 _perf_allocating_threads =
a61af66fc99e Initial load
duke
parents:
diff changeset
337 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 cname = PerfDataManager::counter_name("tlab", "fills");
a61af66fc99e Initial load
duke
parents:
diff changeset
340 _perf_total_refills =
a61af66fc99e Initial load
duke
parents:
diff changeset
341 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 cname = PerfDataManager::counter_name("tlab", "maxFills");
a61af66fc99e Initial load
duke
parents:
diff changeset
344 _perf_max_refills =
a61af66fc99e Initial load
duke
parents:
diff changeset
345 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 cname = PerfDataManager::counter_name("tlab", "alloc");
a61af66fc99e Initial load
duke
parents:
diff changeset
348 _perf_allocation =
a61af66fc99e Initial load
duke
parents:
diff changeset
349 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 cname = PerfDataManager::counter_name("tlab", "gcWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _perf_gc_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
353 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 cname = PerfDataManager::counter_name("tlab", "maxGcWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
356 _perf_max_gc_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
357 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 cname = PerfDataManager::counter_name("tlab", "slowWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
360 _perf_slow_refill_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
361 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 cname = PerfDataManager::counter_name("tlab", "maxSlowWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
364 _perf_max_slow_refill_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
365 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 cname = PerfDataManager::counter_name("tlab", "fastWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
368 _perf_fast_refill_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
369 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 cname = PerfDataManager::counter_name("tlab", "maxFastWaste");
a61af66fc99e Initial load
duke
parents:
diff changeset
372 _perf_max_fast_refill_waste =
a61af66fc99e Initial load
duke
parents:
diff changeset
373 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_Bytes, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 cname = PerfDataManager::counter_name("tlab", "slowAlloc");
a61af66fc99e Initial load
duke
parents:
diff changeset
376 _perf_slow_allocations =
a61af66fc99e Initial load
duke
parents:
diff changeset
377 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 cname = PerfDataManager::counter_name("tlab", "maxSlowAlloc");
a61af66fc99e Initial load
duke
parents:
diff changeset
380 _perf_max_slow_allocations =
a61af66fc99e Initial load
duke
parents:
diff changeset
381 PerfDataManager::create_variable(SUN_GC, cname, PerfData::U_None, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 void GlobalTLABStats::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // Clear counters summarizing info from all threads
a61af66fc99e Initial load
duke
parents:
diff changeset
387 _allocating_threads = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 _total_refills = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 _max_refills = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 _total_allocation = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 _total_gc_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 _max_gc_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 _total_slow_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
394 _max_slow_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 _total_fast_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
396 _max_fast_refill_waste = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 _total_slow_allocations = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 _max_slow_allocations = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 void GlobalTLABStats::publish() {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 _allocating_threads_avg.sample(_allocating_threads);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 _perf_allocating_threads ->set_value(_allocating_threads);
a61af66fc99e Initial load
duke
parents:
diff changeset
405 _perf_total_refills ->set_value(_total_refills);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 _perf_max_refills ->set_value(_max_refills);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 _perf_allocation ->set_value(_total_allocation);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _perf_gc_waste ->set_value(_total_gc_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 _perf_max_gc_waste ->set_value(_max_gc_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
410 _perf_slow_refill_waste ->set_value(_total_slow_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 _perf_max_slow_refill_waste->set_value(_max_slow_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 _perf_fast_refill_waste ->set_value(_total_fast_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
413 _perf_max_fast_refill_waste->set_value(_max_fast_refill_waste);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 _perf_slow_allocations ->set_value(_total_slow_allocations);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 _perf_max_slow_allocations ->set_value(_max_slow_allocations);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 void GlobalTLABStats::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 size_t waste = _total_gc_waste + _total_slow_refill_waste + _total_fast_refill_waste;
a61af66fc99e Initial load
duke
parents:
diff changeset
421 double waste_percent = _total_allocation == 0 ? 0.0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
422 100.0 * waste / _total_allocation;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 gclog_or_tty->print("TLAB totals: thrds: %d refills: %d max: %d"
a61af66fc99e Initial load
duke
parents:
diff changeset
424 " slow allocs: %d max %d waste: %4.1f%%"
a61af66fc99e Initial load
duke
parents:
diff changeset
425 " gc: " SIZE_FORMAT "B max: " SIZE_FORMAT "B"
a61af66fc99e Initial load
duke
parents:
diff changeset
426 " slow: " SIZE_FORMAT "B max: " SIZE_FORMAT "B"
a61af66fc99e Initial load
duke
parents:
diff changeset
427 " fast: " SIZE_FORMAT "B max: " SIZE_FORMAT "B\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
428 _allocating_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
429 _total_refills, _max_refills,
a61af66fc99e Initial load
duke
parents:
diff changeset
430 _total_slow_allocations, _max_slow_allocations,
a61af66fc99e Initial load
duke
parents:
diff changeset
431 waste_percent,
a61af66fc99e Initial load
duke
parents:
diff changeset
432 _total_gc_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
433 _max_gc_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
434 _total_slow_refill_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
435 _max_slow_refill_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
436 _total_fast_refill_waste * HeapWordSize,
a61af66fc99e Initial load
duke
parents:
diff changeset
437 _max_fast_refill_waste * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }