Home
last modified time | relevance | path

Searched refs:EmulationStateARM (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp24 EmulationStateARM::EmulationStateARM() : m_gpr(), m_vfp_regs(), m_memory() { in EmulationStateARM() function in EmulationStateARM
28 EmulationStateARM::~EmulationStateARM() {} in ~EmulationStateARM()
144 size_t EmulationStateARM::ReadPseudoMemory( in ReadPseudoMemory()
152 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in ReadPseudoMemory()
185 size_t EmulationStateARM::WritePseudoMemory( in WritePseudoMemory()
192 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in WritePseudoMemory()
221 bool EmulationStateARM::ReadPseudoRegister( in ReadPseudoRegister()
229 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in ReadPseudoRegister()
240 bool EmulationStateARM::WritePseudoRegister( in WritePseudoRegister()
248 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in WritePseudoRegister()
[all …]
H A DEmulationStateARM.h18 class EmulationStateARM {
20 EmulationStateARM();
22 virtual ~EmulationStateARM();
40 bool CompareState(EmulationStateARM &other_state);
77 DISALLOW_COPY_AND_ASSIGN(EmulationStateARM);
H A DEmulateInstructionARM.cpp14466 EmulationStateARM before_state; in TestEmulation()
14467 EmulationStateARM after_state; in TestEmulation()
14496 SetCallbacks(&EmulationStateARM::ReadPseudoMemory, in TestEmulation()
14497 &EmulationStateARM::WritePseudoMemory, in TestEmulation()
14498 &EmulationStateARM::ReadPseudoRegister, in TestEmulation()
14499 &EmulationStateARM::WritePseudoRegister); in TestEmulation()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile324 SRCS+= Plugins/Instruction/ARM/EmulationStateARM.cpp