hotspot/src/share/vm/gc_interface/collectedHeap.cpp
changeset 4571 80b553bddc26
parent 4030 4c471254865e
child 4636 90e004691873
equal deleted inserted replaced
4569:f372ea9e5ed4 4571:80b553bddc26
   272 
   272 
   273   if (words >= filler_array_min_size()) {
   273   if (words >= filler_array_min_size()) {
   274     fill_with_array(start, words);
   274     fill_with_array(start, words);
   275   } else if (words > 0) {
   275   } else if (words > 0) {
   276     assert(words == min_fill_size(), "unaligned size");
   276     assert(words == min_fill_size(), "unaligned size");
   277     post_allocation_setup_common(SystemDictionary::object_klass(), start,
   277     post_allocation_setup_common(SystemDictionary::Object_klass(), start,
   278                                  words);
   278                                  words);
   279   }
   279   }
   280 }
   280 }
   281 
   281 
   282 void CollectedHeap::fill_with_object(HeapWord* start, size_t words)
   282 void CollectedHeap::fill_with_object(HeapWord* start, size_t words)