hotspot/src/share/vm/gc_implementation/g1/g1OopClosures.hpp
template <class T> void do_oop_nv(T* p) {
{- -------------------------------------------
(1) G1ParCopyClosure::do_oop_work() を呼び出す.
(なお, テンプレート引数の do_mark_forwardee が true であれば, mark_forwardee() の呼び出しも行う)
---------------------------------------- -}
do_oop_work(p);
if (do_mark_forwardee)
mark_forwardee(p);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.