Searched refs:from_space (Results 1 - 11 of 11) sorted by relevance
| /openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
| H A D | concurrentMarkSweepGeneration.cpp | 5185 ContiguousSpace* from_space = dng->from(); 5197 do_young_space_rescan(worker_id, &par_mrias_cl, from_space, sca, sct);
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
| H A D | asParNewGeneration.cpp | 90 if (from_space()->end() > to_space()->end()) { 91 space_shrinking = from_space(); 353 // Should we be in this method if from_space is empty? Why not the set_space method? FIX ME!
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
| H A D | asPSYoungGen.cpp | 86 // right place (below from_space), take a chunk from to_space. 131 // If to_space is below from_space, to_space is not considered. 265 from_space()->bottom(), 266 from_space()->end(), 267 pointer_delta(from_space()->end(), 268 from_space()->bottom(), 281 requested_survivor_size == from_space()->capacity_in_bytes() && 291 char* from_start = (char*)from_space()->bottom(); 292 char* from_end = (char*)from_space()->end(); 296 assert(eden_start < from_start, "Cannot push into from_space"); [all...] |
| H A D | parallelScavengeHeap.cpp | 911 MutableSpace* from = young_gen()->from_space(); 912 SpaceSummary from_space(from->bottom(), from->end(), from->used_in_bytes()); 918 return PSHeapSummary(heap_summary, used(), old_summary, old_space, young_summary, eden_space, from_space, to_space); 1055 young_gen()->from_space()->mangle_unused_area();
|
| H A D | psMarkSweep.cpp | 237 survivors_empty = young_gen->from_space()->is_empty() && 292 young_gen->from_space()->capacity_in_bytes() + 296 young_gen->from_space()->capacity_in_bytes() - 441 young_gen->from_space()->used_in_bytes() / K,
|
| H A D | psParallelCompact.cpp | 926 _space_info[from_space_id].set_space(young_gen->from_space()); 1012 _space_info[from_space_id].set_space(heap->young_gen()->from_space()); 1067 MutableSpace* const from_space = _space_info[from_space_id].space(); local 1081 bool young_gen_empty = eden_empty && from_space->is_empty() && 1602 MutableSpace* const from_space = _space_info[from_space_id].space(); local 1605 const size_t from_live = pointer_delta(from_space->top(), 1611 const size_t from_free = pointer_delta(from_space->end(), from_space->top()); 1626 space = from_space; 2172 young_gen->from_space() [all...] |
| H A D | psScavenge.cpp | 498 young_gen->from_space()->clear(SpaceDecorator::Mangle); 501 size_t survived = young_gen->from_space()->used_in_bytes(); 570 young_gen->from_space()->capacity_in_bytes() + 574 young_gen->from_space()->capacity_in_bytes() - 674 young_gen->from_space()->check_mangled_unused_area_complete();
|
| H A D | psYoungGen.cpp | 204 from_space()->initialize(from_mr, true, ZapUnusedHeapArea); 214 guarantee(from_space()->capacity_in_bytes() >= alignment, "from too small"); 220 char* from_start = (char*)from_space()->bottom(); 221 char* from_end = (char*)from_space()->end(); 247 from_space()->capacity_in_bytes()), "Committed size is inconsistent"); 251 char* from_top = (char*)from_space()->top(); 462 from_space()->bottom(), 463 from_space()->end(), 464 pointer_delta(from_space()->end(), 465 from_space() [all...] |
| H A D | psYoungGen.hpp | 114 MutableSpace* from_space() const { return _from_space; } function in class:PSYoungGen
|
| /openjdk7/hotspot/src/share/vm/services/ |
| H A D | psMemoryPool.cpp | 73 (gen->max_size() - gen->from_space()->capacity_in_bytes() - gen->to_space()->capacity_in_bytes()), 95 CollectedMemoryPool(name, type, gen->from_space()->capacity_in_bytes(), 96 gen->from_space()->capacity_in_bytes(),
|
| H A D | psMemoryPool.hpp | 69 return _gen->max_size() - _gen->from_space()->capacity_in_bytes() - _gen->to_space()->capacity_in_bytes(); 86 return _gen->from_space()->used_in_bytes(); 89 return _gen->from_space()->capacity_in_bytes(); 93 return _gen->from_space()->capacity_in_bytes();
|
Completed in 114 milliseconds