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