Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp23 EmulationStateARM::EmulationStateARM() : m_vfp_regs(), m_memory() { in EmulationStateARM() function in EmulationStateARM
27 EmulationStateARM::~EmulationStateARM() = default;
29 bool EmulationStateARM::StorePseudoRegisterValue(uint32_t reg_num, in StorePseudoRegisterValue()
49 uint64_t EmulationStateARM::ReadPseudoRegisterValue(uint32_t reg_num, in ReadPseudoRegisterValue()
72 void EmulationStateARM::ClearPseudoRegisters() { in ClearPseudoRegisters()
83 void EmulationStateARM::ClearPseudoMemory() { m_memory.clear(); } in ClearPseudoMemory()
85 bool EmulationStateARM::StoreToPseudoAddress(lldb::addr_t p_address, in StoreToPseudoAddress()
91 uint32_t EmulationStateARM::ReadFromPseudoAddress(lldb::addr_t p_address, in ReadFromPseudoAddress()
106 size_t EmulationStateARM::ReadPseudoMemory( in ReadPseudoMemory()
114 EmulationStateARM *pseudo_state = (EmulationStateARM *)baton; in ReadPseudoMemory()
[all …]
H A DEmulationStateARM.h17 class EmulationStateARM {
19 EmulationStateARM();
21 virtual ~EmulationStateARM();
37 bool CompareState(EmulationStateARM &other_state,
79 EmulationStateARM(const EmulationStateARM &) = delete;
80 const EmulationStateARM &operator=(const EmulationStateARM &) = delete;
H A DEmulateInstructionARM.cpp14385 EmulationStateARM before_state; in TestEmulation()
14386 EmulationStateARM after_state; in TestEmulation()
14415 SetCallbacks(&EmulationStateARM::ReadPseudoMemory, in TestEmulation()
14416 &EmulationStateARM::WritePseudoMemory, in TestEmulation()
14417 &EmulationStateARM::ReadPseudoRegister, in TestEmulation()
14418 &EmulationStateARM::WritePseudoRegister); in TestEmulation()
/freebsd/lib/clang/liblldb/
H A DMakefile390 SRCS+= Plugins/Instruction/ARM/EmulationStateARM.cpp