5 writes to Fp
Microsoft.Diagnostics.DataContractReader.Contracts (5)
Contracts\StackWalk\Context\ARM64\ARM64Unwinder.cs (2)
885
context.
Fp
= _target.Read<ulong>(sourceAddress);
941
context.
Fp
= _target.Read<ulong>(sourceAddress);
Contracts\StackWalk\Context\ARM64Context.cs (3)
60
set =>
Fp
= value.Value;
103
if (name.Equals("fp", StringComparison.OrdinalIgnoreCase)) {
Fp
= value.Value; return true; }
187
case 29:
Fp
= value.Value; return true;
6 references to Fp
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\StackWalk\Context\ARM64\ARM64Unwinder.cs (3)
611
context.Sp = context.
Fp
;
624
context.Sp = context.
Fp
- 8u * _target.Read<byte>(unwindCodePtr);
940
sourceAddress = startingSp + (uint)Marshal.OffsetOf<ARM64Context>(nameof(ARM64Context.
Fp
));
Contracts\StackWalk\Context\ARM64Context.cs (3)
59
readonly get => new(
Fp
);
145
if (name.Equals("fp", StringComparison.OrdinalIgnoreCase)) { value = new TargetNUInt(
Fp
); return true; }
228
case 29: value = new TargetNUInt(
Fp
); return true;