1 instantiation of LiveSlot
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\GCInfo\GCInfoDecoder.cs (1)
537
result.Add(new
LiveSlot
(slot.IsRegister, slot.RegisterNumber, slot.SpOffset, (uint)slot.Base, gcFlags));
7 references to LiveSlot
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IGCInfo.cs (1)
55
IReadOnlyList<
LiveSlot
> EnumerateLiveSlots(IGCInfoHandle handle, uint instructionOffset, GcSlotEnumerationOptions options) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\GCInfo\GCInfo_1.cs (1)
43
IReadOnlyList<
LiveSlot
> IGCInfo.EnumerateLiveSlots(IGCInfoHandle gcInfoHandle, uint instructionOffset, GcSlotEnumerationOptions options)
Contracts\GCInfo\GCInfoDecoder.cs (2)
529
IReadOnlyList<
LiveSlot
> IGCInfoDecoder.EnumerateLiveSlots(
533
List<
LiveSlot
> result = [];
Contracts\GCInfo\IGCInfoDecoder.cs (1)
15
IReadOnlyList<
LiveSlot
> EnumerateLiveSlots(uint instructionOffset, GcSlotEnumerationOptions options);
Contracts\StackWalk\GC\GcScanner.cs (2)
52
IReadOnlyList<
LiveSlot
> liveSlots = _gcInfo.EnumerateLiveSlots(handle, offsetToUse, options);
53
foreach (
LiveSlot
slot in liveSlots)