3 implementations of GetUnwindInfoBaseAddress
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
29public TargetPointer GetUnwindInfoBaseAddress(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfoBaseAddress(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManager_2.cs (1)
29public TargetPointer GetUnwindInfoBaseAddress(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfoBaseAddress(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManagerCore.cs (1)
363TargetPointer IExecutionManager.GetUnwindInfoBaseAddress(CodeBlockHandle codeInfoHandle)
9 references to GetUnwindInfoBaseAddress
Microsoft.Diagnostics.DataContractReader.Contracts (9)
Contracts\ExecutionManager\ExecutionManager_1.cs (1)
29public TargetPointer GetUnwindInfoBaseAddress(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfoBaseAddress(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManager_2.cs (1)
29public TargetPointer GetUnwindInfoBaseAddress(CodeBlockHandle codeInfoHandle) => _executionManagerCore.GetUnwindInfoBaseAddress(codeInfoHandle);
Contracts\ExecutionManager\ExecutionManagerCore.ReadyToRunJitManager.cs (1)
345rangeStart = executionManager.GetUnwindInfoBaseAddress(cbh);
Contracts\StackWalk\Context\AMD64\AMD64Unwinder.cs (2)
53TargetPointer imageBase = _eman.GetUnwindInfoBaseAddress(cbh); 1248TargetPointer targetImageBase = _eman.GetUnwindInfoBaseAddress(cbh);
Contracts\StackWalk\Context\ARM\ARMUnwinder.cs (1)
30TargetPointer imageBase = _eman.GetUnwindInfoBaseAddress(cbh);
Contracts\StackWalk\Context\ARM64\ARM64Unwinder.cs (1)
57TargetPointer imageBase = _eman.GetUnwindInfoBaseAddress(cbh);
Contracts\StackWalk\Context\LoongArch64\LoongArch64Unwinder.cs (1)
42TargetPointer imageBase = _eman.GetUnwindInfoBaseAddress(cbh);
Contracts\StackWalk\Context\RISCV64\RISCV64Unwinder.cs (1)
50TargetPointer imageBase = _eman.GetUnwindInfoBaseAddress(cbh);