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