X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FMC%2FELFObjectWriter.cpp;h=ac8c250a8337fede05b5fdd92ccda563c7f2f687;hb=345ed9806a0ab5d680da1ff78fe3df7ebbc6107d;hp=d79029106b0599c7cd296eb3d0e25c1279f458e5;hpb=01f9ea35a71b4efb00de8e4c9e9136c9c88f6273;p=oota-llvm.git diff --git a/lib/MC/ELFObjectWriter.cpp b/lib/MC/ELFObjectWriter.cpp index d79029106b0..ac8c250a833 100644 --- a/lib/MC/ELFObjectWriter.cpp +++ b/lib/MC/ELFObjectWriter.cpp @@ -512,8 +512,9 @@ void ELFObjectWriterImpl::WriteSymbolTable(MCDataFragment *F, for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) { ELFSymbolData &MSD = ExternalSymbolData[i]; MCSymbolData &Data = *MSD.SymbolData; - assert((Data.getFlags() & ELF_STB_Global) && - "External symbol requires STB_GLOBAL flag"); + assert(((Data.getFlags() & ELF_STB_Global) || + (Data.getFlags() & ELF_STB_Weak)) && + "External symbol requires STB_GLOBAL or STB_WEAK flag"); WriteSymbol(F, MSD, Layout); if (GetBinding(Data) == ELF::STB_LOCAL) LastLocalSymbolIndex++; @@ -529,7 +530,8 @@ void ELFObjectWriterImpl::WriteSymbolTable(MCDataFragment *F, } static bool ShouldRelocOnSymbol(const MCSymbolData &SD, - const MCValue &Target) { + const MCValue &Target, + const MCFragment &F) { const MCSymbol &Symbol = SD.getSymbol(); if (Symbol.isUndefined()) return true; @@ -537,10 +539,18 @@ static bool ShouldRelocOnSymbol(const MCSymbolData &SD, const MCSectionELF &Section = static_cast(Symbol.getSection()); + if (SD.isExternal()) + return true; + if (Section.getFlags() & MCSectionELF::SHF_MERGE) return Target.getConstant() != 0; - if (SD.isExternal()) + MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind(); + const MCSectionELF &Sec2 = + static_cast(F.getParent()->getSection()); + + if (&Sec2 != &Section && + (Kind == MCSymbolRefExpr::VK_PLT || Kind == MCSymbolRefExpr::VK_GOTPCREL)) return true; return false; @@ -587,7 +597,7 @@ void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm, return; } - bool RelocOnSymbol = ShouldRelocOnSymbol(SD, Target); + bool RelocOnSymbol = ShouldRelocOnSymbol(SD, Target, *Fragment); if (!RelocOnSymbol) { Index = F->getParent()->getOrdinal(); @@ -639,6 +649,9 @@ void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm, case MCSymbolRefExpr::VK_GOT: Type = ELF::R_X86_64_GOT32; break; + case llvm::MCSymbolRefExpr::VK_GOTPCREL: + Type = ELF::R_X86_64_GOTPCREL; + break; default: llvm_unreachable("Unimplemented"); }