1 //===-- DWARFCompileUnit.cpp ------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "DWARFCompileUnit.h" 11 12 #include "SymbolFileDWARF.h" 13 #include "lldb/Utility/Stream.h" 14 15 using namespace lldb; 16 using namespace lldb_private; 17 18 extern int g_verbose; 19 20 DWARFCompileUnit::DWARFCompileUnit(SymbolFileDWARF *dwarf2Data) 21 : DWARFUnit(dwarf2Data) {} 22 23 DWARFUnitSP DWARFCompileUnit::Extract(SymbolFileDWARF *dwarf2Data, 24 const DWARFDataExtractor &debug_info, 25 lldb::offset_t *offset_ptr) { 26 // std::make_shared would require the ctor to be public. 27 std::shared_ptr<DWARFCompileUnit> cu_sp(new DWARFCompileUnit(dwarf2Data)); 28 29 cu_sp->m_offset = *offset_ptr; 30 31 if (debug_info.ValidOffset(*offset_ptr)) { 32 dw_offset_t abbr_offset; 33 const DWARFDebugAbbrev *abbr = dwarf2Data->DebugAbbrev(); 34 cu_sp->m_length = debug_info.GetDWARFInitialLength(offset_ptr); 35 cu_sp->m_is_dwarf64 = debug_info.IsDWARF64(); 36 cu_sp->m_version = debug_info.GetU16(offset_ptr); 37 abbr_offset = debug_info.GetDWARFOffset(offset_ptr); 38 cu_sp->m_addr_size = debug_info.GetU8(offset_ptr); 39 40 bool length_OK = 41 debug_info.ValidOffset(cu_sp->GetNextCompileUnitOffset() - 1); 42 bool version_OK = SymbolFileDWARF::SupportedVersion(cu_sp->m_version); 43 bool abbr_offset_OK = 44 dwarf2Data->get_debug_abbrev_data().ValidOffset(abbr_offset); 45 bool addr_size_OK = (cu_sp->m_addr_size == 4) || (cu_sp->m_addr_size == 8); 46 47 if (length_OK && version_OK && addr_size_OK && abbr_offset_OK && 48 abbr != NULL) { 49 cu_sp->m_abbrevs = abbr->GetAbbreviationDeclarationSet(abbr_offset); 50 return cu_sp; 51 } 52 53 // reset the offset to where we tried to parse from if anything went wrong 54 *offset_ptr = cu_sp->m_offset; 55 } 56 57 return nullptr; 58 } 59 60 void DWARFCompileUnit::Dump(Stream *s) const { 61 s->Printf("0x%8.8x: Compile Unit: length = 0x%8.8x, version = 0x%4.4x, " 62 "abbr_offset = 0x%8.8x, addr_size = 0x%2.2x (next CU at " 63 "{0x%8.8x})\n", 64 m_offset, m_length, m_version, GetAbbrevOffset(), m_addr_size, 65 GetNextCompileUnitOffset()); 66 } 67 68 69 const lldb_private::DWARFDataExtractor &DWARFCompileUnit::GetData() const { 70 return m_dwarf->get_debug_info_data(); 71 } 72