Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulationStateARM.cpp23 EmulationStateARM::EmulationStateARM() : m_vfp_regs(), m_memory() { in EmulationStateARM() function in EmulationStateARM
27 EmulationStateARM::~EmulationStateARM() = default;
29 bool EmulationStateARM::LoadPseudoRegistersFromFrame(StackFrame &frame) { in LoadPseudoRegistersFromFrame()
66 bool EmulationStateARM::StorePseudoRegisterValue(uint32_t reg_num, in StorePseudoRegisterValue()
86 uint64_t EmulationStateARM::ReadPseudoRegisterValue(uint32_t reg_num, in ReadPseudoRegisterValue()
109 void EmulationStateARM::ClearPseudoRegisters() { in ClearPseudoRegisters()
120 void EmulationStateARM::ClearPseudoMemory() { m_memory.clear(); } in ClearPseudoMemory()
122 bool EmulationStateARM::StoreToPseudoAddress(lldb::addr_t p_address, in StoreToPseudoAddress()
128 uint32_t EmulationStateARM::ReadFromPseudoAddress(lldb::addr_t p_address, in ReadFromPseudoAddress()
143 size_t EmulationStateARM::ReadPseudoMemory( in ReadPseudoMemory()
[all …]
DEmulationStateARM.h17 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;
DEmulateInstructionARM.cpp14422 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()
/freebsd-12-stable/lib/clang/liblldb/
DMakefile361 SRCS+= Plugins/Instruction/ARM/EmulationStateARM.cpp