Skip to content

Commit f07c266

Browse files
author
Ben Taylor
committedAug 7, 2024
8290966: G1: Record number of PLAB filled and number of direct allocations
Reviewed-by: shade Backport-of: 30205bb289e9b25d60474b24b891e15923071b5a
1 parent 7a53368 commit f07c266

File tree

9 files changed

+73
-22
lines changed

9 files changed

+73
-22
lines changed
 

‎src/hotspot/share/gc/g1/g1Allocator.cpp

+9-3
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ G1PLABAllocator::G1PLABAllocator(G1Allocator* allocator) :
295295
for (uint node_index = 0; node_index < length; node_index++) {
296296
_alloc_buffers[state][node_index] = new PLAB(_g1h->desired_plab_sz(state));
297297
}
298+
_num_plab_fills[state] = 0;
299+
_num_direct_allocations[state] = 0;
298300
}
299301
}
300302

@@ -327,6 +329,8 @@ HeapWord* G1PLABAllocator::allocate_direct_or_new_plab(G1HeapRegionAttr dest,
327329
PLAB* alloc_buf = alloc_buffer(dest, node_index);
328330
alloc_buf->retire();
329331

332+
_num_plab_fills[dest.type()]++;
333+
330334
size_t actual_plab_size = 0;
331335
HeapWord* buf = _allocator->par_allocate_during_gc(dest,
332336
required_in_plab,
@@ -335,15 +339,15 @@ HeapWord* G1PLABAllocator::allocate_direct_or_new_plab(G1HeapRegionAttr dest,
335339
node_index);
336340

337341
assert(buf == NULL || ((actual_plab_size >= required_in_plab) && (actual_plab_size <= plab_word_size)),
338-
"Requested at minimum " SIZE_FORMAT ", desired " SIZE_FORMAT " words, but got " SIZE_FORMAT " at " PTR_FORMAT,
342+
"Requested at minimum %zu, desired %zu words, but got %zu at " PTR_FORMAT,
339343
required_in_plab, plab_word_size, actual_plab_size, p2i(buf));
340344

341345
if (buf != NULL) {
342346
alloc_buf->set_buf(buf, actual_plab_size);
343347

344348
HeapWord* const obj = alloc_buf->allocate(word_sz);
345349
assert(obj != NULL, "PLAB should have been big enough, tried to allocate "
346-
SIZE_FORMAT " requiring " SIZE_FORMAT " PLAB size " SIZE_FORMAT,
350+
"%zu requiring %zu PLAB size %zu",
347351
word_sz, required_in_plab, plab_word_size);
348352
return obj;
349353
}
@@ -354,6 +358,7 @@ HeapWord* G1PLABAllocator::allocate_direct_or_new_plab(G1HeapRegionAttr dest,
354358
HeapWord* result = _allocator->par_allocate_during_gc(dest, word_sz, node_index);
355359
if (result != NULL) {
356360
_direct_allocated[dest.type()] += word_sz;
361+
_num_direct_allocations[dest.type()]++;
357362
}
358363
return result;
359364
}
@@ -371,8 +376,9 @@ void G1PLABAllocator::flush_and_retire_stats() {
371376
buf->flush_and_retire_stats(stats);
372377
}
373378
}
379+
stats->add_num_plab_filled(_num_plab_fills[state]);
374380
stats->add_direct_allocated(_direct_allocated[state]);
375-
_direct_allocated[state] = 0;
381+
stats->add_num_direct_allocated(_num_direct_allocations[state]);
376382
}
377383
}
378384

‎src/hotspot/share/gc/g1/g1Allocator.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,10 @@ class G1PLABAllocator : public CHeapObj<mtGC> {
161161
// Number of words allocated directly (not counting PLAB allocation).
162162
size_t _direct_allocated[G1HeapRegionAttr::Num];
163163

164+
// Number of PLAB refills experienced so far.
165+
size_t _num_plab_fills[G1HeapRegionAttr::Num];
166+
size_t _num_direct_allocations[G1HeapRegionAttr::Num];
167+
164168
void flush_and_retire_stats();
165169
inline PLAB* alloc_buffer(G1HeapRegionAttr dest, uint node_index) const;
166170
inline PLAB* alloc_buffer(region_type_t dest, uint node_index) const;

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2545,7 +2545,8 @@ G1HeapSummary G1CollectedHeap::create_g1_heap_summary() {
25452545
G1EvacSummary G1CollectedHeap::create_g1_evac_summary(G1EvacStats* stats) {
25462546
return G1EvacSummary(stats->allocated(), stats->wasted(), stats->undo_wasted(),
25472547
stats->unused(), stats->used(), stats->region_end_waste(),
2548-
stats->regions_filled(), stats->direct_allocated(),
2548+
stats->regions_filled(), stats->num_plab_filled(),
2549+
stats->direct_allocated(), stats->num_direct_allocated(),
25492550
stats->failure_used(), stats->failure_waste());
25502551
}
25512552

‎src/hotspot/share/gc/g1/g1EvacStats.cpp

+10-4
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,19 @@
3333
void G1EvacStats::log_plab_allocation() {
3434
PLABStats::log_plab_allocation();
3535
log_debug(gc, plab)("%s other allocation: "
36-
"region end waste: " SIZE_FORMAT "B, "
36+
"region end waste: %zuB, "
3737
"regions filled: %u, "
38-
"direct allocated: " SIZE_FORMAT "B, "
39-
"failure used: " SIZE_FORMAT "B, "
40-
"failure wasted: " SIZE_FORMAT "B",
38+
"num plab filled: %zu, "
39+
"direct allocated: %zuB, "
40+
"num direct allocated: %zu, "
41+
"failure used: %zuB, "
42+
"failure wasted: %zuB",
4143
_description,
4244
_region_end_waste * HeapWordSize,
4345
_regions_filled,
46+
_num_plab_filled,
4447
_direct_allocated * HeapWordSize,
48+
_num_direct_allocated,
4549
_failure_used * HeapWordSize,
4650
_failure_waste * HeapWordSize);
4751
}
@@ -94,7 +98,9 @@ G1EvacStats::G1EvacStats(const char* description, size_t default_per_thread_plab
9498
PLABStats(description, default_per_thread_plab_size, default_per_thread_plab_size * ParallelGCThreads, wt),
9599
_region_end_waste(0),
96100
_regions_filled(0),
101+
_num_plab_filled(0),
97102
_direct_allocated(0),
103+
_num_direct_allocated(0),
98104
_failure_used(0),
99105
_failure_waste(0) {
100106
}

‎src/hotspot/share/gc/g1/g1EvacStats.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ class G1EvacStats : public PLABStats {
3232
private:
3333
size_t _region_end_waste; // Number of words wasted due to skipping to the next region.
3434
uint _regions_filled; // Number of regions filled completely.
35+
size_t _num_plab_filled; // Number of PLABs filled and retired.
3536
size_t _direct_allocated; // Number of words allocated directly into the regions.
37+
size_t _num_direct_allocated; // Number of direct allocation attempts.
3638

3739
// Number of words in live objects remaining in regions that ultimately suffered an
3840
// evacuation failure. This is used in the regions when the regions are made old regions.
@@ -46,7 +48,9 @@ class G1EvacStats : public PLABStats {
4648
PLABStats::reset();
4749
_region_end_waste = 0;
4850
_regions_filled = 0;
51+
_num_plab_filled = 0;
4952
_direct_allocated = 0;
53+
_num_direct_allocated = 0;
5054
_failure_used = 0;
5155
_failure_waste = 0;
5256
}
@@ -61,15 +65,19 @@ class G1EvacStats : public PLABStats {
6165
~G1EvacStats();
6266

6367
uint regions_filled() const { return _regions_filled; }
68+
size_t num_plab_filled() const { return _num_plab_filled; }
6469
size_t region_end_waste() const { return _region_end_waste; }
6570
size_t direct_allocated() const { return _direct_allocated; }
71+
size_t num_direct_allocated() const { return _num_direct_allocated; }
6672

6773
// Amount of space in heapwords used in the failing regions when an evacuation failure happens.
6874
size_t failure_used() const { return _failure_used; }
6975
// Amount of space in heapwords wasted (unused) in the failing regions when an evacuation failure happens.
7076
size_t failure_waste() const { return _failure_waste; }
7177

78+
inline void add_num_plab_filled(size_t value);
7279
inline void add_direct_allocated(size_t value);
80+
inline void add_num_direct_allocated(size_t value);
7381
inline void add_region_end_waste(size_t value);
7482
inline void add_failure_used_and_waste(size_t used, size_t waste);
7583
};

‎src/hotspot/share/gc/g1/g1EvacStats.inline.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ inline void G1EvacStats::add_direct_allocated(size_t value) {
3333
Atomic::add(&_direct_allocated, value);
3434
}
3535

36+
inline void G1EvacStats::add_num_plab_filled(size_t value) {
37+
Atomic::add(&_num_plab_filled, value);
38+
}
39+
40+
inline void G1EvacStats::add_num_direct_allocated(size_t value) {
41+
Atomic::add(&_num_direct_allocated, value);
42+
}
43+
3644
inline void G1EvacStats::add_region_end_waste(size_t value) {
3745
Atomic::add(&_region_end_waste, value);
3846
Atomic::inc(&_regions_filled);

‎src/hotspot/share/gc/shared/gcHeapSummary.hpp

+20-5
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ class G1EvacSummary : public StackObj {
177177

178178
size_t _region_end_waste; // Number of words wasted due to skipping to the next region.
179179
uint _regions_filled; // Number of regions filled completely.
180+
size_t _num_plab_filled; // Number of PLABs refilled/retired.
180181
size_t _direct_allocated; // Number of words allocated directly into the regions.
182+
size_t _num_direct_allocated; // Number of direct allocations.
181183

182184
// Number of words in live objects remaining in regions that ultimately suffered an
183185
// evacuation failure. This is used in the regions when the regions are made old regions.
@@ -187,12 +189,23 @@ class G1EvacSummary : public StackObj {
187189
// end of regions.
188190
size_t _failure_waste;
189191
public:
190-
G1EvacSummary(size_t allocated, size_t wasted, size_t undo_wasted, size_t unused,
191-
size_t used, size_t region_end_waste, uint regions_filled, size_t direct_allocated,
192-
size_t failure_used, size_t failure_waste) :
192+
G1EvacSummary(size_t allocated,
193+
size_t wasted,
194+
size_t undo_wasted,
195+
size_t unused,
196+
size_t used,
197+
size_t region_end_waste,
198+
uint regions_filled,
199+
size_t num_plab_filled,
200+
size_t direct_allocated,
201+
size_t num_direct_allocated,
202+
size_t failure_used,
203+
size_t failure_waste) :
193204
_allocated(allocated), _wasted(wasted), _undo_wasted(undo_wasted), _unused(unused),
194-
_used(used), _region_end_waste(region_end_waste), _regions_filled(regions_filled),
195-
_direct_allocated(direct_allocated), _failure_used(failure_used), _failure_waste(failure_waste)
205+
_used(used), _region_end_waste(region_end_waste),
206+
_regions_filled(regions_filled), _num_plab_filled(num_plab_filled),
207+
_direct_allocated(direct_allocated),_num_direct_allocated(num_direct_allocated),
208+
_failure_used(failure_used), _failure_waste(failure_waste)
196209
{ }
197210

198211
size_t allocated() const { return _allocated; }
@@ -202,7 +215,9 @@ class G1EvacSummary : public StackObj {
202215
size_t used() const { return _used; }
203216
size_t region_end_waste() const { return _region_end_waste; }
204217
uint regions_filled() const { return _regions_filled; }
218+
size_t num_plab_filled() const { return _num_plab_filled; }
205219
size_t direct_allocated() const { return _direct_allocated; }
220+
size_t num_direct_allocated() const { return _num_direct_allocated; }
206221
size_t failure_used() const { return _failure_used; }
207222
size_t failure_waste() const { return _failure_waste; }
208223
};

‎src/hotspot/share/jfr/metadata/metadata.xml

+2
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,9 @@
350350
<Field type="ulong" contentType="bytes" name="undoWaste" label="Undo Wasted" description="Total memory wasted due to allocation undo within PLABs" />
351351
<Field type="ulong" contentType="bytes" name="regionEndWaste" label="Region End Wasted" description="Total memory wasted at the end of regions due to refill" />
352352
<Field type="uint" name="regionsRefilled" label="Region Refills" description="Number of regions refilled" />
353+
<Field type="ulong" name="numPlabsFilled" label="PLAB Fills" description="Number of PLABs filled" />
353354
<Field type="ulong" contentType="bytes" name="directAllocated" label="Allocated (direct)" description="Total memory allocated using direct allocation outside of PLABs" />
355+
<Field type="ulong" name="numDirectAllocated" label="Direct allocations" description="Number of direct allocations" />
354356
<Field type="ulong" contentType="bytes" name="failureUsed" label="Used (failure)" description="Total memory occupied by objects in regions where evacuation failed" />
355357
<Field type="ulong" contentType="bytes" name="failureWaste" label="Wasted (failure)" description="Total memory left unused in regions where evacuation failed" />
356358
</Type>

‎test/hotspot/jtreg/gc/g1/plab/lib/LogParser.java

+10-9
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
*
3838
* Typical GC log with PLAB statistics (options - -Xlog:gc=debug,gc+plab=debug) looks like:
3939
*
40-
* [0.330s][debug][gc,plab ] GC(0) Young PLAB allocation: allocated: 1825632B, wasted: 29424B, unused: 2320B, used: 1793888B, undo waste: 0B,
41-
* [0.330s][debug][gc,plab ] GC(0) Young other allocation: region end waste: 0B, regions filled: 2, direct allocated: 271520B, failure used: 0B, failure wasted: 0B
42-
* [0.330s][debug][gc,plab ] GC(0) Young sizing: calculated: 358776B, actual: 358776B
43-
* [0.330s][debug][gc,plab ] GC(0) Old PLAB allocation: allocated: 427248B, wasted: 592B, unused: 368584B, used: 58072B, undo waste: 0B,
44-
* [0.330s][debug][gc,plab ] GC(0) Old other allocation: region end waste: 0B, regions filled: 1, direct allocated: 41704B, failure used: 0B, failure wasted: 0B
45-
* [0.330s][debug][gc,plab ] GC(0) Old sizing: calculated: 11608B, actual: 11608B
40+
* [0.192s][debug][gc,plab ] GC(0) Young PLAB allocation: allocated: 2867184B, wasted: 656B, unused: 252896B, used: 2613632B, undo waste: 0B,
41+
* [0.192s][debug][gc,plab ] GC(0) Young other allocation: region end waste: 0B, regions filled: 3, num plab filled: 30, direct allocated: 16400B, num direct allocated: 1, failure used: 0B, failure wasted: 0B
42+
* [0.192s][debug][gc,plab ] GC(0) Young sizing: calculated: 522720B, actual: 522720B
43+
* [0.192s][debug][gc,plab ] GC(0) Old PLAB allocation: allocated: 0B, wasted: 0B, unused: 0B, used: 0B, undo waste: 0B,
44+
* [0.192s][debug][gc,plab ] GC(0) Old other allocation: region end waste: 0B, regions filled: 0, num plab filled: 0, direct allocated: 0B, num direct allocated: 0, failure used: 0B, failure wasted: 0B
45+
* [0.192s][debug][gc,plab ] GC(0) Old sizing: calculated: 0B, actual: 2064B
4646
*/
4747
final public class LogParser {
4848

@@ -62,7 +62,8 @@ public static enum ReportType {
6262
// GC ID
6363
private static final Pattern GC_ID_PATTERN = Pattern.compile("\\[gc,plab\\s*\\] GC\\((\\d+)\\)");
6464
// Pattern for extraction pair <name>: <numeric value>
65-
private static final Pattern PAIRS_PATTERN = Pattern.compile("\\w* \\w+:\\s+\\d+");
65+
// This is a non-zero set of words separated by spaces followed by ":" and a value.
66+
private static final Pattern PAIRS_PATTERN = Pattern.compile("(?:\\w+ )*\\w+:\\s+\\d+");
6667

6768
/**
6869
* Construct LogParser object, parse log file with PLAB statistics and store it into report.
@@ -119,7 +120,7 @@ private PlabReport parseLines() throws NumberFormatException {
119120
do {
120121
String pair = matcher.group();
121122
String[] nameValue = pair.replaceAll(": ", ":").split(":");
122-
plabInfo.put(nameValue[0].trim(), Long.parseLong(nameValue[1]));
123+
plabInfo.put(nameValue[0], Long.parseLong(nameValue[1]));
123124
} while (matcher.find());
124125
}
125126
}
@@ -194,7 +195,7 @@ private Map<Long, PlabInfo> getSpecifiedStats(List<Long> gcIds, LogParser.Report
194195
getEntries().entryStream()
195196
.filter(gcLogItem -> extractId == gcIds.contains(gcLogItem.getKey()))
196197
.collect(Collectors.toMap(gcLogItem -> gcLogItem.getKey(),
197-
gcLogItem -> gcLogItem.getValue().get(type).filter(fieldNames)
198+
gcLogItem -> gcLogItem.getValue().get(type).filter(fieldNames)
198199
)
199200
)
200201
);

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Aug 7, 2024

@openjdk-notifier[bot]
Please sign in to comment.