Searched defs:to_space (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp143 MutableSpace* to_space = heap->young_gen()->to_space(); local
144 MemRegion used = to_space->used_region();
H A DpsScavenge.inline.hpp36 _to_space_top_before_gc = heap->young_gen()->to_space()->top();
47 inline bool PSScavenge::should_scavenge(T* p, MutableSpace* to_space) { argument
50 // Skip objects copied to to_space since the scavenge started.
52 return addr < to_space_top_before_gc() || addr >= to_space->end();
61 return should_scavenge(p, heap->young_gen()->to_space());
H A DpsYoungGen.hpp115 MutableSpace* to_space() const { return _to_space; } function in class:PSYoungGen
H A DpsPromotionManager.cpp46 _young_space = heap->young_gen()->to_space();
83 _young_space = heap->young_gen()->to_space();
210 MutableSpace* to_space = heap->young_gen()->to_space(); local
H A DpsMarkSweep.cpp225 young_gen->to_space()->mangle_unused_area_complete();
238 young_gen->to_space()->is_empty();
293 young_gen->to_space()->capacity_in_bytes(),
297 young_gen->to_space()->capacity_in_bytes();
442 young_gen->to_space()->used_in_bytes() / K,
490 MutableSpace* to_space = young_gen->to_space(); local
491 _preserved_marks = (PreservedMark*)to_space->top();
495 _preserved_count_max = pointer_delta(to_space->end(), to_space
[all...]
H A DpsParallelCompact.cpp927 _space_info[to_space_id].set_space(young_gen->to_space());
1013 _space_info[to_space_id].set_space(heap->young_gen()->to_space());
1068 MutableSpace* const to_space = _space_info[to_space_id].space(); local
1082 to_space->is_empty();
2173 young_gen->to_space()->capacity_in_bytes(),
2177 young_gen->to_space()->capacity_in_bytes();
2342 young_gen->to_space()->used_in_bytes() / K,
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp87 Space* to_space() { return _to_space; } function in class:ParScanThreadState
H A DparNewGeneration.cpp147 // object is in to_space
168 // object is in to_space
229 Space* const sp = to_space();
297 Space& to_space,
334 int num_threads, Space& to_space, ParNewGeneration& gen,
347 ParScanThreadState(&to_space, &gen, &old_gen, i, &queue_set,
1265 // Must be in to_space.
1380 // Must be in to_space.
333 ParScanThreadStateSet( int num_threads, Space& to_space, ParNewGeneration& gen, Generation& old_gen, ObjToScanQueueSet& queue_set, Stack<oop, mtGC>* overflow_stacks, size_t desired_plab_sz, ParallelTaskTerminator& term) argument
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp840 if (to_space->top() > to_space->bottom()) {
841 trace("to_space not empty when contribute_scratch called");
845 ContiguousSpace* to_space = to(); local
846 assert(to_space->end() >= to_space->top(), "pointers out of order");
847 size_t free_words = pointer_delta(to_space->end(), to_space->top());
849 ScratchBlock* sb = (ScratchBlock*)to_space->top();
857 // If contributing scratch in to_space, mangl
[all...]

Completed in 704 milliseconds