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

/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DpsScavenge.inline.hpp42 template <class T> inline bool PSScavenge::should_scavenge(T* p) { function in class:PSScavenge
48 inline bool PSScavenge::should_scavenge(T* p, MutableSpace* to_space) { function in class:PSScavenge
49 if (should_scavenge(p)) {
59 inline bool PSScavenge::should_scavenge(T* p, bool check_to_space) { function in class:PSScavenge
62 return should_scavenge(p, heap->young_gen()->to_space());
64 return should_scavenge(p);
74 if (PSScavenge::should_scavenge(p)) {
101 if (PSScavenge::should_scavenge(p)) {
102 assert(PSScavenge::should_scavenge(p, true), "revisiting object?");
H A DpsScavenge.hpp128 template <class T> static inline bool should_scavenge(T* p);
130 // These call should_scavenge() above and, if it returns true, also check that
134 template <class T> static inline bool should_scavenge(T* p, MutableSpace* to_space);
135 template <class T> static inline bool should_scavenge(T* p, bool check_to_space);
H A DpsPromotionManager.cpp87 bool PSPromotionManager::should_scavenge(oop* p, bool check_to_space) { function in class:PSPromotionManager
88 return PSScavenge::should_scavenge(p, check_to_space);
90 bool PSPromotionManager::should_scavenge(narrowOop* p, bool check_to_space) { function in class:PSPromotionManager
91 return PSScavenge::should_scavenge(p, check_to_space);
354 if (PSScavenge::should_scavenge(p)) {
399 if (PSScavenge::should_scavenge(p)) {
438 if (PSScavenge::should_scavenge(referent_addr)) {
456 if (PSScavenge::should_scavenge(discovered_addr)) {
461 if (PSScavenge::should_scavenge(next_addr)) {
H A DpsPromotionManager.inline.hpp68 assert(should_scavenge(p, true), "revisiting object?");
111 assert(should_scavenge(&o), "Sanity");
268 should_scavenge(&new_obj) ? "copying" : "tenuring",
279 assert(should_scavenge(p, true), "revisiting object?");
H A DpsPromotionManager.hpp203 static bool should_scavenge(oop* p, bool check_to_space = false);
204 static bool should_scavenge(narrowOop* p, bool check_to_space = false);
H A DpsScavenge.cpp101 if (PSScavenge::should_scavenge(p, _to_space)) {

Completed in 51 milliseconds