--- old/src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp 2018-04-18 16:04:04.574405491 +0200 +++ new/src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp 2018-04-18 16:04:04.352395896 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -164,6 +164,13 @@ static size_t refill_waste_limit_increment() { return TLABWasteIncrement; } + template void addresses_do(T f) { + f(&_start); + f(&_top); + f(&_pf_top); + f(&_end); + } + // Code generation support static ByteSize start_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _start); } static ByteSize end_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _end ); }