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