summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r--llvm/lib/DebugInfo/DWARF/CMakeLists.txt1
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFContext.cpp17
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp175
3 files changed, 0 insertions, 193 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/CMakeLists.txt b/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
index d54c001d7f7..7104c5f1039 100644
--- a/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
+++ b/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
@@ -13,7 +13,6 @@ add_llvm_library(LLVMDebugInfoDWARF
DWARFDebugMacro.cpp
DWARFDebugRangeList.cpp
DWARFFormValue.cpp
- DWARFGdbIndex.cpp
DWARFTypeUnit.cpp
DWARFUnitIndex.cpp
DWARFUnit.cpp
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp b/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
index 1a0b7e568de..e8ea71b325a 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
@@ -256,12 +256,6 @@ void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType, bool DumpEH) {
}
}
- if ((DumpType == DIDT_All || DumpType == DIDT_GdbIndex) &&
- !getGdbIndexSection().empty()) {
- OS << "\n.gnu_index contents:\n";
- getGdbIndex().dump(OS);
- }
-
if (DumpType == DIDT_All || DumpType == DIDT_AppleNames)
dumpAccelSection(OS, "apple_names", getAppleNamesSection(),
getStringSection(), isLittleEndian());
@@ -301,16 +295,6 @@ const DWARFUnitIndex &DWARFContext::getTUIndex() {
return *TUIndex;
}
-DWARFGdbIndex &DWARFContext::getGdbIndex() {
- if (GdbIndex)
- return *GdbIndex;
-
- DataExtractor GdbIndexData(getGdbIndexSection(), true /*LE*/, 0);
- GdbIndex = llvm::make_unique<DWARFGdbIndex>();
- GdbIndex->parse(GdbIndexData);
- return *GdbIndex;
-}
-
const DWARFDebugAbbrev *DWARFContext::getDebugAbbrev() {
if (Abbrev)
return Abbrev.get();
@@ -734,7 +718,6 @@ DWARFContextInMemory::DWARFContextInMemory(const object::ObjectFile &Obj,
.Case("apple_objc", &AppleObjCSection.Data)
.Case("debug_cu_index", &CUIndexSection)
.Case("debug_tu_index", &TUIndexSection)
- .Case("gdb_index", &GdbIndexSection)
// Any more debug info sections go here.
.Default(nullptr);
if (SectionData) {
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp b/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
deleted file mode 100644
index a3009684dfe..00000000000
--- a/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
+++ /dev/null
@@ -1,175 +0,0 @@
-//===-- DWARFGdbIndex.cpp -------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "llvm/DebugInfo/DWARF/DWARFGdbIndex.h"
-#include "llvm/ADT/Twine.h"
-#include "llvm/Support/ErrorHandling.h"
-#include "llvm/Support/Format.h"
-
-using namespace llvm;
-
-// .gdb_index section format reference:
-// https://sourceware.org/gdb/onlinedocs/gdb/Index-Section-Format.html
-
-void DWARFGdbIndex::dumpCUList(raw_ostream &OS) const {
- OS << format("\n CU list offset = 0x%x, has %zu entries:", CuListOffset,
- CuList.size())
- << '\n';
- uint32_t I = 0;
- for (const CompUnitEntry &CU : CuList)
- OS << format(" %d: Offset = 0x%llx, Length = 0x%llx\n", I++, CU.Offset,
- CU.Length);
-}
-
-void DWARFGdbIndex::dumpAddressArea(raw_ostream &OS) const {
- OS << format("\n Address area offset = 0x%x, has %zu entries:",
- AddressAreaOffset, AddressArea.size())
- << '\n';
- for (const AddressEntry &Addr : AddressArea)
- OS << format(
- " Low address = 0x%llx, High address = 0x%llx, CU index = %d\n",
- Addr.LowAddress, Addr.HighAddress, Addr.CuIndex);
-}
-
-void DWARFGdbIndex::dumpSymbolTable(raw_ostream &OS) const {
- OS << format("\n Symbol table offset = 0x%x, size = %zu, filled slots:",
- SymbolTableOffset, SymbolTable.size())
- << '\n';
- uint32_t I = -1;
- for (const SymTableEntry &E : SymbolTable) {
- ++I;
- if (!E.NameOffset && !E.VecOffset)
- continue;
-
- OS << format(" %d: Name offset = 0x%x, CU vector offset = 0x%x\n", I,
- E.NameOffset, E.VecOffset);
-
- StringRef Name = ConstantPoolStrings.substr(
- ConstantPoolOffset - StringPoolOffset + E.NameOffset);
-
- auto CuVector = std::find_if(
- ConstantPoolVectors.begin(), ConstantPoolVectors.end(),
- [&](const std::pair<uint32_t, SmallVector<uint32_t, 0>> &V) {
- return V.first == E.VecOffset;
- });
- assert(CuVector != ConstantPoolVectors.end() && "Invalid symbol table");
- uint32_t CuVectorId = CuVector - ConstantPoolVectors.begin();
- OS << format(" String name: %s, CU vector index: %d\n", Name.data(),
- CuVectorId);
- }
-}
-
-void DWARFGdbIndex::dumpConstantPool(raw_ostream &OS) const {
- OS << format("\n Constant pool offset = 0x%x, has %zu CU vectors:",
- ConstantPoolOffset, ConstantPoolVectors.size());
- uint32_t I = 0;
- for (const auto &V : ConstantPoolVectors) {
- OS << format("\n %d(0x%x): ", I++, V.first);
- for (uint32_t Val : V.second)
- OS << format("0x%x ", Val);
- }
- OS << '\n';
-}
-
-void DWARFGdbIndex::dump(raw_ostream &OS) {
- if (HasError) {
- OS << "\n<error parsing>\n";
- return;
- }
-
- if (HasContent) {
- OS << " Version = " << Version << '\n';
- dumpCUList(OS);
- dumpAddressArea(OS);
- dumpSymbolTable(OS);
- dumpConstantPool(OS);
- }
-}
-
-bool DWARFGdbIndex::parseImpl(DataExtractor Data) {
- uint32_t Offset = 0;
-
- // Only version 7 is supported at this moment.
- Version = Data.getU32(&Offset);
- if (Version != 7)
- return false;
-
- CuListOffset = Data.getU32(&Offset);
- uint32_t CuTypesOffset = Data.getU32(&Offset);
- AddressAreaOffset = Data.getU32(&Offset);
- SymbolTableOffset = Data.getU32(&Offset);
- ConstantPoolOffset = Data.getU32(&Offset);
-
- if (Offset != CuListOffset)
- return false;
-
- uint32_t CuListSize = (CuTypesOffset - CuListOffset) / 16;
- CuList.reserve(CuListSize);
- for (uint32_t i = 0; i < CuListSize; ++i) {
- uint64_t CuOffset = Data.getU64(&Offset);
- uint64_t CuLength = Data.getU64(&Offset);
- CuList.push_back({CuOffset, CuLength});
- }
-
- // CU Types are no longer needed as DWARF skeleton type units never made it
- // into the standard.
- uint32_t CuTypesListSize = (AddressAreaOffset - CuTypesOffset) / 24;
- if (CuTypesListSize != 0)
- return false;
-
- uint32_t AddressAreaSize = (SymbolTableOffset - AddressAreaOffset) / 20;
- AddressArea.reserve(AddressAreaSize);
- for (uint32_t i = 0; i < AddressAreaSize; ++i) {
- uint64_t LowAddress = Data.getU64(&Offset);
- uint64_t HighAddress = Data.getU64(&Offset);
- uint32_t CuIndex = Data.getU32(&Offset);
- AddressArea.push_back({LowAddress, HighAddress, CuIndex});
- }
-
- // The symbol table. This is an open addressed hash table. The size of the
- // hash table is always a power of 2.
- // Each slot in the hash table consists of a pair of offset_type values. The
- // first value is the offset of the symbol's name in the constant pool. The
- // second value is the offset of the CU vector in the constant pool.
- // If both values are 0, then this slot in the hash table is empty. This is ok
- // because while 0 is a valid constant pool index, it cannot be a valid index
- // for both a string and a CU vector.
- uint32_t SymTableSize = (ConstantPoolOffset - SymbolTableOffset) / 8;
- SymbolTable.reserve(SymTableSize);
- uint32_t CuVectorsTotal = 0;
- for (uint32_t i = 0; i < SymTableSize; ++i) {
- uint32_t NameOffset = Data.getU32(&Offset);
- uint32_t CuVecOffset = Data.getU32(&Offset);
- SymbolTable.push_back({NameOffset, CuVecOffset});
- if (NameOffset || CuVecOffset)
- ++CuVectorsTotal;
- }
-
- // The constant pool. CU vectors are stored first, followed by strings.
- // The first value is the number of CU indices in the vector. Each subsequent
- // value is the index and symbol attributes of a CU in the CU list.
- for (uint32_t i = 0; i < CuVectorsTotal; ++i) {
- ConstantPoolVectors.emplace_back(0, SmallVector<uint32_t, 0>());
- auto &Vec = ConstantPoolVectors.back();
- Vec.first = Offset - ConstantPoolOffset;
-
- uint32_t Num = Data.getU32(&Offset);
- for (uint32_t j = 0; j < Num; ++j)
- Vec.second.push_back(Data.getU32(&Offset));
- }
-
- ConstantPoolStrings = Data.getData().drop_front(Offset);
- StringPoolOffset = Offset;
- return true;
-}
-
-void DWARFGdbIndex::parse(DataExtractor Data) {
- HasContent = !Data.getData().empty();
- HasError = HasContent && !parseImpl(Data);
-}
OpenPOWER on IntegriCloud