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

/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp297 char* to_start = (char*)to()->bottom(); local
305 if (from_start < to_start) {
345 to_start = (char*)pointer_delta(to_end, (char*)requested_survivor_size,
349 if (to_start < (char*)from()->end()) {
365 // Now update to_start with the new from_end
366 to_start = MAX2(from_end, to_start);
372 to_start = from_end;
373 if (to_start + requested_survivor_size > to_start) {
623 char* to_start = (char*)to()->bottom(); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DasPSYoungGen.cpp293 char* to_start = (char*)to_space()->bottom();
303 bool eden_from_to_order = from_start < to_start;
345 to_start = (char*)pointer_delta(to_end,
350 if (to_start < (char*)from_space()->end()) {
370 // Now update to_start with the new from_end
371 to_start = MAX2(from_end, to_start);
374 guarantee(to_start != to_end, "to space is zero sized");
387 gclog_or_tty->print_cr(" [ to_start .. to_end): "
389 to_start,
[all...]
H A DpsYoungGen.cpp189 char *to_start = eden_start + eden_size; local
190 char *from_start = to_start + survivor_size;
195 assert(is_object_aligned((intptr_t)to_start), "checking alignment");
198 MemRegion eden_mr((HeapWord*)eden_start, (HeapWord*)to_start);
199 MemRegion to_mr ((HeapWord*)to_start, (HeapWord*)from_start);
222 char* to_start = (char*)to_space()->bottom(); local
228 guarantee(to_start < to_end, "to space consistency");
231 if (from_start < to_start) {
234 guarantee(from_end <= to_start, "from/to boundary");
238 guarantee(eden_end <= to_start, "ede
490 char* to_start = (char*)to_space()->bottom(); local
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp243 char *to_start = from_start + survivor_size; local
244 char *to_end = to_start + survivor_size;
249 assert(Space::is_aligned((HeapWord*)to_start), "checking alignment");
252 MemRegion fromMR((HeapWord*)from_start, (HeapWord*)to_start);
253 MemRegion toMR ((HeapWord*)to_start, (HeapWord*)to_end);

Completed in 39 milliseconds