3 implementations of GetUnwindInfo
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
28public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManager_2.cs (1)
28public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManagerCore.cs (1)
352TargetPointer IExecutionManager.GetUnwindInfo(CodeBlockHandle codeInfoHandle)
8 references to GetUnwindInfo
Microsoft.Diagnostics.DataContractReader.Contracts (8)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
28public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManager_2.cs (1)
28public TargetPointer GetUnwindInfo(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfo(codeInfoHandle);
Contracts\StackWalk\Context\AMD64\AMD64Unwinder.cs (2)
54TargetPointer unwindInfoAddr = _eman.GetUnwindInfo(cbh); 1249Data.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));