15 writes to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
158
AddressOrValue
= exceptionObject.ToClrDataAddress(_target),
ClrDataFrame.cs (11)
506
AddressOrValue
= locations[0].AddressOrValue,
923
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
933
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
934
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register2), Size = (ulong)pointerSize, IsRegisterValue = true },
939
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
940
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister2, varInfo.StackOffset2), Size = (ulong)pointerSize, IsRegisterValue = false },
945
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = (ulong)pointerSize, IsRegisterValue = false },
946
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
951
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = 2 * (ulong)pointerSize, IsRegisterValue = false },
967
return [new NativeVarLocation {
AddressOrValue
= regValue, Size = (ulong)pointerSize, IsRegisterValue = true }];
976
return [new NativeVarLocation {
AddressOrValue
= addr, Size = (ulong)pointerSize, IsRegisterValue = false }];
ClrDataValue.cs (3)
416
AddressOrValue
= address,
615
AddressOrValue
= offset,
937
AddressOrValue
= address.Value,
8 references to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (8)
ClrDataFrame.cs (2)
506
AddressOrValue = locations[0].
AddressOrValue
,
514
? locations[0].
AddressOrValue
ClrDataValue.cs (6)
109
*address = _locations[0].
AddressOrValue
;
182
ulong value = loc.
AddressOrValue
;
192
_target.ReadBuffer(loc.
AddressOrValue
, memBytes);
411
? currentLocation.
AddressOrValue
412
: _target.ReadPointer(new TargetPointer(currentLocation.
AddressOrValue
)).Value;
1096
*arg = location.IsRegisterValue ? 0 : location.
AddressOrValue
;