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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsYoungGen.cpp845 MutableSpace* space_shrinking = NULL;
847 space_shrinking = from_space();
849 space_shrinking = to_space();
854 assert(((HeapWord*)virtual_space()->high()) >= space_shrinking->end(),
857 space_shrinking->end(), sizeof(char));
859 if (space_shrinking->is_empty()) {
861 assert(space_shrinking->capacity_in_bytes() >= space_alignment,
863 delta_in_survivor = space_shrinking->capacity_in_bytes() - space_alignment;
865 delta_in_survivor = pointer_delta(space_shrinking->end(),
866 space_shrinking
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp89 MutableSpace* space_shrinking = NULL; local
91 space_shrinking = from_space();
93 space_shrinking = to_space();
98 assert(((HeapWord*)virtual_space()->high()) >= space_shrinking->end(),
101 space_shrinking->end(), sizeof(char));
103 if (space_shrinking->is_empty()) {
105 assert(space_shrinking->capacity_in_bytes() >= space_alignment,
107 delta_in_survivor = space_shrinking->capacity_in_bytes() - space_alignment;
109 delta_in_survivor = pointer_delta(space_shrinking->end(),
110 space_shrinking
[all...]

Completed in 45 milliseconds