FunctionLeave2 Function
Notifies the profiler that a function is about to return to the caller and provides information about the stack frame and function return value.
void __stdcall FunctionLeave2 (
[in] FunctionID funcId,
[in] UINT_PTR clientData,
[in] COR_PRF_FRAME_INFO func,
[in] COR_PRF_FUNCTION_ARGUMENT_RANGE *retvalRange
);
The values of the func and retvalRange parameters are not valid after the FunctionLeave2 function returns because the values may change or be destroyed.
The FunctionLeave2 function is a callback; you must implement it. The implementation must use the __declspec(naked) storage-class attribute.
The execution engine does not save any registers before calling this function.
-
On entry, you must save all registers that you use, including those in the floating-point unit (FPU).
-
On exit, you must restore the stack by popping off all the parameters that were pushed by its caller.
The implementation of FunctionLeave2 should not block because it will delay garbage collection. The implementation should not attempt a garbage collection because the stack may not be in a garbage collection-friendly state. If a garbage collection is attempted, the runtime will block until FunctionLeave2 returns.
Also, the FunctionLeave2 function must not call into managed code or in any way cause a managed memory allocation.
Platforms: See .NET Framework System Requirements.
Header: CorProf.idl
Library: CorGuids.lib
.NET Framework Versions: 4.5, 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0