15 writes to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
166AddressOrValue = exceptionObject.ToClrDataAddress(_target),
ClrDataFrame.cs (11)
540AddressOrValue = locations[0].AddressOrValue, 957new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 967new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 968new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register2), Size = (ulong)pointerSize, IsRegisterValue = true }, 973new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 974new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister2, varInfo.StackOffset2), Size = (ulong)pointerSize, IsRegisterValue = false }, 979new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = (ulong)pointerSize, IsRegisterValue = false }, 980new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 985new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = 2 * (ulong)pointerSize, IsRegisterValue = false }, 1001return [new NativeVarLocation { AddressOrValue = regValue, Size = (ulong)pointerSize, IsRegisterValue = true }]; 1010return [new NativeVarLocation { AddressOrValue = addr, Size = (ulong)pointerSize, IsRegisterValue = false }];
ClrDataValue.cs (3)
472AddressOrValue = address, 675AddressOrValue = offset, 997AddressOrValue = address.Value,
8 references to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (8)
ClrDataFrame.cs (2)
540AddressOrValue = locations[0].AddressOrValue, 548? locations[0].AddressOrValue
ClrDataValue.cs (6)
115*address = _locations[0].AddressOrValue; 190ulong value = loc.AddressOrValue; 200_target.ReadBuffer(loc.AddressOrValue, memBytes); 467? currentLocation.AddressOrValue 468: _target.ReadPointer(new TargetPointer(currentLocation.AddressOrValue)).Value; 1170*arg = location.IsRegisterValue ? 0 : location.AddressOrValue;