CpuStateX8664
CpuStateX8664* state = new(std::nothrow) CpuStateX8664;
CpuStateX8664* state = new(std::nothrow) CpuStateX8664(
CpuStateX8664* cpuState = dynamic_cast<CpuStateX8664*>(_cpuState);
CpuStateX8664* previousCpuState = NULL;
previousCpuState = new(std::nothrow) CpuStateX8664;
CpuStateX8664* cpuState = dynamic_cast<CpuStateX8664*>(previousCpuState);
CpuStateX8664* state = dynamic_cast<CpuStateX8664*>(frame->GetCpuState());
CpuStateX8664::~CpuStateX8664()
CpuStateX8664::Clone(CpuState*& _clone) const
CpuStateX8664* newState = new(std::nothrow) CpuStateX8664();
CpuStateX8664::UpdateDebugState(void* state, size_t size) const
CpuStateX8664::CpuStateX8664()
CpuStateX8664::InstructionPointer() const
CpuStateX8664::SetInstructionPointer(target_addr_t address)
CpuStateX8664::StackFramePointer() const
CpuStateX8664::StackPointer() const
CpuStateX8664::GetRegisterValue(const Register* reg, BVariant& _value) const
CpuStateX8664::CpuStateX8664(const x86_64_debug_cpu_state& state)
CpuStateX8664::SetRegisterValue(const Register* reg, const BVariant& value)
CpuStateX8664::IsRegisterSet(int32 index) const
CpuStateX8664::IntRegisterValue(int32 index) const
CpuStateX8664::SetIntRegister(int32 index, uint64 value)
CpuStateX8664::FloatRegisterValue(int32 index) const
CpuStateX8664::SetFloatRegister(int32 index, double value)
CpuStateX8664::MMXRegisterValue(int32 index) const
CpuStateX8664::SetMMXRegister(int32 index, const uint8* value)
CpuStateX8664::XMMRegisterValue(int32 index) const
CpuStateX8664::SetXMMRegister(int32 index, const uint8* highValue, const uint8* lowValue)
CpuStateX8664::UnsetRegister(int32 index)
class CpuStateX8664 : public CpuState {
CpuStateX8664();
CpuStateX8664(const x86_64_debug_cpu_state& state);
virtual ~CpuStateX8664();
CpuStateX8664* x64State = dynamic_cast<CpuStateX8664*>(state);
CpuStateToZydisRegContext(CpuStateX8664* state, ZydisRegisterContext* context)