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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsScavenge.inline.hpp39 template <class T> inline bool PSScavenge::should_scavenge(T* p) { function in class:PSScavenge
47 inline bool PSScavenge::should_scavenge(T* p, MutableSpace* to_space) { function in class:PSScavenge
48 if (should_scavenge(p)) {
58 inline bool PSScavenge::should_scavenge(T* p, bool check_to_space) { function in class:PSScavenge
61 return should_scavenge(p, heap->young_gen()->to_space());
63 return should_scavenge(p);
72 assert(should_scavenge(p, true), "revisiting object?");
97 if (PSScavenge::should_scavenge(p)) {

Completed in 37 milliseconds