< prev index next >

src/share/vm/gc/g1/g1Allocator.cpp

Print this page

        

@@ -454,11 +454,11 @@
         newtop = (HeapWord*)align_pointer_up(currtop + CollectedHeap::min_fill_size(),
                                              end_alignment_in_bytes);
         fill_size = pointer_delta(newtop, currtop);
       }
       HeapWord* fill = archive_mem_allocate(fill_size);
-      CollectedHeap::fill_with_objects(fill, fill_size);
+      G1CollectedHeap::fill_with_non_humongous_objects(fill, fill_size);
     }
   }
 
   // Loop through the allocated regions, and create MemRegions summarizing
   // the allocated address range, combining contiguous ranges. Add the
< prev index next >