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