2 overrides of Slots
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\VTableSliceNode.cs (2)
115public override IReadOnlyList<MethodDesc> Slots 168public override IReadOnlyList<MethodDesc> Slots
11 references to Slots
ILCompiler.Compiler (11)
Compiler\DependencyAnalysis\EETypeNode.cs (1)
966IReadOnlyList<MethodDesc> virtualSlots = declVTable.Slots;
Compiler\DependencyAnalysis\InterfaceDispatchMapNode.cs (2)
100foreach (MethodDesc slotMethod in vtableSlice.Slots) 171IReadOnlyList<MethodDesc> virtualSlots = interfaceVTable.Slots;
Compiler\DependencyAnalysis\SealedVTableNode.cs (2)
122IReadOnlyList<MethodDesc> virtualSlots = declTypeVTable.Slots; 161virtualSlots = interfaceVTable.Slots;
Compiler\ILScanner.cs (3)
307for (int i = 0; i < vtableSliceNode.Slots.Count; i++) 309MethodDesc slot = vtableSliceNode.Slots[i]; 626IReadOnlyList<MethodDesc> slice = factory.VTable(currentType).Slots;
Compiler\VirtualMethodCallHelper.cs (3)
70IReadOnlyList<MethodDesc> virtualSlots = factory.VTable(owningType).Slots; 110IReadOnlyList<MethodDesc> virtualSlots = factory.VTable(implType).Slots; 162IReadOnlyList<MethodDesc> baseVirtualSlots = factory.VTable(baseType).Slots;