Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/Process/Utility/
DRegisterContextLLDB.cpp55 m_current_pc (), in RegisterContextLLDB()
120 process->GetTarget().GetSectionLoadList().ResolveLoadAddress (current_pc, m_current_pc); in InitializeZerothFrame()
124 ModuleSP pc_module_sp (m_current_pc.GetModule()); in InitializeZerothFrame()
125 if (!m_current_pc.IsValid() || !pc_module_sp) in InitializeZerothFrame()
132 …&& (pc_module_sp->ResolveSymbolContextForAddress (m_current_pc, eSymbolContextFunction| eSymbolCon… in InitializeZerothFrame()
157 if (m_current_pc.GetSection() == m_start_pc.GetSection()) in InitializeZerothFrame()
159 m_current_offset = m_current_pc.GetOffset() - m_start_pc.GetOffset(); in InitializeZerothFrame()
161 else if (m_current_pc.GetModule() == m_start_pc.GetModule()) in InitializeZerothFrame()
167 m_current_offset = m_current_pc.GetFileAddress() - m_start_pc.GetFileAddress(); in InitializeZerothFrame()
173 m_start_pc = m_current_pc; in InitializeZerothFrame()
[all …]
DRegisterContextLLDB.h181 lldb_private::Address m_current_pc; variable