1 instantiation of UnboxingMethodDesc
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\JitInterface\UnboxingMethodDescFactory.cs (1)
15
result = new
UnboxingMethodDesc
(method, this);
6 references to UnboxingMethodDesc
ILCompiler.ReadyToRun (6)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
3515
if (method is
UnboxingMethodDesc
unboxingMethodDesc)
src\runtime\src\coreclr\tools\Common\JitInterface\UnboxingMethodDesc.cs (2)
93
return method is
UnboxingMethodDesc
;
98
return ((
UnboxingMethodDesc
)method).Target;
src\runtime\src\coreclr\tools\Common\JitInterface\UnboxingMethodDescFactory.cs (3)
9
internal sealed class UnboxingMethodDescFactory : Dictionary<MethodDesc,
UnboxingMethodDesc
>
11
public
UnboxingMethodDesc
GetUnboxingMethod(MethodDesc method)
13
if (!TryGetValue(method, out
UnboxingMethodDesc
result))