Home
last modified time | relevance | path

Searched refs:ValidOffset (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp31 if (debug_info.ValidOffset(*offset_ptr)) { in Extract()
51 debug_info.ValidOffset(cu_sp->GetNextCompileUnitOffset() - 1); in Extract()
54 dwarf2Data->get_debug_abbrev_data().ValidOffset(abbr_offset); in Extract()
H A DDWARFDebugArangeSet.cpp136 if (data.ValidOffset(*offset_ptr)) { in Extract()
168 if (data.ValidOffset(m_offset + sizeof(m_header.length) + in Extract()
189 while (data.ValidOffset(*offset_ptr)) { in Extract()
H A DDWARFDebugLine.cpp38 while (debug_line_data.ValidOffset(offset)) { in Parse()
104 while (debug_line_data.ValidOffset(debug_line_offset)) in DumpLineTableRows()
121 if (debug_line_data.ValidOffset(debug_line_offset)) { in DumpStatementTable()
155 while (debug_line_data.ValidOffset(debug_line_offset)) in DumpOpcodes()
172 if (debug_line_data.ValidOffset(offset)) { in DumpStatementOpcodes()
193 assert(debug_line_data.ValidOffset(end_offset - 1)); in DumpStatementOpcodes()
368 if (debug_line_data.ValidOffset(offset)) { in Parse()
H A DDWARFDebugMacinfoEntry.cpp68 if (mac_info_data.ValidOffset(*offset_ptr)) { in Extract()
H A DDWARFAbbreviationDeclaration.cpp41 while (data.ValidOffset(*offset_ptr)) { in Extract()
H A DDWARFDebugAranges.cpp52 if (debug_aranges_data.ValidOffset(0)) { in Extract()
H A DDWARFDebugAbbrev.cpp145 while (data.ValidOffset(offset)) { in Parse()
H A DDWARFDebugInfoEntry.cpp225 if ((offset < cu_end_offset) && debug_info_data.ValidOffset(offset)) { in Extract()
433 if (!debug_info_data.ValidOffset(offset)) in GetDIENamesAndRanges()
611 if (debug_info_data.ValidOffset(offset)) { in Dump()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DDWARFExpression.cpp610 while (m_data.ValidOffset(offset)) { in GetDescription()
952 while (m_data.ValidOffset(offset)) { in GetLocation_DW_OP_addr()
988 while (m_data.ValidOffset(offset)) { in Update_DW_OP_addr()
1032 while (m_data.ValidOffset(offset)) { in ContainsThreadLocalStorage()
1074 while (m_data.ValidOffset(offset)) { in LinkThreadLocalStorage()
1156 while (m_data.ValidOffset(offset)) { in LocationListContainsAddress()
1191 while (m_data.ValidOffset(offset)) { in GetLocation()
1277 while (m_data.ValidOffset(offset)) { in Evaluate()
3005 while (debug_loc_data.ValidOffset(offset)) { in LocationListSize()
3261 while (data.ValidOffset(offset)) { in PrintDWARFExpression()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DDataEncoder.h352 bool ValidOffset(uint32_t offset) const { return offset < GetByteSize(); } in ValidOffset() function
H A DDataExtractor.h1067 bool ValidOffset(lldb::offset_t offset) const { in ValidOffset() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DDataEncoder.cpp163 if (ValidOffset(offset)) { in PutU8()
H A DDataExtractor.cpp178 if (data.ValidOffset(offset)) { in DataExtractor()
291 if (data.ValidOffset(data_offset)) { in SetData()
1048 ValidOffset(offset) && offset < end_offset; ++count) { in PutToLog()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DArmUnwindInfo.cpp59 while (m_arm_exidx_data.ValidOffset(offset)) { in ArmUnwindInfo()
H A DDWARFCallFrameInfo.cpp634 while (m_cfi_data.ValidOffset(offset) && offset < end_offset) { in FDEToUnwindPlan()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp163 } while (data.ValidOffset(offset)); in ParseObjects()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDumpDataExtractor.cpp195 for (uint32_t count = 0; DE.ValidOffset(offset) && count < item_count; in DumpDataExtractor()