mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 04:13:22 +08:00
685 lines
18 KiB
C++
685 lines
18 KiB
C++
#include "stdafx.h"
|
||
|
||
#include "dbgclient.h"
|
||
#include "dbgexcept.h"
|
||
|
||
namespace pykd {
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
template<typename T>
|
||
struct PyListType
|
||
{
|
||
typedef T ElementType;
|
||
};
|
||
|
||
template<>
|
||
struct PyListType<char>
|
||
{
|
||
typedef int ElementType;
|
||
};
|
||
|
||
template<typename T>
|
||
python::list
|
||
DebugClient::loadArray( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
std::vector<T> buffer(count);
|
||
|
||
if (count)
|
||
readMemory( m_dataSpaces, offset, &buffer[0], count*sizeof(T), phyAddr );
|
||
|
||
python::list lst;
|
||
|
||
for( ULONG i = 0; i < count; ++i )
|
||
lst.append( static_cast<PyListType<T>::ElementType> (buffer[i]) );
|
||
|
||
return lst;
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64
|
||
addr64( IDebugControl4* dbgControl, ULONG64 addr)
|
||
{
|
||
HRESULT hres;
|
||
|
||
ULONG processorMode;
|
||
hres = dbgControl->GetActualProcessorType( &processorMode );
|
||
if ( FAILED( hres ) )
|
||
throw DbgException( "IDebugControl::GetEffectiveProcessorType failed" );
|
||
|
||
switch( processorMode )
|
||
{
|
||
case IMAGE_FILE_MACHINE_I386:
|
||
if ( *( (ULONG*)&addr + 1 ) == 0 )
|
||
return (ULONG64)(LONG)addr;
|
||
|
||
case IMAGE_FILE_MACHINE_AMD64:
|
||
break;
|
||
|
||
default:
|
||
throw DbgException( "Unknown processor type" );
|
||
break;
|
||
}
|
||
|
||
return addr;
|
||
}
|
||
|
||
|
||
ULONG64
|
||
DebugClient::addr64( ULONG64 addr )
|
||
{
|
||
return pykd::addr64( m_control, addr );
|
||
}
|
||
|
||
ULONG64
|
||
addr64( ULONG64 addr)
|
||
{
|
||
return g_dbgClient->addr64( addr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
bool DebugClient::isVaValid( ULONG64 addr )
|
||
{
|
||
HRESULT hres;
|
||
ULONG offsetInfo;
|
||
|
||
hres =
|
||
m_dataSpaces->GetOffsetInformation(
|
||
DEBUG_DATA_SPACE_VIRTUAL,
|
||
DEBUG_OFFSINFO_VIRTUAL_SOURCE,
|
||
addr,
|
||
&offsetInfo,
|
||
sizeof( offsetInfo ),
|
||
NULL );
|
||
|
||
if ( FAILED( hres ) )
|
||
throw DbgException( "IDebugDataSpace4::GetOffsetInformation failed" );
|
||
|
||
return offsetInfo != DEBUG_VSOURCE_INVALID;
|
||
}
|
||
|
||
bool isVaValid( ULONG64 addr )
|
||
{
|
||
return g_dbgClient->isVaValid( addr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
void
|
||
readMemory( IDebugDataSpaces4* dbgDataSpace, ULONG64 address, PVOID buffer, ULONG length, bool phyAddr = FALSE )
|
||
{
|
||
HRESULT hres;
|
||
|
||
CComQIPtr<IDebugControl4> dbgControl(dbgDataSpace);
|
||
|
||
if ( phyAddr == false )
|
||
{
|
||
hres = dbgDataSpace->ReadVirtual( addr64( dbgControl, address), buffer, length, NULL );
|
||
}
|
||
else
|
||
{
|
||
hres = dbgDataSpace->ReadPhysical( address, buffer, length, NULL );
|
||
}
|
||
|
||
if ( FAILED( hres ) )
|
||
throw MemoryException( address, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
void
|
||
readMemoryPtr( IDebugDataSpaces4* dbgDataSpace, ULONG64 address, PULONG64 ptrValue )
|
||
{
|
||
HRESULT hres;
|
||
|
||
CComQIPtr<IDebugControl4> dbgControl(dbgDataSpace);
|
||
|
||
hres = dbgDataSpace->ReadPointersVirtual( 1, addr64( dbgControl, address), ptrValue );
|
||
|
||
if ( FAILED( hres ) )
|
||
throw MemoryException( address, false );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
bool compareMemoryRange( IDebugDataSpaces4* dbgDataSpace, ULONG64 addr1, ULONG64 addr2, ULONG length, bool phyAddr )
|
||
{
|
||
bool result = false;
|
||
|
||
CComQIPtr<IDebugControl4> dbgControl(dbgDataSpace);
|
||
|
||
addr1 = addr64( addr1 );
|
||
addr2 = addr64( addr2 );
|
||
|
||
std::vector<char> m1(length);
|
||
std::vector<char> m2(length);
|
||
|
||
readMemory( dbgDataSpace, addr64( dbgControl, addr1), &m1[0], length, phyAddr );
|
||
readMemory( dbgDataSpace, addr64( dbgControl, addr2), &m2[0], length, phyAddr );
|
||
|
||
return std::equal( m1.begin(), m1.end(), m2.begin() );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::string DebugClient::loadChars( ULONG64 address, ULONG number, bool phyAddr )
|
||
{
|
||
std::vector<char> buffer(number);
|
||
|
||
ULONG bufferSize = (ULONG)( sizeof(std::vector<char>::value_type)*buffer.size() );
|
||
|
||
if (number)
|
||
readMemory( m_dataSpaces, address, &buffer[0], bufferSize, phyAddr );
|
||
|
||
return std::string( buffer.begin(), buffer.end() );
|
||
}
|
||
|
||
std::string loadChars( ULONG64 address, ULONG number, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadChars( address, number, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::wstring DebugClient::loadWChars( ULONG64 address, ULONG number, bool phyAddr )
|
||
{
|
||
std::vector<wchar_t> buffer(number);
|
||
|
||
ULONG bufferSize = (ULONG)( sizeof(std::vector<wchar_t>::value_type)*buffer.size() );
|
||
|
||
if (number)
|
||
readMemory( m_dataSpaces, address, &buffer[0], bufferSize, phyAddr );
|
||
|
||
return std::wstring( buffer.begin(), buffer.end() );
|
||
}
|
||
|
||
std::wstring loadWChars( ULONG64 address, ULONG number, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadWChars( address, number, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::string DebugClient::loadCStr( ULONG64 address )
|
||
{
|
||
const size_t maxLength = 0x1000;
|
||
|
||
address = addr64( address );
|
||
|
||
std::vector<char> buffer(maxLength);
|
||
|
||
HRESULT hres =
|
||
m_dataSpaces->ReadMultiByteStringVirtual(
|
||
address,
|
||
maxLength,
|
||
&buffer[0],
|
||
maxLength,
|
||
NULL );
|
||
|
||
if ( FAILED( hres ) )
|
||
throw MemoryException( address );
|
||
|
||
return std::string( &buffer[0] );
|
||
}
|
||
|
||
std::string loadCStr( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->loadCStr( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::wstring DebugClient::loadWStr( ULONG64 address )
|
||
{
|
||
const size_t maxLength = 0x2000;
|
||
|
||
address = addr64( address );
|
||
|
||
std::vector<char> buffer(maxLength);
|
||
|
||
HRESULT hres =
|
||
m_dataSpaces->ReadMultiByteStringVirtual(
|
||
address,
|
||
maxLength,
|
||
&buffer[0],
|
||
maxLength,
|
||
NULL );
|
||
|
||
if ( FAILED( hres ) )
|
||
throw MemoryException( address );
|
||
|
||
return std::wstring( (wchar_t*)&buffer[0] );
|
||
}
|
||
|
||
std::wstring loadWStr( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->loadWStr( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadBytes( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<unsigned char>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadBytes( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadBytes( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<unsigned short>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadDWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<unsigned long>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadDWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadDWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadQWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<unsigned __int64>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadQWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadQWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadSignBytes( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<char>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadSignBytes( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadSignBytes( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadSignWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<short>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadSignWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadSignWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadSignDWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<long>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadSignDWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadSignDWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadSignQWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return loadArray<__int64>( offset, count, phyAddr );
|
||
}
|
||
|
||
python::list loadSignQWords( ULONG64 offset, ULONG count, bool phyAddr )
|
||
{
|
||
return g_dbgClient->loadSignQWords( offset, count, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 DebugClient::ptrByte( ULONG64 offset )
|
||
{
|
||
unsigned char val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
ULONG64 ptrByte( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrByte( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 DebugClient::ptrWord( ULONG64 offset )
|
||
{
|
||
unsigned short val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
ULONG64 ptrWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 ptrDWord( ULONG64 offset, IDebugDataSpaces4* dbgDataSpace )
|
||
{
|
||
unsigned long val = 0;
|
||
|
||
readMemory( dbgDataSpace, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
ULONG64 DebugClient::ptrDWord( ULONG64 offset )
|
||
{
|
||
return pykd::ptrDWord( offset, m_dataSpaces );
|
||
}
|
||
|
||
ULONG64 ptrDWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrDWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 ptrQWord( ULONG64 offset, IDebugDataSpaces4* dbgDataSpace )
|
||
{
|
||
unsigned __int64 val = 0;
|
||
|
||
readMemory( dbgDataSpace, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
ULONG64 DebugClient::ptrQWord( ULONG64 offset )
|
||
{
|
||
return pykd::ptrQWord( offset, m_dataSpaces );
|
||
}
|
||
|
||
ULONG64 ptrQWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrQWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 ptrMWord( ULONG64 offset, IDebugDataSpaces4* dbgDataSpace )
|
||
{
|
||
return ptrSize() == 8 ? ptrQWord( offset, dbgDataSpace ) : ptrDWord(offset, dbgDataSpace);
|
||
}
|
||
|
||
ULONG64 DebugClient::ptrMWord( ULONG64 offset )
|
||
{
|
||
return ptrSize() == 8 ? ptrQWord( offset ) : ptrDWord(offset);
|
||
}
|
||
|
||
ULONG64 ptrMWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrMWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
ULONG64 ptrPtr( ULONG64 offset, IDebugDataSpaces4* dbgDataSpace )
|
||
{
|
||
return ptrMWord( offset, dbgDataSpace );
|
||
}
|
||
|
||
ULONG64 DebugClient::ptrPtr( ULONG64 offset )
|
||
{
|
||
return pykd::ptrPtr( offset, m_dataSpaces );
|
||
}
|
||
|
||
ULONG64 ptrPtr( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrPtr( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
LONG64 DebugClient::ptrSignByte( ULONG64 offset )
|
||
{
|
||
char val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
LONG64 ptrSignByte( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrSignByte( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
LONG64 DebugClient::ptrSignWord( ULONG64 offset )
|
||
{
|
||
short val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
LONG64 ptrSignWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrSignWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
LONG64 DebugClient::ptrSignDWord( ULONG64 offset )
|
||
{
|
||
long val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
LONG64 ptrSignDWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrSignDWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
LONG64 DebugClient::ptrSignQWord( ULONG64 offset )
|
||
{
|
||
__int64 val = 0;
|
||
|
||
readMemory( m_dataSpaces, offset, &val, sizeof(val), false );
|
||
|
||
return val;
|
||
}
|
||
|
||
LONG64 ptrSignQWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrSignQWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
LONG64 DebugClient::ptrSignMWord( ULONG64 offset )
|
||
{
|
||
return ptrSize() == 8 ? ptrSignQWord( offset ) : ptrSignDWord(offset);
|
||
}
|
||
|
||
LONG64 ptrSignMWord( ULONG64 offset )
|
||
{
|
||
return g_dbgClient->ptrSignMWord( offset );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
bool DebugClient::compareMemory( ULONG64 addr1, ULONG64 addr2, ULONG length, bool phyAddr )
|
||
{
|
||
return compareMemoryRange( m_dataSpaces, addr1, addr2, length, phyAddr );
|
||
}
|
||
|
||
bool compareMemory( ULONG64 addr1, ULONG64 addr2, ULONG length, bool phyAddr )
|
||
{
|
||
return g_dbgClient->compareMemory( addr1, addr2, length, phyAddr );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::wstring DebugClient::loadUnicodeStr( ULONG64 address )
|
||
{
|
||
USHORT length;
|
||
USHORT maximumLength;
|
||
ULONG64 buffer = 0;
|
||
|
||
readMemory( m_dataSpaces, address, &length, sizeof( length ) );
|
||
|
||
if ( length == 0 )
|
||
return L"";
|
||
|
||
address += sizeof( length );
|
||
|
||
readMemory( m_dataSpaces, address, &maximumLength, sizeof( maximumLength ) );
|
||
|
||
address += sizeof( maximumLength );
|
||
|
||
if ( is64bitSystem() )
|
||
{
|
||
address += address % 8 ? ( 8 - address % 8 ) : 0 ; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 8 <20><><EFBFBD><EFBFBD>
|
||
|
||
buffer = ptrPtr( address );
|
||
|
||
address += 8;
|
||
}
|
||
else
|
||
{
|
||
address += address % 4 ? ( 4 - address % 4 ) : 0 ; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 8 <20><><EFBFBD><EFBFBD>
|
||
|
||
buffer = addr64( ptrPtr( address ) );
|
||
|
||
address += 4;
|
||
}
|
||
|
||
std::vector<wchar_t> str(length / 2);
|
||
|
||
readMemory( m_dataSpaces, buffer, &str[0], length );
|
||
|
||
return std::wstring (&str[0], length/2);
|
||
}
|
||
|
||
std::wstring loadUnicodeStr( ULONG64 address )
|
||
{
|
||
return g_dbgClient->loadUnicodeStr( address );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
std::string DebugClient::loadAnsiStr( ULONG64 address )
|
||
{
|
||
USHORT length;
|
||
USHORT maximumLength;
|
||
ULONG64 buffer = 0;
|
||
|
||
readMemory( m_dataSpaces, address, &length, sizeof( length ) );
|
||
|
||
if ( length == 0 )
|
||
return "";
|
||
|
||
address += sizeof( length );
|
||
|
||
readMemory( m_dataSpaces, address, &maximumLength, sizeof( maximumLength ) );
|
||
|
||
address += sizeof( maximumLength );
|
||
|
||
if ( is64bitSystem() )
|
||
{
|
||
address += address % 8 ? ( 8 - address % 8 ) : 0 ; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 8 <20><><EFBFBD><EFBFBD>
|
||
|
||
buffer = ptrPtr( address );
|
||
|
||
address += 8;
|
||
}
|
||
else
|
||
{
|
||
address += address % 4 ? ( 4 - address % 4 ) : 0 ; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 8 <20><><EFBFBD><EFBFBD>
|
||
|
||
buffer = addr64( ptrPtr( address ) );
|
||
|
||
address += 4;
|
||
}
|
||
|
||
std::vector<char> str(length);
|
||
|
||
readMemory( m_dataSpaces, buffer, &str[0], length );
|
||
|
||
return std::string (&str[0], length);
|
||
}
|
||
|
||
|
||
std::string loadAnsiStr( ULONG64 address )
|
||
{
|
||
return g_dbgClient->loadAnsiStr( address );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadPtrList( ULONG64 address )
|
||
{
|
||
ULONG64 entryAddress = 0;
|
||
|
||
python::list lst;
|
||
|
||
for( entryAddress = ptrPtr( address ); entryAddress != address && entryAddress != 0; entryAddress = ptrPtr( entryAddress ) )
|
||
lst.append( entryAddress );
|
||
|
||
return lst;
|
||
}
|
||
|
||
python::list loadPtrList( ULONG64 address )
|
||
{
|
||
return g_dbgClient->loadPtrList( address );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
python::list DebugClient::loadPtrArray( ULONG64 address, ULONG number )
|
||
{
|
||
return ptrSize() == 8 ? loadQWords( address, number ) : loadDWords( address, number );
|
||
}
|
||
|
||
python::list loadPtrArray( ULONG64 address, ULONG number )
|
||
{
|
||
return g_dbgClient->loadPtrArray( address, number );
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
}; // end of pykd
|
||
|