Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8040162

Avoid reallocating PLABs between GC phases in G1

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P4 P4
    • 9
    • 9
    • 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.

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

                Created:
                Updated:
                Resolved: