[llvm] r236053 - Remove redundant temporary std::vector.
Rafael Espindola
rafael.espindola at gmail.com
Tue Apr 28 15:26:19 PDT 2015
Author: rafael
Date: Tue Apr 28 17:26:19 2015
New Revision: 236053
URL: http://llvm.org/viewvc/llvm-project?rev=236053&view=rev
Log:
Remove redundant temporary std::vector.
New sections are added to the end of the list, so the RelSections array was
redundant.
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=236053&r1=236052&r2=236053&view=diff
==============================================================================
--- llvm/trunk/lib/MC/ELFObjectWriter.cpp (original)
+++ llvm/trunk/lib/MC/ELFObjectWriter.cpp Tue Apr 28 17:26:19 2015
@@ -239,8 +239,7 @@ class ELFObjectWriter : public MCObjectW
SectionIndexMapTy &SectionIndexMap,
const RevGroupMapTy &RevGroupMap);
- MCSectionData *createRelocationSection(MCAssembler &Asm,
- const MCSectionData &SD);
+ void createRelocationSection(MCAssembler &Asm, const MCSectionData &SD);
void CompressDebugSections(MCAssembler &Asm, MCAsmLayout &Layout);
@@ -957,32 +956,16 @@ void ELFObjectWriter::maybeAddToGroup(MC
void ELFObjectWriter::computeIndexMap(
MCAssembler &Asm, std::vector<const MCSectionELF *> &Sections,
SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap) {
- std::vector<const MCSectionELF *> RelSections;
for (const MCSectionData &SD : Asm) {
const MCSectionELF &Section =
static_cast<const MCSectionELF &>(SD.getSection());
- if (Section.getType() == ELF::SHT_GROUP ||
- Section.getType() == ELF::SHT_REL ||
- Section.getType() == ELF::SHT_RELA)
+ if (Section.getType() == ELF::SHT_GROUP)
continue;
Sections.push_back(&Section);
unsigned Index = Sections.size();
SectionIndexMap[&Section] = Index;
maybeAddToGroup(Asm, RevGroupMap, Section, Index);
-
- if (MCSectionData *RelSD = createRelocationSection(Asm, SD)) {
- const MCSectionELF *RelSection =
- static_cast<const MCSectionELF *>(&RelSD->getSection());
- RelSections.push_back(RelSection);
- }
- }
-
- // Put relocation sections close together. The linker reads them
- // first, so this improves cache locality.
- for (const MCSectionELF *Sec : RelSections) {
- Sections.push_back(Sec);
- unsigned Index = Sections.size();
- maybeAddToGroup(Asm, RevGroupMap, *Sec, Index);
+ createRelocationSection(Asm, SD);
}
}
@@ -1131,11 +1114,10 @@ void ELFObjectWriter::computeSymbolTable
UndefinedSymbolData[i].SymbolData->setIndex(Index++);
}
-MCSectionData *
-ELFObjectWriter::createRelocationSection(MCAssembler &Asm,
- const MCSectionData &SD) {
+void ELFObjectWriter::createRelocationSection(MCAssembler &Asm,
+ const MCSectionData &SD) {
if (Relocations[&SD].empty())
- return nullptr;
+ return;
MCContext &Ctx = Asm.getContext();
const MCSectionELF &Section =
@@ -1158,7 +1140,7 @@ ELFObjectWriter::createRelocationSection
const MCSectionELF *RelaSection = Ctx.createELFRelSection(
RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Flags, EntrySize, Section.getGroup(), &Section);
- return &Asm.getOrCreateSectionData(*RelaSection);
+ Asm.getOrCreateSectionData(*RelaSection);
}
static SmallVector<char, 128>
More information about the llvm-commits
mailing list