The JITCompiledMethodInformation method of the IJavaEventMonitorIDInfo interface is called by a profiler to retrieve additional information on a JIT-compiled method. The profiler passes in the MethodID of the method to be profiled.
HRESULT JITCompiledMethodInformation(MethodID method_id, unsigned int *pjit_code_length, unsigned char **ppjit_code);
An array of JIT-compiled code for this method.
[in] method_id | The MethodID of the method the profiler is interested in. |
[out] *pjit_code_length | The length of the JIT-compiled code information returned. This represents the number of elements in the array. |
[out] **ppjit_code | A pointer to an array of JIT-compiled codes for the method. |
This method must be called only after the profiler has received notification that the method has been JIT-compiled.