From 203984706237ac8b1d8f46942863863bca6c761f Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Sun, 13 Mar 2016 03:09:40 +0000 Subject: [PATCH] Simplify findMipsPairedReloc function signature. NFC. llvm-svn: 263356 --- lld/ELF/InputSection.cpp | 33 ++++++++++++++++++--------------- lld/ELF/InputSection.h | 6 ++++-- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index e244325..adbb5fe 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -132,14 +132,15 @@ void InputSection::copyRelocations(uint8_t *Buf, } } -static uint32_t getMipsPairedRelocType(uint32_t Type, bool IsLocal) { +template +static uint32_t getMipsPairType(const RelTy *Rel, const SymbolBody &Sym) { if (Config->EMachine != EM_MIPS) return R_MIPS_NONE; - switch (Type) { + switch (Rel->getType(Config->Mips64EL)) { case R_MIPS_HI16: return R_MIPS_LO16; case R_MIPS_GOT16: - return IsLocal ? R_MIPS_LO16 : R_MIPS_NONE; + return Sym.isLocal() ? R_MIPS_LO16 : R_MIPS_NONE; case R_MIPS_PCHI16: return R_MIPS_PCLO16; case R_MICROMIPS_HI16: @@ -151,23 +152,27 @@ static uint32_t getMipsPairedRelocType(uint32_t Type, bool IsLocal) { template template -uint8_t * -InputSectionBase::findMipsPairedReloc(uint32_t Type, uint8_t *Buf, - uint32_t SymIndex, bool IsLocal, - RelIteratorRange Rels) { - Type = getMipsPairedRelocType(Type, IsLocal); +uint8_t *InputSectionBase::findMipsPairedReloc( + uint8_t *Buf, + const Elf_Rel_Impl *Rel, + const Elf_Rel_Impl *End) { + uint32_t SymIndex = Rel->getSymbol(Config->Mips64EL); + SymbolBody &Sym = File->getSymbolBody(SymIndex).repl(); + uint32_t Type = getMipsPairType(Rel, Sym); + // Some MIPS relocations use addend calculated from addend of the relocation // itself and addend of paired relocation. ABI requires to compute such // combined addend in case of REL relocation record format only. // See p. 4-17 at ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf if (isRela || Type == R_MIPS_NONE) return nullptr; - for (const auto &RI : Rels) { - if (RI.getType(Config->Mips64EL) != Type) + + for (const Elf_Rel_Impl *RI = Rel; RI != End; ++RI) { + if (RI->getType(Config->Mips64EL) != Type) continue; - if (RI.getSymbol(Config->Mips64EL) != SymIndex) + if (RI->getSymbol(Config->Mips64EL) != SymIndex) continue; - uintX_t Offset = getOffset(RI.r_offset); + uintX_t Offset = getOffset(RI->r_offset); if (Offset == (uintX_t)-1) return nullptr; return Buf + Offset; @@ -192,7 +197,6 @@ void InputSectionBase::relocate(uint8_t *Buf, uint8_t *BufEnd, uint32_t Type = RI.getType(Config->Mips64EL); uint8_t *BufLoc = Buf + Offset; uintX_t AddrLoc = OutSec->getVA() + Offset; - auto NextRelocs = llvm::make_range(&RI, Rels.end()); if (Target->pointsToLocalDynamicGotEntry(Type) && !Target->canRelaxTls(Type, nullptr)) { @@ -235,8 +239,7 @@ void InputSectionBase::relocate(uint8_t *Buf, uint8_t *BufEnd, bool CBP = canBePreempted(Body); uint8_t *PairedLoc = nullptr; if (Config->EMachine == EM_MIPS) - PairedLoc = - findMipsPairedReloc(Type, Buf, SymIndex, Body.isLocal(), NextRelocs); + PairedLoc = findMipsPairedReloc(Buf, &RI, Rels.end()); if (Target->needsPlt(Type, Body)) { SymVA = Body.getPltVA() + A; diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index 69d5a0d..71c7060 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -84,8 +84,10 @@ public: private: template - uint8_t *findMipsPairedReloc(uint32_t Type, uint8_t *Buf, uint32_t SymIndex, - bool IsLocal, RelIteratorRange Rels); + uint8_t * + findMipsPairedReloc(uint8_t *Buf, + const llvm::object::Elf_Rel_Impl *Rel, + const llvm::object::Elf_Rel_Impl *End); }; template -- 2.7.4