--- old/src/share/vm/gc/g1/heapRegionManager.inline.hpp 2015-11-05 13:45:02.674435183 +0100 +++ new/src/share/vm/gc/g1/heapRegionManager.inline.hpp 2015-11-05 13:45:02.578434707 +0100 @@ -47,10 +47,10 @@ return hr; } -inline HeapRegion* HeapRegionManager::next_humongous_region(HeapRegion* hr) const { +inline HeapRegion* HeapRegionManager::next_region_in_humongous(HeapRegion* hr) const { uint index = hr->hrm_index(); assert(is_available(index), "pre-condition"); - assert(hr->is_humongous(), "next_humongous_region should only be called for a humongous region."); + assert(hr->is_humongous(), "next_region_in_humongous should only be called for a humongous region."); index++; if (index < max_length() && is_available(index) && at(index)->is_continues_humongous()) { return at(index);