--- old/src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp 2017-11-21 12:05:11.522582813 -0800 +++ new/src/hotspot/share/gc/shared/threadLocalAllocBuffer.hpp 2017-11-21 12:05:11.222583844 -0800 @@ -94,7 +94,6 @@ size_t remaining() { return end() == NULL ? 0 : pointer_delta(hard_end(), top()); } // Obtain the actual end of the TLAB. - HeapWord* hard_end(); void set_sample_end(); // Make parsable and release it. @@ -132,6 +131,7 @@ static size_t max_size_in_bytes() { return max_size() * BytesPerWord; } static void set_max_size(size_t max_size) { _max_size = max_size; } + HeapWord* hard_end(); HeapWord* start() const { return _start; } HeapWord* end() const { return _end; } HeapWord* top() const { return _top; }