RFR: 8202140: TLAB logging is not correct for G1

Thomas Schatzl thomas.schatzl at oracle.com
Mon Apr 23 13:42:12 UTC 2018


Hi,

On Mon, 2018-04-23 at 14:57 +0200, Stefan Johansson wrote:
> Hi,
> 
> Please review this small change to make TLAB logging more correct, 
> especially for collectors using regions.
> 
> JBS: https://bugs.openjdk.java.net/browse/JDK-8202140
> Webrev: http://cr.openjdk.java.net/~sjohanss/8202140/00/
> 
> Summary
> The current TLAB logging is not completely correct for G1 and other 
> collectors using regions. The logging in 
> ThreadLocalAllocBuffer::print_stats() expects that the allocated size
> is: size_t alloc = _number_of_refills * _desired_size;
> 
> For each region in G1 the last TLAB might be smaller then
> _desired_size and therefor we need to add a separate value to account
> the actual allocated size.

  looks good to me.

Maybe please fix the indentation of
ThreadLocalAllocBuffer::initialize_statistics().

Thanks,
  Thomas



More information about the hotspot-gc-dev mailing list