comparison src/share/vm/gc_interface/collectedHeap.cpp @ 1142:4ce7240d622c

6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti
author never
date Wed, 06 Jan 2010 14:22:39 -0800
parents 39b01ab7035a
children 2dd52dea6d28
comparison
equal deleted inserted replaced
1140:1f6d42899c3a 1142:4ce7240d622c
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)