2 implementations of GetUnwindInfo
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
27public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManagerCore.cs (1)
362TargetPointer IExecutionManager.GetUnwindInfo(CodeBlockHandle codeInfoHandle)
7 references to GetUnwindInfo
Microsoft.Diagnostics.DataContractReader.Contracts (7)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
27public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\StackWalk\Context\AMD64\AMD64Unwinder.cs (2)
54TargetPointer unwindInfoAddr = _eman.GetUnwindInfo(cbh); 1251Data.RuntimeFunction targetFunctionEntry = _target.ProcessedData.GetOrAdd<Data.RuntimeFunction>(_eman.GetUnwindInfo(cbh));
Contracts\StackWalk\Context\ARM\ARMUnwinder.cs (1)
31TargetPointer unwindInfoAddr = _eman.GetUnwindInfo(cbh);
Contracts\StackWalk\Context\ARM64\ARM64Unwinder.cs (1)
58TargetPointer unwindInfoAddr = _eman.GetUnwindInfo(cbh);
Contracts\StackWalk\Context\LoongArch64\LoongArch64Unwinder.cs (1)
43Data.RuntimeFunction functionEntry = _target.ProcessedData.GetOrAdd<Data.RuntimeFunction>(_eman.GetUnwindInfo(cbh));
Contracts\StackWalk\Context\RISCV64\RISCV64Unwinder.cs (1)
51Data.RuntimeFunction functionEntry = _target.ProcessedData.GetOrAdd<Data.RuntimeFunction>(_eman.GetUnwindInfo(cbh));