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