1 instantiation of UnboxingThunk
ILCompiler.Compiler (1)
Compiler\CompilerTypeSystemContext.BoxedTypes.cs (1)
219return new UnboxingThunk(key.OwningType, key.TargetMethod);
9 references to UnboxingThunk
ILCompiler.Compiler (9)
Compiler\CompilerTypeSystemContext.BoxedTypes.cs (7)
100UnboxingThunk thunkDefinition = _nonGenericUnboxingThunkHashtable.GetOrCreateValue(methodKey); 197private sealed class NonGenericUnboxingThunkHashtable : LockFreeReaderHashtable<UnboxingThunkHashtableKey, UnboxingThunk> 203protected override int GetValueHashCode(UnboxingThunk value) 207protected override bool CompareKeyToValue(UnboxingThunkHashtableKey key, UnboxingThunk value) 212protected override bool CompareValueToValue(UnboxingThunk value1, UnboxingThunk value2) 217protected override UnboxingThunk CreateValueFromKey(UnboxingThunkHashtableKey key)
Compiler\CompilerTypeSystemContext.Sorting.cs (2)
38var otherMethod = (UnboxingThunk)other;