Skip to content

Commit

Permalink
[DebugInfo] Pass DWARFSection down to DWARFUnit constructor (NFC).
Browse files Browse the repository at this point in the history
Keep the actual section contents and the relocation map together.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219261 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
vonosmas committed Oct 8, 2014
1 parent 52688c3 commit 8d74900
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions lib/DebugInfo/DWARFCompileUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ namespace llvm {

class DWARFCompileUnit : public DWARFUnit {
public:
DWARFCompileUnit(DWARFContext& Context, const DWARFDebugAbbrev *DA,
StringRef IS, StringRef RS, StringRef SS, StringRef SOS,
StringRef AOS, const RelocAddrMap *M, bool LE,
DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section,
const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
StringRef SOS, StringRef AOS, bool LE,
const DWARFUnitSectionBase &UnitSection)
: DWARFUnit(Context, DA, IS, RS, SS, SOS, AOS, M, LE, UnitSection) {}
: DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LE, UnitSection) {}
void dump(raw_ostream &OS);
// VTable anchor.
~DWARFCompileUnit() override;
Expand Down
8 changes: 4 additions & 4 deletions lib/DebugInfo/DWARFTypeUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class DWARFTypeUnit : public DWARFUnit {
uint64_t TypeHash;
uint32_t TypeOffset;
public:
DWARFTypeUnit(DWARFContext &Context, const DWARFDebugAbbrev *DA,
StringRef IS, StringRef RS, StringRef SS, StringRef SOS,
StringRef AOS, const RelocAddrMap *M, bool LE,
DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section,
const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
StringRef SOS, StringRef AOS, bool LE,
const DWARFUnitSectionBase &UnitSection)
: DWARFUnit(Context, DA, IS, RS, SS, SOS, AOS, M, LE, UnitSection) {}
: DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LE, UnitSection) {}
uint32_t getHeaderSize() const override {
return DWARFUnit::getHeaderSize() + 12;
}
Expand Down
14 changes: 7 additions & 7 deletions lib/DebugInfo/DWARFUnit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ void DWARFUnitSectionBase::parseDWO(DWARFContext &C,
C.getAddrSection(), C.isLittleEndian());
}

DWARFUnit::DWARFUnit(DWARFContext &DC, const DWARFDebugAbbrev *DA,
StringRef IS, StringRef RS, StringRef SS, StringRef SOS,
StringRef AOS, const RelocAddrMap *M, bool LE,
const DWARFUnitSectionBase& UnitSection)
: Context(DC), Abbrev(DA), InfoSection(IS), RangeSection(RS),
StringSection(SS), StringOffsetSection(SOS), AddrOffsetSection(AOS),
RelocMap(M), isLittleEndian(LE), UnitSection(UnitSection) {
DWARFUnit::DWARFUnit(DWARFContext &DC, const DWARFSection &Section,
const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
StringRef SOS, StringRef AOS, bool LE,
const DWARFUnitSectionBase &UnitSection)
: Context(DC), InfoSection(Section), Abbrev(DA), RangeSection(RS),
StringSection(SS), StringOffsetSection(SOS), AddrOffsetSection(AOS),
isLittleEndian(LE), UnitSection(UnitSection) {
clear();
}

Expand Down
20 changes: 10 additions & 10 deletions lib/DebugInfo/DWARFUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@ class DWARFUnitSection final : public SmallVector<std::unique_ptr<UnitType>, 1>,
DataExtractor Data(Section.Data, LE, 0);
uint32_t Offset = 0;
while (Data.isValidOffset(Offset)) {
auto U =
llvm::make_unique<UnitType>(Context, DA, Section.Data, RS, SS, SOS,
AOS, &Section.Relocs, LE, *this);
auto U = llvm::make_unique<UnitType>(Context, Section, DA, RS, SS, SOS,
AOS, LE, *this);
if (!U->extract(Data, &Offset))
break;
this->push_back(std::move(U));
Expand All @@ -102,16 +101,16 @@ class DWARFUnitSection final : public SmallVector<std::unique_ptr<UnitType>, 1>,

class DWARFUnit {
DWARFContext &Context;
// Section containing this DWARFUnit.
const DWARFSection &InfoSection;

const DWARFDebugAbbrev *Abbrev;
StringRef InfoSection;
StringRef RangeSection;
uint32_t RangeSectionBase;
StringRef StringSection;
StringRef StringOffsetSection;
StringRef AddrOffsetSection;
uint32_t AddrOffsetSectionBase;
const RelocAddrMap *RelocMap;
bool isLittleEndian;
const DWARFUnitSectionBase &UnitSection;

Expand Down Expand Up @@ -140,9 +139,10 @@ class DWARFUnit {
virtual uint32_t getHeaderSize() const { return 11; }

public:
DWARFUnit(DWARFContext& Context, const DWARFDebugAbbrev *DA, StringRef IS,
StringRef RS, StringRef SS, StringRef SOS, StringRef AOS,
const RelocAddrMap *M, bool LE, const DWARFUnitSectionBase &UnitSection);
DWARFUnit(DWARFContext &Context, const DWARFSection &Section,
const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
StringRef SOS, StringRef AOS, bool LE,
const DWARFUnitSectionBase &UnitSection);

virtual ~DWARFUnit();

Expand All @@ -164,13 +164,13 @@ class DWARFUnit {
bool getStringOffsetSectionItem(uint32_t Index, uint32_t &Result) const;

DataExtractor getDebugInfoExtractor() const {
return DataExtractor(InfoSection, isLittleEndian, AddrSize);
return DataExtractor(InfoSection.Data, isLittleEndian, AddrSize);
}
DataExtractor getStringExtractor() const {
return DataExtractor(StringSection, false, 0);
}

const RelocAddrMap *getRelocMap() const { return RelocMap; }
const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }

bool extract(DataExtractor debug_info, uint32_t* offset_ptr);

Expand Down

0 comments on commit 8d74900

Please sign in to comment.