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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp590 MemRegion cur_committed = _committed[changed_region];
597 if (min_prev_start < cur_committed.start()) {
598 // Only really need to set start of "cur_committed" to
600 // below use cur_committed.end() so make it correct.
602 MemRegion(min_prev_start, cur_committed.end());
603 cur_committed = new_committed;
607 assert(cur_committed.start() ==
608 (HeapWord*) align_size_up((uintptr_t) cur_committed.start(),
622 if (new_start_aligned < cur_committed.start()) {
648 MIN2(cur_committed
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp222 MemRegion cur_committed = _committed[ind]; local
227 if (max_prev_end > cur_committed.end()) {
228 cur_committed.set_end(max_prev_end);
283 if (new_end_for_commit > cur_committed.end()) {
286 MemRegion(cur_committed.end(), new_end_for_commit);
293 // the cur_committed region may include the guard region.
294 } else if (new_end_aligned < cur_committed.end()) {
298 cur_committed.end()));

Completed in 79 milliseconds