15 writes to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
160
IsRegisterValue
= false,
ClrDataFrame.cs (11)
508
IsRegisterValue
= locations[0].IsRegisterValue,
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)
418
IsRegisterValue
= false,
617
IsRegisterValue
= false,
941
IsRegisterValue
= false,
7 references to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (7)
ClrDataFrame.cs (2)
508
IsRegisterValue = locations[0].
IsRegisterValue
,
513
ulong baseAddress = locations.Length == 1 && !locations[0].
IsRegisterValue
ClrDataValue.cs (5)
104
if (_locations.Length != 1 || _locations[0].
IsRegisterValue
)
179
if (loc.
IsRegisterValue
)
410
ulong address = currentLocation.
IsRegisterValue
1095
*flags = location.
IsRegisterValue
? ClrDataVLocFlag.CLRDATA_VLOC_REGISTER : ClrDataVLocFlag.CLRDATA_VLOC_MEMORY;
1096
*arg = location.
IsRegisterValue
? 0 : location.AddressOrValue;