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