Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp167 m_unwindinfo_data_computed(false), m_unwind_header() {} in CompactUnwindInfo()
302 m_unwind_header.version = m_unwindinfo_data.GetU32(&offset); in ScanIndex()
303 m_unwind_header.common_encodings_array_offset = in ScanIndex()
305 m_unwind_header.common_encodings_array_count = in ScanIndex()
307 m_unwind_header.personality_array_offset = in ScanIndex()
309 m_unwind_header.personality_array_count = m_unwindinfo_data.GetU32(&offset); in ScanIndex()
314 if (m_unwind_header.common_encodings_array_offset > in ScanIndex()
316 m_unwind_header.personality_array_offset > in ScanIndex()
589 if (personality_index < m_unwind_header.personality_array_count) { in GetCompactUnwindInfoForFunction()
590 offset_t offset = m_unwind_header.personality_array_offset; in GetCompactUnwindInfoForFunction()
[all …]
/llvm-project/lldb/include/lldb/Symbol/
H A DCompactUnwindInfo.h158 UnwindHeader m_unwind_header; variable