Symbol: CpuStateX86
src/kits/debugger/arch/x86/ArchitectureX86.cpp
329
CpuStateX86* state = new(std::nothrow) CpuStateX86;
src/kits/debugger/arch/x86/ArchitectureX86.cpp
345
CpuStateX86* state = new(std::nothrow) CpuStateX86(
src/kits/debugger/arch/x86/ArchitectureX86.cpp
360
CpuStateX86* cpuState = dynamic_cast<CpuStateX86*>(_cpuState);
src/kits/debugger/arch/x86/ArchitectureX86.cpp
476
CpuStateX86* previousCpuState = NULL;
src/kits/debugger/arch/x86/ArchitectureX86.cpp
479
previousCpuState = new(std::nothrow) CpuStateX86;
src/kits/debugger/arch/x86/ArchitectureX86.cpp
504
CpuStateX86* cpuState = dynamic_cast<CpuStateX86*>(previousCpuState);
src/kits/debugger/arch/x86/ArchitectureX86.cpp
764
CpuStateX86* state = dynamic_cast<CpuStateX86*>(frame->GetCpuState());
src/kits/debugger/arch/x86/CpuStateX86.cpp
114
CpuStateX86::UpdateDebugState(void* state, size_t size) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
16
CpuStateX86::CpuStateX86()
src/kits/debugger/arch/x86/CpuStateX86.cpp
161
CpuStateX86::InstructionPointer() const
src/kits/debugger/arch/x86/CpuStateX86.cpp
169
CpuStateX86::SetInstructionPointer(target_addr_t address)
src/kits/debugger/arch/x86/CpuStateX86.cpp
176
CpuStateX86::StackFramePointer() const
src/kits/debugger/arch/x86/CpuStateX86.cpp
184
CpuStateX86::StackPointer() const
src/kits/debugger/arch/x86/CpuStateX86.cpp
192
CpuStateX86::GetRegisterValue(const Register* reg, BVariant& _value) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
227
CpuStateX86::SetRegisterValue(const Register* reg, const BVariant& value)
src/kits/debugger/arch/x86/CpuStateX86.cpp
24
CpuStateX86::CpuStateX86(const x86_debug_cpu_state& state)
src/kits/debugger/arch/x86/CpuStateX86.cpp
261
CpuStateX86::IsRegisterSet(int32 index) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
268
CpuStateX86::IntRegisterValue(int32 index) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
278
CpuStateX86::SetIntRegister(int32 index, uint32 value)
src/kits/debugger/arch/x86/CpuStateX86.cpp
289
CpuStateX86::FloatRegisterValue(int32 index) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
301
CpuStateX86::SetFloatRegister(int32 index, double value)
src/kits/debugger/arch/x86/CpuStateX86.cpp
312
CpuStateX86::MMXRegisterValue(int32 index) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
324
CpuStateX86::SetMMXRegister(int32 index, const uint8* value)
src/kits/debugger/arch/x86/CpuStateX86.cpp
336
CpuStateX86::XMMRegisterValue(int32 index) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
348
CpuStateX86::SetXMMRegister(int32 index, const uint8* value)
src/kits/debugger/arch/x86/CpuStateX86.cpp
360
CpuStateX86::UnsetRegister(int32 index)
src/kits/debugger/arch/x86/CpuStateX86.cpp
85
CpuStateX86::~CpuStateX86()
src/kits/debugger/arch/x86/CpuStateX86.cpp
91
CpuStateX86::Clone(CpuState*& _clone) const
src/kits/debugger/arch/x86/CpuStateX86.cpp
93
CpuStateX86* newState = new(std::nothrow) CpuStateX86();
src/kits/debugger/arch/x86/CpuStateX86.h
81
class CpuStateX86 : public CpuState {
src/kits/debugger/arch/x86/CpuStateX86.h
83
CpuStateX86();
src/kits/debugger/arch/x86/CpuStateX86.h
84
CpuStateX86(const x86_debug_cpu_state& state);
src/kits/debugger/arch/x86/CpuStateX86.h
85
virtual ~CpuStateX86();
src/kits/debugger/arch/x86/disasm/DisassemblerX86.cpp
196
CpuStateX86* x86State = dynamic_cast<CpuStateX86*>(state);
src/kits/debugger/arch/x86/disasm/DisassemblerX86.cpp
23
CpuStateToZydisRegContext(CpuStateX86* state, ZydisRegisterContext* context)