2017-03-01 09:14:23 +08:00
|
|
|
//===- DWARFContext.cpp ---------------------------------------------------===//
|
2011-09-14 03:42:23 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-05-04 00:02:29 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-07-19 15:03:58 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-05-04 00:02:29 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2017-06-24 05:57:40 +08:00
|
|
|
#include "llvm/BinaryFormat/Dwarf.h"
|
2015-01-31 02:07:45 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h"
|
2015-01-31 02:07:45 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h"
|
2017-05-04 00:02:29 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugAranges.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugFrame.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugLoc.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h"
|
2016-12-17 17:10:32 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugPubTable.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFDie.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFGdbIndex.h"
|
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFSection.h"
|
2015-11-12 03:28:21 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFUnitIndex.h"
|
2017-05-04 00:02:29 +08:00
|
|
|
#include "llvm/DebugInfo/DWARF/DWARFVerifier.h"
|
2017-01-11 23:26:41 +08:00
|
|
|
#include "llvm/Object/Decompressor.h"
|
2016-07-07 00:56:42 +08:00
|
|
|
#include "llvm/Object/MachO.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2016-07-07 00:56:42 +08:00
|
|
|
#include "llvm/Object/RelocVisitor.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include "llvm/Support/DataExtractor.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
2011-09-16 00:57:13 +08:00
|
|
|
#include "llvm/Support/Format.h"
|
2017-03-01 09:14:23 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2011-09-14 09:09:52 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-09-16 04:43:22 +08:00
|
|
|
#include <algorithm>
|
2017-03-01 09:14:23 +08:00
|
|
|
#include <cstdint>
|
2017-05-03 04:28:33 +08:00
|
|
|
#include <map>
|
2017-03-01 09:14:23 +08:00
|
|
|
#include <string>
|
2017-06-24 05:57:40 +08:00
|
|
|
#include <tuple>
|
2017-03-01 09:14:23 +08:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2011-09-14 03:42:23 +08:00
|
|
|
using namespace llvm;
|
2011-09-16 02:02:20 +08:00
|
|
|
using namespace dwarf;
|
2013-05-30 11:05:14 +08:00
|
|
|
using namespace object;
|
2011-09-14 03:42:23 +08:00
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "dwarf"
|
|
|
|
|
2017-06-24 05:57:40 +08:00
|
|
|
using DWARFLineTable = DWARFDebugLine::LineTable;
|
|
|
|
using FileLineInfoKind = DILineInfoSpecifier::FileLineInfoKind;
|
|
|
|
using FunctionNameKind = DILineInfoSpecifier::FunctionNameKind;
|
2012-10-17 07:46:25 +08:00
|
|
|
|
2014-11-15 03:30:08 +08:00
|
|
|
static void dumpAccelSection(raw_ostream &OS, StringRef Name,
|
2017-07-20 06:27:28 +08:00
|
|
|
const DWARFObject &Obj,
|
|
|
|
const DWARFSection &Section,
|
|
|
|
StringRef StringSection, bool LittleEndian) {
|
|
|
|
DWARFDataExtractor AccelSection(Obj, Section, LittleEndian, 0);
|
2014-11-15 00:15:53 +08:00
|
|
|
DataExtractor StrData(StringSection, LittleEndian, 0);
|
|
|
|
OS << "\n." << Name << " contents:\n";
|
2017-06-30 00:52:08 +08:00
|
|
|
DWARFAcceleratorTable Accel(AccelSection, StrData);
|
2014-11-15 00:15:53 +08:00
|
|
|
if (!Accel.extract())
|
|
|
|
return;
|
|
|
|
Accel.dump(OS);
|
|
|
|
}
|
|
|
|
|
2017-06-06 09:22:34 +08:00
|
|
|
static void
|
|
|
|
dumpDWARFv5StringOffsetsSection(raw_ostream &OS, StringRef SectionName,
|
2017-07-20 06:27:28 +08:00
|
|
|
const DWARFObject &Obj,
|
2017-06-06 09:22:34 +08:00
|
|
|
const DWARFSection &StringOffsetsSection,
|
|
|
|
StringRef StringSection, bool LittleEndian) {
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor StrOffsetExt(Obj, StringOffsetsSection, LittleEndian, 0);
|
2017-06-06 09:22:34 +08:00
|
|
|
uint32_t Offset = 0;
|
|
|
|
uint64_t SectionSize = StringOffsetsSection.Data.size();
|
|
|
|
|
|
|
|
while (Offset < SectionSize) {
|
|
|
|
unsigned Version = 0;
|
|
|
|
DwarfFormat Format = DWARF32;
|
|
|
|
unsigned EntrySize = 4;
|
|
|
|
// Perform validation and extract the segment size from the header.
|
|
|
|
if (!StrOffsetExt.isValidOffsetForDataOfSize(Offset, 4)) {
|
|
|
|
OS << "error: invalid contribution to string offsets table in section ."
|
|
|
|
<< SectionName << ".\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint32_t ContributionStart = Offset;
|
|
|
|
uint64_t ContributionSize = StrOffsetExt.getU32(&Offset);
|
|
|
|
// A contribution size of 0xffffffff indicates DWARF64, with the actual size
|
|
|
|
// in the following 8 bytes. Otherwise, the DWARF standard mandates that
|
|
|
|
// the contribution size must be at most 0xfffffff0.
|
|
|
|
if (ContributionSize == 0xffffffff) {
|
|
|
|
if (!StrOffsetExt.isValidOffsetForDataOfSize(Offset, 8)) {
|
|
|
|
OS << "error: invalid contribution to string offsets table in section ."
|
|
|
|
<< SectionName << ".\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Format = DWARF64;
|
|
|
|
EntrySize = 8;
|
|
|
|
ContributionSize = StrOffsetExt.getU64(&Offset);
|
|
|
|
} else if (ContributionSize > 0xfffffff0) {
|
|
|
|
OS << "error: invalid contribution to string offsets table in section ."
|
|
|
|
<< SectionName << ".\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must ensure that we don't read a partial record at the end, so we
|
|
|
|
// validate for a multiple of EntrySize. Also, we're expecting a version
|
|
|
|
// number and padding, which adds an additional 4 bytes.
|
|
|
|
uint64_t ValidationSize =
|
|
|
|
4 + ((ContributionSize + EntrySize - 1) & (-(uint64_t)EntrySize));
|
|
|
|
if (!StrOffsetExt.isValidOffsetForDataOfSize(Offset, ValidationSize)) {
|
|
|
|
OS << "error: contribution to string offsets table in section ."
|
|
|
|
<< SectionName << " has invalid length.\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Version = StrOffsetExt.getU16(&Offset);
|
|
|
|
Offset += 2;
|
|
|
|
OS << format("0x%8.8x: ", ContributionStart);
|
|
|
|
OS << "Contribution size = " << ContributionSize
|
|
|
|
<< ", Version = " << Version << "\n";
|
|
|
|
|
|
|
|
uint32_t ContributionBase = Offset;
|
|
|
|
DataExtractor StrData(StringSection, LittleEndian, 0);
|
|
|
|
while (Offset - ContributionBase < ContributionSize) {
|
|
|
|
OS << format("0x%8.8x: ", Offset);
|
|
|
|
// FIXME: We can only extract strings in DWARF32 format at the moment.
|
2017-06-30 00:52:08 +08:00
|
|
|
uint64_t StringOffset =
|
|
|
|
StrOffsetExt.getRelocatedValue(EntrySize, &Offset);
|
2017-06-06 09:22:34 +08:00
|
|
|
if (Format == DWARF32) {
|
|
|
|
uint32_t StringOffset32 = (uint32_t)StringOffset;
|
2017-08-08 00:08:11 +08:00
|
|
|
OS << format("%8.8x ", StringOffset32);
|
2017-06-06 09:22:34 +08:00
|
|
|
const char *S = StrData.getCStr(&StringOffset32);
|
|
|
|
if (S)
|
|
|
|
OS << format("\"%s\"", S);
|
|
|
|
} else
|
2017-08-07 21:30:03 +08:00
|
|
|
OS << format("%16.16" PRIx64 " ", StringOffset);
|
2017-06-06 09:22:34 +08:00
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dump a DWARF string offsets section. This may be a DWARF v5 formatted
|
|
|
|
// string offsets section, where each compile or type unit contributes a
|
|
|
|
// number of entries (string offsets), with each contribution preceded by
|
|
|
|
// a header containing size and version number. Alternatively, it may be a
|
|
|
|
// monolithic series of string offsets, as generated by the pre-DWARF v5
|
|
|
|
// implementation of split DWARF.
|
|
|
|
static void dumpStringOffsetsSection(raw_ostream &OS, StringRef SectionName,
|
2017-07-20 06:27:28 +08:00
|
|
|
const DWARFObject &Obj,
|
2017-06-06 09:22:34 +08:00
|
|
|
const DWARFSection &StringOffsetsSection,
|
|
|
|
StringRef StringSection, bool LittleEndian,
|
|
|
|
unsigned MaxVersion) {
|
|
|
|
if (StringOffsetsSection.Data.empty())
|
|
|
|
return;
|
|
|
|
OS << "\n." << SectionName << " contents:\n";
|
|
|
|
// If we have at least one (compile or type) unit with DWARF v5 or greater,
|
|
|
|
// we assume that the section is formatted like a DWARF v5 string offsets
|
|
|
|
// section.
|
|
|
|
if (MaxVersion >= 5)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpDWARFv5StringOffsetsSection(OS, SectionName, Obj, StringOffsetsSection,
|
2017-06-06 09:22:34 +08:00
|
|
|
StringSection, LittleEndian);
|
|
|
|
else {
|
|
|
|
DataExtractor strOffsetExt(StringOffsetsSection.Data, LittleEndian, 0);
|
|
|
|
uint32_t offset = 0;
|
|
|
|
uint64_t size = StringOffsetsSection.Data.size();
|
|
|
|
// Ensure that size is a multiple of the size of an entry.
|
|
|
|
if (size & ((uint64_t)(sizeof(uint32_t) - 1))) {
|
|
|
|
OS << "error: size of ." << SectionName << " is not a multiple of "
|
|
|
|
<< sizeof(uint32_t) << ".\n";
|
|
|
|
size &= -(uint64_t)sizeof(uint32_t);
|
|
|
|
}
|
|
|
|
DataExtractor StrData(StringSection, LittleEndian, 0);
|
|
|
|
while (offset < size) {
|
|
|
|
OS << format("0x%8.8x: ", offset);
|
|
|
|
uint32_t StringOffset = strOffsetExt.getU32(&offset);
|
|
|
|
OS << format("%8.8x ", StringOffset);
|
|
|
|
const char *S = StrData.getCStr(&StringOffset);
|
|
|
|
if (S)
|
|
|
|
OS << format("\"%s\"", S);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:57:40 +08:00
|
|
|
void DWARFContext::dump(raw_ostream &OS, DIDumpOptions DumpOpts) {
|
2017-06-02 02:18:23 +08:00
|
|
|
DIDumpType DumpType = DumpOpts.DumpType;
|
|
|
|
bool DumpEH = DumpOpts.DumpEH;
|
|
|
|
bool SummarizeTypes = DumpOpts.SummarizeTypes;
|
|
|
|
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Abbrev) {
|
|
|
|
OS << ".debug_abbrev contents:\n";
|
|
|
|
getDebugAbbrev()->dump(OS);
|
|
|
|
}
|
2011-09-14 09:09:52 +08:00
|
|
|
|
2014-01-09 08:13:35 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_AbbrevDwo)
|
|
|
|
if (const DWARFDebugAbbrev *D = getDebugAbbrevDWO()) {
|
2014-01-09 07:29:59 +08:00
|
|
|
OS << "\n.debug_abbrev.dwo contents:\n";
|
2014-01-09 08:13:35 +08:00
|
|
|
D->dump(OS);
|
2014-01-09 07:29:59 +08:00
|
|
|
}
|
|
|
|
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Info) {
|
|
|
|
OS << "\n.debug_info contents:\n";
|
2014-03-13 15:52:54 +08:00
|
|
|
for (const auto &CU : compile_units())
|
2017-06-07 07:28:45 +08:00
|
|
|
CU->dump(OS, DumpOpts);
|
2013-01-26 04:26:43 +08:00
|
|
|
}
|
2011-09-14 09:09:52 +08:00
|
|
|
|
2014-01-09 08:13:35 +08:00
|
|
|
if ((DumpType == DIDT_All || DumpType == DIDT_InfoDwo) &&
|
|
|
|
getNumDWOCompileUnits()) {
|
|
|
|
OS << "\n.debug_info.dwo contents:\n";
|
2014-03-13 15:52:54 +08:00
|
|
|
for (const auto &DWOCU : dwo_compile_units())
|
2017-06-07 07:28:45 +08:00
|
|
|
DWOCU->dump(OS, DumpOpts);
|
2014-01-09 08:13:35 +08:00
|
|
|
}
|
2014-01-09 07:29:59 +08:00
|
|
|
|
2014-01-09 08:13:35 +08:00
|
|
|
if ((DumpType == DIDT_All || DumpType == DIDT_Types) && getNumTypeUnits()) {
|
2013-09-24 06:44:47 +08:00
|
|
|
OS << "\n.debug_types contents:\n";
|
2014-09-29 21:56:39 +08:00
|
|
|
for (const auto &TUS : type_unit_sections())
|
|
|
|
for (const auto &TU : TUS)
|
2016-10-19 05:09:48 +08:00
|
|
|
TU->dump(OS, SummarizeTypes);
|
2013-09-24 06:44:47 +08:00
|
|
|
}
|
|
|
|
|
2014-03-13 15:52:54 +08:00
|
|
|
if ((DumpType == DIDT_All || DumpType == DIDT_TypesDwo) &&
|
|
|
|
getNumDWOTypeUnits()) {
|
|
|
|
OS << "\n.debug_types.dwo contents:\n";
|
2014-09-29 21:56:39 +08:00
|
|
|
for (const auto &DWOTUS : dwo_type_unit_sections())
|
|
|
|
for (const auto &DWOTU : DWOTUS)
|
2016-10-19 05:09:48 +08:00
|
|
|
DWOTU->dump(OS, SummarizeTypes);
|
2014-03-13 15:52:54 +08:00
|
|
|
}
|
2014-01-09 13:08:24 +08:00
|
|
|
|
2013-06-20 05:37:13 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Loc) {
|
2013-09-24 06:44:47 +08:00
|
|
|
OS << "\n.debug_loc contents:\n";
|
2013-06-20 05:37:13 +08:00
|
|
|
getDebugLoc()->dump(OS);
|
|
|
|
}
|
|
|
|
|
2014-03-25 09:44:02 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_LocDwo) {
|
|
|
|
OS << "\n.debug_loc.dwo contents:\n";
|
|
|
|
getDebugLocDWO()->dump(OS);
|
|
|
|
}
|
|
|
|
|
2013-02-06 07:30:58 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Frames) {
|
|
|
|
OS << "\n.debug_frame contents:\n";
|
|
|
|
getDebugFrame()->dump(OS);
|
2016-01-26 23:09:42 +08:00
|
|
|
if (DumpEH) {
|
|
|
|
OS << "\n.eh_frame contents:\n";
|
|
|
|
getEHFrame()->dump(OS);
|
|
|
|
}
|
2013-02-06 07:30:58 +08:00
|
|
|
}
|
|
|
|
|
2015-11-12 17:38:54 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Macro) {
|
|
|
|
OS << "\n.debug_macinfo contents:\n";
|
|
|
|
getDebugMacro()->dump(OS);
|
|
|
|
}
|
|
|
|
|
2011-09-14 09:09:52 +08:00
|
|
|
uint32_t offset = 0;
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Aranges) {
|
|
|
|
OS << "\n.debug_aranges contents:\n";
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor arangesData(DObj->getARangeSection(), isLittleEndian(), 0);
|
2013-01-26 04:26:43 +08:00
|
|
|
DWARFDebugArangeSet set;
|
|
|
|
while (set.extract(arangesData, &offset))
|
|
|
|
set.dump(OS);
|
|
|
|
}
|
2011-09-15 10:12:05 +08:00
|
|
|
|
2012-08-27 15:17:47 +08:00
|
|
|
uint8_t savedAddressByteSize = 0;
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Line) {
|
|
|
|
OS << "\n.debug_line contents:\n";
|
2014-03-13 15:52:54 +08:00
|
|
|
for (const auto &CU : compile_units()) {
|
|
|
|
savedAddressByteSize = CU->getAddressByteSize();
|
2016-12-14 02:25:19 +08:00
|
|
|
auto CUDIE = CU->getUnitDIE();
|
|
|
|
if (!CUDIE)
|
2015-05-20 05:54:32 +08:00
|
|
|
continue;
|
2017-01-14 05:08:18 +08:00
|
|
|
if (auto StmtOffset = toSectionOffset(CUDIE.find(DW_AT_stmt_list))) {
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor lineData(*DObj, DObj->getLineSection(),
|
|
|
|
isLittleEndian(), savedAddressByteSize);
|
2014-04-30 08:09:19 +08:00
|
|
|
DWARFDebugLine::LineTable LineTable;
|
2016-12-15 06:38:08 +08:00
|
|
|
uint32_t Offset = *StmtOffset;
|
2017-06-30 00:52:08 +08:00
|
|
|
LineTable.parse(lineData, &Offset);
|
2014-04-30 08:09:19 +08:00
|
|
|
LineTable.dump(OS);
|
2013-01-26 04:26:43 +08:00
|
|
|
}
|
2011-09-16 02:02:20 +08:00
|
|
|
}
|
|
|
|
}
|
2011-09-16 00:57:13 +08:00
|
|
|
|
2015-11-12 03:28:21 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_CUIndex) {
|
|
|
|
OS << "\n.debug_cu_index contents:\n";
|
2015-12-02 14:21:34 +08:00
|
|
|
getCUIndex().dump(OS);
|
2015-11-12 03:28:21 +08:00
|
|
|
}
|
|
|
|
|
2015-11-12 03:40:49 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_TUIndex) {
|
|
|
|
OS << "\n.debug_tu_index contents:\n";
|
2015-12-02 14:21:34 +08:00
|
|
|
getTUIndex().dump(OS);
|
2015-11-12 03:40:49 +08:00
|
|
|
}
|
|
|
|
|
2014-02-25 07:58:54 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_LineDwo) {
|
|
|
|
OS << "\n.debug_line.dwo contents:\n";
|
|
|
|
unsigned stmtOffset = 0;
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor lineData(*DObj, DObj->getLineDWOSection(),
|
|
|
|
isLittleEndian(), savedAddressByteSize);
|
2014-04-30 08:09:19 +08:00
|
|
|
DWARFDebugLine::LineTable LineTable;
|
|
|
|
while (LineTable.Prologue.parse(lineData, &stmtOffset)) {
|
|
|
|
LineTable.dump(OS);
|
|
|
|
LineTable.clear();
|
|
|
|
}
|
2014-02-25 07:58:54 +08:00
|
|
|
}
|
|
|
|
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Str) {
|
|
|
|
OS << "\n.debug_str contents:\n";
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor strData(DObj->getStringSection(), isLittleEndian(), 0);
|
2013-01-26 04:26:43 +08:00
|
|
|
offset = 0;
|
|
|
|
uint32_t strOffset = 0;
|
|
|
|
while (const char *s = strData.getCStr(&offset)) {
|
|
|
|
OS << format("0x%8.8x: \"%s\"\n", strOffset, s);
|
|
|
|
strOffset = offset;
|
|
|
|
}
|
2011-09-16 00:57:13 +08:00
|
|
|
}
|
2012-08-27 15:17:47 +08:00
|
|
|
|
2014-01-09 08:13:35 +08:00
|
|
|
if ((DumpType == DIDT_All || DumpType == DIDT_StrDwo) &&
|
2017-07-20 06:27:28 +08:00
|
|
|
!DObj->getStringDWOSection().empty()) {
|
2014-01-09 08:13:35 +08:00
|
|
|
OS << "\n.debug_str.dwo contents:\n";
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor strDWOData(DObj->getStringDWOSection(), isLittleEndian(), 0);
|
2014-01-09 08:13:35 +08:00
|
|
|
offset = 0;
|
|
|
|
uint32_t strDWOOffset = 0;
|
|
|
|
while (const char *s = strDWOData.getCStr(&offset)) {
|
|
|
|
OS << format("0x%8.8x: \"%s\"\n", strDWOOffset, s);
|
|
|
|
strDWOOffset = offset;
|
2014-01-09 07:29:59 +08:00
|
|
|
}
|
2014-01-09 08:13:35 +08:00
|
|
|
}
|
2014-01-09 07:29:59 +08:00
|
|
|
|
2013-01-26 04:26:43 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Ranges) {
|
|
|
|
OS << "\n.debug_ranges contents:\n";
|
|
|
|
// In fact, different compile units may have different address byte
|
|
|
|
// sizes, but for simplicity we just use the address byte size of the last
|
|
|
|
// compile unit (there is no easy and fast way to associate address range
|
|
|
|
// list and the compile unit it describes).
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor rangesData(*DObj, DObj->getRangeSection(),
|
|
|
|
isLittleEndian(), savedAddressByteSize);
|
2013-01-26 04:26:43 +08:00
|
|
|
offset = 0;
|
|
|
|
DWARFDebugRangeList rangeList;
|
2017-06-30 00:52:08 +08:00
|
|
|
while (rangeList.extract(rangesData, &offset))
|
2013-01-26 04:26:43 +08:00
|
|
|
rangeList.dump(OS);
|
2013-01-03 07:52:13 +08:00
|
|
|
}
|
2013-01-16 07:56:56 +08:00
|
|
|
|
2013-09-26 07:02:36 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Pubnames)
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDebugPubTable(DObj->getPubNamesSection(), isLittleEndian(), false)
|
2016-12-17 17:10:32 +08:00
|
|
|
.dump("debug_pubnames", OS);
|
2013-02-13 00:20:28 +08:00
|
|
|
|
2013-09-26 07:02:41 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Pubtypes)
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDebugPubTable(DObj->getPubTypesSection(), isLittleEndian(), false)
|
2016-12-17 17:10:32 +08:00
|
|
|
.dump("debug_pubtypes", OS);
|
2013-09-26 07:02:41 +08:00
|
|
|
|
2013-09-25 03:50:00 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_GnuPubnames)
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDebugPubTable(DObj->getGnuPubNamesSection(), isLittleEndian(),
|
2016-12-17 17:10:32 +08:00
|
|
|
true /* GnuStyle */)
|
|
|
|
.dump("debug_gnu_pubnames", OS);
|
2013-09-25 03:50:00 +08:00
|
|
|
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_GnuPubtypes)
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDebugPubTable(DObj->getGnuPubTypesSection(), isLittleEndian(),
|
2016-12-17 17:10:32 +08:00
|
|
|
true /* GnuStyle */)
|
|
|
|
.dump("debug_gnu_pubtypes", OS);
|
2013-09-20 07:01:29 +08:00
|
|
|
|
2017-06-06 09:22:34 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_StrOffsets)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpStringOffsetsSection(
|
|
|
|
OS, "debug_str_offsets", *DObj, DObj->getStringOffsetSection(),
|
|
|
|
DObj->getStringSection(), isLittleEndian(), getMaxVersion());
|
2017-06-06 09:22:34 +08:00
|
|
|
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_StrOffsetsDwo) {
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpStringOffsetsSection(
|
|
|
|
OS, "debug_str_offsets.dwo", *DObj, DObj->getStringOffsetDWOSection(),
|
|
|
|
DObj->getStringDWOSection(), isLittleEndian(), getMaxVersion());
|
2014-01-09 08:13:35 +08:00
|
|
|
}
|
2014-11-15 00:15:53 +08:00
|
|
|
|
2016-09-23 19:01:53 +08:00
|
|
|
if ((DumpType == DIDT_All || DumpType == DIDT_GdbIndex) &&
|
2017-07-20 06:27:28 +08:00
|
|
|
!DObj->getGdbIndexSection().empty()) {
|
2016-09-23 19:01:53 +08:00
|
|
|
OS << "\n.gnu_index contents:\n";
|
|
|
|
getGdbIndex().dump(OS);
|
|
|
|
}
|
|
|
|
|
2014-11-15 00:15:53 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_AppleNames)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpAccelSection(OS, "apple_names", *DObj, DObj->getAppleNamesSection(),
|
|
|
|
DObj->getStringSection(), isLittleEndian());
|
2014-11-15 00:15:53 +08:00
|
|
|
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_AppleTypes)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpAccelSection(OS, "apple_types", *DObj, DObj->getAppleTypesSection(),
|
|
|
|
DObj->getStringSection(), isLittleEndian());
|
2014-11-15 00:15:53 +08:00
|
|
|
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_AppleNamespaces)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpAccelSection(OS, "apple_namespaces", *DObj,
|
|
|
|
DObj->getAppleNamespacesSection(),
|
|
|
|
DObj->getStringSection(), isLittleEndian());
|
2014-11-15 00:15:53 +08:00
|
|
|
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_AppleObjC)
|
2017-07-20 06:27:28 +08:00
|
|
|
dumpAccelSection(OS, "apple_objc", *DObj, DObj->getAppleObjCSection(),
|
|
|
|
DObj->getStringSection(), isLittleEndian());
|
2011-09-14 03:42:23 +08:00
|
|
|
}
|
|
|
|
|
2017-05-23 14:48:53 +08:00
|
|
|
DWARFCompileUnit *DWARFContext::getDWOCompileUnitForHash(uint64_t Hash) {
|
2017-07-30 23:15:58 +08:00
|
|
|
parseDWOCompileUnits();
|
|
|
|
|
2017-07-30 16:12:07 +08:00
|
|
|
if (const auto &CUI = getCUIndex()) {
|
|
|
|
if (const auto *R = CUI.getFromHash(Hash))
|
|
|
|
if (auto CUOff = R->getOffset(DW_SECT_INFO))
|
2017-07-30 23:15:58 +08:00
|
|
|
return DWOCUs.getUnitForOffset(CUOff->Offset);
|
2017-07-30 16:12:07 +08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's no index, just search through the CUs in the DWO - there's
|
|
|
|
// probably only one unless this is something like LTO - though an in-process
|
|
|
|
// built/cached lookup table could be used in that case to improve repeated
|
|
|
|
// lookups of different CUs in the DWO.
|
2017-05-23 14:48:53 +08:00
|
|
|
for (const auto &DWOCU : dwo_compile_units())
|
|
|
|
if (DWOCU->getDWOId() == Hash)
|
|
|
|
return DWOCU.get();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-05-03 04:28:33 +08:00
|
|
|
DWARFDie DWARFContext::getDIEForOffset(uint32_t Offset) {
|
|
|
|
parseCompileUnits();
|
|
|
|
if (auto *CU = CUs.getUnitForOffset(Offset))
|
|
|
|
return CU->getDIEForOffset(Offset);
|
|
|
|
return DWARFDie();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DWARFContext::verify(raw_ostream &OS, DIDumpType DumpType) {
|
|
|
|
bool Success = true;
|
2017-05-04 00:02:29 +08:00
|
|
|
DWARFVerifier verifier(OS, *this);
|
2017-07-27 08:59:33 +08:00
|
|
|
|
2017-07-20 10:06:52 +08:00
|
|
|
Success &= verifier.handleDebugAbbrev();
|
2017-07-27 08:59:33 +08:00
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Info)
|
|
|
|
Success &= verifier.handleDebugInfo();
|
|
|
|
if (DumpType == DIDT_All || DumpType == DIDT_Line)
|
|
|
|
Success &= verifier.handleDebugLine();
|
2017-07-26 08:52:31 +08:00
|
|
|
Success &= verifier.handleAccelTables();
|
2017-05-02 06:07:02 +08:00
|
|
|
return Success;
|
|
|
|
}
|
2017-06-14 08:17:55 +08:00
|
|
|
|
2015-11-17 08:39:55 +08:00
|
|
|
const DWARFUnitIndex &DWARFContext::getCUIndex() {
|
|
|
|
if (CUIndex)
|
|
|
|
return *CUIndex;
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor CUIndexData(DObj->getCUIndexSection(), isLittleEndian(), 0);
|
2015-11-17 08:39:55 +08:00
|
|
|
|
2015-12-02 14:21:34 +08:00
|
|
|
CUIndex = llvm::make_unique<DWARFUnitIndex>(DW_SECT_INFO);
|
2015-11-17 08:39:55 +08:00
|
|
|
CUIndex->parse(CUIndexData);
|
|
|
|
return *CUIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
const DWARFUnitIndex &DWARFContext::getTUIndex() {
|
|
|
|
if (TUIndex)
|
|
|
|
return *TUIndex;
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor TUIndexData(DObj->getTUIndexSection(), isLittleEndian(), 0);
|
2015-11-17 08:39:55 +08:00
|
|
|
|
2015-12-02 14:21:34 +08:00
|
|
|
TUIndex = llvm::make_unique<DWARFUnitIndex>(DW_SECT_TYPES);
|
2015-11-17 08:39:55 +08:00
|
|
|
TUIndex->parse(TUIndexData);
|
|
|
|
return *TUIndex;
|
|
|
|
}
|
|
|
|
|
2016-09-23 19:01:53 +08:00
|
|
|
DWARFGdbIndex &DWARFContext::getGdbIndex() {
|
|
|
|
if (GdbIndex)
|
|
|
|
return *GdbIndex;
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor GdbIndexData(DObj->getGdbIndexSection(), true /*LE*/, 0);
|
2016-09-23 19:01:53 +08:00
|
|
|
GdbIndex = llvm::make_unique<DWARFGdbIndex>();
|
|
|
|
GdbIndex->parse(GdbIndexData);
|
|
|
|
return *GdbIndex;
|
|
|
|
}
|
|
|
|
|
2011-09-14 03:42:23 +08:00
|
|
|
const DWARFDebugAbbrev *DWARFContext::getDebugAbbrev() {
|
|
|
|
if (Abbrev)
|
|
|
|
return Abbrev.get();
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor abbrData(DObj->getAbbrevSection(), isLittleEndian(), 0);
|
2011-09-14 03:42:23 +08:00
|
|
|
|
|
|
|
Abbrev.reset(new DWARFDebugAbbrev());
|
2014-04-26 05:10:56 +08:00
|
|
|
Abbrev->extract(abbrData);
|
2011-09-14 03:42:23 +08:00
|
|
|
return Abbrev.get();
|
|
|
|
}
|
|
|
|
|
2013-01-03 07:52:13 +08:00
|
|
|
const DWARFDebugAbbrev *DWARFContext::getDebugAbbrevDWO() {
|
|
|
|
if (AbbrevDWO)
|
|
|
|
return AbbrevDWO.get();
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor abbrData(DObj->getAbbrevDWOSection(), isLittleEndian(), 0);
|
2013-01-03 07:52:13 +08:00
|
|
|
AbbrevDWO.reset(new DWARFDebugAbbrev());
|
2014-04-26 05:10:56 +08:00
|
|
|
AbbrevDWO->extract(abbrData);
|
2013-01-03 07:52:13 +08:00
|
|
|
return AbbrevDWO.get();
|
|
|
|
}
|
|
|
|
|
2013-06-20 05:37:13 +08:00
|
|
|
const DWARFDebugLoc *DWARFContext::getDebugLoc() {
|
|
|
|
if (Loc)
|
|
|
|
return Loc.get();
|
|
|
|
|
2017-06-30 00:52:08 +08:00
|
|
|
Loc.reset(new DWARFDebugLoc);
|
2013-06-20 05:37:13 +08:00
|
|
|
// assume all compile units have the same address byte size
|
2017-06-30 00:52:08 +08:00
|
|
|
if (getNumCompileUnits()) {
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor LocData(*DObj, DObj->getLocSection(), isLittleEndian(),
|
2017-06-30 00:52:08 +08:00
|
|
|
getCompileUnitAtIndex(0)->getAddressByteSize());
|
|
|
|
Loc->parse(LocData);
|
|
|
|
}
|
2013-06-20 05:37:13 +08:00
|
|
|
return Loc.get();
|
|
|
|
}
|
|
|
|
|
2014-03-25 09:44:02 +08:00
|
|
|
const DWARFDebugLocDWO *DWARFContext::getDebugLocDWO() {
|
|
|
|
if (LocDWO)
|
|
|
|
return LocDWO.get();
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor LocData(DObj->getLocDWOSection().Data, isLittleEndian(), 0);
|
2014-03-25 09:44:02 +08:00
|
|
|
LocDWO.reset(new DWARFDebugLocDWO());
|
|
|
|
LocDWO->parse(LocData);
|
|
|
|
return LocDWO.get();
|
|
|
|
}
|
|
|
|
|
2011-09-14 09:09:52 +08:00
|
|
|
const DWARFDebugAranges *DWARFContext::getDebugAranges() {
|
|
|
|
if (Aranges)
|
|
|
|
return Aranges.get();
|
|
|
|
|
|
|
|
Aranges.reset(new DWARFDebugAranges());
|
2012-11-16 16:36:25 +08:00
|
|
|
Aranges->generate(this);
|
2011-09-14 09:09:52 +08:00
|
|
|
return Aranges.get();
|
|
|
|
}
|
|
|
|
|
2013-02-06 07:30:58 +08:00
|
|
|
const DWARFDebugFrame *DWARFContext::getDebugFrame() {
|
|
|
|
if (DebugFrame)
|
|
|
|
return DebugFrame.get();
|
|
|
|
|
|
|
|
// There's a "bug" in the DWARFv3 standard with respect to the target address
|
|
|
|
// size within debug frame sections. While DWARF is supposed to be independent
|
|
|
|
// of its container, FDEs have fields with size being "target address size",
|
|
|
|
// which isn't specified in DWARF in general. It's only specified for CUs, but
|
|
|
|
// .eh_frame can appear without a .debug_info section. Follow the example of
|
|
|
|
// other tools (libdwarf) and extract this from the container (ObjectFile
|
|
|
|
// provides this information). This problem is fixed in DWARFv4
|
|
|
|
// See this dwarf-discuss discussion for more details:
|
|
|
|
// http://lists.dwarfstd.org/htdig.cgi/dwarf-discuss-dwarfstd.org/2011-December/001173.html
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor debugFrameData(DObj->getDebugFrameSection(), isLittleEndian(),
|
|
|
|
DObj->getAddressSize());
|
2016-01-26 23:09:42 +08:00
|
|
|
DebugFrame.reset(new DWARFDebugFrame(false /* IsEH */));
|
|
|
|
DebugFrame->parse(debugFrameData);
|
|
|
|
return DebugFrame.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const DWARFDebugFrame *DWARFContext::getEHFrame() {
|
|
|
|
if (EHFrame)
|
|
|
|
return EHFrame.get();
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor debugFrameData(DObj->getEHFrameSection(), isLittleEndian(),
|
|
|
|
DObj->getAddressSize());
|
2016-01-26 23:09:42 +08:00
|
|
|
DebugFrame.reset(new DWARFDebugFrame(true /* IsEH */));
|
2013-02-06 07:30:58 +08:00
|
|
|
DebugFrame->parse(debugFrameData);
|
|
|
|
return DebugFrame.get();
|
|
|
|
}
|
|
|
|
|
2015-11-12 17:38:54 +08:00
|
|
|
const DWARFDebugMacro *DWARFContext::getDebugMacro() {
|
|
|
|
if (Macro)
|
|
|
|
return Macro.get();
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
DataExtractor MacinfoData(DObj->getMacinfoSection(), isLittleEndian(), 0);
|
2015-11-12 17:38:54 +08:00
|
|
|
Macro.reset(new DWARFDebugMacro());
|
|
|
|
Macro->parse(MacinfoData);
|
|
|
|
return Macro.get();
|
|
|
|
}
|
|
|
|
|
2012-10-17 07:46:25 +08:00
|
|
|
const DWARFLineTable *
|
2015-05-20 05:54:32 +08:00
|
|
|
DWARFContext::getLineTableForUnit(DWARFUnit *U) {
|
2011-09-16 04:43:18 +08:00
|
|
|
if (!Line)
|
2017-06-30 00:52:08 +08:00
|
|
|
Line.reset(new DWARFDebugLine);
|
2015-11-18 05:08:05 +08:00
|
|
|
|
2016-12-14 02:25:19 +08:00
|
|
|
auto UnitDIE = U->getUnitDIE();
|
|
|
|
if (!UnitDIE)
|
2015-05-20 05:54:32 +08:00
|
|
|
return nullptr;
|
2015-11-18 05:08:05 +08:00
|
|
|
|
2017-01-14 05:08:18 +08:00
|
|
|
auto Offset = toSectionOffset(UnitDIE.find(DW_AT_stmt_list));
|
2016-12-15 06:38:08 +08:00
|
|
|
if (!Offset)
|
2014-04-15 14:32:26 +08:00
|
|
|
return nullptr; // No line table for this compile unit.
|
2011-09-16 04:43:18 +08:00
|
|
|
|
2016-12-15 06:38:08 +08:00
|
|
|
uint32_t stmtOffset = *Offset + U->getLineTableOffset();
|
2011-09-16 04:43:18 +08:00
|
|
|
// See if the line table is cached.
|
2012-10-17 07:46:25 +08:00
|
|
|
if (const DWARFLineTable *lt = Line->getLineTable(stmtOffset))
|
2011-09-16 04:43:18 +08:00
|
|
|
return lt;
|
|
|
|
|
2017-05-05 02:29:44 +08:00
|
|
|
// Make sure the offset is good before we try to parse.
|
2017-06-30 00:52:08 +08:00
|
|
|
if (stmtOffset >= U->getLineSection().Data.size())
|
2017-05-05 02:29:44 +08:00
|
|
|
return nullptr;
|
|
|
|
|
2011-09-16 04:43:18 +08:00
|
|
|
// We have to parse it first.
|
2017-07-20 06:27:28 +08:00
|
|
|
DWARFDataExtractor lineData(*DObj, U->getLineSection(), isLittleEndian(),
|
2017-06-30 00:52:08 +08:00
|
|
|
U->getAddressByteSize());
|
2011-09-16 04:43:18 +08:00
|
|
|
return Line->getOrParseLineTable(lineData, stmtOffset);
|
2011-09-15 10:12:05 +08:00
|
|
|
}
|
|
|
|
|
2011-09-14 03:42:23 +08:00
|
|
|
void DWARFContext::parseCompileUnits() {
|
2017-07-20 06:27:28 +08:00
|
|
|
CUs.parse(*this, DObj->getInfoSection());
|
2011-09-14 03:42:23 +08:00
|
|
|
}
|
2011-09-16 04:43:22 +08:00
|
|
|
|
2013-09-24 06:44:47 +08:00
|
|
|
void DWARFContext::parseTypeUnits() {
|
2014-03-13 15:52:54 +08:00
|
|
|
if (!TUs.empty())
|
|
|
|
return;
|
2017-07-20 06:27:28 +08:00
|
|
|
DObj->forEachTypesSections([&](const DWARFSection &S) {
|
2015-05-30 03:43:39 +08:00
|
|
|
TUs.emplace_back();
|
2017-07-13 05:08:24 +08:00
|
|
|
TUs.back().parse(*this, S);
|
|
|
|
});
|
2013-09-24 06:44:47 +08:00
|
|
|
}
|
|
|
|
|
2013-01-03 07:52:13 +08:00
|
|
|
void DWARFContext::parseDWOCompileUnits() {
|
2017-07-20 06:27:28 +08:00
|
|
|
DWOCUs.parseDWO(*this, DObj->getInfoDWOSection());
|
2013-01-03 07:52:13 +08:00
|
|
|
}
|
|
|
|
|
2014-01-09 13:08:24 +08:00
|
|
|
void DWARFContext::parseDWOTypeUnits() {
|
2014-03-13 15:52:54 +08:00
|
|
|
if (!DWOTUs.empty())
|
|
|
|
return;
|
2017-07-20 06:27:28 +08:00
|
|
|
DObj->forEachTypesDWOSections([&](const DWARFSection &S) {
|
2015-05-30 03:43:39 +08:00
|
|
|
DWOTUs.emplace_back();
|
2017-07-13 05:08:24 +08:00
|
|
|
DWOTUs.back().parseDWO(*this, S);
|
|
|
|
});
|
2014-01-09 13:08:24 +08:00
|
|
|
}
|
|
|
|
|
2012-08-30 15:49:50 +08:00
|
|
|
DWARFCompileUnit *DWARFContext::getCompileUnitForOffset(uint32_t Offset) {
|
2014-03-13 15:52:54 +08:00
|
|
|
parseCompileUnits();
|
2014-09-15 15:50:27 +08:00
|
|
|
return CUs.getUnitForOffset(Offset);
|
2011-09-16 04:43:22 +08:00
|
|
|
}
|
|
|
|
|
2012-08-30 15:49:50 +08:00
|
|
|
DWARFCompileUnit *DWARFContext::getCompileUnitForAddress(uint64_t Address) {
|
2011-09-16 05:59:13 +08:00
|
|
|
// First, get the offset of the compile unit.
|
2012-08-30 15:49:50 +08:00
|
|
|
uint32_t CUOffset = getDebugAranges()->findAddress(Address);
|
2011-09-16 04:43:22 +08:00
|
|
|
// Retrieve the compile unit.
|
2012-08-30 15:49:50 +08:00
|
|
|
return getCompileUnitForOffset(CUOffset);
|
|
|
|
}
|
|
|
|
|
2017-02-07 04:19:02 +08:00
|
|
|
static bool getFunctionNameAndStartLineForAddress(DWARFCompileUnit *CU,
|
|
|
|
uint64_t Address,
|
|
|
|
FunctionNameKind Kind,
|
|
|
|
std::string &FunctionName,
|
|
|
|
uint32_t &StartLine) {
|
2014-04-19 05:36:39 +08:00
|
|
|
// The address may correspond to instruction in some inlined function,
|
|
|
|
// so we have to build the chain of inlined functions and take the
|
2017-02-07 04:19:02 +08:00
|
|
|
// name of the topmost function in it.
|
2016-12-14 02:25:19 +08:00
|
|
|
SmallVector<DWARFDie, 4> InlinedChain;
|
|
|
|
CU->getInlinedChainForAddress(Address, InlinedChain);
|
2017-02-07 04:19:02 +08:00
|
|
|
if (InlinedChain.empty())
|
2014-04-19 05:36:39 +08:00
|
|
|
return false;
|
2017-02-07 04:19:02 +08:00
|
|
|
|
|
|
|
const DWARFDie &DIE = InlinedChain[0];
|
|
|
|
bool FoundResult = false;
|
|
|
|
const char *Name = nullptr;
|
|
|
|
if (Kind != FunctionNameKind::None && (Name = DIE.getSubroutineName(Kind))) {
|
2014-04-19 05:36:39 +08:00
|
|
|
FunctionName = Name;
|
2017-02-07 04:19:02 +08:00
|
|
|
FoundResult = true;
|
2014-04-19 05:36:39 +08:00
|
|
|
}
|
2017-02-07 04:19:02 +08:00
|
|
|
if (auto DeclLineResult = DIE.getDeclLine()) {
|
|
|
|
StartLine = DeclLineResult;
|
|
|
|
FoundResult = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FoundResult;
|
2014-04-19 05:36:39 +08:00
|
|
|
}
|
|
|
|
|
2012-08-30 15:49:50 +08:00
|
|
|
DILineInfo DWARFContext::getLineInfoForAddress(uint64_t Address,
|
2014-05-16 05:24:32 +08:00
|
|
|
DILineInfoSpecifier Spec) {
|
2014-04-19 05:36:39 +08:00
|
|
|
DILineInfo Result;
|
|
|
|
|
2012-08-30 15:49:50 +08:00
|
|
|
DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
|
|
|
|
if (!CU)
|
2014-04-19 05:36:39 +08:00
|
|
|
return Result;
|
2017-02-07 04:19:02 +08:00
|
|
|
getFunctionNameAndStartLineForAddress(CU, Address, Spec.FNKind,
|
|
|
|
Result.FunctionName,
|
|
|
|
Result.StartLine);
|
2014-05-16 05:24:32 +08:00
|
|
|
if (Spec.FLIKind != FileLineInfoKind::None) {
|
2014-09-19 23:11:51 +08:00
|
|
|
if (const DWARFLineTable *LineTable = getLineTableForUnit(CU))
|
|
|
|
LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(),
|
|
|
|
Spec.FLIKind, Result);
|
2012-08-30 15:49:50 +08:00
|
|
|
}
|
2014-04-19 05:36:39 +08:00
|
|
|
return Result;
|
2011-09-16 04:43:22 +08:00
|
|
|
}
|
2011-12-20 10:50:00 +08:00
|
|
|
|
2014-05-16 05:24:32 +08:00
|
|
|
DILineInfoTable
|
|
|
|
DWARFContext::getLineInfoForAddressRange(uint64_t Address, uint64_t Size,
|
|
|
|
DILineInfoSpecifier Spec) {
|
2013-01-26 08:28:05 +08:00
|
|
|
DILineInfoTable Lines;
|
|
|
|
DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
|
|
|
|
if (!CU)
|
|
|
|
return Lines;
|
|
|
|
|
|
|
|
std::string FunctionName = "<invalid>";
|
2017-02-07 04:19:02 +08:00
|
|
|
uint32_t StartLine = 0;
|
|
|
|
getFunctionNameAndStartLineForAddress(CU, Address, Spec.FNKind, FunctionName,
|
|
|
|
StartLine);
|
2013-01-26 08:28:05 +08:00
|
|
|
|
|
|
|
// If the Specifier says we don't need FileLineInfo, just
|
|
|
|
// return the top-most function at the starting address.
|
2014-05-16 05:24:32 +08:00
|
|
|
if (Spec.FLIKind == FileLineInfoKind::None) {
|
2014-04-19 05:36:39 +08:00
|
|
|
DILineInfo Result;
|
|
|
|
Result.FunctionName = FunctionName;
|
2017-02-07 04:19:02 +08:00
|
|
|
Result.StartLine = StartLine;
|
2014-04-19 05:36:39 +08:00
|
|
|
Lines.push_back(std::make_pair(Address, Result));
|
2013-01-26 08:28:05 +08:00
|
|
|
return Lines;
|
|
|
|
}
|
|
|
|
|
2014-09-04 14:14:40 +08:00
|
|
|
const DWARFLineTable *LineTable = getLineTableForUnit(CU);
|
2013-01-26 08:28:05 +08:00
|
|
|
|
|
|
|
// Get the index of row we're looking for in the line table.
|
|
|
|
std::vector<uint32_t> RowVector;
|
|
|
|
if (!LineTable->lookupAddressRange(Address, Size, RowVector))
|
|
|
|
return Lines;
|
|
|
|
|
2014-03-13 15:52:54 +08:00
|
|
|
for (uint32_t RowIndex : RowVector) {
|
2013-01-26 08:28:05 +08:00
|
|
|
// Take file number and line/column from the row.
|
|
|
|
const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
|
2014-04-19 05:36:39 +08:00
|
|
|
DILineInfo Result;
|
2014-09-19 23:11:51 +08:00
|
|
|
LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(),
|
|
|
|
Spec.FLIKind, Result.FileName);
|
2014-04-19 05:36:39 +08:00
|
|
|
Result.FunctionName = FunctionName;
|
|
|
|
Result.Line = Row.Line;
|
|
|
|
Result.Column = Row.Column;
|
2017-02-07 04:19:02 +08:00
|
|
|
Result.StartLine = StartLine;
|
2014-04-19 05:36:39 +08:00
|
|
|
Lines.push_back(std::make_pair(Row.Address, Result));
|
2013-01-26 08:28:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return Lines;
|
|
|
|
}
|
|
|
|
|
2014-05-16 05:24:32 +08:00
|
|
|
DIInliningInfo
|
|
|
|
DWARFContext::getInliningInfoForAddress(uint64_t Address,
|
|
|
|
DILineInfoSpecifier Spec) {
|
2014-04-19 06:22:44 +08:00
|
|
|
DIInliningInfo InliningInfo;
|
|
|
|
|
2012-09-04 16:12:33 +08:00
|
|
|
DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
|
|
|
|
if (!CU)
|
2014-04-19 06:22:44 +08:00
|
|
|
return InliningInfo;
|
2012-09-04 16:12:33 +08:00
|
|
|
|
2014-04-19 06:22:44 +08:00
|
|
|
const DWARFLineTable *LineTable = nullptr;
|
2016-12-14 02:25:19 +08:00
|
|
|
SmallVector<DWARFDie, 4> InlinedChain;
|
|
|
|
CU->getInlinedChainForAddress(Address, InlinedChain);
|
|
|
|
if (InlinedChain.size() == 0) {
|
2014-04-19 06:22:44 +08:00
|
|
|
// If there is no DIE for address (e.g. it is in unavailable .dwo file),
|
|
|
|
// try to at least get file/line info from symbol table.
|
2014-05-16 05:24:32 +08:00
|
|
|
if (Spec.FLIKind != FileLineInfoKind::None) {
|
2014-04-19 06:22:44 +08:00
|
|
|
DILineInfo Frame;
|
2014-09-04 14:14:40 +08:00
|
|
|
LineTable = getLineTableForUnit(CU);
|
2014-09-19 23:11:51 +08:00
|
|
|
if (LineTable &&
|
|
|
|
LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(),
|
|
|
|
Spec.FLIKind, Frame))
|
2014-04-19 06:22:44 +08:00
|
|
|
InliningInfo.addFrame(Frame);
|
|
|
|
}
|
|
|
|
return InliningInfo;
|
|
|
|
}
|
2012-09-04 16:12:33 +08:00
|
|
|
|
2017-04-18 04:10:39 +08:00
|
|
|
uint32_t CallFile = 0, CallLine = 0, CallColumn = 0, CallDiscriminator = 0;
|
2016-12-14 02:25:19 +08:00
|
|
|
for (uint32_t i = 0, n = InlinedChain.size(); i != n; i++) {
|
|
|
|
DWARFDie &FunctionDIE = InlinedChain[i];
|
2014-04-19 05:36:39 +08:00
|
|
|
DILineInfo Frame;
|
2012-09-04 16:12:33 +08:00
|
|
|
// Get function name if necessary.
|
2016-12-14 02:25:19 +08:00
|
|
|
if (const char *Name = FunctionDIE.getSubroutineName(Spec.FNKind))
|
2014-05-16 05:24:32 +08:00
|
|
|
Frame.FunctionName = Name;
|
2017-02-07 04:19:02 +08:00
|
|
|
if (auto DeclLineResult = FunctionDIE.getDeclLine())
|
|
|
|
Frame.StartLine = DeclLineResult;
|
2014-05-16 05:24:32 +08:00
|
|
|
if (Spec.FLIKind != FileLineInfoKind::None) {
|
2012-09-04 16:12:33 +08:00
|
|
|
if (i == 0) {
|
|
|
|
// For the topmost frame, initialize the line table of this
|
|
|
|
// compile unit and fetch file/line info from it.
|
2014-09-04 14:14:40 +08:00
|
|
|
LineTable = getLineTableForUnit(CU);
|
2012-09-04 16:12:33 +08:00
|
|
|
// For the topmost routine, get file/line info from line table.
|
2014-09-19 23:11:51 +08:00
|
|
|
if (LineTable)
|
|
|
|
LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(),
|
|
|
|
Spec.FLIKind, Frame);
|
2012-09-04 16:12:33 +08:00
|
|
|
} else {
|
|
|
|
// Otherwise, use call file, call line and call column from
|
|
|
|
// previous DIE in inlined chain.
|
2014-09-19 23:11:51 +08:00
|
|
|
if (LineTable)
|
|
|
|
LineTable->getFileNameByIndex(CallFile, CU->getCompilationDir(),
|
|
|
|
Spec.FLIKind, Frame.FileName);
|
2014-04-19 05:36:39 +08:00
|
|
|
Frame.Line = CallLine;
|
|
|
|
Frame.Column = CallColumn;
|
2017-04-18 04:10:39 +08:00
|
|
|
Frame.Discriminator = CallDiscriminator;
|
2012-09-04 16:12:33 +08:00
|
|
|
}
|
|
|
|
// Get call file/line/column of a current DIE.
|
|
|
|
if (i + 1 < n) {
|
2017-04-18 04:10:39 +08:00
|
|
|
FunctionDIE.getCallerFrame(CallFile, CallLine, CallColumn,
|
|
|
|
CallDiscriminator);
|
2012-09-04 16:12:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
InliningInfo.addFrame(Frame);
|
|
|
|
}
|
|
|
|
return InliningInfo;
|
|
|
|
}
|
|
|
|
|
2017-05-23 08:30:42 +08:00
|
|
|
std::shared_ptr<DWARFContext>
|
|
|
|
DWARFContext::getDWOContext(StringRef AbsolutePath) {
|
2017-05-23 14:48:53 +08:00
|
|
|
if (auto S = DWP.lock()) {
|
2017-05-23 08:30:42 +08:00
|
|
|
DWARFContext *Ctxt = S->Context.get();
|
|
|
|
return std::shared_ptr<DWARFContext>(std::move(S), Ctxt);
|
|
|
|
}
|
|
|
|
|
2017-05-23 14:48:53 +08:00
|
|
|
std::weak_ptr<DWOFile> *Entry = &DWOFiles[AbsolutePath];
|
|
|
|
|
|
|
|
if (auto S = Entry->lock()) {
|
|
|
|
DWARFContext *Ctxt = S->Context.get();
|
|
|
|
return std::shared_ptr<DWARFContext>(std::move(S), Ctxt);
|
|
|
|
}
|
|
|
|
|
|
|
|
Expected<OwningBinary<ObjectFile>> Obj = [&] {
|
|
|
|
if (!CheckedForDWP) {
|
2017-07-30 09:34:08 +08:00
|
|
|
SmallString<128> DWPName;
|
|
|
|
auto Obj = object::ObjectFile::createObjectFile(
|
|
|
|
this->DWPName.empty()
|
|
|
|
? (DObj->getFileName() + ".dwp").toStringRef(DWPName)
|
|
|
|
: StringRef(this->DWPName));
|
2017-05-23 14:48:53 +08:00
|
|
|
if (Obj) {
|
|
|
|
Entry = &DWP;
|
|
|
|
return Obj;
|
|
|
|
} else {
|
|
|
|
CheckedForDWP = true;
|
|
|
|
// TODO: Should this error be handled (maybe in a high verbosity mode)
|
|
|
|
// before falling back to .dwo files?
|
|
|
|
consumeError(Obj.takeError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return object::ObjectFile::createObjectFile(AbsolutePath);
|
|
|
|
}();
|
|
|
|
|
2017-05-23 08:30:42 +08:00
|
|
|
if (!Obj) {
|
|
|
|
// TODO: Actually report errors helpfully.
|
|
|
|
consumeError(Obj.takeError());
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-05-23 14:48:53 +08:00
|
|
|
|
|
|
|
auto S = std::make_shared<DWOFile>();
|
2017-05-23 08:30:42 +08:00
|
|
|
S->File = std::move(Obj.get());
|
2017-07-20 06:27:28 +08:00
|
|
|
S->Context = DWARFContext::create(*S->File.getBinary());
|
2017-05-23 14:48:53 +08:00
|
|
|
*Entry = S;
|
2017-05-23 08:30:42 +08:00
|
|
|
auto *Ctxt = S->Context.get();
|
|
|
|
return std::shared_ptr<DWARFContext>(std::move(S), Ctxt);
|
|
|
|
}
|
|
|
|
|
2017-04-12 16:59:15 +08:00
|
|
|
static Error createError(const Twine &Reason, llvm::Error E) {
|
|
|
|
return make_error<StringError>(Reason + toString(std::move(E)),
|
|
|
|
inconvertibleErrorCode());
|
|
|
|
}
|
|
|
|
|
2017-05-28 02:10:23 +08:00
|
|
|
/// SymInfo contains information about symbol: it's address
|
|
|
|
/// and section index which is -1LL for absolute symbols.
|
|
|
|
struct SymInfo {
|
|
|
|
uint64_t Address;
|
|
|
|
uint64_t SectionIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Returns the address of symbol relocation used against and a section index.
|
|
|
|
/// Used for futher relocations computation. Symbol's section load address is
|
|
|
|
static Expected<SymInfo> getSymbolInfo(const object::ObjectFile &Obj,
|
|
|
|
const RelocationRef &Reloc,
|
|
|
|
const LoadedObjectInfo *L,
|
|
|
|
std::map<SymbolRef, SymInfo> &Cache) {
|
|
|
|
SymInfo Ret = {0, (uint64_t)-1LL};
|
2017-04-12 16:59:15 +08:00
|
|
|
object::section_iterator RSec = Obj.section_end();
|
|
|
|
object::symbol_iterator Sym = Reloc.getSymbol();
|
|
|
|
|
2017-05-28 02:10:23 +08:00
|
|
|
std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end();
|
2017-04-12 16:59:15 +08:00
|
|
|
// First calculate the address of the symbol or section as it appears
|
|
|
|
// in the object file
|
|
|
|
if (Sym != Obj.symbol_end()) {
|
[DWARF] - Speedup handling of relocations in DWARFContextInMemory.
I am working on a speedup of building .gdb_index in LLD and
noticed that relocations that are proccessed in DWARFContextInMemory often uses
the same symbol in a row. This patch introduces caching to reduce the relocations
proccessing time.
For benchmark,
I took debug LLC binary objects configured with -ggnu-pubnames and linked it using LLD.
Link time without --gdb-index is about 4,45s.
Link time with --gdb-index: a) Without patch: 19,16s b) With patch: 15,52s
That means time spent on --gdb-index in this configuration is
19,16s - 4,45s = 14,71s (without patch) vs 15,52s - 4,45s = 11,07s (with patch).
Differential revision: https://reviews.llvm.org/D31136
llvm-svn: 303051
2017-05-15 19:45:28 +08:00
|
|
|
bool New;
|
2017-05-28 02:10:23 +08:00
|
|
|
std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}});
|
[DWARF] - Speedup handling of relocations in DWARFContextInMemory.
I am working on a speedup of building .gdb_index in LLD and
noticed that relocations that are proccessed in DWARFContextInMemory often uses
the same symbol in a row. This patch introduces caching to reduce the relocations
proccessing time.
For benchmark,
I took debug LLC binary objects configured with -ggnu-pubnames and linked it using LLD.
Link time without --gdb-index is about 4,45s.
Link time with --gdb-index: a) Without patch: 19,16s b) With patch: 15,52s
That means time spent on --gdb-index in this configuration is
19,16s - 4,45s = 14,71s (without patch) vs 15,52s - 4,45s = 11,07s (with patch).
Differential revision: https://reviews.llvm.org/D31136
llvm-svn: 303051
2017-05-15 19:45:28 +08:00
|
|
|
if (!New)
|
|
|
|
return CacheIt->second;
|
|
|
|
|
2017-04-12 16:59:15 +08:00
|
|
|
Expected<uint64_t> SymAddrOrErr = Sym->getAddress();
|
|
|
|
if (!SymAddrOrErr)
|
2017-06-28 16:21:19 +08:00
|
|
|
return createError("failed to compute symbol address: ",
|
2017-04-12 16:59:15 +08:00
|
|
|
SymAddrOrErr.takeError());
|
|
|
|
|
|
|
|
// Also remember what section this symbol is in for later
|
|
|
|
auto SectOrErr = Sym->getSection();
|
|
|
|
if (!SectOrErr)
|
2017-06-28 16:21:19 +08:00
|
|
|
return createError("failed to get symbol section: ",
|
2017-04-12 16:59:15 +08:00
|
|
|
SectOrErr.takeError());
|
|
|
|
|
|
|
|
RSec = *SectOrErr;
|
2017-05-28 02:10:23 +08:00
|
|
|
Ret.Address = *SymAddrOrErr;
|
2017-04-12 16:59:15 +08:00
|
|
|
} else if (auto *MObj = dyn_cast<MachOObjectFile>(&Obj)) {
|
|
|
|
RSec = MObj->getRelocationSection(Reloc.getRawDataRefImpl());
|
2017-05-28 02:10:23 +08:00
|
|
|
Ret.Address = RSec->getAddress();
|
2017-04-12 16:59:15 +08:00
|
|
|
}
|
|
|
|
|
2017-05-28 02:10:23 +08:00
|
|
|
if (RSec != Obj.section_end())
|
|
|
|
Ret.SectionIndex = RSec->getIndex();
|
|
|
|
|
2017-04-12 16:59:15 +08:00
|
|
|
// If we are given load addresses for the sections, we need to adjust:
|
|
|
|
// SymAddr = (Address of Symbol Or Section in File) -
|
|
|
|
// (Address of Section in File) +
|
|
|
|
// (Load Address of Section)
|
|
|
|
// RSec is now either the section being targeted or the section
|
|
|
|
// containing the symbol being targeted. In either case,
|
|
|
|
// we need to perform the same computation.
|
|
|
|
if (L && RSec != Obj.section_end())
|
|
|
|
if (uint64_t SectionLoadAddress = L->getSectionLoadAddress(*RSec))
|
2017-05-28 02:10:23 +08:00
|
|
|
Ret.Address += SectionLoadAddress - RSec->getAddress();
|
[DWARF] - Speedup handling of relocations in DWARFContextInMemory.
I am working on a speedup of building .gdb_index in LLD and
noticed that relocations that are proccessed in DWARFContextInMemory often uses
the same symbol in a row. This patch introduces caching to reduce the relocations
proccessing time.
For benchmark,
I took debug LLC binary objects configured with -ggnu-pubnames and linked it using LLD.
Link time without --gdb-index is about 4,45s.
Link time with --gdb-index: a) Without patch: 19,16s b) With patch: 15,52s
That means time spent on --gdb-index in this configuration is
19,16s - 4,45s = 14,71s (without patch) vs 15,52s - 4,45s = 11,07s (with patch).
Differential revision: https://reviews.llvm.org/D31136
llvm-svn: 303051
2017-05-15 19:45:28 +08:00
|
|
|
|
|
|
|
if (CacheIt != Cache.end())
|
|
|
|
CacheIt->second = Ret;
|
|
|
|
|
2017-04-12 16:59:15 +08:00
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isRelocScattered(const object::ObjectFile &Obj,
|
|
|
|
const RelocationRef &Reloc) {
|
2017-04-13 17:52:50 +08:00
|
|
|
const MachOObjectFile *MachObj = dyn_cast<MachOObjectFile>(&Obj);
|
|
|
|
if (!MachObj)
|
2017-04-12 16:59:15 +08:00
|
|
|
return false;
|
|
|
|
// MachO also has relocations that point to sections and
|
|
|
|
// scattered relocations.
|
|
|
|
auto RelocInfo = MachObj->getRelocation(Reloc.getRawDataRefImpl());
|
|
|
|
return MachObj->isRelocationScattered(RelocInfo);
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
ErrorPolicy DWARFContext::defaultErrorHandler(Error E) {
|
|
|
|
errs() << "error: " + toString(std::move(E)) << '\n';
|
|
|
|
return ErrorPolicy::Continue;
|
|
|
|
}
|
2017-05-05 18:52:39 +08:00
|
|
|
|
2017-07-25 03:34:26 +08:00
|
|
|
namespace {
|
|
|
|
struct DWARFSectionMap final : public DWARFSection {
|
|
|
|
RelocAddrMap Relocs;
|
|
|
|
};
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
class DWARFObjInMemory final : public DWARFObject {
|
|
|
|
bool IsLittleEndian;
|
|
|
|
uint8_t AddressSize;
|
|
|
|
StringRef FileName;
|
2017-08-15 20:32:54 +08:00
|
|
|
const object::ObjectFile *Obj = nullptr;
|
2017-08-15 23:54:43 +08:00
|
|
|
std::vector<SectionName> SectionNames;
|
2017-07-20 06:27:28 +08:00
|
|
|
|
|
|
|
using TypeSectionMap = MapVector<object::SectionRef, DWARFSectionMap,
|
|
|
|
std::map<object::SectionRef, unsigned>>;
|
|
|
|
|
|
|
|
TypeSectionMap TypesSections;
|
|
|
|
TypeSectionMap TypesDWOSections;
|
|
|
|
|
|
|
|
DWARFSectionMap InfoSection;
|
|
|
|
DWARFSectionMap LocSection;
|
|
|
|
DWARFSectionMap LineSection;
|
|
|
|
DWARFSectionMap RangeSection;
|
|
|
|
DWARFSectionMap StringOffsetSection;
|
|
|
|
DWARFSectionMap InfoDWOSection;
|
|
|
|
DWARFSectionMap LineDWOSection;
|
|
|
|
DWARFSectionMap LocDWOSection;
|
|
|
|
DWARFSectionMap StringOffsetDWOSection;
|
|
|
|
DWARFSectionMap RangeDWOSection;
|
|
|
|
DWARFSectionMap AddrSection;
|
|
|
|
DWARFSectionMap AppleNamesSection;
|
|
|
|
DWARFSectionMap AppleTypesSection;
|
|
|
|
DWARFSectionMap AppleNamespacesSection;
|
|
|
|
DWARFSectionMap AppleObjCSection;
|
|
|
|
|
|
|
|
DWARFSectionMap *mapNameToDWARFSection(StringRef Name) {
|
|
|
|
return StringSwitch<DWARFSectionMap *>(Name)
|
|
|
|
.Case("debug_info", &InfoSection)
|
|
|
|
.Case("debug_loc", &LocSection)
|
|
|
|
.Case("debug_line", &LineSection)
|
|
|
|
.Case("debug_str_offsets", &StringOffsetSection)
|
|
|
|
.Case("debug_ranges", &RangeSection)
|
|
|
|
.Case("debug_info.dwo", &InfoDWOSection)
|
|
|
|
.Case("debug_loc.dwo", &LocDWOSection)
|
|
|
|
.Case("debug_line.dwo", &LineDWOSection)
|
|
|
|
.Case("debug_str_offsets.dwo", &StringOffsetDWOSection)
|
|
|
|
.Case("debug_addr", &AddrSection)
|
|
|
|
.Case("apple_names", &AppleNamesSection)
|
|
|
|
.Case("apple_types", &AppleTypesSection)
|
|
|
|
.Case("apple_namespaces", &AppleNamespacesSection)
|
|
|
|
.Case("apple_namespac", &AppleNamespacesSection)
|
|
|
|
.Case("apple_objc", &AppleObjCSection)
|
|
|
|
.Default(nullptr);
|
|
|
|
}
|
2017-05-05 18:52:39 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
StringRef AbbrevSection;
|
|
|
|
StringRef ARangeSection;
|
|
|
|
StringRef DebugFrameSection;
|
|
|
|
StringRef EHFrameSection;
|
|
|
|
StringRef StringSection;
|
|
|
|
StringRef MacinfoSection;
|
|
|
|
StringRef PubNamesSection;
|
|
|
|
StringRef PubTypesSection;
|
|
|
|
StringRef GnuPubNamesSection;
|
|
|
|
StringRef AbbrevDWOSection;
|
|
|
|
StringRef StringDWOSection;
|
|
|
|
StringRef GnuPubTypesSection;
|
|
|
|
StringRef CUIndexSection;
|
|
|
|
StringRef GdbIndexSection;
|
|
|
|
StringRef TUIndexSection;
|
|
|
|
|
|
|
|
SmallVector<SmallString<32>, 4> UncompressedSections;
|
|
|
|
|
|
|
|
StringRef *mapSectionToMember(StringRef Name) {
|
|
|
|
if (DWARFSection *Sec = mapNameToDWARFSection(Name))
|
|
|
|
return &Sec->Data;
|
|
|
|
return StringSwitch<StringRef *>(Name)
|
|
|
|
.Case("debug_abbrev", &AbbrevSection)
|
|
|
|
.Case("debug_aranges", &ARangeSection)
|
|
|
|
.Case("debug_frame", &DebugFrameSection)
|
|
|
|
.Case("eh_frame", &EHFrameSection)
|
|
|
|
.Case("debug_str", &StringSection)
|
|
|
|
.Case("debug_macinfo", &MacinfoSection)
|
|
|
|
.Case("debug_pubnames", &PubNamesSection)
|
|
|
|
.Case("debug_pubtypes", &PubTypesSection)
|
|
|
|
.Case("debug_gnu_pubnames", &GnuPubNamesSection)
|
|
|
|
.Case("debug_gnu_pubtypes", &GnuPubTypesSection)
|
|
|
|
.Case("debug_abbrev.dwo", &AbbrevDWOSection)
|
|
|
|
.Case("debug_str.dwo", &StringDWOSection)
|
|
|
|
.Case("debug_cu_index", &CUIndexSection)
|
|
|
|
.Case("debug_tu_index", &TUIndexSection)
|
|
|
|
.Case("gdb_index", &GdbIndexSection)
|
|
|
|
// Any more debug info sections go here.
|
|
|
|
.Default(nullptr);
|
|
|
|
}
|
2017-05-05 18:52:39 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
/// If Sec is compressed section, decompresses and updates its contents
|
|
|
|
/// provided by Data. Otherwise leaves it unchanged.
|
|
|
|
Error maybeDecompress(const object::SectionRef &Sec, StringRef Name,
|
|
|
|
StringRef &Data) {
|
|
|
|
if (!Decompressor::isCompressed(Sec))
|
|
|
|
return Error::success();
|
2017-05-05 18:52:39 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
Expected<Decompressor> Decompressor =
|
|
|
|
Decompressor::create(Name, Data, IsLittleEndian, AddressSize == 8);
|
|
|
|
if (!Decompressor)
|
|
|
|
return Decompressor.takeError();
|
2017-05-05 18:52:39 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
SmallString<32> Out;
|
|
|
|
if (auto Err = Decompressor->resizeAndDecompress(Out))
|
|
|
|
return Err;
|
2017-06-28 16:21:19 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
UncompressedSections.emplace_back(std::move(Out));
|
|
|
|
Data = UncompressedSections.back();
|
2013-04-23 18:17:34 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
return Error::success();
|
|
|
|
}
|
2017-01-11 23:26:41 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
public:
|
|
|
|
DWARFObjInMemory(const StringMap<std::unique_ptr<MemoryBuffer>> &Sections,
|
|
|
|
uint8_t AddrSize, bool IsLittleEndian)
|
|
|
|
: IsLittleEndian(IsLittleEndian) {
|
|
|
|
for (const auto &SecIt : Sections) {
|
|
|
|
if (StringRef *SectionData = mapSectionToMember(SecIt.first()))
|
|
|
|
*SectionData = SecIt.second->getBuffer();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DWARFObjInMemory(const object::ObjectFile &Obj, const LoadedObjectInfo *L,
|
|
|
|
function_ref<ErrorPolicy(Error)> HandleError)
|
|
|
|
: IsLittleEndian(Obj.isLittleEndian()),
|
2017-08-15 20:32:54 +08:00
|
|
|
AddressSize(Obj.getBytesInAddress()), FileName(Obj.getFileName()),
|
|
|
|
Obj(&Obj) {
|
2017-07-20 06:27:28 +08:00
|
|
|
|
2017-08-15 23:54:43 +08:00
|
|
|
StringMap<unsigned> SectionAmountMap;
|
2017-07-20 06:27:28 +08:00
|
|
|
for (const SectionRef &Section : Obj.sections()) {
|
|
|
|
StringRef Name;
|
|
|
|
Section.getName(Name);
|
2017-08-15 23:54:43 +08:00
|
|
|
++SectionAmountMap[Name];
|
|
|
|
SectionNames.push_back({ Name, true });
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
// Skip BSS and Virtual sections, they aren't interesting.
|
|
|
|
if (Section.isBSS() || Section.isVirtual())
|
|
|
|
continue;
|
2017-07-13 09:03:28 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
StringRef Data;
|
|
|
|
section_iterator RelocatedSection = Section.getRelocatedSection();
|
|
|
|
// Try to obtain an already relocated version of this section.
|
|
|
|
// Else use the unrelocated section from the object file. We'll have to
|
|
|
|
// apply relocations ourselves later.
|
|
|
|
if (!L || !L->getLoadedSectionContents(*RelocatedSection, Data))
|
|
|
|
Section.getContents(Data);
|
|
|
|
|
|
|
|
if (auto Err = maybeDecompress(Section, Name, Data)) {
|
|
|
|
ErrorPolicy EP = HandleError(createError(
|
|
|
|
"failed to decompress '" + Name + "', ", std::move(Err)));
|
|
|
|
if (EP == ErrorPolicy::Halt)
|
|
|
|
return;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compressed sections names in GNU style starts from ".z",
|
|
|
|
// at this point section is decompressed and we drop compression prefix.
|
|
|
|
Name = Name.substr(
|
|
|
|
Name.find_first_not_of("._z")); // Skip ".", "z" and "_" prefixes.
|
|
|
|
|
|
|
|
// Map platform specific debug section names to DWARF standard section
|
|
|
|
// names.
|
|
|
|
Name = Obj.mapDebugSectionName(Name);
|
|
|
|
|
|
|
|
if (StringRef *SectionData = mapSectionToMember(Name)) {
|
|
|
|
*SectionData = Data;
|
|
|
|
if (Name == "debug_ranges") {
|
|
|
|
// FIXME: Use the other dwo range section when we emit it.
|
|
|
|
RangeDWOSection.Data = Data;
|
|
|
|
}
|
|
|
|
} else if (Name == "debug_types") {
|
|
|
|
// Find debug_types data by section rather than name as there are
|
|
|
|
// multiple, comdat grouped, debug_types sections.
|
|
|
|
TypesSections[Section].Data = Data;
|
|
|
|
} else if (Name == "debug_types.dwo") {
|
|
|
|
TypesDWOSections[Section].Data = Data;
|
2013-05-30 11:05:14 +08:00
|
|
|
}
|
2012-11-13 05:40:38 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
if (RelocatedSection == Obj.section_end())
|
2014-01-09 13:08:24 +08:00
|
|
|
continue;
|
2012-11-13 05:40:38 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
StringRef RelSecName;
|
|
|
|
StringRef RelSecData;
|
|
|
|
RelocatedSection->getName(RelSecName);
|
2017-05-17 20:10:51 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
// If the section we're relocating was relocated already by the JIT,
|
|
|
|
// then we used the relocated version above, so we do not need to process
|
|
|
|
// relocations for it now.
|
|
|
|
if (L && L->getLoadedSectionContents(*RelocatedSection, RelSecData))
|
2017-05-17 20:10:51 +08:00
|
|
|
continue;
|
2015-05-22 05:24:32 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
// In Mach-o files, the relocations do not need to be applied if
|
|
|
|
// there is no load offset to apply. The value read at the
|
|
|
|
// relocation point already factors in the section address
|
|
|
|
// (actually applying the relocations will produce wrong results
|
|
|
|
// as the section address will be added twice).
|
|
|
|
if (!L && isa<MachOObjectFile>(&Obj))
|
2017-05-17 20:10:51 +08:00
|
|
|
continue;
|
2017-07-20 06:27:28 +08:00
|
|
|
|
|
|
|
RelSecName = RelSecName.substr(
|
|
|
|
RelSecName.find_first_not_of("._z")); // Skip . and _ prefixes.
|
|
|
|
|
|
|
|
// TODO: Add support for relocations in other sections as needed.
|
|
|
|
// Record relocations for the debug_info and debug_line sections.
|
|
|
|
DWARFSectionMap *Sec = mapNameToDWARFSection(RelSecName);
|
|
|
|
RelocAddrMap *Map = Sec ? &Sec->Relocs : nullptr;
|
|
|
|
if (!Map) {
|
|
|
|
// Find debug_types relocs by section rather than name as there are
|
|
|
|
// multiple, comdat grouped, debug_types sections.
|
|
|
|
if (RelSecName == "debug_types")
|
|
|
|
Map =
|
|
|
|
&static_cast<DWARFSectionMap &>(TypesSections[*RelocatedSection])
|
|
|
|
.Relocs;
|
|
|
|
else if (RelSecName == "debug_types.dwo")
|
|
|
|
Map = &static_cast<DWARFSectionMap &>(
|
|
|
|
TypesDWOSections[*RelocatedSection])
|
|
|
|
.Relocs;
|
|
|
|
else
|
|
|
|
continue;
|
2017-05-17 20:10:51 +08:00
|
|
|
}
|
2012-11-13 05:40:38 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
if (Section.relocation_begin() == Section.relocation_end())
|
2017-05-17 20:10:51 +08:00
|
|
|
continue;
|
2017-07-20 06:27:28 +08:00
|
|
|
|
|
|
|
// Symbol to [address, section index] cache mapping.
|
|
|
|
std::map<SymbolRef, SymInfo> AddrCache;
|
|
|
|
for (const RelocationRef &Reloc : Section.relocations()) {
|
|
|
|
// FIXME: it's not clear how to correctly handle scattered
|
|
|
|
// relocations.
|
|
|
|
if (isRelocScattered(Obj, Reloc))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Expected<SymInfo> SymInfoOrErr =
|
|
|
|
getSymbolInfo(Obj, Reloc, L, AddrCache);
|
|
|
|
if (!SymInfoOrErr) {
|
|
|
|
if (HandleError(SymInfoOrErr.takeError()) == ErrorPolicy::Halt)
|
|
|
|
return;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
object::RelocVisitor V(Obj);
|
|
|
|
uint64_t Val = V.visit(Reloc.getType(), Reloc, SymInfoOrErr->Address);
|
|
|
|
if (V.error()) {
|
|
|
|
SmallString<32> Type;
|
|
|
|
Reloc.getTypeName(Type);
|
|
|
|
ErrorPolicy EP = HandleError(
|
|
|
|
createError("failed to compute relocation: " + Type + ", ",
|
|
|
|
errorCodeToError(object_error::parse_failed)));
|
|
|
|
if (EP == ErrorPolicy::Halt)
|
|
|
|
return;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
RelocAddrEntry Rel = {SymInfoOrErr->SectionIndex, Val};
|
|
|
|
Map->insert({Reloc.getOffset(), Rel});
|
2012-11-13 05:40:38 +08:00
|
|
|
}
|
|
|
|
}
|
2017-08-15 23:54:43 +08:00
|
|
|
|
|
|
|
for (SectionName &S : SectionNames)
|
|
|
|
if (SectionAmountMap[S.Name] > 1)
|
|
|
|
S.IsNameUnique = false;
|
2012-11-13 05:40:38 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
Optional<RelocAddrEntry> find(const DWARFSection &S,
|
|
|
|
uint64_t Pos) const override {
|
|
|
|
auto &Sec = static_cast<const DWARFSectionMap &>(S);
|
|
|
|
RelocAddrMap::const_iterator AI = Sec.Relocs.find(Pos);
|
|
|
|
if (AI == Sec.Relocs.end())
|
|
|
|
return None;
|
|
|
|
return AI->second;
|
2017-01-21 03:03:14 +08:00
|
|
|
}
|
|
|
|
|
2017-08-15 20:32:54 +08:00
|
|
|
const object::ObjectFile *getFile() const override { return Obj; }
|
|
|
|
|
2017-08-15 23:54:43 +08:00
|
|
|
ArrayRef<SectionName> getSectionNames() const override {
|
|
|
|
return SectionNames;
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
bool isLittleEndian() const override { return IsLittleEndian; }
|
|
|
|
StringRef getAbbrevDWOSection() const override { return AbbrevDWOSection; }
|
|
|
|
const DWARFSection &getLineDWOSection() const override {
|
|
|
|
return LineDWOSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getLocDWOSection() const override {
|
|
|
|
return LocDWOSection;
|
|
|
|
}
|
|
|
|
StringRef getStringDWOSection() const override { return StringDWOSection; }
|
|
|
|
const DWARFSection &getStringOffsetDWOSection() const override {
|
|
|
|
return StringOffsetDWOSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getRangeDWOSection() const override {
|
|
|
|
return RangeDWOSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getAddrSection() const override { return AddrSection; }
|
|
|
|
StringRef getCUIndexSection() const override { return CUIndexSection; }
|
|
|
|
StringRef getGdbIndexSection() const override { return GdbIndexSection; }
|
|
|
|
StringRef getTUIndexSection() const override { return TUIndexSection; }
|
|
|
|
|
|
|
|
// DWARF v5
|
|
|
|
const DWARFSection &getStringOffsetSection() const override {
|
|
|
|
return StringOffsetSection;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sections for DWARF5 split dwarf proposal.
|
|
|
|
const DWARFSection &getInfoDWOSection() const override {
|
|
|
|
return InfoDWOSection;
|
|
|
|
}
|
|
|
|
void forEachTypesDWOSections(
|
|
|
|
function_ref<void(const DWARFSection &)> F) const override {
|
|
|
|
for (auto &P : TypesDWOSections)
|
|
|
|
F(P.second);
|
|
|
|
}
|
2017-07-07 13:36:53 +08:00
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
StringRef getAbbrevSection() const override { return AbbrevSection; }
|
|
|
|
const DWARFSection &getLocSection() const override { return LocSection; }
|
|
|
|
StringRef getARangeSection() const override { return ARangeSection; }
|
|
|
|
StringRef getDebugFrameSection() const override { return DebugFrameSection; }
|
|
|
|
StringRef getEHFrameSection() const override { return EHFrameSection; }
|
|
|
|
const DWARFSection &getLineSection() const override { return LineSection; }
|
|
|
|
StringRef getStringSection() const override { return StringSection; }
|
|
|
|
const DWARFSection &getRangeSection() const override { return RangeSection; }
|
|
|
|
StringRef getMacinfoSection() const override { return MacinfoSection; }
|
|
|
|
StringRef getPubNamesSection() const override { return PubNamesSection; }
|
|
|
|
StringRef getPubTypesSection() const override { return PubTypesSection; }
|
|
|
|
StringRef getGnuPubNamesSection() const override {
|
|
|
|
return GnuPubNamesSection;
|
|
|
|
}
|
|
|
|
StringRef getGnuPubTypesSection() const override {
|
|
|
|
return GnuPubTypesSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getAppleNamesSection() const override {
|
|
|
|
return AppleNamesSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getAppleTypesSection() const override {
|
|
|
|
return AppleTypesSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getAppleNamespacesSection() const override {
|
|
|
|
return AppleNamespacesSection;
|
|
|
|
}
|
|
|
|
const DWARFSection &getAppleObjCSection() const override {
|
|
|
|
return AppleObjCSection;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef getFileName() const override { return FileName; }
|
|
|
|
uint8_t getAddressSize() const override { return AddressSize; }
|
|
|
|
const DWARFSection &getInfoSection() const override { return InfoSection; }
|
|
|
|
void forEachTypesSections(
|
|
|
|
function_ref<void(const DWARFSection &)> F) const override {
|
|
|
|
for (auto &P : TypesSections)
|
|
|
|
F(P.second);
|
|
|
|
}
|
|
|
|
};
|
2017-08-20 21:03:48 +08:00
|
|
|
} // namespace
|
2017-07-20 06:27:28 +08:00
|
|
|
|
|
|
|
std::unique_ptr<DWARFContext>
|
|
|
|
DWARFContext::create(const object::ObjectFile &Obj, const LoadedObjectInfo *L,
|
2017-07-30 09:34:08 +08:00
|
|
|
function_ref<ErrorPolicy(Error)> HandleError,
|
|
|
|
std::string DWPName) {
|
2017-07-20 07:42:53 +08:00
|
|
|
auto DObj = llvm::make_unique<DWARFObjInMemory>(Obj, L, HandleError);
|
2017-07-30 09:34:08 +08:00
|
|
|
return llvm::make_unique<DWARFContext>(std::move(DObj), std::move(DWPName));
|
2017-01-21 03:03:14 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:27:28 +08:00
|
|
|
std::unique_ptr<DWARFContext>
|
|
|
|
DWARFContext::create(const StringMap<std::unique_ptr<MemoryBuffer>> &Sections,
|
|
|
|
uint8_t AddrSize, bool isLittleEndian) {
|
2017-07-20 07:42:53 +08:00
|
|
|
auto DObj =
|
|
|
|
llvm::make_unique<DWARFObjInMemory>(Sections, AddrSize, isLittleEndian);
|
2017-07-30 09:34:08 +08:00
|
|
|
return llvm::make_unique<DWARFContext>(std::move(DObj), "");
|
2017-07-20 06:27:28 +08:00
|
|
|
}
|