hotspot/src/share/vm/oops/oop.inline.hpp
// Encode and store a heap oop.
inline void oopDesc::encode_store_heap_oop_not_null(narrowOop* p, oop v) {
{- -------------------------------------------
(1) narrowOop を encode_heap_oop_not_null() で戻した後,
処理対象のポインタ(p)の値を置き換えるだけ.
---------------------------------------- -}
*p = encode_heap_oop_not_null(v);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.