X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FMC%2FELFObjectWriter.cpp;h=d249c92dad594557f4605331eba89ace27c9cdaa;hb=138abae2a2149b2bda3c5e28d3c4db97e3c82663;hp=fb0518b2ec4495c7cb0593c83b820796fde8472e;hpb=152c1061e0b4ad379eec5fa38ee0091fc11ff936;p=oota-llvm.git diff --git a/lib/MC/ELFObjectWriter.cpp b/lib/MC/ELFObjectWriter.cpp index fb0518b2ec4..d249c92dad5 100644 --- a/lib/MC/ELFObjectWriter.cpp +++ b/lib/MC/ELFObjectWriter.cpp @@ -435,17 +435,22 @@ static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) { return 0; } -void ELFObjectWriterImpl::WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD, - const MCAsmLayout &Layout) { - MCSymbolData &OrigData = *MSD.SymbolData; - MCSymbolData *AliasData = NULL; - if (OrigData.Symbol->isVariable()) { - const MCExpr *Value = OrigData.getSymbol().getVariableValue(); +static const MCSymbol &AliasedSymbol(const MCSymbol &Symbol) { + const MCSymbol *S = &Symbol; + while (S->isVariable()) { + const MCExpr *Value = S->getVariableValue(); assert (Value->getKind() == MCExpr::SymbolRef && "Unimplemented"); const MCSymbolRefExpr *Ref = static_cast(Value); - AliasData = &Layout.getAssembler().getSymbolData(Ref->getSymbol()); + S = &Ref->getSymbol(); } - MCSymbolData &Data = AliasData ? *AliasData : OrigData; + return *S; +} + +void ELFObjectWriterImpl::WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD, + const MCAsmLayout &Layout) { + MCSymbolData &OrigData = *MSD.SymbolData; + MCSymbolData &Data = + Layout.getAssembler().getSymbolData(AliasedSymbol(OrigData.getSymbol())); uint8_t Binding = GetBinding(OrigData); uint8_t Visibility = GetVisibility(OrigData); @@ -592,7 +597,7 @@ void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm, bool IsPCRel = isFixupKindX86PCRel(Fixup.getKind()); if (!Target.isAbsolute()) { - Symbol = &Target.getSymA()->getSymbol(); + Symbol = &AliasedSymbol(Target.getSymA()->getSymbol()); MCSymbolData &SD = Asm.getSymbolData(*Symbol); MCFragment *F = SD.getFragment(); @@ -781,46 +786,7 @@ void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) { StringMap StringIndexMap; StringTable += '\x00'; - // Add the data for local symbols. - for (MCAssembler::symbol_iterator it = Asm.symbol_begin(), - ie = Asm.symbol_end(); it != ie; ++it) { - const MCSymbol &Symbol = it->getSymbol(); - - if (!isInSymtab(Asm, *it, UsedInReloc.count(&Symbol))) - continue; - - if (!isLocal(*it)) - continue; - - uint64_t &Entry = StringIndexMap[Symbol.getName()]; - if (!Entry) { - Entry = StringTable.size(); - StringTable += Symbol.getName(); - StringTable += '\x00'; - } - - ELFSymbolData MSD; - MSD.SymbolData = it; - MSD.StringIndex = Entry; - - if (Symbol.isAbsolute()) { - MSD.SectionIndex = ELF::SHN_ABS; - LocalSymbolData.push_back(MSD); - } else { - const MCSymbol *SymbolP = &Symbol; - if (Symbol.isVariable()) { - const MCExpr *Value = Symbol.getVariableValue(); - assert (Value->getKind() == MCExpr::SymbolRef && "Unimplemented"); - const MCSymbolRefExpr *Ref = static_cast(Value); - SymbolP = &Ref->getSymbol(); - } - MSD.SectionIndex = SectionIndexMap.lookup(&SymbolP->getSection()); - assert(MSD.SectionIndex && "Invalid section index!"); - LocalSymbolData.push_back(MSD); - } - } - - // Now add non-local symbols. + // Add the data for the symbols. for (MCAssembler::symbol_iterator it = Asm.symbol_begin(), ie = Asm.symbol_end(); it != ie; ++it) { const MCSymbol &Symbol = it->getSymbol(); @@ -828,48 +794,53 @@ void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) { if (!isInSymtab(Asm, *it, UsedInReloc.count(&Symbol))) continue; - if (isLocal(*it)) - continue; - - uint64_t &Entry = StringIndexMap[Symbol.getName()]; - if (!Entry) { - Entry = StringTable.size(); - StringTable += Symbol.getName(); - StringTable += '\x00'; - } - ELFSymbolData MSD; MSD.SymbolData = it; - MSD.StringIndex = Entry; + bool Local = isLocal(*it); - // FIXME: There is duplicated code with the local case. + bool Add = false; if (it->isCommon()) { + assert(!Local); MSD.SectionIndex = ELF::SHN_COMMON; - ExternalSymbolData.push_back(MSD); + Add = true; + } else if (Symbol.isAbsolute()) { + MSD.SectionIndex = ELF::SHN_ABS; + Add = true; } else if (Symbol.isVariable()) { - const MCExpr *Value = Symbol.getVariableValue(); - assert (Value->getKind() == MCExpr::SymbolRef && "Unimplemented"); - const MCSymbolRefExpr *Ref = static_cast(Value); - const MCSymbol &RefSymbol = Ref->getSymbol(); + const MCSymbol &RefSymbol = AliasedSymbol(Symbol); if (RefSymbol.isDefined()) { MSD.SectionIndex = SectionIndexMap.lookup(&RefSymbol.getSection()); assert(MSD.SectionIndex && "Invalid section index!"); - ExternalSymbolData.push_back(MSD); + Add = true; } } else if (Symbol.isUndefined()) { + assert(!Local); MSD.SectionIndex = ELF::SHN_UNDEF; // FIXME: Undefined symbols are global, but this is the first place we // are able to set it. if (GetBinding(*it) == ELF::STB_LOCAL) SetBinding(*it, ELF::STB_GLOBAL); - UndefinedSymbolData.push_back(MSD); - } else if (Symbol.isAbsolute()) { - MSD.SectionIndex = ELF::SHN_ABS; - ExternalSymbolData.push_back(MSD); + Add = true; } else { MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); assert(MSD.SectionIndex && "Invalid section index!"); - ExternalSymbolData.push_back(MSD); + Add = true; + } + + if (Add) { + uint64_t &Entry = StringIndexMap[Symbol.getName()]; + if (!Entry) { + Entry = StringTable.size(); + StringTable += Symbol.getName(); + StringTable += '\x00'; + } + MSD.StringIndex = Entry; + if (MSD.SectionIndex == ELF::SHN_UNDEF) + UndefinedSymbolData.push_back(MSD); + else if (Local) + LocalSymbolData.push_back(MSD); + else + ExternalSymbolData.push_back(MSD); } } @@ -1128,7 +1099,7 @@ void ELFObjectWriterImpl::WriteObject(MCAssembler &Asm, // ... then all of the sections ... DenseMap SectionOffsetMap; - DenseMap SectionIndexMap; + DenseMap SectionIndexMap; unsigned Index = 1; for (MCAssembler::const_iterator it = Asm.begin(),