Home
last modified time | relevance | path

Searched refs:m_memory (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Plugins/Instruction/ARM/
DEmulationStateARM.cpp27 m_memory () in EmulationStateARM()
144 m_memory.clear(); in ClearPseudoMemory()
154 m_memory[p_address] = value; in StoreToPseudoAddress()
157 m_memory[p_address] = (value << 32) >> 32; in StoreToPseudoAddress()
158 m_memory[p_address + 4] = value << 32; in StoreToPseudoAddress()
170 pos = m_memory.find(p_address); in ReadFromPseudoAddress()
171 if (pos != m_memory.end()) in ReadFromPseudoAddress()
DEmulationStateARM.h95 …std::map<lldb::addr_t, uint32_t> m_memory; // Eventually will want to change uint32_t to a data bu… variable