15 writes to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
166
AddressOrValue
= exceptionObject.ToClrDataAddress(_target),
ClrDataFrame.cs (11)
540
AddressOrValue
= locations[0].AddressOrValue,
957
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
967
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
968
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register2), Size = (ulong)pointerSize, IsRegisterValue = true },
973
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
974
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister2, varInfo.StackOffset2), Size = (ulong)pointerSize, IsRegisterValue = false },
979
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = (ulong)pointerSize, IsRegisterValue = false },
980
new NativeVarLocation {
AddressOrValue
= ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true },
985
new NativeVarLocation {
AddressOrValue
= ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = 2 * (ulong)pointerSize, IsRegisterValue = false },
1001
return [new NativeVarLocation {
AddressOrValue
= regValue, Size = (ulong)pointerSize, IsRegisterValue = true }];
1010
return [new NativeVarLocation {
AddressOrValue
= addr, Size = (ulong)pointerSize, IsRegisterValue = false }];
ClrDataValue.cs (3)
472
AddressOrValue
= address,
675
AddressOrValue
= offset,
997
AddressOrValue
= address.Value,
8 references to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (8)
ClrDataFrame.cs (2)
540
AddressOrValue = locations[0].
AddressOrValue
,
548
? locations[0].
AddressOrValue
ClrDataValue.cs (6)
115
*address = _locations[0].
AddressOrValue
;
190
ulong 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
;