Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDCompactUnwindInfo.cpp141 m_unwindinfo_data (), in CompactUnwindInfo()
255m_unwindinfo_data.SetAddressByteSize (process_sp->GetTarget().GetArchitecture().GetAddressByteSize… in ScanIndex()
256m_unwindinfo_data.SetByteOrder (process_sp->GetTarget().GetArchitecture().GetByteOrder()); in ScanIndex()
257 m_unwindinfo_data.SetData (m_section_contents_if_encrypted, 0); in ScanIndex()
262 m_objfile.ReadSectionData (m_section_sp.get(), m_unwindinfo_data); in ScanIndex()
264 if (m_unwindinfo_data.GetByteSize() != m_section_sp->GetByteSize()) in ScanIndex()
269 if (m_unwindinfo_data.GetByteSize() > 0) in ScanIndex()
283 m_unwind_header.version = m_unwindinfo_data.GetU32(&offset); in ScanIndex()
284 m_unwind_header.common_encodings_array_offset = m_unwindinfo_data.GetU32(&offset); in ScanIndex()
285 m_unwind_header.common_encodings_array_count = m_unwindinfo_data.GetU32(&offset); in ScanIndex()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDCompactUnwindInfo.h147 DataExtractor m_unwindinfo_data; variable