hotspot/src/share/vm/prims/jvmtiExport.hpp
// Collects vm internal objects for later event posting.
inline static void vm_object_alloc_event_collector(oop object) {
{- -------------------------------------------
(1) (JVMTI のフック点)
(VMObjectAlloc イベントが有効になっていれば,
JvmtiExport::record_vm_internal_object_allocation() を呼び出して通知を行う)
---------------------------------------- -}
if (should_post_vm_object_alloc()) {
record_vm_internal_object_allocation(object);
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.