Searched refs:incr_age (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionManager.inline.hpp173 new_obj->incr_age();
/openjdk7/hotspot/src/share/vm/oops/
H A DmarkOop.hpp340 markOop incr_age() const { return age() == max_age ? markOop(this) : set_age(age() + 1); } function in class:markOopDesc
H A Doop.hpp362 void incr_age();
H A Doop.inline.hpp728 inline void oopDesc::incr_age() { function in class:oopDesc
731 set_displaced_mark(displaced_mark()->incr_age());
733 set_mark(mark()->incr_age());
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp1227 new_obj->incr_age();
1338 new_obj->incr_age();
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp781 obj->incr_age();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp4683 // We could simply do obj->incr_age(). However, this causes a
4684 // performance issue. obj->incr_age() will first check whether
4692 // further (it could be...) and we simply call obj->incr_age().
4699 obj->incr_age();
4701 m = m->incr_age();

Completed in 179 milliseconds