3 instantiations of GenericDictionaryLookup
ILCompiler.Compiler (3)
Compiler\GenericDictionaryLookup.cs (3)
119
return new
GenericDictionaryLookup
(contextSource, offset1, offset2, null);
124
return new
GenericDictionaryLookup
(contextSource, UseHelperOffset, checked((short)helperId), helperObject);
129
return new
GenericDictionaryLookup
(contextSource, UseNullOffset, 0, null);
10 references to GenericDictionaryLookup
ILCompiler.Compiler (9)
Compiler\Compilation.cs (5)
373
public
GenericDictionaryLookup
ComputeGenericLookup(MethodDesc contextMethod, ReadyToRunHelperId lookupKind, object targetOfLookup)
432
return
GenericDictionaryLookup
.CreateFixedLookup(contextSource, dictionaryOffset);
438
return
GenericDictionaryLookup
.CreateFixedLookup(contextSource, vtableOffset, dictionaryOffset);
443
return
GenericDictionaryLookup
.CreateNullLookup(contextSource);
448
return
GenericDictionaryLookup
.CreateHelperLookup(contextSource, lookupKind, targetOfLookup);
Compiler\GenericDictionaryLookup.cs (3)
116
public static
GenericDictionaryLookup
CreateFixedLookup(GenericContextSource contextSource, int offset1, int offset2 = UseHelperOffset)
122
public static
GenericDictionaryLookup
CreateHelperLookup(GenericContextSource contextSource, ReadyToRunHelperId helperId, object helperObject)
127
public static
GenericDictionaryLookup
CreateNullLookup(GenericContextSource contextSource)
IL\ILImporter.Scanner.cs (1)
212
GenericDictionaryLookup
lookup = _compilation.ComputeGenericLookup(_canonMethod, helperId, helperArgument);
ILCompiler.RyuJit (1)
JitInterface\CorInfoImpl.RyuJit.cs (1)
260
GenericDictionaryLookup
genericLookup = _compilation.ComputeGenericLookup(callerHandle, helperId, entity);