1 instantiation of UnboxingThunk
ILCompiler.Compiler (1)
Compiler\CompilerTypeSystemContext.BoxedTypes.cs (1)
218return new UnboxingThunk(key.OwningType, key.TargetMethod);
9 references to UnboxingThunk
ILCompiler.Compiler (9)
Compiler\CompilerTypeSystemContext.BoxedTypes.cs (7)
99UnboxingThunk thunkDefinition = _nonGenericUnboxingThunkHashtable.GetOrCreateValue(methodKey); 196private sealed class NonGenericUnboxingThunkHashtable : LockFreeReaderHashtable<UnboxingThunkHashtableKey, UnboxingThunk> 202protected override int GetValueHashCode(UnboxingThunk value) 206protected override bool CompareKeyToValue(UnboxingThunkHashtableKey key, UnboxingThunk value) 211protected override bool CompareValueToValue(UnboxingThunk value1, UnboxingThunk value2) 216protected override UnboxingThunk CreateValueFromKey(UnboxingThunkHashtableKey key)
Compiler\CompilerTypeSystemContext.Sorting.cs (2)
38var otherMethod = (UnboxingThunk)other;