4 writes to Fp
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\StackWalk\Context\RISCV64\RISCV64Unwinder.cs (1)
625
context.
Fp
= _target.Read<ulong>(sourceAddress);
Contracts\StackWalk\Context\RISCV64Context.cs (3)
58
set =>
Fp
= value.Value;
79
if (name.Equals("fp", StringComparison.OrdinalIgnoreCase)) {
Fp
= value.Value; return true; }
160
case 8:
Fp
= value.Value; return true;
6 references to Fp
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\StackWalk\Context\RISCV64\RISCV64Unwinder.cs (3)
469
context.Sp = context.
Fp
;
491
context.Sp = context.
Fp
- 8u * ((uint)((nextCode << 8) | nextCode1));
624
sourceAddress = startingSp + (uint)Marshal.OffsetOf<RISCV64Context>(nameof(RISCV64Context.
Fp
));
Contracts\StackWalk\Context\RISCV64Context.cs (3)
57
readonly get => new(
Fp
);
119
if (name.Equals("fp", StringComparison.OrdinalIgnoreCase)) { value = new TargetNUInt(
Fp
); return true; }
200
case 8: value = new TargetNUInt(
Fp
); return true;