blob: d4c6c267d4f18e0c01b355b1ba004c0ebb8a3e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
#ifndef __unwinder_h__
#define __unwinder_h__
//---------------------------------------------------------------------------------------
//
// OOPStackUnwinder is the abstract base class for unwinding stack frames. Each of the two 64-bit platforms
// has its own derived class. Although the name of this class and its derived classes have changed, they
// are actually borrowed from dbghelp.dll. (StackWalk64() is built on top of these classes.) We have ripped
// out everything we don't need such as symbol lookup and various state, and keep just enough code to support
// VirtualUnwind(). The managed debugging infrastructure can't call RtlVirtualUnwind() because it doesn't
// work from out-of-processr
//
// Notes:
// To see what we have changed in the borrowed source, you can diff the original version and our version.
// For example, on X64, you can diff clr\src\Debug\daccess\amd64\dbs_stack_x64.cpp (the original) and
// clr\src\Debug\daccess\amd64\unwinder_amd64.cpp.
//
class OOPStackUnwinder
{
protected:
// Given a control PC, return the base of the module it is in. For jitted managed code, this is the
// start of the code heap.
static HRESULT GetModuleBase( DWORD64 address,
__out PDWORD64 pdwBase);
// Given a control PC, return the function entry of the functoin it is in.
static HRESULT GetFunctionEntry( DWORD64 address,
__out_ecount(cbBuffer) PVOID pBuffer,
DWORD cbBuffer);
};
#endif // __unwinder_h__
|