< prev index next >

src/share/vm/gc/g1/g1CollectedHeap.inline.hpp

Print this page

        

@@ -63,12 +63,12 @@
 }
 
 // Return the region with the given index. It assumes the index is valid.
 inline HeapRegion* G1CollectedHeap::region_at(uint index) const { return _hrm.at(index); }
 
-inline HeapRegion* G1CollectedHeap::next_humongous_region(HeapRegion* hr) const {
-  return _hrm.next_humongous_region(hr);
+inline HeapRegion* G1CollectedHeap::next_region_in_humongous(HeapRegion* hr) const {
+  return _hrm.next_region_in_humongous(hr);
 }
 
 inline uint G1CollectedHeap::addr_to_region(HeapWord* addr) const {
   assert(is_in_reserved(addr),
          "Cannot calculate region index for address " PTR_FORMAT " that is outside of the heap [" PTR_FORMAT ", " PTR_FORMAT ")",
< prev index next >