15 instantiations of NativeVarLocation
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
156new NativeVarLocation
ClrDataFrame.cs (11)
504new NativeVarLocation 923new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 933new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 934new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register2), Size = (ulong)pointerSize, IsRegisterValue = true }, 939new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 940new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister2, varInfo.StackOffset2), Size = (ulong)pointerSize, IsRegisterValue = false }, 945new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = (ulong)pointerSize, IsRegisterValue = false }, 946new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 951new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = 2 * (ulong)pointerSize, IsRegisterValue = false }, 967return [new NativeVarLocation { AddressOrValue = regValue, Size = (ulong)pointerSize, IsRegisterValue = true }]; 976return [new NativeVarLocation { AddressOrValue = addr, Size = (ulong)pointerSize, IsRegisterValue = false }];
ClrDataValue.cs (3)
414NativeVarLocation location = new() 613NativeVarLocation location = new() 935new NativeVarLocation
14 references to NativeVarLocation
Microsoft.Diagnostics.DataContractReader.Legacy (14)
ClrDataFrame.cs (5)
461NativeVarLocation[] locations = FindAndResolveVarLocation(varInfos, codeOffset, varInfoSlot, context, _target); 885private static NativeVarLocation[] FindAndResolveVarLocation( 912private static NativeVarLocation[] ResolveVarLocation( 958private static NativeVarLocation[] ResolveRegByRef(IPlatformAgnosticContext context, Target target, uint register, int pointerSize) 970private static NativeVarLocation[] ResolveStack(IPlatformAgnosticContext context, Target target, uint baseRegister, int offset, int pointerSize, bool deref)
ClrDataValue.cs (9)
39private readonly NativeVarLocation[] _locations; 47NativeVarLocation[] locations, 65foreach (NativeVarLocation loc in _locations) 177foreach (NativeVarLocation loc in _locations) 409NativeVarLocation currentLocation = _locations[0]; 414NativeVarLocation location = new() 613NativeVarLocation location = new() 904NativeVarLocation[] locations; 1094NativeVarLocation location = _locations[loc];