mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
llvm-dwp: Handle GCC's use of multiple debug_types.dwo sections in a single .dwo file
(also includes the .test file missing from my previous commit, r265452) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265457 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15121b5f36
commit
46c3acf600
9
test/tools/llvm-dwp/X86/gcc_type.test
Normal file
9
test/tools/llvm-dwp/X86/gcc_type.test
Normal file
@ -0,0 +1,9 @@
|
||||
RUN: llvm-dwp %p/../Inputs/gcc_type/a.dwo -o %t
|
||||
RUN: llvm-dwarfdump %t | FileCheck %s
|
||||
RUN: not llvm-dwp %p/../Inputs/gcc_type/a.dwo %p/../Inputs/gcc_type/a.dwo -o %t 2>&1 | FileCheck --check-prefix=DUP %s
|
||||
|
||||
CHECK: Type Unit
|
||||
CHECK: Type Unit
|
||||
|
||||
// Check that llvm-dwp can parse DW_FORM_string for CU name
|
||||
DUP: Duplicate DWO ID ({{.*}}) in 'a.cpp' and 'a.cpp'
|
@ -231,11 +231,10 @@ static void addAllTypesFromDWP(
|
||||
|
||||
static void addAllTypes(MCStreamer &Out,
|
||||
MapVector<uint64_t, UnitIndexEntry> &TypeIndexEntries,
|
||||
MCSection *OutputTypes, StringRef Types,
|
||||
MCSection *OutputTypes,
|
||||
const std::vector<StringRef> &TypesSections,
|
||||
const UnitIndexEntry &CUEntry, uint32_t &TypesOffset) {
|
||||
if (Types.empty())
|
||||
return;
|
||||
|
||||
for (StringRef Types : TypesSections) {
|
||||
Out.SwitchSection(OutputTypes);
|
||||
uint32_t Offset = 0;
|
||||
DataExtractor Data(Types, true, 0);
|
||||
@ -263,6 +262,7 @@ static void addAllTypes(MCStreamer &Out,
|
||||
TypesOffset += C.Length;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
writeIndexTable(MCStreamer &Out, ArrayRef<unsigned> ContributionOffsets,
|
||||
@ -399,7 +399,7 @@ static std::error_code write(MCStreamer &Out, ArrayRef<std::string> Inputs) {
|
||||
|
||||
StringRef CurStrSection;
|
||||
StringRef CurStrOffsetSection;
|
||||
StringRef CurTypesSection;
|
||||
std::vector<StringRef> CurTypesSection;
|
||||
StringRef InfoSection;
|
||||
StringRef AbbrevSection;
|
||||
StringRef CurCUIndexSection;
|
||||
@ -468,7 +468,7 @@ static std::error_code write(MCStreamer &Out, ArrayRef<std::string> Inputs) {
|
||||
else if (OutSection == StrSection)
|
||||
CurStrSection = Contents;
|
||||
else if (OutSection == TypesSection)
|
||||
CurTypesSection = Contents;
|
||||
CurTypesSection.push_back(Contents);
|
||||
else if (OutSection == CUIndexSection)
|
||||
CurCUIndexSection = Contents;
|
||||
else if (OutSection == TUIndexSection)
|
||||
@ -517,6 +517,7 @@ static std::error_code write(MCStreamer &Out, ArrayRef<std::string> Inputs) {
|
||||
}
|
||||
|
||||
if (!CurTypesSection.empty()) {
|
||||
assert(CurTypesSection.size() == 1);
|
||||
if (CurTUIndexSection.empty())
|
||||
return make_error_code(std::errc::invalid_argument);
|
||||
DWARFUnitIndex TUIndex(DW_SECT_TYPES);
|
||||
@ -525,7 +526,7 @@ static std::error_code write(MCStreamer &Out, ArrayRef<std::string> Inputs) {
|
||||
if (!TUIndex.parse(TUIndexData))
|
||||
return make_error_code(std::errc::invalid_argument);
|
||||
addAllTypesFromDWP(Out, TypeIndexEntries, TUIndex, TypesSection,
|
||||
CurTypesSection, CurEntry,
|
||||
CurTypesSection.front(), CurEntry,
|
||||
ContributionOffsets[DW_SECT_TYPES - DW_SECT_INFO]);
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user