ICorProfilerCallback4::GetReJITParameters 方法

允许代码探查器为新的重新编译方法主体设置备用代码生成标志。

语法

HRESULT GetReJITParameters(     [in] ModuleID moduleId,     [in] mdMethodDef methodId,     [in] ICorProfilerFunctionControl *pFunctionControl);  

参数

moduleID
[in] 包含 CLR 需要 JIT 重新编译参数的方法的模块。

methodId
[in] CLR 需要 JIT 重新编译参数的方法的 MethodDef

pFunctionControl
[in] 指向 ICorProfilerFunctionControl 接口的指针,探查器可以使用该接口为正在重新编译的方法提供 JIT 重新编译信息。

注解

CLR 会发起 GetReJITParameters 回调,以便探查器可以指定用于重新编译给定方法的参数。 只会为每个函数 GetReJITParameters 发起一次回调;探查器提供的参数将应用于该函数的所有实例。

要求

平台:请参阅系统要求

头文件: CorProf.idl、CorProf.h

库:CorGuids.lib

.NET Framework 版本:自 4.5 起可用

另请参阅