Searched refs:last_scanned (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp234 oop* last_scanned = NULL; // Prevent scanning objects more than once local
265 last_scanned = (oop*)(first_object + oop(first_object)->size());
266 debug_only(first_object_within_slice = last_scanned;)
267 worker_start_card = byte_for(last_scanned);
308 // we will attempt to scan it twice. The test against "last_scanned"
328 // "p" should always be >= "last_scanned" because newly GC dirtied
333 // the loop when the last_scanned is the object starting in
335 assert((p >= last_scanned) ||
336 (last_scanned == first_object_within_slice),
338 if (p < last_scanned) {
[all...]

Completed in 37 milliseconds