15 writes to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataExceptionState.cs (1)
168IsRegisterValue = false,
ClrDataFrame.cs (11)
542IsRegisterValue = locations[0].IsRegisterValue, 957new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 967new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 968new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register2), Size = (ulong)pointerSize, IsRegisterValue = true }, 973new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 974new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister2, varInfo.StackOffset2), Size = (ulong)pointerSize, IsRegisterValue = false }, 979new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = (ulong)pointerSize, IsRegisterValue = false }, 980new NativeVarLocation { AddressOrValue = ReadRegister(context, target, varInfo.Register), Size = (ulong)pointerSize, IsRegisterValue = true }, 985new NativeVarLocation { AddressOrValue = ComputeStackAddress(context, target, varInfo.BaseRegister, varInfo.StackOffset), Size = 2 * (ulong)pointerSize, IsRegisterValue = false }, 1001return [new NativeVarLocation { AddressOrValue = regValue, Size = (ulong)pointerSize, IsRegisterValue = true }]; 1010return [new NativeVarLocation { AddressOrValue = addr, Size = (ulong)pointerSize, IsRegisterValue = false }];
ClrDataValue.cs (3)
474IsRegisterValue = false, 677IsRegisterValue = false, 1001IsRegisterValue = false,
7 references to IsRegisterValue
Microsoft.Diagnostics.DataContractReader.Legacy (7)
ClrDataFrame.cs (2)
542IsRegisterValue = locations[0].IsRegisterValue, 547ulong baseAddress = locations.Length == 1 && !locations[0].IsRegisterValue
ClrDataValue.cs (5)
110if (_locations.Length != 1 || _locations[0].IsRegisterValue) 187if (loc.IsRegisterValue) 466ulong address = currentLocation.IsRegisterValue 1169*flags = location.IsRegisterValue ? ClrDataVLocFlag.CLRDATA_VLOC_REGISTER : ClrDataVLocFlag.CLRDATA_VLOC_MEMORY; 1170*arg = location.IsRegisterValue ? 0 : location.AddressOrValue;