RFR: Usage tracking cleanup
William Kemper
wkemper at openjdk.org
Tue Apr 18 00:17:17 UTC 2023
On Mon, 17 Apr 2023 23:18:54 GMT, Kelvin Nilsen <kdnilsen at openjdk.org> wrote:
>> There are many nuances to tracing memory utilization. Shenandoah track's usage, waste by humongous objects, padding for promotion LABs alignment and all this is also tracked by generation, the heap and feeds into the heuristics and the pacer. The code to update all of these values and route them to the right places was spread across the allocation call stack. This change consolidates all of the logic into one method, invoked near the end of the allocation.
>
> src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp line 757:
>
>> 755: if (wasted_bytes > 0) {
>> 756: if (req.actual_size() > ShenandoahHeapRegion::humongous_threshold_words()) {
>> 757: // generation->increase_humongous_waste(wasted_bytes);
>
> why is this commented out?
The humongous waste tracking isn't in `master` yet - but soon will be after I finish testing some requested changes.
-------------
PR Review Comment: https://git.openjdk.org/shenandoah/pull/260#discussion_r1169370064
More information about the shenandoah-dev
mailing list