[llvm] r207167 - Fix quadratic performance during debug compression due to sections x symbols iteration.
David Blaikie
dblaikie at gmail.com
Thu Apr 24 17:48:01 PDT 2014
Author: dblaikie
Date: Thu Apr 24 19:48:01 2014
New Revision: 207167
URL: http://llvm.org/viewvc/llvm-project?rev=207167&view=rev
Log:
Fix quadratic performance during debug compression due to sections x symbols iteration.
When fixing the symbols in each compressed section we were iterating
over all symbols for each compressed section. In extreme cases this
could snowball severely (5min uncompressed -> 35min compressed) due to
iterating over all symbols for each compressed section (large numbers of
compressed sections can be generated by DWARF type units).
To address this, build a map of the symbols in each section ahead of
time, and access that map if a section is being compressed. This brings
compile time for the aforementioned example down to ~6 minutes.
Modified:
llvm/trunk/lib/MC/ELFObjectWriter.cpp
Modified: llvm/trunk/lib/MC/ELFObjectWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/ELFObjectWriter.cpp?rev=207167&r1=207166&r2=207167&view=diff
==============================================================================
--- llvm/trunk/lib/MC/ELFObjectWriter.cpp (original)
+++ llvm/trunk/lib/MC/ELFObjectWriter.cpp Thu Apr 24 19:48:01 2014
@@ -1250,20 +1250,21 @@ getCompressedFragment(MCAsmLayout &Layou
return CompressedFragment;
}
-static void UpdateSymbols(const MCAsmLayout &Layout, const MCSectionData &SD,
- MCAssembler::symbol_range Symbols,
- MCFragment *NewFragment) {
- for (MCSymbolData &Data : Symbols) {
- MCFragment *F = Data.getFragment();
- if (F && F->getParent() == &SD) {
- Data.setOffset(Data.getOffset() +
- Layout.getFragmentOffset(Data.Fragment));
- Data.setFragment(NewFragment);
- }
+typedef DenseMap<const MCSectionData *, std::vector<MCSymbolData *>>
+DefiningSymbolMap;
+
+static void UpdateSymbols(const MCAsmLayout &Layout,
+ const std::vector<MCSymbolData *> &Symbols,
+ MCFragment &NewFragment) {
+ for (MCSymbolData *Sym : Symbols) {
+ Sym->setOffset(Sym->getOffset() +
+ Layout.getFragmentOffset(Sym->getFragment()));
+ Sym->setFragment(&NewFragment);
}
}
static void CompressDebugSection(MCAssembler &Asm, MCAsmLayout &Layout,
+ const DefiningSymbolMap &DefiningSymbols,
const MCSectionELF &Section,
MCSectionData &SD) {
StringRef SectionName = Section.getSectionName();
@@ -1278,7 +1279,9 @@ static void CompressDebugSection(MCAssem
// Update the fragment+offsets of any symbols referring to fragments in this
// section to refer to the new fragment.
- UpdateSymbols(Layout, SD, Asm.symbols(), CompressedFragment.get());
+ auto I = DefiningSymbols.find(&SD);
+ if (I != DefiningSymbols.end())
+ UpdateSymbols(Layout, I->second, *CompressedFragment);
// Invalidate the layout for the whole section since it will have new and
// different fragments now.
@@ -1300,6 +1303,12 @@ void ELFObjectWriter::CompressDebugSecti
if (!Asm.getContext().getAsmInfo()->compressDebugSections())
return;
+ DefiningSymbolMap DefiningSymbols;
+
+ for (MCSymbolData &SD : Asm.symbols())
+ if (MCFragment *F = SD.getFragment())
+ DefiningSymbols[F->getParent()].push_back(&SD);
+
for (MCSectionData &SD : Asm) {
const MCSectionELF &Section =
static_cast<const MCSectionELF &>(SD.getSection());
@@ -1311,7 +1320,7 @@ void ELFObjectWriter::CompressDebugSecti
if (!SectionName.startswith(".debug_") || SectionName == ".debug_frame")
continue;
- CompressDebugSection(Asm, Layout, Section, SD);
+ CompressDebugSection(Asm, Layout, DefiningSymbols, Section, SD);
}
}
More information about the llvm-commits
mailing list