Symbol: CpuStateX8664
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
406
CpuStateX8664* state = new(std::nothrow) CpuStateX8664;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
422
CpuStateX8664* state = new(std::nothrow) CpuStateX8664(
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
437
CpuStateX8664* cpuState = dynamic_cast<CpuStateX8664*>(_cpuState);
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
553
CpuStateX8664* previousCpuState = NULL;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
556
previousCpuState = new(std::nothrow) CpuStateX8664;
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
581
CpuStateX8664* cpuState = dynamic_cast<CpuStateX8664*>(previousCpuState);
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
839
CpuStateX8664* state = dynamic_cast<CpuStateX8664*>(frame->GetCpuState());
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
122
CpuStateX8664::~CpuStateX8664()
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
128
CpuStateX8664::Clone(CpuState*& _clone) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
130
CpuStateX8664* newState = new(std::nothrow) CpuStateX8664();
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
151
CpuStateX8664::UpdateDebugState(void* state, size_t size) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
17
CpuStateX8664::CpuStateX8664()
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
207
CpuStateX8664::InstructionPointer() const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
215
CpuStateX8664::SetInstructionPointer(target_addr_t address)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
222
CpuStateX8664::StackFramePointer() const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
230
CpuStateX8664::StackPointer() const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
238
CpuStateX8664::GetRegisterValue(const Register* reg, BVariant& _value) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
24
CpuStateX8664::CpuStateX8664(const x86_64_debug_cpu_state& state)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
273
CpuStateX8664::SetRegisterValue(const Register* reg, const BVariant& value)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
308
CpuStateX8664::IsRegisterSet(int32 index) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
315
CpuStateX8664::IntRegisterValue(int32 index) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
325
CpuStateX8664::SetIntRegister(int32 index, uint64 value)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
336
CpuStateX8664::FloatRegisterValue(int32 index) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
348
CpuStateX8664::SetFloatRegister(int32 index, double value)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
359
CpuStateX8664::MMXRegisterValue(int32 index) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
371
CpuStateX8664::SetMMXRegister(int32 index, const uint8* value)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
383
CpuStateX8664::XMMRegisterValue(int32 index) const
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
395
CpuStateX8664::SetXMMRegister(int32 index, const uint8* highValue, const uint8* lowValue)
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
409
CpuStateX8664::UnsetRegister(int32 index)
src/kits/debugger/arch/x86_64/CpuStateX8664.h
107
class CpuStateX8664 : public CpuState {
src/kits/debugger/arch/x86_64/CpuStateX8664.h
109
CpuStateX8664();
src/kits/debugger/arch/x86_64/CpuStateX8664.h
110
CpuStateX8664(const x86_64_debug_cpu_state& state);
src/kits/debugger/arch/x86_64/CpuStateX8664.h
111
virtual ~CpuStateX8664();
src/kits/debugger/arch/x86_64/disasm/DisassemblerX8664.cpp
204
CpuStateX8664* x64State = dynamic_cast<CpuStateX8664*>(state);
src/kits/debugger/arch/x86_64/disasm/DisassemblerX8664.cpp
24
CpuStateToZydisRegContext(CpuStateX8664* state, ZydisRegisterContext* context)