Avoid reallocating PLABs between GC phases in G1

XMLWordPrintable

    • Type: Enhancement
    • Resolution: Fixed
    • Priority: P4
    • 9
    • Affects Version/s: 9
    • Component/s: hotspot
    • gc
    • b81

        Currently G1 uses separate allocation buffers for the different gc phases (evacuation, soft reference processing): however, PLAB size is determined by overall allocation behavior. It is very expensive in terms of memory usage to size the buffers the same in phases that have a wildly different allocation behavior: evacuation typically allocates a lot, while other phases (soft reference processing) does not.

        This often wastes a lot of memory at the end of the phases that do not allocate a lot. Particularly in the soft-reference processing phase, very often only a few objects are kept alive, although G1 sizes the buffer to the same size as for the actual evacuation phase which has a lot more survivors.

        Fix this.

        One suggestion is to use per-thread single instances of G1ParGCAllocBuffers during the whole GC phase.

              Assignee:
              Thomas Schatzl
              Reporter:
              Thomas Schatzl
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: