15 writes to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
168
IsRegisterValue
= false,
ClrDataFrame.cs (11)
542
IsRegisterValue
= locations[0].IsRegisterValue,
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)
474
IsRegisterValue
= false,
677
IsRegisterValue
= false,
1001
IsRegisterValue
= false,
7 references to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (7)
ClrDataFrame.cs (2)
542
IsRegisterValue = locations[0].
IsRegisterValue
,
547
ulong baseAddress = locations.Length == 1 && !locations[0].
IsRegisterValue
ClrDataValue.cs (5)
110
if (_locations.Length != 1 || _locations[0].
IsRegisterValue
)
187
if (loc.
IsRegisterValue
)
466
ulong address = currentLocation.
IsRegisterValue
1169
*flags = location.
IsRegisterValue
? ClrDataVLocFlag.CLRDATA_VLOC_REGISTER : ClrDataVLocFlag.CLRDATA_VLOC_MEMORY;
1170
*arg = location.
IsRegisterValue
? 0 : location.AddressOrValue;