pykd/pykd/disasm.h
SND\kernelnet_cp 95c135ed38 [0.1.x] added : disasm class
git-svn-id: https://pykd.svn.codeplex.com/svn@70760 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:06:26 +04:00

70 lines
1.3 KiB
C++

#pragma once
#include "dbgobj.h"
namespace pykd {
/////////////////////////////////////////////////////////////////////////////////
class Disasm : private DbgObject {
public:
Disasm( IDebugClient4 *client, ULONG64 offset = 0 );
Disasm( ULONG64 offset = 0);
std::string disassemble() {
std::string s = m_disasm;
m_currentOffset += m_length;
doDisasm();
return s;
}
std::string reset() {
m_currentOffset = m_beginOffset;
doDisasm();
return m_disasm;
}
std::string
assembly( const std::string &instr );
std::string instruction() const {
return m_disasm;
}
ULONG64 begin() const {
return m_beginOffset;
}
ULONG64 current() const {
return m_currentOffset;
}
ULONG length() const {
return m_length;
}
ULONG64 ea() const {
return m_ea;
}
private:
void doDisasm();
ULONG64 m_beginOffset;
ULONG64 m_currentOffset;
ULONG64 m_ea;
ULONG m_length;
std::string m_disasm;
};
/////////////////////////////////////////////////////////////////////////////////
} ; // end pykd namespace