You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
|
|
/*
|
|
|
|
NOTE: Debugger extensions should be compiled with the headers that match the debugger
|
|
you will use.
|
|
You can install the latest debugger package from http://www.microsoft.com/ddk/debugging
|
|
and the debugger has more up to date samples of various debugger extensions to which you
|
|
can refer when you write debugger extensions.
|
|
|
|
*/
|
|
|
|
//
|
|
// Copy some definitions in mp_dbg.h here
|
|
//
|
|
#define MP_LOUD 4
|
|
#define MP_INFO 3
|
|
#define MP_TRACE 2
|
|
#define MP_WARN 1
|
|
#define MP_ERROR 0
|
|
|
|
|
|
#define SIGN_EXTEND(_v) \
|
|
if (GetTypeSize("PVOID") != sizeof(ULONG64)) \
|
|
(_v) = (ULONG64) (LONG64) (LONG) (_v)
|
|
|
|
#define DBG_TEST_FLAG(_V, _F) (((_V) & (_F)) != 0)
|
|
|
|
void PrintMpTcbDetails(ULONG64 pMpTcb, int Verbosity);
|
|
void PrintHwTcbDetails(ULONG64 pHwTcb);
|
|
void PrintMpRfdDetails(ULONG64 pMpRfd, int Verbosity);
|
|
void PrintHwRfdDetails(ULONG64 pHwRfd);
|
|
|
|
BOOL GetData( IN LPVOID ptr, IN ULONG64 AddressPtr, IN ULONG size, IN PCSTR type );
|
|
|
|
|
|
ULONG GetFieldOffsetAndSize(
|
|
IN LPSTR Type,
|
|
IN LPSTR Field,
|
|
OUT PULONG pOffset,
|
|
OUT PULONG pSize);
|
|
|
|
ULONG GetUlongFromAddress(
|
|
ULONG64 Location);
|
|
|
|
ULONG64 GetPointerFromAddress(
|
|
ULONG64 Location);
|
|
|
|
ULONG GetUlongValue(
|
|
PCHAR String);
|
|
|
|
ULONG64 GetPointerValue(
|
|
PCHAR String);
|