src/share/vm/gc_interface/collectedHeap.cpp

Tue, 27 Mar 2012 10:29:59 +0200

author
brutisso
date
Tue, 27 Mar 2012 10:29:59 +0200
changeset 3675
9a9bb0010c91
parent 3668
cc74fa5a91a9
child 4037
da91efe96a93
permissions
-rw-r--r--

7156764: Remove unused size parameter from some CollectedHeap methods
Summary: Some minor cleanups
Reviewed-by: tonyp, jwilhelm

duke@435 1 /*
never@3499 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/systemDictionary.hpp"
stefank@2314 27 #include "gc_implementation/shared/vmGCOperations.hpp"
stefank@2314 28 #include "gc_interface/collectedHeap.hpp"
stefank@2314 29 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 30 #include "oops/oop.inline.hpp"
never@3205 31 #include "oops/instanceMirrorKlass.hpp"
stefank@2314 32 #include "runtime/init.hpp"
stefank@2314 33 #include "services/heapDumper.hpp"
stefank@2314 34 #ifdef TARGET_OS_FAMILY_linux
stefank@2314 35 # include "thread_linux.inline.hpp"
stefank@2314 36 #endif
stefank@2314 37 #ifdef TARGET_OS_FAMILY_solaris
stefank@2314 38 # include "thread_solaris.inline.hpp"
stefank@2314 39 #endif
stefank@2314 40 #ifdef TARGET_OS_FAMILY_windows
stefank@2314 41 # include "thread_windows.inline.hpp"
stefank@2314 42 #endif
never@3156 43 #ifdef TARGET_OS_FAMILY_bsd
never@3156 44 # include "thread_bsd.inline.hpp"
never@3156 45 #endif
duke@435 46
duke@435 47
duke@435 48 #ifdef ASSERT
duke@435 49 int CollectedHeap::_fire_out_of_memory_count = 0;
duke@435 50 #endif
duke@435 51
jcoomes@916 52 size_t CollectedHeap::_filler_array_max_size = 0;
jcoomes@916 53
never@3499 54 template <>
never@3499 55 void EventLogBase<GCMessage>::print(outputStream* st, GCMessage& m) {
never@3499 56 st->print_cr("GC heap %s", m.is_before ? "before" : "after");
never@3499 57 st->print_raw(m);
never@3499 58 }
never@3499 59
never@3499 60 void GCHeapLog::log_heap(bool before) {
never@3499 61 if (!should_log()) {
never@3499 62 return;
never@3499 63 }
never@3499 64
never@3571 65 double timestamp = fetch_timestamp();
never@3499 66 MutexLockerEx ml(&_mutex, Mutex::_no_safepoint_check_flag);
never@3499 67 int index = compute_log_index();
never@3499 68 _records[index].thread = NULL; // Its the GC thread so it's not that interesting.
never@3499 69 _records[index].timestamp = timestamp;
never@3499 70 _records[index].data.is_before = before;
never@3499 71 stringStream st(_records[index].data.buffer(), _records[index].data.size());
never@3499 72 if (before) {
never@3571 73 Universe::print_heap_before_gc(&st, true);
never@3499 74 } else {
never@3571 75 Universe::print_heap_after_gc(&st, true);
never@3499 76 }
never@3499 77 }
never@3499 78
duke@435 79 // Memory state functions.
duke@435 80
jmasa@2188 81
jmasa@2188 82 CollectedHeap::CollectedHeap() : _n_par_threads(0)
jmasa@2188 83
jcoomes@916 84 {
jcoomes@916 85 const size_t max_len = size_t(arrayOopDesc::max_array_length(T_INT));
jcoomes@916 86 const size_t elements_per_word = HeapWordSize / sizeof(jint);
jcoomes@916 87 _filler_array_max_size = align_object_size(filler_array_hdr_size() +
brutisso@3668 88 max_len / elements_per_word);
jcoomes@916 89
jcoomes@916 90 _barrier_set = NULL;
jcoomes@916 91 _is_gc_active = false;
jcoomes@916 92 _total_collections = _total_full_collections = 0;
jcoomes@916 93 _gc_cause = _gc_lastcause = GCCause::_no_gc;
duke@435 94 NOT_PRODUCT(_promotion_failure_alot_count = 0;)
duke@435 95 NOT_PRODUCT(_promotion_failure_alot_gc_number = 0;)
duke@435 96
duke@435 97 if (UsePerfData) {
duke@435 98 EXCEPTION_MARK;
duke@435 99
duke@435 100 // create the gc cause jvmstat counters
duke@435 101 _perf_gc_cause = PerfDataManager::create_string_variable(SUN_GC, "cause",
duke@435 102 80, GCCause::to_string(_gc_cause), CHECK);
duke@435 103
duke@435 104 _perf_gc_lastcause =
duke@435 105 PerfDataManager::create_string_variable(SUN_GC, "lastCause",
duke@435 106 80, GCCause::to_string(_gc_lastcause), CHECK);
duke@435 107 }
ysr@1601 108 _defer_initial_card_mark = false; // strengthened by subclass in pre_initialize() below.
never@3499 109 // Create the ring log
never@3499 110 if (LogEvents) {
never@3499 111 _gc_heap_log = new GCHeapLog();
never@3499 112 } else {
never@3499 113 _gc_heap_log = NULL;
never@3499 114 }
duke@435 115 }
duke@435 116
ysr@1601 117 void CollectedHeap::pre_initialize() {
ysr@1601 118 // Used for ReduceInitialCardMarks (when COMPILER2 is used);
ysr@1601 119 // otherwise remains unused.
ysr@1903 120 #ifdef COMPILER2
ysr@1629 121 _defer_initial_card_mark = ReduceInitialCardMarks && can_elide_tlab_store_barriers()
ysr@1629 122 && (DeferInitialCardMark || card_mark_must_follow_store());
ysr@1601 123 #else
ysr@1601 124 assert(_defer_initial_card_mark == false, "Who would set it?");
ysr@1601 125 #endif
ysr@1601 126 }
duke@435 127
duke@435 128 #ifndef PRODUCT
duke@435 129 void CollectedHeap::check_for_bad_heap_word_value(HeapWord* addr, size_t size) {
duke@435 130 if (CheckMemoryInitialization && ZapUnusedHeapArea) {
duke@435 131 for (size_t slot = 0; slot < size; slot += 1) {
duke@435 132 assert((*(intptr_t*) (addr + slot)) != ((intptr_t) badHeapWordVal),
duke@435 133 "Found badHeapWordValue in post-allocation check");
duke@435 134 }
duke@435 135 }
duke@435 136 }
duke@435 137
ysr@2533 138 void CollectedHeap::check_for_non_bad_heap_word_value(HeapWord* addr, size_t size) {
duke@435 139 if (CheckMemoryInitialization && ZapUnusedHeapArea) {
duke@435 140 for (size_t slot = 0; slot < size; slot += 1) {
duke@435 141 assert((*(intptr_t*) (addr + slot)) == ((intptr_t) badHeapWordVal),
duke@435 142 "Found non badHeapWordValue in pre-allocation check");
duke@435 143 }
duke@435 144 }
duke@435 145 }
duke@435 146 #endif // PRODUCT
duke@435 147
duke@435 148 #ifdef ASSERT
duke@435 149 void CollectedHeap::check_for_valid_allocation_state() {
duke@435 150 Thread *thread = Thread::current();
duke@435 151 // How to choose between a pending exception and a potential
duke@435 152 // OutOfMemoryError? Don't allow pending exceptions.
duke@435 153 // This is a VM policy failure, so how do we exhaustively test it?
duke@435 154 assert(!thread->has_pending_exception(),
duke@435 155 "shouldn't be allocating with pending exception");
duke@435 156 if (StrictSafepointChecks) {
duke@435 157 assert(thread->allow_allocation(),
duke@435 158 "Allocation done by thread for which allocation is blocked "
duke@435 159 "by No_Allocation_Verifier!");
duke@435 160 // Allocation of an oop can always invoke a safepoint,
duke@435 161 // hence, the true argument
duke@435 162 thread->check_for_valid_safepoint_state(true);
duke@435 163 }
duke@435 164 }
duke@435 165 #endif
duke@435 166
duke@435 167 HeapWord* CollectedHeap::allocate_from_tlab_slow(Thread* thread, size_t size) {
duke@435 168
duke@435 169 // Retain tlab and allocate object in shared space if
duke@435 170 // the amount free in the tlab is too large to discard.
duke@435 171 if (thread->tlab().free() > thread->tlab().refill_waste_limit()) {
duke@435 172 thread->tlab().record_slow_allocation(size);
duke@435 173 return NULL;
duke@435 174 }
duke@435 175
duke@435 176 // Discard tlab and allocate a new one.
duke@435 177 // To minimize fragmentation, the last TLAB may be smaller than the rest.
duke@435 178 size_t new_tlab_size = thread->tlab().compute_size(size);
duke@435 179
duke@435 180 thread->tlab().clear_before_allocation();
duke@435 181
duke@435 182 if (new_tlab_size == 0) {
duke@435 183 return NULL;
duke@435 184 }
duke@435 185
duke@435 186 // Allocate a new TLAB...
duke@435 187 HeapWord* obj = Universe::heap()->allocate_new_tlab(new_tlab_size);
duke@435 188 if (obj == NULL) {
duke@435 189 return NULL;
duke@435 190 }
duke@435 191 if (ZeroTLAB) {
duke@435 192 // ..and clear it.
duke@435 193 Copy::zero_to_words(obj, new_tlab_size);
duke@435 194 } else {
kvn@3092 195 // ...and zap just allocated object.
kvn@3092 196 #ifdef ASSERT
kvn@3092 197 // Skip mangling the space corresponding to the object header to
kvn@3092 198 // ensure that the returned space is not considered parsable by
kvn@3092 199 // any concurrent GC thread.
kvn@3092 200 size_t hdr_size = oopDesc::header_size();
kvn@3092 201 Copy::fill_to_words(obj + hdr_size, new_tlab_size - hdr_size, badHeapWordVal);
kvn@3092 202 #endif // ASSERT
duke@435 203 }
duke@435 204 thread->tlab().fill(obj, obj + size, new_tlab_size);
duke@435 205 return obj;
duke@435 206 }
duke@435 207
ysr@1462 208 void CollectedHeap::flush_deferred_store_barrier(JavaThread* thread) {
ysr@1462 209 MemRegion deferred = thread->deferred_card_mark();
ysr@1462 210 if (!deferred.is_empty()) {
ysr@1601 211 assert(_defer_initial_card_mark, "Otherwise should be empty");
ysr@1462 212 {
ysr@1462 213 // Verify that the storage points to a parsable object in heap
ysr@1462 214 DEBUG_ONLY(oop old_obj = oop(deferred.start());)
ysr@1462 215 assert(is_in(old_obj), "Not in allocated heap");
ysr@1462 216 assert(!can_elide_initializing_store_barrier(old_obj),
ysr@1601 217 "Else should have been filtered in new_store_pre_barrier()");
ysr@1462 218 assert(!is_in_permanent(old_obj), "Sanity: not expected");
ysr@1462 219 assert(old_obj->is_oop(true), "Not an oop");
ysr@1462 220 assert(old_obj->is_parsable(), "Will not be concurrently parsable");
ysr@1462 221 assert(deferred.word_size() == (size_t)(old_obj->size()),
ysr@1462 222 "Mismatch: multiple objects?");
ysr@1462 223 }
ysr@1462 224 BarrierSet* bs = barrier_set();
ysr@1462 225 assert(bs->has_write_region_opt(), "No write_region() on BarrierSet");
ysr@1462 226 bs->write_region(deferred);
ysr@1462 227 // "Clear" the deferred_card_mark field
ysr@1462 228 thread->set_deferred_card_mark(MemRegion());
ysr@1462 229 }
ysr@1462 230 assert(thread->deferred_card_mark().is_empty(), "invariant");
ysr@1462 231 }
ysr@1462 232
ysr@1462 233 // Helper for ReduceInitialCardMarks. For performance,
ysr@1462 234 // compiled code may elide card-marks for initializing stores
ysr@1462 235 // to a newly allocated object along the fast-path. We
ysr@1462 236 // compensate for such elided card-marks as follows:
ysr@1462 237 // (a) Generational, non-concurrent collectors, such as
ysr@1462 238 // GenCollectedHeap(ParNew,DefNew,Tenured) and
ysr@1462 239 // ParallelScavengeHeap(ParallelGC, ParallelOldGC)
ysr@1462 240 // need the card-mark if and only if the region is
ysr@1462 241 // in the old gen, and do not care if the card-mark
ysr@1462 242 // succeeds or precedes the initializing stores themselves,
ysr@1462 243 // so long as the card-mark is completed before the next
ysr@1462 244 // scavenge. For all these cases, we can do a card mark
ysr@1462 245 // at the point at which we do a slow path allocation
ysr@1601 246 // in the old gen, i.e. in this call.
ysr@1462 247 // (b) GenCollectedHeap(ConcurrentMarkSweepGeneration) requires
ysr@1462 248 // in addition that the card-mark for an old gen allocated
ysr@1462 249 // object strictly follow any associated initializing stores.
ysr@1462 250 // In these cases, the memRegion remembered below is
ysr@1462 251 // used to card-mark the entire region either just before the next
ysr@1462 252 // slow-path allocation by this thread or just before the next scavenge or
ysr@1462 253 // CMS-associated safepoint, whichever of these events happens first.
ysr@1462 254 // (The implicit assumption is that the object has been fully
ysr@1462 255 // initialized by this point, a fact that we assert when doing the
ysr@1462 256 // card-mark.)
ysr@1462 257 // (c) G1CollectedHeap(G1) uses two kinds of write barriers. When a
ysr@1462 258 // G1 concurrent marking is in progress an SATB (pre-write-)barrier is
ysr@1462 259 // is used to remember the pre-value of any store. Initializing
ysr@1462 260 // stores will not need this barrier, so we need not worry about
ysr@1462 261 // compensating for the missing pre-barrier here. Turning now
ysr@1462 262 // to the post-barrier, we note that G1 needs a RS update barrier
ysr@1462 263 // which simply enqueues a (sequence of) dirty cards which may
ysr@1462 264 // optionally be refined by the concurrent update threads. Note
ysr@1462 265 // that this barrier need only be applied to a non-young write,
ysr@1462 266 // but, like in CMS, because of the presence of concurrent refinement
ysr@1462 267 // (much like CMS' precleaning), must strictly follow the oop-store.
ysr@1462 268 // Thus, using the same protocol for maintaining the intended
ysr@1601 269 // invariants turns out, serendepitously, to be the same for both
ysr@1601 270 // G1 and CMS.
ysr@1462 271 //
ysr@1601 272 // For any future collector, this code should be reexamined with
ysr@1601 273 // that specific collector in mind, and the documentation above suitably
ysr@1601 274 // extended and updated.
ysr@1601 275 oop CollectedHeap::new_store_pre_barrier(JavaThread* thread, oop new_obj) {
ysr@1462 276 // If a previous card-mark was deferred, flush it now.
ysr@1462 277 flush_deferred_store_barrier(thread);
ysr@1462 278 if (can_elide_initializing_store_barrier(new_obj)) {
ysr@1462 279 // The deferred_card_mark region should be empty
ysr@1462 280 // following the flush above.
ysr@1462 281 assert(thread->deferred_card_mark().is_empty(), "Error");
ysr@1462 282 } else {
ysr@1601 283 MemRegion mr((HeapWord*)new_obj, new_obj->size());
ysr@1601 284 assert(!mr.is_empty(), "Error");
ysr@1601 285 if (_defer_initial_card_mark) {
ysr@1601 286 // Defer the card mark
ysr@1601 287 thread->set_deferred_card_mark(mr);
ysr@1601 288 } else {
ysr@1601 289 // Do the card mark
ysr@1601 290 BarrierSet* bs = barrier_set();
ysr@1601 291 assert(bs->has_write_region_opt(), "No write_region() on BarrierSet");
ysr@1601 292 bs->write_region(mr);
ysr@1601 293 }
ysr@1462 294 }
ysr@1462 295 return new_obj;
ysr@1462 296 }
ysr@1462 297
jcoomes@916 298 size_t CollectedHeap::filler_array_hdr_size() {
kvn@1926 299 return size_t(align_object_offset(arrayOopDesc::header_size(T_INT))); // align to Long
jcoomes@916 300 }
jcoomes@916 301
jcoomes@916 302 size_t CollectedHeap::filler_array_min_size() {
kvn@1926 303 return align_object_size(filler_array_hdr_size()); // align to MinObjAlignment
jcoomes@916 304 }
jcoomes@916 305
jcoomes@916 306 #ifdef ASSERT
jcoomes@916 307 void CollectedHeap::fill_args_check(HeapWord* start, size_t words)
jcoomes@916 308 {
jcoomes@916 309 assert(words >= min_fill_size(), "too small to fill");
jcoomes@916 310 assert(words % MinObjAlignment == 0, "unaligned size");
jcoomes@916 311 assert(Universe::heap()->is_in_reserved(start), "not in heap");
jcoomes@916 312 assert(Universe::heap()->is_in_reserved(start + words - 1), "not in heap");
jcoomes@916 313 }
jcoomes@916 314
johnc@1600 315 void CollectedHeap::zap_filler_array(HeapWord* start, size_t words, bool zap)
jcoomes@916 316 {
johnc@1600 317 if (ZapFillerObjects && zap) {
jcoomes@916 318 Copy::fill_to_words(start + filler_array_hdr_size(),
jcoomes@916 319 words - filler_array_hdr_size(), 0XDEAFBABE);
jcoomes@916 320 }
jcoomes@916 321 }
jcoomes@916 322 #endif // ASSERT
jcoomes@916 323
jcoomes@916 324 void
johnc@1600 325 CollectedHeap::fill_with_array(HeapWord* start, size_t words, bool zap)
jcoomes@916 326 {
jcoomes@916 327 assert(words >= filler_array_min_size(), "too small for an array");
jcoomes@916 328 assert(words <= filler_array_max_size(), "too big for a single object");
jcoomes@916 329
jcoomes@916 330 const size_t payload_size = words - filler_array_hdr_size();
jcoomes@916 331 const size_t len = payload_size * HeapWordSize / sizeof(jint);
brutisso@3668 332 assert((int)len >= 0, err_msg("size too large " SIZE_FORMAT " becomes %d", words, (int)len));
jcoomes@916 333
jcoomes@916 334 // Set the length first for concurrent GC.
jcoomes@916 335 ((arrayOop)start)->set_length((int)len);
brutisso@3675 336 post_allocation_setup_common(Universe::intArrayKlassObj(), start);
johnc@1600 337 DEBUG_ONLY(zap_filler_array(start, words, zap);)
jcoomes@916 338 }
jcoomes@916 339
jcoomes@916 340 void
johnc@1600 341 CollectedHeap::fill_with_object_impl(HeapWord* start, size_t words, bool zap)
jcoomes@916 342 {
jcoomes@916 343 assert(words <= filler_array_max_size(), "too big for a single object");
jcoomes@916 344
jcoomes@916 345 if (words >= filler_array_min_size()) {
johnc@1600 346 fill_with_array(start, words, zap);
jcoomes@916 347 } else if (words > 0) {
jcoomes@916 348 assert(words == min_fill_size(), "unaligned size");
brutisso@3675 349 post_allocation_setup_common(SystemDictionary::Object_klass(), start);
jcoomes@916 350 }
jcoomes@916 351 }
jcoomes@916 352
johnc@1600 353 void CollectedHeap::fill_with_object(HeapWord* start, size_t words, bool zap)
jcoomes@916 354 {
jcoomes@916 355 DEBUG_ONLY(fill_args_check(start, words);)
jcoomes@916 356 HandleMark hm; // Free handles before leaving.
johnc@1600 357 fill_with_object_impl(start, words, zap);
jcoomes@916 358 }
jcoomes@916 359
johnc@1600 360 void CollectedHeap::fill_with_objects(HeapWord* start, size_t words, bool zap)
jcoomes@916 361 {
jcoomes@916 362 DEBUG_ONLY(fill_args_check(start, words);)
jcoomes@916 363 HandleMark hm; // Free handles before leaving.
jcoomes@916 364
ysr@1904 365 #ifdef _LP64
jcoomes@916 366 // A single array can fill ~8G, so multiple objects are needed only in 64-bit.
jcoomes@916 367 // First fill with arrays, ensuring that any remaining space is big enough to
jcoomes@916 368 // fill. The remainder is filled with a single object.
jcoomes@916 369 const size_t min = min_fill_size();
jcoomes@916 370 const size_t max = filler_array_max_size();
jcoomes@916 371 while (words > max) {
jcoomes@916 372 const size_t cur = words - max >= min ? max : max - min;
johnc@1600 373 fill_with_array(start, cur, zap);
jcoomes@916 374 start += cur;
jcoomes@916 375 words -= cur;
jcoomes@916 376 }
jcoomes@916 377 #endif
jcoomes@916 378
johnc@1600 379 fill_with_object_impl(start, words, zap);
jcoomes@916 380 }
jcoomes@916 381
duke@435 382 HeapWord* CollectedHeap::allocate_new_tlab(size_t size) {
duke@435 383 guarantee(false, "thread-local allocation buffers not supported");
duke@435 384 return NULL;
duke@435 385 }
duke@435 386
duke@435 387 void CollectedHeap::ensure_parsability(bool retire_tlabs) {
duke@435 388 // The second disjunct in the assertion below makes a concession
duke@435 389 // for the start-up verification done while the VM is being
duke@435 390 // created. Callers be careful that you know that mutators
duke@435 391 // aren't going to interfere -- for instance, this is permissible
duke@435 392 // if we are still single-threaded and have either not yet
duke@435 393 // started allocating (nothing much to verify) or we have
duke@435 394 // started allocating but are now a full-fledged JavaThread
duke@435 395 // (and have thus made our TLAB's) available for filling.
duke@435 396 assert(SafepointSynchronize::is_at_safepoint() ||
duke@435 397 !is_init_completed(),
duke@435 398 "Should only be called at a safepoint or at start-up"
duke@435 399 " otherwise concurrent mutator activity may make heap "
duke@435 400 " unparsable again");
ysr@1601 401 const bool use_tlab = UseTLAB;
ysr@1601 402 const bool deferred = _defer_initial_card_mark;
ysr@1601 403 // The main thread starts allocating via a TLAB even before it
ysr@1601 404 // has added itself to the threads list at vm boot-up.
ysr@1601 405 assert(!use_tlab || Threads::first() != NULL,
ysr@1601 406 "Attempt to fill tlabs before main thread has been added"
ysr@1601 407 " to threads list is doomed to failure!");
ysr@1601 408 for (JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
ysr@1601 409 if (use_tlab) thread->tlab().make_parsable(retire_tlabs);
ysr@1601 410 #ifdef COMPILER2
ysr@1601 411 // The deferred store barriers must all have been flushed to the
ysr@1601 412 // card-table (or other remembered set structure) before GC starts
ysr@1601 413 // processing the card-table (or other remembered set).
ysr@1601 414 if (deferred) flush_deferred_store_barrier(thread);
ysr@1601 415 #else
ysr@1601 416 assert(!deferred, "Should be false");
ysr@1601 417 assert(thread->deferred_card_mark().is_empty(), "Should be empty");
ysr@1601 418 #endif
duke@435 419 }
duke@435 420 }
duke@435 421
duke@435 422 void CollectedHeap::accumulate_statistics_all_tlabs() {
duke@435 423 if (UseTLAB) {
duke@435 424 assert(SafepointSynchronize::is_at_safepoint() ||
duke@435 425 !is_init_completed(),
duke@435 426 "should only accumulate statistics on tlabs at safepoint");
duke@435 427
duke@435 428 ThreadLocalAllocBuffer::accumulate_statistics_before_gc();
duke@435 429 }
duke@435 430 }
duke@435 431
duke@435 432 void CollectedHeap::resize_all_tlabs() {
duke@435 433 if (UseTLAB) {
duke@435 434 assert(SafepointSynchronize::is_at_safepoint() ||
duke@435 435 !is_init_completed(),
duke@435 436 "should only resize tlabs at safepoint");
duke@435 437
duke@435 438 ThreadLocalAllocBuffer::resize_all_tlabs();
duke@435 439 }
duke@435 440 }
ysr@1050 441
ysr@1050 442 void CollectedHeap::pre_full_gc_dump() {
ysr@1050 443 if (HeapDumpBeforeFullGC) {
ysr@3067 444 TraceTime tt("Heap Dump (before full gc): ", PrintGCDetails, false, gclog_or_tty);
ysr@1050 445 // We are doing a "major" collection and a heap dump before
ysr@1050 446 // major collection has been requested.
ysr@1050 447 HeapDumper::dump_heap();
ysr@1050 448 }
ysr@1050 449 if (PrintClassHistogramBeforeFullGC) {
ysr@3067 450 TraceTime tt("Class Histogram (before full gc): ", PrintGCDetails, true, gclog_or_tty);
ysr@1050 451 VM_GC_HeapInspection inspector(gclog_or_tty, false /* ! full gc */, false /* ! prologue */);
ysr@1050 452 inspector.doit();
ysr@1050 453 }
ysr@1050 454 }
ysr@1050 455
ysr@1050 456 void CollectedHeap::post_full_gc_dump() {
ysr@1050 457 if (HeapDumpAfterFullGC) {
ysr@3067 458 TraceTime tt("Heap Dump (after full gc): ", PrintGCDetails, false, gclog_or_tty);
ysr@1050 459 HeapDumper::dump_heap();
ysr@1050 460 }
ysr@1050 461 if (PrintClassHistogramAfterFullGC) {
ysr@3067 462 TraceTime tt("Class Histogram (after full gc): ", PrintGCDetails, true, gclog_or_tty);
ysr@1050 463 VM_GC_HeapInspection inspector(gclog_or_tty, false /* ! full gc */, false /* ! prologue */);
ysr@1050 464 inspector.doit();
ysr@1050 465 }
ysr@1050 466 }
never@3205 467
never@3205 468 oop CollectedHeap::Class_obj_allocate(KlassHandle klass, int size, KlassHandle real_klass, TRAPS) {
never@3205 469 debug_only(check_for_valid_allocation_state());
never@3205 470 assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
never@3205 471 assert(size >= 0, "int won't convert to size_t");
never@3205 472 HeapWord* obj;
never@3205 473 if (JavaObjectsInPerm) {
never@3205 474 obj = common_permanent_mem_allocate_init(size, CHECK_NULL);
never@3205 475 } else {
never@3205 476 assert(ScavengeRootsInCode > 0, "must be");
never@3205 477 obj = common_mem_allocate_init(size, CHECK_NULL);
never@3205 478 }
brutisso@3675 479 post_allocation_setup_common(klass, obj);
never@3205 480 assert(Universe::is_bootstrapping() ||
never@3205 481 !((oop)obj)->blueprint()->oop_is_array(), "must not be an array");
never@3205 482 NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
never@3205 483 oop mirror = (oop)obj;
never@3205 484
never@3205 485 java_lang_Class::set_oop_size(mirror, size);
never@3205 486
never@3205 487 // Setup indirections
never@3205 488 if (!real_klass.is_null()) {
never@3205 489 java_lang_Class::set_klass(mirror, real_klass());
never@3205 490 real_klass->set_java_mirror(mirror);
never@3205 491 }
never@3205 492
never@3205 493 instanceMirrorKlass* mk = instanceMirrorKlass::cast(mirror->klass());
never@3205 494 assert(size == mk->instance_size(real_klass), "should have been set");
never@3205 495
never@3205 496 // notify jvmti and dtrace
never@3205 497 post_allocation_notify(klass, (oop)obj);
never@3205 498
never@3205 499 return mirror;
never@3205 500 }
stefank@3335 501
stefank@3335 502 /////////////// Unit tests ///////////////
stefank@3335 503
stefank@3335 504 #ifndef PRODUCT
stefank@3335 505 void CollectedHeap::test_is_in() {
stefank@3335 506 CollectedHeap* heap = Universe::heap();
stefank@3335 507
stefank@3375 508 uintptr_t epsilon = (uintptr_t) MinObjAlignment;
stefank@3375 509 uintptr_t heap_start = (uintptr_t) heap->_reserved.start();
stefank@3375 510 uintptr_t heap_end = (uintptr_t) heap->_reserved.end();
stefank@3375 511
stefank@3335 512 // Test that NULL is not in the heap.
stefank@3335 513 assert(!heap->is_in(NULL), "NULL is unexpectedly in the heap");
stefank@3335 514
stefank@3335 515 // Test that a pointer to before the heap start is reported as outside the heap.
stefank@3375 516 assert(heap_start >= ((uintptr_t)NULL + epsilon), "sanity");
stefank@3375 517 void* before_heap = (void*)(heap_start - epsilon);
stefank@3335 518 assert(!heap->is_in(before_heap),
stefank@3335 519 err_msg("before_heap: " PTR_FORMAT " is unexpectedly in the heap", before_heap));
stefank@3335 520
stefank@3335 521 // Test that a pointer to after the heap end is reported as outside the heap.
stefank@3375 522 assert(heap_end <= ((uintptr_t)-1 - epsilon), "sanity");
stefank@3375 523 void* after_heap = (void*)(heap_end + epsilon);
stefank@3335 524 assert(!heap->is_in(after_heap),
stefank@3335 525 err_msg("after_heap: " PTR_FORMAT " is unexpectedly in the heap", after_heap));
stefank@3335 526 }
stefank@3335 527 #endif

mercurial