Searched refs:EmulationStateARM (Results 1 – 4 of 4) sorted by relevance
23 EmulationStateARM::EmulationStateARM() : m_vfp_regs(), m_memory() { in EmulationStateARM() function in EmulationStateARM27 EmulationStateARM::~EmulationStateARM() = default;143 size_t EmulationStateARM::ReadPseudoMemory( in ReadPseudoMemory()151 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in ReadPseudoMemory()184 size_t EmulationStateARM::WritePseudoMemory( in WritePseudoMemory()191 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in WritePseudoMemory()220 bool EmulationStateARM::ReadPseudoRegister( in ReadPseudoRegister()228 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in ReadPseudoRegister()239 bool EmulationStateARM::WritePseudoRegister( in WritePseudoRegister()247 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in WritePseudoRegister()[all …]
17 class EmulationStateARM {19 EmulationStateARM();21 virtual ~EmulationStateARM();39 bool CompareState(EmulationStateARM &other_state);76 EmulationStateARM(const EmulationStateARM &) = delete;77 const EmulationStateARM &operator=(const EmulationStateARM &) = delete;
14422 EmulationStateARM before_state; in TestEmulation()14423 EmulationStateARM after_state; in TestEmulation()14452 SetCallbacks(&EmulationStateARM::ReadPseudoMemory, in TestEmulation()14453 &EmulationStateARM::WritePseudoMemory, in TestEmulation()14454 &EmulationStateARM::ReadPseudoRegister, in TestEmulation()14455 &EmulationStateARM::WritePseudoRegister); in TestEmulation()
361 SRCS+= Plugins/Instruction/ARM/EmulationStateARM.cpp