15 writes to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
158AddressOrValue = exceptionObject.ToClrDataAddress(_target),
ClrDataFrame.cs (11)
506AddressOrValue = locations[0].AddressOrValue, 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)
416AddressOrValue = address, 615AddressOrValue = offset, 937AddressOrValue = address.Value,
8 references to AddressOrValue
Microsoft.Diagnostics.DataContractReader.Legacy (8)
ClrDataFrame.cs (2)
506AddressOrValue = locations[0].AddressOrValue, 514? locations[0].AddressOrValue
ClrDataValue.cs (6)
109*address = _locations[0].AddressOrValue; 182ulong 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;