10 references to HasGenericDictionarySlot
ILCompiler.Compiler (10)
Compiler\DependencyAnalysis\EETypeNode.cs (2)
921
if (declType.
HasGenericDictionarySlot
() || templateType.
HasGenericDictionarySlot
())
Compiler\DependencyAnalysis\InterfaceDispatchMapNode.cs (2)
202
int emittedInterfaceSlot = interfaceMethodSlot + (interfaceType.
HasGenericDictionarySlot
() ? 1 : 0);
255
int emittedInterfaceSlot = interfaceMethodSlot + (interfaceType.
HasGenericDictionarySlot
() ? 1 : 0);
Compiler\VirtualMethodCallHelper.cs (6)
67
if (owningType.
HasGenericDictionarySlot
() && countDictionarySlots)
98
return (implType.
HasGenericDictionarySlot
() && countDictionarySlots) ? 1 : 0;
106
if (implType.
HasGenericDictionarySlot
() && countDictionarySlots)
159
if ((baseType.
HasGenericDictionarySlot
() || templateBaseType.
HasGenericDictionarySlot
()) && countDictionarySlots)
183
Debug.Assert(type.
HasGenericDictionarySlot
());