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