2013-03-09 09:32:16 +00:00
|
|
|
//===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===//
|
2010-08-16 18:57:57 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements ELF object file writer information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2011-12-22 03:38:00 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2011-07-25 23:24:55 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2014-04-10 21:53:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/MC/MCAsmLayout.h"
|
2011-12-22 03:38:00 +00:00
|
|
|
#include "llvm/MC/MCAssembler.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
2012-03-26 06:58:25 +00:00
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
2015-06-02 00:25:12 +00:00
|
|
|
#include "llvm/MC/MCSymbolELF.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/MC/MCValue.h"
|
2014-07-03 02:01:39 +00:00
|
|
|
#include "llvm/MC/StringTableBuilder.h"
|
2014-04-10 21:53:53 +00:00
|
|
|
#include "llvm/Support/Compression.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ELF.h"
|
2015-01-14 11:23:27 +00:00
|
|
|
#include "llvm/Support/Endian.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include <vector>
|
|
|
|
using namespace llvm;
|
|
|
|
|
2011-05-11 22:53:06 +00:00
|
|
|
#undef DEBUG_TYPE
|
|
|
|
#define DEBUG_TYPE "reloc-info"
|
|
|
|
|
2011-12-22 03:38:00 +00:00
|
|
|
namespace {
|
2014-03-25 22:43:53 +00:00
|
|
|
|
2014-03-25 23:44:25 +00:00
|
|
|
typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
class ELFObjectWriter;
|
|
|
|
|
2014-03-25 23:44:25 +00:00
|
|
|
class SymbolTableWriter {
|
2015-04-29 21:09:32 +00:00
|
|
|
ELFObjectWriter &EWriter;
|
2014-03-25 23:44:25 +00:00
|
|
|
bool Is64Bit;
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
// indexes we are going to write to .symtab_shndx.
|
|
|
|
std::vector<uint32_t> ShndxIndexes;
|
2014-03-25 23:44:25 +00:00
|
|
|
|
|
|
|
// The numbel of symbols written so far.
|
|
|
|
unsigned NumWritten;
|
|
|
|
|
|
|
|
void createSymtabShndx();
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
template <typename T> void write(T Value);
|
2014-03-25 23:44:25 +00:00
|
|
|
|
|
|
|
public:
|
2015-04-29 21:09:32 +00:00
|
|
|
SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
|
2014-03-25 23:44:25 +00:00
|
|
|
|
|
|
|
void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
|
|
|
|
uint8_t other, uint32_t shndx, bool Reserved);
|
2015-04-29 21:09:32 +00:00
|
|
|
|
|
|
|
ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
|
2014-03-25 23:44:25 +00:00
|
|
|
};
|
|
|
|
|
2011-12-22 03:38:00 +00:00
|
|
|
class ELFObjectWriter : public MCObjectWriter {
|
|
|
|
static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
|
2015-05-20 04:39:01 +00:00
|
|
|
static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
|
2015-06-02 20:38:46 +00:00
|
|
|
static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
|
2011-12-22 03:38:00 +00:00
|
|
|
bool Used, bool Renamed);
|
|
|
|
|
2015-04-07 22:35:40 +00:00
|
|
|
/// Helper struct for containing some precomputed information on symbols.
|
2011-12-22 03:38:00 +00:00
|
|
|
struct ELFSymbolData {
|
2015-06-02 00:25:12 +00:00
|
|
|
const MCSymbolELF *Symbol;
|
2011-12-22 03:38:00 +00:00
|
|
|
uint32_t SectionIndex;
|
2014-04-30 16:25:02 +00:00
|
|
|
StringRef Name;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
|
|
|
// Support lexicographic sorting.
|
|
|
|
bool operator<(const ELFSymbolData &RHS) const {
|
2015-06-02 20:38:46 +00:00
|
|
|
unsigned LHSType = Symbol->getType();
|
|
|
|
unsigned RHSType = RHS.Symbol->getType();
|
2014-10-17 01:48:58 +00:00
|
|
|
if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
|
|
|
|
return false;
|
|
|
|
if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
|
|
|
|
return true;
|
|
|
|
if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
|
|
|
|
return SectionIndex < RHS.SectionIndex;
|
2014-04-30 16:25:02 +00:00
|
|
|
return Name < RHS.Name;
|
2011-12-22 03:38:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// The target specific ELF writer instance.
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-30 00:45:46 +00:00
|
|
|
llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
|
|
|
|
Relocations;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Symbol Table Data
|
|
|
|
/// @{
|
|
|
|
|
2014-04-30 16:25:02 +00:00
|
|
|
StringTableBuilder StrTabBuilder;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
// This holds the symbol table index of the last local symbol.
|
|
|
|
unsigned LastLocalSymbolIndex;
|
|
|
|
// This holds the .strtab section index.
|
|
|
|
unsigned StringTableIndex;
|
|
|
|
// This holds the .symtab section index.
|
|
|
|
unsigned SymbolTableIndex;
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
// This holds the .symtab_shndx section index.
|
|
|
|
unsigned SymtabShndxSectionIndex = 0;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-30 20:53:27 +00:00
|
|
|
// Sections in the order they are to be output in the section table.
|
2015-05-25 21:56:55 +00:00
|
|
|
std::vector<const MCSectionELF *> SectionTable;
|
|
|
|
unsigned addToSectionTable(const MCSectionELF *Sec);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
|
|
|
// TargetObjectWriter wrappers.
|
|
|
|
bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
|
|
|
|
bool hasRelocationAddend() const {
|
|
|
|
return TargetObjectWriter->hasRelocationAddend();
|
|
|
|
}
|
|
|
|
unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
|
2014-03-27 20:49:35 +00:00
|
|
|
bool IsPCRel) const {
|
|
|
|
return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
|
2011-12-22 03:38:00 +00:00
|
|
|
}
|
|
|
|
|
2015-06-05 18:21:00 +00:00
|
|
|
void align(unsigned Alignment);
|
|
|
|
|
2011-12-22 03:38:00 +00:00
|
|
|
public:
|
2015-04-14 22:14:34 +00:00
|
|
|
ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
|
2014-03-25 22:43:53 +00:00
|
|
|
bool IsLittleEndian)
|
2015-05-28 15:20:00 +00:00
|
|
|
: MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-03-23 18:35:01 +00:00
|
|
|
void reset() override {
|
|
|
|
Renames.clear();
|
|
|
|
Relocations.clear();
|
|
|
|
StrTabBuilder.clear();
|
2015-06-20 11:54:32 +00:00
|
|
|
SymtabShndxSectionIndex = 0;
|
2015-05-13 15:17:19 +00:00
|
|
|
SectionTable.clear();
|
2015-03-23 18:35:01 +00:00
|
|
|
MCObjectWriter::reset();
|
|
|
|
}
|
|
|
|
|
2015-04-11 02:11:45 +00:00
|
|
|
~ELFObjectWriter() override;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
|
|
|
void WriteWord(uint64_t W) {
|
|
|
|
if (is64Bit())
|
2015-06-04 22:24:41 +00:00
|
|
|
write64(W);
|
2011-12-22 03:38:00 +00:00
|
|
|
else
|
2015-06-04 22:24:41 +00:00
|
|
|
write32(W);
|
2011-12-22 03:38:00 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
template <typename T> void write(T Val) {
|
|
|
|
if (IsLittleEndian)
|
|
|
|
support::endian::Writer<support::little>(OS).write(Val);
|
|
|
|
else
|
|
|
|
support::endian::Writer<support::big>(OS).write(Val);
|
|
|
|
}
|
|
|
|
|
2015-04-29 20:39:37 +00:00
|
|
|
void writeHeader(const MCAssembler &Asm);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-05-28 20:25:29 +00:00
|
|
|
void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
|
|
|
|
ELFSymbolData &MSD, const MCAsmLayout &Layout);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
// Start and end offset of each section
|
2015-04-30 14:21:49 +00:00
|
|
|
typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
|
|
|
|
SectionOffsetsTy;
|
2015-04-29 21:09:32 +00:00
|
|
|
|
2014-04-29 12:46:50 +00:00
|
|
|
bool shouldRelocateWithSymbol(const MCAssembler &Asm,
|
|
|
|
const MCSymbolRefExpr *RefA,
|
2015-05-20 04:39:01 +00:00
|
|
|
const MCSymbol *Sym, uint64_t C,
|
2014-03-29 06:26:49 +00:00
|
|
|
unsigned Type) const;
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
|
2014-03-08 07:02:02 +00:00
|
|
|
const MCFragment *Fragment, const MCFixup &Fixup,
|
2014-03-29 06:26:49 +00:00
|
|
|
MCValue Target, bool &IsPCRel,
|
|
|
|
uint64_t &FixedValue) override;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-28 22:59:58 +00:00
|
|
|
// Map from a signature symbol to the group section index
|
|
|
|
typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2014-03-24 03:43:21 +00:00
|
|
|
/// Compute the symbol table data
|
2011-12-22 03:38:00 +00:00
|
|
|
///
|
2012-08-27 16:04:24 +00:00
|
|
|
/// \param Asm - The assembler.
|
|
|
|
/// \param SectionIndexMap - Maps a section to its index.
|
|
|
|
/// \param RevGroupMap - Maps a signature symbol to the group section.
|
2014-03-24 03:43:21 +00:00
|
|
|
void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
|
2011-12-22 03:38:00 +00:00
|
|
|
const SectionIndexMapTy &SectionIndexMap,
|
2015-05-28 17:54:01 +00:00
|
|
|
const RevGroupMapTy &RevGroupMap,
|
|
|
|
SectionOffsetsTy &SectionOffsets);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-05-21 20:43:13 +00:00
|
|
|
MCSectionELF *createRelocationSection(MCContext &Ctx,
|
2015-05-21 19:20:38 +00:00
|
|
|
const MCSectionELF &Sec);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-30 21:10:06 +00:00
|
|
|
const MCSectionELF *createStringTable(MCContext &Ctx);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-06-04 23:25:54 +00:00
|
|
|
void executePostLayoutBinding(MCAssembler &Asm,
|
2014-03-08 07:02:02 +00:00
|
|
|
const MCAsmLayout &Layout) override;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-06-04 20:55:49 +00:00
|
|
|
void writeSectionHeader(const MCAsmLayout &Layout,
|
2011-12-22 03:38:00 +00:00
|
|
|
const SectionIndexMapTy &SectionIndexMap,
|
2015-04-28 15:26:21 +00:00
|
|
|
const SectionOffsetsTy &SectionOffsets);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-05-27 13:30:50 +00:00
|
|
|
void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
|
2015-04-30 21:51:58 +00:00
|
|
|
const MCAsmLayout &Layout);
|
|
|
|
|
2011-12-22 03:38:00 +00:00
|
|
|
void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
|
2015-04-30 21:51:58 +00:00
|
|
|
uint64_t Address, uint64_t Offset, uint64_t Size,
|
|
|
|
uint32_t Link, uint32_t Info, uint64_t Alignment,
|
|
|
|
uint64_t EntrySize);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-04-30 00:45:46 +00:00
|
|
|
void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
|
2015-05-16 01:01:55 +00:00
|
|
|
const MCSymbol &SymA,
|
|
|
|
const MCFragment &FB,
|
|
|
|
bool InSet,
|
|
|
|
bool IsPCRel) const override;
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-05-20 15:10:03 +00:00
|
|
|
bool isWeak(const MCSymbol &Sym) const override;
|
2015-03-25 13:16:53 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
|
2015-05-21 19:42:35 +00:00
|
|
|
void writeSection(const SectionIndexMapTy &SectionIndexMap,
|
2015-05-21 19:36:43 +00:00
|
|
|
uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
|
2011-12-22 03:38:00 +00:00
|
|
|
const MCSectionELF &Section);
|
|
|
|
};
|
2015-06-19 15:57:42 +00:00
|
|
|
} // namespace
|
2011-12-22 03:38:00 +00:00
|
|
|
|
2015-06-05 18:21:00 +00:00
|
|
|
void ELFObjectWriter::align(unsigned Alignment) {
|
|
|
|
uint64_t Padding = OffsetToAlignment(OS.tell(), Alignment);
|
|
|
|
WriteZeros(Padding);
|
|
|
|
}
|
|
|
|
|
2015-05-25 21:56:55 +00:00
|
|
|
unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
|
2015-04-30 20:53:27 +00:00
|
|
|
SectionTable.push_back(Sec);
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
StrTabBuilder.add(Sec->getSectionName());
|
2015-04-30 20:53:27 +00:00
|
|
|
return SectionTable.size();
|
|
|
|
}
|
|
|
|
|
2014-03-25 23:44:25 +00:00
|
|
|
void SymbolTableWriter::createSymtabShndx() {
|
2015-04-29 21:09:32 +00:00
|
|
|
if (!ShndxIndexes.empty())
|
2014-03-25 23:44:25 +00:00
|
|
|
return;
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
ShndxIndexes.resize(NumWritten);
|
2014-03-25 23:44:25 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
template <typename T> void SymbolTableWriter::write(T Value) {
|
|
|
|
EWriter.write(Value);
|
2014-03-25 23:44:25 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
|
|
|
|
: EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
|
2014-03-25 23:44:25 +00:00
|
|
|
|
|
|
|
void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
|
|
|
|
uint64_t size, uint8_t other,
|
|
|
|
uint32_t shndx, bool Reserved) {
|
|
|
|
bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
|
|
|
|
|
|
|
|
if (LargeIndex)
|
|
|
|
createSymtabShndx();
|
|
|
|
|
2015-04-29 21:09:32 +00:00
|
|
|
if (!ShndxIndexes.empty()) {
|
2014-03-25 23:44:25 +00:00
|
|
|
if (LargeIndex)
|
2015-04-29 21:09:32 +00:00
|
|
|
ShndxIndexes.push_back(shndx);
|
2014-03-25 23:44:25 +00:00
|
|
|
else
|
2015-04-29 21:09:32 +00:00
|
|
|
ShndxIndexes.push_back(0);
|
2014-03-25 23:44:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
|
|
|
|
|
|
|
|
if (Is64Bit) {
|
2015-04-29 21:09:32 +00:00
|
|
|
write(name); // st_name
|
|
|
|
write(info); // st_info
|
|
|
|
write(other); // st_other
|
|
|
|
write(Index); // st_shndx
|
|
|
|
write(value); // st_value
|
|
|
|
write(size); // st_size
|
2014-03-25 23:44:25 +00:00
|
|
|
} else {
|
2015-04-29 21:09:32 +00:00
|
|
|
write(name); // st_name
|
|
|
|
write(uint32_t(value)); // st_value
|
|
|
|
write(uint32_t(size)); // st_size
|
|
|
|
write(info); // st_info
|
|
|
|
write(other); // st_other
|
|
|
|
write(Index); // st_shndx
|
2014-03-25 23:44:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
++NumWritten;
|
|
|
|
}
|
|
|
|
|
2011-02-28 21:45:04 +00:00
|
|
|
bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
|
|
|
|
const MCFixupKindInfo &FKI =
|
|
|
|
Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
|
|
|
|
|
|
|
|
return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
|
|
|
|
}
|
|
|
|
|
2010-11-15 16:18:39 +00:00
|
|
|
ELFObjectWriter::~ELFObjectWriter()
|
|
|
|
{}
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
// Emit the ELF header.
|
2015-04-29 20:39:37 +00:00
|
|
|
void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
|
2010-08-16 18:57:57 +00:00
|
|
|
// ELF Header
|
|
|
|
// ----------
|
|
|
|
//
|
|
|
|
// Note
|
|
|
|
// ----
|
|
|
|
// emitWord method behaves differently for ELF32 and ELF64, writing
|
|
|
|
// 4 bytes in the former and 8 in the latter.
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
// e_ident[EI_DATA]
|
2015-06-04 22:24:41 +00:00
|
|
|
write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
|
2010-09-09 17:57:50 +00:00
|
|
|
// e_ident[EI_OSABI]
|
2015-06-04 22:24:41 +00:00
|
|
|
write8(TargetObjectWriter->getOSABI());
|
|
|
|
write8(0); // e_ident[EI_ABIVERSION]
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(ELF::ET_REL); // e_type
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(TargetObjectWriter->getEMachine()); // e_machine = target
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write32(ELF::EV_CURRENT); // e_version
|
2010-08-16 18:57:57 +00:00
|
|
|
WriteWord(0); // e_entry, no entry point in .o file
|
|
|
|
WriteWord(0); // e_phoff, no program header for .o
|
2015-04-14 22:54:16 +00:00
|
|
|
WriteWord(0); // e_shoff = sec hdr table off in bytes
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2011-02-04 21:41:11 +00:00
|
|
|
// e_flags = whatever the target wants
|
2015-06-04 22:24:41 +00:00
|
|
|
write32(Asm.getELFHeaderEFlags());
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
// e_ehsize = ELF header size
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(0); // e_phentsize = prog header entry size
|
|
|
|
write16(0); // e_phnum = # prog header entries = 0
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
// e_shentsize = Section header entry size
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
// e_shnum = # of section header ents
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(0);
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
// e_shstrndx = Section # of '.shstrtab'
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
assert(StringTableIndex < ELF::SHN_LORESERVE);
|
2015-06-04 22:24:41 +00:00
|
|
|
write16(StringTableIndex);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 04:39:01 +00:00
|
|
|
uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
|
2011-02-28 21:45:04 +00:00
|
|
|
const MCAsmLayout &Layout) {
|
2015-05-29 21:45:01 +00:00
|
|
|
if (Sym.isCommon() && Sym.isExternal())
|
2015-05-29 17:48:04 +00:00
|
|
|
return Sym.getCommonAlignment();
|
2010-12-20 21:14:39 +00:00
|
|
|
|
2014-04-30 21:51:13 +00:00
|
|
|
uint64_t Res;
|
2015-05-20 04:39:01 +00:00
|
|
|
if (!Layout.getSymbolOffset(Sym, Res))
|
2014-04-30 16:59:35 +00:00
|
|
|
return 0;
|
2010-09-27 21:23:02 +00:00
|
|
|
|
2015-05-20 04:39:01 +00:00
|
|
|
if (Layout.getAssembler().isThumbFunc(&Sym))
|
2014-04-30 16:59:35 +00:00
|
|
|
Res |= 1;
|
2010-09-27 21:23:02 +00:00
|
|
|
|
2014-03-21 22:00:29 +00:00
|
|
|
return Res;
|
2010-09-27 21:23:02 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 23:25:54 +00:00
|
|
|
void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
|
2010-12-07 00:27:36 +00:00
|
|
|
const MCAsmLayout &Layout) {
|
2010-10-27 15:18:17 +00:00
|
|
|
// The presence of symbol versions causes undefined symbols and
|
|
|
|
// versions declared with @@@ to be renamed.
|
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
for (const MCSymbol &A : Asm.symbols()) {
|
|
|
|
const auto &Alias = cast<MCSymbolELF>(A);
|
2010-10-28 18:33:03 +00:00
|
|
|
// Not an alias.
|
2014-04-28 17:05:36 +00:00
|
|
|
if (!Alias.isVariable())
|
|
|
|
continue;
|
|
|
|
auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
|
|
|
|
if (!Ref)
|
2010-10-28 18:33:03 +00:00
|
|
|
continue;
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
|
2010-10-28 18:33:03 +00:00
|
|
|
|
2010-10-27 19:53:52 +00:00
|
|
|
StringRef AliasName = Alias.getName();
|
2010-10-27 15:18:17 +00:00
|
|
|
size_t Pos = AliasName.find('@');
|
|
|
|
if (Pos == StringRef::npos)
|
|
|
|
continue;
|
|
|
|
|
2010-10-28 18:33:03 +00:00
|
|
|
// Aliases defined with .symvar copy the binding from the symbol they alias.
|
|
|
|
// This is the first place we are able to copy this information.
|
2015-05-29 21:45:01 +00:00
|
|
|
Alias.setExternal(Symbol.isExternal());
|
2015-06-02 20:38:46 +00:00
|
|
|
Alias.setBinding(Symbol.getBinding());
|
2010-10-28 18:33:03 +00:00
|
|
|
|
2010-10-27 19:53:52 +00:00
|
|
|
StringRef Rest = AliasName.substr(Pos);
|
2010-10-27 15:18:17 +00:00
|
|
|
if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
|
|
|
|
continue;
|
|
|
|
|
2010-10-27 17:56:18 +00:00
|
|
|
// FIXME: produce a better error message.
|
|
|
|
if (Symbol.isUndefined() && Rest.startswith("@@") &&
|
|
|
|
!Rest.startswith("@@@"))
|
|
|
|
report_fatal_error("A @@ version cannot be undefined");
|
|
|
|
|
2010-10-27 19:53:52 +00:00
|
|
|
Renames.insert(std::make_pair(&Symbol, &Alias));
|
2010-10-27 15:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-07 20:17:03 +00:00
|
|
|
static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
|
|
|
|
uint8_t Type = newType;
|
|
|
|
|
|
|
|
// Propagation rules:
|
|
|
|
// IFUNC > FUNC > OBJECT > NOTYPE
|
|
|
|
// TLS_OBJECT > OBJECT > NOTYPE
|
|
|
|
//
|
|
|
|
// dont let the new type degrade the old type
|
|
|
|
switch (origType) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case ELF::STT_GNU_IFUNC:
|
|
|
|
if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
|
|
|
|
Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
|
|
|
|
Type = ELF::STT_GNU_IFUNC;
|
|
|
|
break;
|
|
|
|
case ELF::STT_FUNC:
|
|
|
|
if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
|
|
|
|
Type == ELF::STT_TLS)
|
|
|
|
Type = ELF::STT_FUNC;
|
|
|
|
break;
|
|
|
|
case ELF::STT_OBJECT:
|
|
|
|
if (Type == ELF::STT_NOTYPE)
|
|
|
|
Type = ELF::STT_OBJECT;
|
|
|
|
break;
|
|
|
|
case ELF::STT_TLS:
|
|
|
|
if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
|
|
|
|
Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
|
|
|
|
Type = ELF::STT_TLS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Type;
|
|
|
|
}
|
|
|
|
|
2015-05-28 20:25:29 +00:00
|
|
|
void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
|
|
|
|
uint32_t StringIndex, ELFSymbolData &MSD,
|
2010-11-13 07:33:40 +00:00
|
|
|
const MCAsmLayout &Layout) {
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
|
2015-05-29 21:45:01 +00:00
|
|
|
assert((!Symbol.getFragment() ||
|
|
|
|
(Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
|
2014-04-19 00:50:15 +00:00
|
|
|
"The symbol's section doesn't match the fragment's symbol");
|
2015-06-02 00:25:12 +00:00
|
|
|
const MCSymbolELF *Base =
|
|
|
|
cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
|
2014-03-26 00:16:43 +00:00
|
|
|
|
|
|
|
// This has to be in sync with when computeSymbolTable uses SHN_ABS or
|
|
|
|
// SHN_COMMON.
|
2015-05-29 21:45:01 +00:00
|
|
|
bool IsReserved = !Base || Symbol.isCommon();
|
2010-10-31 00:16:26 +00:00
|
|
|
|
2013-02-19 21:57:35 +00:00
|
|
|
// Binding and Type share the same byte as upper and lower nibbles
|
2015-06-02 20:38:46 +00:00
|
|
|
uint8_t Binding = Symbol.getBinding();
|
|
|
|
uint8_t Type = Symbol.getType();
|
2014-03-23 03:33:20 +00:00
|
|
|
if (Base) {
|
2015-06-02 20:38:46 +00:00
|
|
|
Type = mergeTypeForSet(Type, Base->getType());
|
2014-03-23 03:33:20 +00:00
|
|
|
}
|
2015-06-04 00:47:43 +00:00
|
|
|
uint8_t Info = (Binding << 4) | Type;
|
2013-02-19 21:57:35 +00:00
|
|
|
|
2013-10-29 01:06:17 +00:00
|
|
|
// Other and Visibility share the same byte with Visibility using the lower
|
2013-02-19 21:57:35 +00:00
|
|
|
// 2 bits
|
2015-06-02 20:38:46 +00:00
|
|
|
uint8_t Visibility = Symbol.getVisibility();
|
2015-06-04 05:59:23 +00:00
|
|
|
uint8_t Other = Symbol.getOther() | Visibility;
|
2010-10-06 21:02:29 +00:00
|
|
|
|
2015-05-20 04:39:01 +00:00
|
|
|
uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
|
2010-08-16 18:57:57 +00:00
|
|
|
uint64_t Size = 0;
|
|
|
|
|
2015-05-29 17:24:52 +00:00
|
|
|
const MCExpr *ESize = MSD.Symbol->getSize();
|
2014-03-27 00:28:24 +00:00
|
|
|
if (!ESize && Base)
|
2015-05-29 17:24:52 +00:00
|
|
|
ESize = Base->getSize();
|
2010-09-21 00:24:38 +00:00
|
|
|
|
2010-12-22 16:03:00 +00:00
|
|
|
if (ESize) {
|
|
|
|
int64_t Res;
|
2015-04-06 15:27:57 +00:00
|
|
|
if (!ESize->evaluateKnownAbsolute(Res, Layout))
|
2010-12-22 16:03:00 +00:00
|
|
|
report_fatal_error("Size expression must be absolute.");
|
|
|
|
Size = Res;
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write out the symbol table entry
|
2015-05-28 20:25:29 +00:00
|
|
|
Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
|
|
|
|
IsReserved);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// It is always valid to create a relocation with a symbol. It is preferable
|
|
|
|
// to use a relocation with a section if that is possible. Using the section
|
|
|
|
// allows us to omit some local symbols from the symbol table.
|
2014-04-29 12:46:50 +00:00
|
|
|
bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
|
|
|
|
const MCSymbolRefExpr *RefA,
|
2015-06-02 20:38:46 +00:00
|
|
|
const MCSymbol *S, uint64_t C,
|
2014-03-29 06:26:49 +00:00
|
|
|
unsigned Type) const {
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto *Sym = cast_or_null<MCSymbolELF>(S);
|
2014-03-29 06:26:49 +00:00
|
|
|
// A PCRel relocation to an absolute value has no symbol (or section). We
|
|
|
|
// represent that with a relocation to a null section.
|
|
|
|
if (!RefA)
|
|
|
|
return false;
|
2010-09-30 20:18:35 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
|
|
|
|
switch (Kind) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
// The .odp creation emits a relocation against the symbol ".TOC." which
|
|
|
|
// create a R_PPC64_TOC relocation. However the relocation symbol name
|
|
|
|
// in final object creation should be NULL, since the symbol does not
|
|
|
|
// really exist, it is just the reference to TOC base for the current
|
|
|
|
// object file. Since the symbol is undefined, returning false results
|
|
|
|
// in a relocation with a null section which is the desired result.
|
|
|
|
case MCSymbolRefExpr::VK_PPC_TOCBASE:
|
|
|
|
return false;
|
2010-09-30 20:18:35 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// These VariantKind cause the relocation to refer to something other than
|
|
|
|
// the symbol itself, like a linker generated table. Since the address of
|
|
|
|
// symbol is not relevant, we cannot replace the symbol with the
|
|
|
|
// section and patch the difference in the addend.
|
|
|
|
case MCSymbolRefExpr::VK_GOT:
|
|
|
|
case MCSymbolRefExpr::VK_PLT:
|
|
|
|
case MCSymbolRefExpr::VK_GOTPCREL:
|
|
|
|
case MCSymbolRefExpr::VK_Mips_GOT:
|
|
|
|
case MCSymbolRefExpr::VK_PPC_GOT_LO:
|
|
|
|
case MCSymbolRefExpr::VK_PPC_GOT_HI:
|
|
|
|
case MCSymbolRefExpr::VK_PPC_GOT_HA:
|
|
|
|
return true;
|
2010-11-24 21:57:39 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// An undefined symbol is not in any section, so the relocation has to point
|
|
|
|
// to the symbol itself.
|
2015-05-20 04:39:01 +00:00
|
|
|
assert(Sym && "Expected a symbol");
|
|
|
|
if (Sym->isUndefined())
|
2014-03-29 06:26:49 +00:00
|
|
|
return true;
|
2010-10-05 23:57:26 +00:00
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
unsigned Binding = Sym->getBinding();
|
2014-03-29 06:26:49 +00:00
|
|
|
switch(Binding) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid Binding");
|
|
|
|
case ELF::STB_LOCAL:
|
|
|
|
break;
|
|
|
|
case ELF::STB_WEAK:
|
|
|
|
// If the symbol is weak, it might be overridden by a symbol in another
|
|
|
|
// file. The relocation has to point to the symbol so that the linker
|
|
|
|
// can update it.
|
|
|
|
return true;
|
|
|
|
case ELF::STB_GLOBAL:
|
|
|
|
// Global ELF symbols can be preempted by the dynamic linker. The relocation
|
|
|
|
// has to point to the symbol for a reason analogous to the STB_WEAK case.
|
|
|
|
return true;
|
2010-11-15 16:33:49 +00:00
|
|
|
}
|
2010-10-05 23:57:26 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// If a relocation points to a mergeable section, we have to be careful.
|
|
|
|
// If the offset is zero, a relocation with the section will encode the
|
|
|
|
// same information. With a non-zero offset, the situation is different.
|
|
|
|
// For example, a relocation can point 42 bytes past the end of a string.
|
|
|
|
// If we change such a relocation to use the section, the linker would think
|
|
|
|
// that it pointed to another string and subtracting 42 at runtime will
|
|
|
|
// produce the wrong value.
|
2015-05-20 04:39:01 +00:00
|
|
|
auto &Sec = cast<MCSectionELF>(Sym->getSection());
|
2014-03-29 06:26:49 +00:00
|
|
|
unsigned Flags = Sec.getFlags();
|
|
|
|
if (Flags & ELF::SHF_MERGE) {
|
|
|
|
if (C != 0)
|
|
|
|
return true;
|
2014-04-02 12:15:20 +00:00
|
|
|
|
|
|
|
// It looks like gold has a bug (http://sourceware.org/PR16794) and can
|
|
|
|
// only handle section relocations to mergeable sections if using RELA.
|
|
|
|
if (!hasRelocationAddend())
|
|
|
|
return true;
|
2010-11-14 23:53:26 +00:00
|
|
|
}
|
2010-10-18 16:38:04 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// Most TLS relocations use a got, so they need the symbol. Even those that
|
2014-10-06 12:33:27 +00:00
|
|
|
// are just an offset (@tpoff), require a symbol in gold versions before
|
|
|
|
// 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
|
|
|
|
// http://sourceware.org/PR16773.
|
2014-03-29 06:26:49 +00:00
|
|
|
if (Flags & ELF::SHF_TLS)
|
|
|
|
return true;
|
2011-05-11 22:53:06 +00:00
|
|
|
|
2014-04-11 19:18:01 +00:00
|
|
|
// If the symbol is a thumb function the final relocation must set the lowest
|
|
|
|
// bit. With a symbol that is done by just having the symbol have that bit
|
|
|
|
// set, so we would lose the bit if we relocated with the section.
|
|
|
|
// FIXME: We could use the section but add the bit to the relocation value.
|
2015-05-20 04:39:01 +00:00
|
|
|
if (Asm.isThumbFunc(Sym))
|
2014-04-11 19:18:01 +00:00
|
|
|
return true;
|
|
|
|
|
2015-05-29 18:26:09 +00:00
|
|
|
if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
|
2014-03-29 06:26:49 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
2010-09-25 05:42:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 20:05:17 +00:00
|
|
|
// True if the assembler knows nothing about the final value of the symbol.
|
|
|
|
// This doesn't cover the comdat issues, since in those cases the assembler
|
|
|
|
// can at least know that all symbols in the section will move together.
|
2015-06-02 20:38:46 +00:00
|
|
|
static bool isWeak(const MCSymbolELF &Sym) {
|
|
|
|
if (Sym.getType() == ELF::STT_GNU_IFUNC)
|
2015-04-17 08:46:11 +00:00
|
|
|
return true;
|
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
switch (Sym.getBinding()) {
|
2015-04-17 08:46:11 +00:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown binding");
|
|
|
|
case ELF::STB_LOCAL:
|
|
|
|
return false;
|
|
|
|
case ELF::STB_GLOBAL:
|
2015-04-17 20:05:17 +00:00
|
|
|
return false;
|
2015-04-17 08:46:11 +00:00
|
|
|
case ELF::STB_WEAK:
|
|
|
|
case ELF::STB_GNU_UNIQUE:
|
|
|
|
return true;
|
|
|
|
}
|
2015-03-24 23:48:44 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
|
2010-12-06 21:57:34 +00:00
|
|
|
const MCAsmLayout &Layout,
|
|
|
|
const MCFragment *Fragment,
|
2015-01-19 21:11:14 +00:00
|
|
|
const MCFixup &Fixup, MCValue Target,
|
|
|
|
bool &IsPCRel, uint64_t &FixedValue) {
|
2015-05-26 00:36:57 +00:00
|
|
|
const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
|
2014-03-29 06:26:49 +00:00
|
|
|
uint64_t C = Target.getConstant();
|
|
|
|
uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
|
|
|
|
|
|
|
|
if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
|
|
|
|
assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
|
|
|
|
"Should not have constructed this");
|
|
|
|
|
|
|
|
// Let A, B and C being the components of Target and R be the location of
|
|
|
|
// the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
|
|
|
|
// If it is pcrel, we want to compute (A - B + C - R).
|
|
|
|
|
|
|
|
// In general, ELF has no relocations for -B. It can only represent (A + C)
|
|
|
|
// or (A + C - R). If B = R + K and the relocation is not pcrel, we can
|
|
|
|
// replace B to implement it: (A - R - K + C)
|
|
|
|
if (IsPCRel)
|
2015-05-18 18:43:14 +00:00
|
|
|
Asm.getContext().reportFatalError(
|
2014-03-29 06:26:49 +00:00
|
|
|
Fixup.getLoc(),
|
|
|
|
"No relocation available to represent this relative expression");
|
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
|
2014-03-29 06:26:49 +00:00
|
|
|
|
|
|
|
if (SymB.isUndefined())
|
2015-05-18 18:43:14 +00:00
|
|
|
Asm.getContext().reportFatalError(
|
2014-03-29 06:26:49 +00:00
|
|
|
Fixup.getLoc(),
|
|
|
|
Twine("symbol '") + SymB.getName() +
|
|
|
|
"' can not be undefined in a subtraction expression");
|
|
|
|
|
|
|
|
assert(!SymB.isAbsolute() && "Should have been folded");
|
|
|
|
const MCSection &SecB = SymB.getSection();
|
2015-04-30 00:45:46 +00:00
|
|
|
if (&SecB != &FixupSection)
|
2015-05-18 18:43:14 +00:00
|
|
|
Asm.getContext().reportFatalError(
|
2014-03-29 06:26:49 +00:00
|
|
|
Fixup.getLoc(), "Cannot represent a difference across sections");
|
|
|
|
|
2015-05-29 18:47:23 +00:00
|
|
|
if (::isWeak(SymB))
|
2015-05-18 18:43:14 +00:00
|
|
|
Asm.getContext().reportFatalError(
|
2015-03-24 23:48:44 +00:00
|
|
|
Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
|
|
|
|
|
2015-05-19 23:53:20 +00:00
|
|
|
uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
|
2014-03-29 06:26:49 +00:00
|
|
|
uint64_t K = SymBOffset - FixupOffset;
|
|
|
|
IsPCRel = true;
|
|
|
|
C -= K;
|
|
|
|
}
|
2010-12-06 21:57:34 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
// We either rejected the fixup or folded B into C at this point.
|
|
|
|
const MCSymbolRefExpr *RefA = Target.getSymA();
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
|
2010-12-06 21:57:34 +00:00
|
|
|
|
2015-06-03 21:52:06 +00:00
|
|
|
bool ViaWeakRef = false;
|
|
|
|
if (SymA && SymA->isVariable()) {
|
|
|
|
const MCExpr *Expr = SymA->getVariableValue();
|
|
|
|
if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
|
|
|
|
if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
|
|
|
|
SymA = cast<MCSymbolELF>(&Inner->getSymbol());
|
|
|
|
ViaWeakRef = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
|
2015-05-20 04:39:01 +00:00
|
|
|
bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
|
2014-03-29 06:26:49 +00:00
|
|
|
if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
|
2015-05-19 23:53:20 +00:00
|
|
|
C += Layout.getSymbolOffset(*SymA);
|
2014-03-29 06:26:49 +00:00
|
|
|
|
|
|
|
uint64_t Addend = 0;
|
|
|
|
if (hasRelocationAddend()) {
|
|
|
|
Addend = C;
|
|
|
|
C = 0;
|
2010-12-06 21:57:34 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
FixedValue = C;
|
|
|
|
|
|
|
|
if (!RelocateWithSymbol) {
|
|
|
|
const MCSection *SecA =
|
|
|
|
(SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
|
2014-10-17 01:48:58 +00:00
|
|
|
auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto *SectionSymbol =
|
|
|
|
ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
|
2015-06-04 15:33:30 +00:00
|
|
|
if (SectionSymbol)
|
|
|
|
SectionSymbol->setUsedInReloc();
|
2014-10-17 01:48:58 +00:00
|
|
|
ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
|
2015-04-30 00:45:46 +00:00
|
|
|
Relocations[&FixupSection].push_back(Rec);
|
2014-03-29 06:26:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-08-04 19:08:19 +00:00
|
|
|
|
2014-03-29 06:26:49 +00:00
|
|
|
if (SymA) {
|
2015-06-02 20:38:46 +00:00
|
|
|
if (const MCSymbolELF *R = Renames.lookup(SymA))
|
2014-03-29 06:26:49 +00:00
|
|
|
SymA = R;
|
2011-08-04 13:05:26 +00:00
|
|
|
|
2015-06-03 21:52:06 +00:00
|
|
|
if (ViaWeakRef)
|
|
|
|
SymA->setIsWeakrefUsedInReloc();
|
2014-03-29 06:26:49 +00:00
|
|
|
else
|
2015-06-03 21:30:10 +00:00
|
|
|
SymA->setUsedInReloc();
|
2014-03-29 06:26:49 +00:00
|
|
|
}
|
|
|
|
ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
|
2015-04-30 00:45:46 +00:00
|
|
|
Relocations[&FixupSection].push_back(Rec);
|
2014-03-29 06:26:49 +00:00
|
|
|
return;
|
2010-12-06 21:57:34 +00:00
|
|
|
}
|
|
|
|
|
2014-04-28 13:39:57 +00:00
|
|
|
bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
|
2015-06-02 20:38:46 +00:00
|
|
|
const MCSymbolELF &Symbol, bool Used,
|
2014-04-28 13:39:57 +00:00
|
|
|
bool Renamed) {
|
2014-03-20 02:12:01 +00:00
|
|
|
if (Symbol.isVariable()) {
|
|
|
|
const MCExpr *Expr = Symbol.getVariableValue();
|
|
|
|
if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
|
|
|
|
if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-11-01 14:28:48 +00:00
|
|
|
|
2010-10-19 19:31:37 +00:00
|
|
|
if (Used)
|
|
|
|
return true;
|
|
|
|
|
2010-10-27 15:18:17 +00:00
|
|
|
if (Renamed)
|
|
|
|
return false;
|
|
|
|
|
2015-06-03 21:23:21 +00:00
|
|
|
if (Symbol.isVariable() && Symbol.isUndefined()) {
|
|
|
|
// FIXME: this is here just to diagnose the case of a var = commmon_sym.
|
|
|
|
Layout.getBaseSymbol(Symbol);
|
|
|
|
return false;
|
2014-04-28 13:39:57 +00:00
|
|
|
}
|
2011-02-23 20:22:07 +00:00
|
|
|
|
2015-06-03 21:23:21 +00:00
|
|
|
if (Symbol.isUndefined() && !Symbol.isBindingSet())
|
2010-10-27 14:44:52 +00:00
|
|
|
return false;
|
|
|
|
|
2010-10-19 19:31:37 +00:00
|
|
|
if (Symbol.isTemporary())
|
2010-10-05 18:01:23 +00:00
|
|
|
return false;
|
|
|
|
|
2015-06-04 15:33:30 +00:00
|
|
|
if (Symbol.getType() == ELF::STT_SECTION)
|
|
|
|
return false;
|
|
|
|
|
2010-10-05 18:01:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-07 19:00:17 +00:00
|
|
|
void ELFObjectWriter::computeSymbolTable(
|
|
|
|
MCAssembler &Asm, const MCAsmLayout &Layout,
|
2015-05-28 17:54:01 +00:00
|
|
|
const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
|
|
|
|
SectionOffsetsTy &SectionOffsets) {
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
MCContext &Ctx = Asm.getContext();
|
2015-05-28 17:54:01 +00:00
|
|
|
SymbolTableWriter Writer(*this, is64Bit());
|
|
|
|
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
// Symbol table
|
|
|
|
unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
|
|
|
|
MCSectionELF *SymtabSection =
|
|
|
|
Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
|
|
|
|
SymtabSection->setAlignment(is64Bit() ? 8 : 4);
|
|
|
|
SymbolTableIndex = addToSectionTable(SymtabSection);
|
|
|
|
|
2015-06-05 18:21:00 +00:00
|
|
|
align(SymtabSection->getAlignment());
|
2015-05-28 17:54:01 +00:00
|
|
|
uint64_t SecStart = OS.tell();
|
|
|
|
|
|
|
|
// The first entry is the undefined symbol entry.
|
|
|
|
Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
|
|
|
|
|
2015-05-28 20:11:34 +00:00
|
|
|
std::vector<ELFSymbolData> LocalSymbolData;
|
|
|
|
std::vector<ELFSymbolData> ExternalSymbolData;
|
|
|
|
|
2010-10-14 16:34:44 +00:00
|
|
|
// Add the data for the symbols.
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
bool HasLargeSectionIndex = false;
|
2015-06-02 20:38:46 +00:00
|
|
|
for (const MCSymbol &S : Asm.symbols()) {
|
|
|
|
const auto &Symbol = cast<MCSymbolELF>(S);
|
2015-06-03 21:30:10 +00:00
|
|
|
bool Used = Symbol.isUsedInReloc();
|
2015-06-03 21:52:06 +00:00
|
|
|
bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
|
2015-06-03 21:41:59 +00:00
|
|
|
bool isSignature = Symbol.isSignature();
|
2010-11-14 04:17:37 +00:00
|
|
|
|
2015-05-20 04:39:01 +00:00
|
|
|
if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
|
2010-10-27 15:18:17 +00:00
|
|
|
Renames.count(&Symbol)))
|
2010-08-16 18:57:57 +00:00
|
|
|
continue;
|
|
|
|
|
2015-06-22 17:52:52 +00:00
|
|
|
if (Symbol.isTemporary() && Symbol.isUndefined())
|
|
|
|
Ctx.reportFatalError(SMLoc(), "Undefined temporary");
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
ELFSymbolData MSD;
|
2015-06-02 00:25:12 +00:00
|
|
|
MSD.Symbol = cast<MCSymbolELF>(&Symbol);
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2015-06-03 21:41:59 +00:00
|
|
|
bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
|
2015-06-22 17:52:52 +00:00
|
|
|
assert(Local || !Symbol.isTemporary());
|
|
|
|
|
2015-05-29 15:07:27 +00:00
|
|
|
if (Symbol.isAbsolute()) {
|
2014-03-24 03:43:21 +00:00
|
|
|
MSD.SectionIndex = ELF::SHN_ABS;
|
2015-05-29 17:48:04 +00:00
|
|
|
} else if (Symbol.isCommon()) {
|
2010-10-14 16:34:44 +00:00
|
|
|
assert(!Local);
|
2010-09-21 00:24:38 +00:00
|
|
|
MSD.SectionIndex = ELF::SHN_COMMON;
|
2015-05-29 15:07:27 +00:00
|
|
|
} else if (Symbol.isUndefined()) {
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
if (isSignature && !Used) {
|
2015-04-28 22:59:58 +00:00
|
|
|
MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
|
|
|
|
HasLargeSectionIndex = true;
|
|
|
|
} else {
|
2010-11-14 04:17:37 +00:00
|
|
|
MSD.SectionIndex = ELF::SHN_UNDEF;
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
}
|
2010-08-16 18:57:57 +00:00
|
|
|
} else {
|
2010-11-10 21:51:05 +00:00
|
|
|
const MCSectionELF &Section =
|
2015-05-29 15:07:27 +00:00
|
|
|
static_cast<const MCSectionELF &>(Symbol.getSection());
|
2010-11-10 21:51:05 +00:00
|
|
|
MSD.SectionIndex = SectionIndexMap.lookup(&Section);
|
2010-08-16 18:57:57 +00:00
|
|
|
assert(MSD.SectionIndex && "Invalid section index!");
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
|
|
|
|
HasLargeSectionIndex = true;
|
2010-10-15 15:39:06 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 14:20:45 +00:00
|
|
|
// The @@@ in symbol version is replaced with @ in undefined symbols and @@
|
|
|
|
// in defined ones.
|
|
|
|
//
|
|
|
|
// FIXME: All name handling should be done before we get to the writer,
|
2015-02-25 11:02:00 +00:00
|
|
|
// including dealing with GNU-style version suffixes. Fixing this isn't
|
2015-01-22 14:20:45 +00:00
|
|
|
// trivial.
|
|
|
|
//
|
|
|
|
// We thus have to be careful to not perform the symbol version replacement
|
|
|
|
// blindly:
|
|
|
|
//
|
|
|
|
// The ELF format is used on Windows by the MCJIT engine. Thus, on
|
|
|
|
// Windows, the ELFObjectWriter can encounter symbols mangled using the MS
|
|
|
|
// Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
|
|
|
|
// C++ name mangling can legally have "@@@" as a sub-string. In that case,
|
|
|
|
// the EFLObjectWriter should not interpret the "@@@" sub-string as
|
|
|
|
// specifying GNU-style symbol versioning. The ELFObjectWriter therefore
|
|
|
|
// checks for the MSVC C++ name mangling prefix which is either "?", "@?",
|
|
|
|
// "__imp_?" or "__imp_@?".
|
|
|
|
//
|
|
|
|
// It would have been interesting to perform the MS mangling prefix check
|
|
|
|
// only when the target triple is of the form *-pc-windows-elf. But, it
|
|
|
|
// seems that this information is not easily accessible from the
|
|
|
|
// ELFObjectWriter.
|
2010-10-27 15:18:17 +00:00
|
|
|
StringRef Name = Symbol.getName();
|
2015-01-22 14:20:45 +00:00
|
|
|
if (!Name.startswith("?") && !Name.startswith("@?") &&
|
|
|
|
!Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
|
|
|
|
// This symbol isn't following the MSVC C++ name mangling convention. We
|
|
|
|
// can thus safely interpret the @@@ in symbol names as specifying symbol
|
|
|
|
// versioning.
|
|
|
|
SmallString<32> Buf;
|
|
|
|
size_t Pos = Name.find("@@@");
|
|
|
|
if (Pos != StringRef::npos) {
|
|
|
|
Buf += Name.substr(0, Pos);
|
|
|
|
unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
|
|
|
|
Buf += Name.substr(Pos + Skip);
|
|
|
|
Name = Buf;
|
|
|
|
}
|
2010-10-27 15:18:17 +00:00
|
|
|
}
|
2014-10-17 01:48:58 +00:00
|
|
|
|
|
|
|
// Sections have their own string table
|
2015-06-02 20:38:46 +00:00
|
|
|
if (Symbol.getType() != ELF::STT_SECTION)
|
2014-10-17 01:48:58 +00:00
|
|
|
MSD.Name = StrTabBuilder.add(Name);
|
2010-10-27 15:18:17 +00:00
|
|
|
|
2015-05-29 14:20:40 +00:00
|
|
|
if (Local)
|
2010-10-27 14:44:52 +00:00
|
|
|
LocalSymbolData.push_back(MSD);
|
|
|
|
else
|
|
|
|
ExternalSymbolData.push_back(MSD);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
if (HasLargeSectionIndex) {
|
|
|
|
MCSectionELF *SymtabShndxSection =
|
|
|
|
Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
|
|
|
|
SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
|
|
|
|
SymtabShndxSection->setAlignment(4);
|
|
|
|
}
|
|
|
|
|
2015-05-28 19:29:15 +00:00
|
|
|
ArrayRef<std::string> FileNames = Asm.getFileNames();
|
|
|
|
for (const std::string &Name : FileNames)
|
2015-05-28 18:03:20 +00:00
|
|
|
StrTabBuilder.add(Name);
|
2014-04-30 16:25:02 +00:00
|
|
|
|
2014-09-29 22:43:20 +00:00
|
|
|
StrTabBuilder.finalize(StringTableBuilder::ELF);
|
2014-04-30 16:25:02 +00:00
|
|
|
|
2015-05-28 20:00:13 +00:00
|
|
|
for (const std::string &Name : FileNames)
|
|
|
|
Writer.writeSymbol(StrTabBuilder.getOffset(Name),
|
|
|
|
ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
|
|
|
|
ELF::SHN_ABS, true);
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
// Symbols are required to be in lexicographic order.
|
|
|
|
array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
|
|
|
|
array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
|
|
|
|
|
|
|
|
// Set the symbol indices. Local symbols must come before all other
|
|
|
|
// symbols with non-local bindings.
|
2015-05-28 19:29:15 +00:00
|
|
|
unsigned Index = FileNames.size() + 1;
|
2010-11-14 03:12:24 +00:00
|
|
|
|
2015-05-28 17:54:01 +00:00
|
|
|
for (ELFSymbolData &MSD : LocalSymbolData) {
|
2015-06-22 17:52:52 +00:00
|
|
|
unsigned StringIndex;
|
|
|
|
if (MSD.Symbol->getType() == ELF::STT_SECTION || MSD.Name.empty())
|
|
|
|
StringIndex = 0;
|
|
|
|
else
|
|
|
|
StringIndex = StrTabBuilder.getOffset(MSD.Name);
|
2015-05-28 17:54:01 +00:00
|
|
|
MSD.Symbol->setIndex(Index++);
|
2015-05-28 20:25:29 +00:00
|
|
|
writeSymbol(Writer, StringIndex, MSD, Layout);
|
2015-05-28 17:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write the symbol table entries.
|
2015-05-28 20:00:13 +00:00
|
|
|
LastLocalSymbolIndex = Index;
|
2015-05-28 17:54:01 +00:00
|
|
|
|
2015-05-28 19:43:20 +00:00
|
|
|
for (ELFSymbolData &MSD : ExternalSymbolData) {
|
2015-05-28 20:25:29 +00:00
|
|
|
unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
|
2015-05-28 20:00:13 +00:00
|
|
|
MSD.Symbol->setIndex(Index++);
|
2015-05-28 20:25:29 +00:00
|
|
|
writeSymbol(Writer, StringIndex, MSD, Layout);
|
2015-06-02 20:38:46 +00:00
|
|
|
assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
|
2015-05-28 17:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SecEnd = OS.tell();
|
|
|
|
SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
|
|
|
|
|
|
|
|
ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
|
|
|
|
if (ShndxIndexes.empty()) {
|
|
|
|
assert(SymtabShndxSectionIndex == 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(SymtabShndxSectionIndex != 0);
|
|
|
|
|
|
|
|
SecStart = OS.tell();
|
|
|
|
const MCSectionELF *SymtabShndxSection =
|
|
|
|
SectionTable[SymtabShndxSectionIndex - 1];
|
|
|
|
for (uint32_t Index : ShndxIndexes)
|
|
|
|
write(Index);
|
|
|
|
SecEnd = OS.tell();
|
|
|
|
SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 19:20:38 +00:00
|
|
|
MCSectionELF *
|
2015-05-21 20:43:13 +00:00
|
|
|
ELFObjectWriter::createRelocationSection(MCContext &Ctx,
|
2015-04-30 14:21:49 +00:00
|
|
|
const MCSectionELF &Sec) {
|
2015-04-30 00:45:46 +00:00
|
|
|
if (Relocations[&Sec].empty())
|
2015-04-30 14:21:49 +00:00
|
|
|
return nullptr;
|
2010-08-17 17:56:13 +00:00
|
|
|
|
2015-04-30 00:45:46 +00:00
|
|
|
const StringRef SectionName = Sec.getSectionName();
|
2015-02-17 20:31:13 +00:00
|
|
|
std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
|
|
|
|
RelaSectionName += SectionName;
|
2013-07-10 20:58:17 +00:00
|
|
|
|
2015-02-17 20:31:13 +00:00
|
|
|
unsigned EntrySize;
|
|
|
|
if (hasRelocationAddend())
|
|
|
|
EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
|
|
|
|
else
|
|
|
|
EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
|
2015-02-11 23:17:48 +00:00
|
|
|
|
2015-02-17 20:31:13 +00:00
|
|
|
unsigned Flags = 0;
|
2015-04-30 00:45:46 +00:00
|
|
|
if (Sec.getFlags() & ELF::SHF_GROUP)
|
2015-02-17 20:31:13 +00:00
|
|
|
Flags = ELF::SHF_GROUP;
|
|
|
|
|
2015-05-21 19:20:38 +00:00
|
|
|
MCSectionELF *RelaSection = Ctx.createELFRelSection(
|
2015-02-17 20:31:13 +00:00
|
|
|
RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
|
2015-04-30 00:45:46 +00:00
|
|
|
Flags, EntrySize, Sec.getGroup(), &Sec);
|
2015-05-21 20:43:13 +00:00
|
|
|
RelaSection->setAlignment(is64Bit() ? 8 : 4);
|
2015-04-30 14:21:49 +00:00
|
|
|
return RelaSection;
|
2011-03-20 18:44:20 +00:00
|
|
|
}
|
|
|
|
|
2014-04-11 22:11:50 +00:00
|
|
|
static SmallVector<char, 128>
|
2015-04-29 19:20:10 +00:00
|
|
|
getUncompressedData(const MCAsmLayout &Layout,
|
2015-05-27 15:14:11 +00:00
|
|
|
const MCSection::FragmentListType &Fragments) {
|
2014-04-10 21:53:53 +00:00
|
|
|
SmallVector<char, 128> UncompressedData;
|
|
|
|
for (const MCFragment &F : Fragments) {
|
|
|
|
const SmallVectorImpl<char> *Contents;
|
|
|
|
switch (F.getKind()) {
|
|
|
|
case MCFragment::FT_Data:
|
|
|
|
Contents = &cast<MCDataFragment>(F).getContents();
|
|
|
|
break;
|
|
|
|
case MCFragment::FT_Dwarf:
|
|
|
|
Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
|
|
|
|
break;
|
|
|
|
case MCFragment::FT_DwarfFrame:
|
|
|
|
Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
llvm_unreachable(
|
|
|
|
"Not expecting any other fragment types in a debug_* section");
|
|
|
|
}
|
|
|
|
UncompressedData.append(Contents->begin(), Contents->end());
|
|
|
|
}
|
|
|
|
return UncompressedData;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the debug info compression header:
|
|
|
|
// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
|
|
|
|
// useful for consumers to preallocate a buffer to decompress into.
|
2014-04-18 21:52:26 +00:00
|
|
|
static bool
|
2014-04-11 22:11:50 +00:00
|
|
|
prependCompressionHeader(uint64_t Size,
|
|
|
|
SmallVectorImpl<char> &CompressedContents) {
|
2015-03-01 18:09:56 +00:00
|
|
|
const StringRef Magic = "ZLIB";
|
2014-04-18 21:52:26 +00:00
|
|
|
if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
|
|
|
|
return false;
|
2014-04-10 21:53:53 +00:00
|
|
|
if (sys::IsLittleEndianHost)
|
2014-06-14 13:18:07 +00:00
|
|
|
sys::swapByteOrder(Size);
|
2014-04-10 21:53:53 +00:00
|
|
|
CompressedContents.insert(CompressedContents.begin(),
|
|
|
|
Magic.size() + sizeof(Size), 0);
|
|
|
|
std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
|
|
|
|
std::copy(reinterpret_cast<char *>(&Size),
|
|
|
|
reinterpret_cast<char *>(&Size + 1),
|
|
|
|
CompressedContents.begin() + Magic.size());
|
2014-04-18 21:52:26 +00:00
|
|
|
return true;
|
2014-04-10 21:53:53 +00:00
|
|
|
}
|
|
|
|
|
2015-05-27 13:30:50 +00:00
|
|
|
void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
|
2015-04-30 21:51:58 +00:00
|
|
|
const MCAsmLayout &Layout) {
|
2015-05-27 13:30:50 +00:00
|
|
|
MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
|
2015-04-30 21:51:58 +00:00
|
|
|
StringRef SectionName = Section.getSectionName();
|
2014-04-10 21:53:53 +00:00
|
|
|
|
2015-04-30 21:51:58 +00:00
|
|
|
// Compressing debug_frame requires handling alignment fragments which is
|
|
|
|
// more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
|
|
|
|
// for writing to arbitrary buffers) for little benefit.
|
|
|
|
if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
|
|
|
|
!SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
|
2015-05-26 02:17:21 +00:00
|
|
|
Asm.writeSectionData(&Section, Layout);
|
2015-04-30 21:51:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gather the uncompressed data from all the fragments.
|
2015-05-27 15:14:11 +00:00
|
|
|
const MCSection::FragmentListType &Fragments = Section.getFragmentList();
|
2014-04-10 21:53:53 +00:00
|
|
|
SmallVector<char, 128> UncompressedData =
|
|
|
|
getUncompressedData(Layout, Fragments);
|
|
|
|
|
2015-04-30 21:51:58 +00:00
|
|
|
SmallVector<char, 128> CompressedContents;
|
2014-04-10 21:53:53 +00:00
|
|
|
zlib::Status Success = zlib::compress(
|
|
|
|
StringRef(UncompressedData.data(), UncompressedData.size()),
|
|
|
|
CompressedContents);
|
2015-04-30 21:51:58 +00:00
|
|
|
if (Success != zlib::StatusOK) {
|
2015-05-26 02:17:21 +00:00
|
|
|
Asm.writeSectionData(&Section, Layout);
|
2015-04-30 21:51:58 +00:00
|
|
|
return;
|
2014-04-18 21:24:12 +00:00
|
|
|
}
|
|
|
|
|
2015-04-30 21:51:58 +00:00
|
|
|
if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
|
2015-05-26 02:17:21 +00:00
|
|
|
Asm.writeSectionData(&Section, Layout);
|
2014-04-10 21:53:53 +00:00
|
|
|
return;
|
2015-04-30 21:51:58 +00:00
|
|
|
}
|
2014-04-10 21:53:53 +00:00
|
|
|
Asm.getContext().renameELFSection(&Section,
|
|
|
|
(".z" + SectionName.drop_front(1)).str());
|
2015-04-30 21:51:58 +00:00
|
|
|
OS << CompressedContents;
|
2014-04-10 21:53:53 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 07:33:40 +00:00
|
|
|
void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
|
|
|
|
uint64_t Flags, uint64_t Address,
|
|
|
|
uint64_t Offset, uint64_t Size,
|
|
|
|
uint32_t Link, uint32_t Info,
|
|
|
|
uint64_t Alignment,
|
|
|
|
uint64_t EntrySize) {
|
2015-06-04 22:24:41 +00:00
|
|
|
write32(Name); // sh_name: index into string table
|
|
|
|
write32(Type); // sh_type
|
2010-08-16 18:57:57 +00:00
|
|
|
WriteWord(Flags); // sh_flags
|
|
|
|
WriteWord(Address); // sh_addr
|
|
|
|
WriteWord(Offset); // sh_offset
|
|
|
|
WriteWord(Size); // sh_size
|
2015-06-04 22:24:41 +00:00
|
|
|
write32(Link); // sh_link
|
|
|
|
write32(Info); // sh_info
|
2010-08-16 18:57:57 +00:00
|
|
|
WriteWord(Alignment); // sh_addralign
|
|
|
|
WriteWord(EntrySize); // sh_entsize
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:30:40 +00:00
|
|
|
void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
|
2015-04-30 00:45:46 +00:00
|
|
|
const MCSectionELF &Sec) {
|
|
|
|
std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
|
2012-03-23 23:06:45 +00:00
|
|
|
|
2015-04-14 13:23:34 +00:00
|
|
|
// Sort the relocation entries. Most targets just sort by Offset, but some
|
|
|
|
// (e.g., MIPS) have additional constraints.
|
|
|
|
TargetObjectWriter->sortRelocs(Asm, Relocs);
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
|
2014-03-29 06:26:49 +00:00
|
|
|
const ELFRelocationEntry &Entry = Relocs[e - i - 1];
|
2015-05-28 20:53:09 +00:00
|
|
|
unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2010-12-18 03:27:34 +00:00
|
|
|
if (is64Bit()) {
|
2015-04-30 00:30:40 +00:00
|
|
|
write(Entry.Offset);
|
2012-06-27 22:28:30 +00:00
|
|
|
if (TargetObjectWriter->isN64()) {
|
2015-04-30 00:30:40 +00:00
|
|
|
write(uint32_t(Index));
|
2010-09-09 18:01:29 +00:00
|
|
|
|
2015-04-30 00:30:40 +00:00
|
|
|
write(TargetObjectWriter->getRSsym(Entry.Type));
|
|
|
|
write(TargetObjectWriter->getRType3(Entry.Type));
|
|
|
|
write(TargetObjectWriter->getRType2(Entry.Type));
|
|
|
|
write(TargetObjectWriter->getRType(Entry.Type));
|
2014-03-29 06:26:49 +00:00
|
|
|
} else {
|
2012-06-27 22:28:30 +00:00
|
|
|
struct ELF::Elf64_Rela ERE64;
|
2014-03-29 06:26:49 +00:00
|
|
|
ERE64.setSymbolAndType(Index, Entry.Type);
|
2015-04-30 00:30:40 +00:00
|
|
|
write(ERE64.r_info);
|
2012-06-27 22:28:30 +00:00
|
|
|
}
|
2010-12-18 03:27:34 +00:00
|
|
|
if (hasRelocationAddend())
|
2015-04-30 00:30:40 +00:00
|
|
|
write(Entry.Addend);
|
2010-09-09 18:01:29 +00:00
|
|
|
} else {
|
2015-04-30 00:30:40 +00:00
|
|
|
write(uint32_t(Entry.Offset));
|
2010-09-09 18:01:29 +00:00
|
|
|
|
2010-10-05 15:11:03 +00:00
|
|
|
struct ELF::Elf32_Rela ERE32;
|
2014-03-29 06:26:49 +00:00
|
|
|
ERE32.setSymbolAndType(Index, Entry.Type);
|
2015-04-30 00:30:40 +00:00
|
|
|
write(ERE32.r_info);
|
2010-09-09 18:01:29 +00:00
|
|
|
|
2010-12-18 03:27:34 +00:00
|
|
|
if (hasRelocationAddend())
|
2015-04-30 00:30:40 +00:00
|
|
|
write(uint32_t(Entry.Addend));
|
2010-09-09 18:01:29 +00:00
|
|
|
}
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 21:10:06 +00:00
|
|
|
const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
|
2015-05-25 21:56:55 +00:00
|
|
|
const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
|
2015-04-29 20:34:31 +00:00
|
|
|
OS << StrTabBuilder.data();
|
2015-04-30 14:21:49 +00:00
|
|
|
return StrtabSection;
|
2010-11-11 18:13:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 19:42:35 +00:00
|
|
|
void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
|
|
|
|
uint32_t GroupSymbolIndex, uint64_t Offset,
|
|
|
|
uint64_t Size, const MCSectionELF &Section) {
|
2010-11-10 23:36:59 +00:00
|
|
|
uint64_t sh_link = 0;
|
|
|
|
uint64_t sh_info = 0;
|
|
|
|
|
|
|
|
switch(Section.getType()) {
|
2015-04-06 03:16:51 +00:00
|
|
|
default:
|
|
|
|
// Nothing to do.
|
|
|
|
break;
|
|
|
|
|
2010-11-10 23:36:59 +00:00
|
|
|
case ELF::SHT_DYNAMIC:
|
2015-04-30 21:20:06 +00:00
|
|
|
llvm_unreachable("SHT_DYNAMIC in a relocatable object");
|
2010-11-10 23:36:59 +00:00
|
|
|
|
|
|
|
case ELF::SHT_REL:
|
|
|
|
case ELF::SHT_RELA: {
|
2015-02-17 20:37:50 +00:00
|
|
|
sh_link = SymbolTableIndex;
|
2010-11-10 23:36:59 +00:00
|
|
|
assert(sh_link && ".symtab not found");
|
2015-04-06 03:09:30 +00:00
|
|
|
const MCSectionELF *InfoSection = Section.getAssociatedSection();
|
2010-11-10 23:36:59 +00:00
|
|
|
sh_info = SectionIndexMap.lookup(InfoSection);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ELF::SHT_SYMTAB:
|
|
|
|
case ELF::SHT_DYNSYM:
|
|
|
|
sh_link = StringTableIndex;
|
|
|
|
sh_info = LastLocalSymbolIndex;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELF::SHT_SYMTAB_SHNDX:
|
|
|
|
sh_link = SymbolTableIndex;
|
|
|
|
break;
|
|
|
|
|
2011-10-07 23:28:32 +00:00
|
|
|
case ELF::SHT_GROUP:
|
2010-11-11 18:13:52 +00:00
|
|
|
sh_link = SymbolTableIndex;
|
|
|
|
sh_info = GroupSymbolIndex;
|
|
|
|
break;
|
2010-11-10 23:36:59 +00:00
|
|
|
}
|
|
|
|
|
2013-02-05 14:18:59 +00:00
|
|
|
if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
|
2015-04-06 04:25:18 +00:00
|
|
|
Section.getType() == ELF::SHT_ARM_EXIDX)
|
|
|
|
sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
|
2013-02-05 14:18:59 +00:00
|
|
|
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
|
2015-05-21 19:36:43 +00:00
|
|
|
Section.getType(), Section.getFlags(), 0, Offset, Size,
|
|
|
|
sh_link, sh_info, Section.getAlignment(),
|
|
|
|
Section.getEntrySize());
|
2010-11-10 23:36:59 +00:00
|
|
|
}
|
|
|
|
|
2015-02-17 20:40:59 +00:00
|
|
|
void ELFObjectWriter::writeSectionHeader(
|
2015-06-04 20:55:49 +00:00
|
|
|
const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
|
2015-04-28 15:26:21 +00:00
|
|
|
const SectionOffsetsTy &SectionOffsets) {
|
2015-04-30 21:10:06 +00:00
|
|
|
const unsigned NumSections = SectionTable.size();
|
2011-03-20 18:44:20 +00:00
|
|
|
|
|
|
|
// Null section first.
|
|
|
|
uint64_t FirstSectionSize =
|
2015-04-15 13:07:47 +00:00
|
|
|
(NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
|
2015-04-29 20:25:24 +00:00
|
|
|
WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
|
2011-03-20 18:44:20 +00:00
|
|
|
|
2015-05-25 21:56:55 +00:00
|
|
|
for (const MCSectionELF *Section : SectionTable) {
|
2011-03-20 18:44:20 +00:00
|
|
|
uint32_t GroupSymbolIndex;
|
2015-04-30 20:53:27 +00:00
|
|
|
unsigned Type = Section->getType();
|
|
|
|
if (Type != ELF::SHT_GROUP)
|
2011-03-20 18:44:20 +00:00
|
|
|
GroupSymbolIndex = 0;
|
|
|
|
else
|
2015-05-28 20:53:09 +00:00
|
|
|
GroupSymbolIndex = Section->getGroup()->getIndex();
|
2011-03-20 18:44:20 +00:00
|
|
|
|
2015-04-30 14:21:49 +00:00
|
|
|
const std::pair<uint64_t, uint64_t> &Offsets =
|
2015-04-30 20:53:27 +00:00
|
|
|
SectionOffsets.find(Section)->second;
|
2015-05-21 19:46:39 +00:00
|
|
|
uint64_t Size;
|
2015-05-26 02:00:36 +00:00
|
|
|
if (Type == ELF::SHT_NOBITS)
|
|
|
|
Size = Layout.getSectionAddressSize(Section);
|
|
|
|
else
|
2015-05-21 19:46:39 +00:00
|
|
|
Size = Offsets.second - Offsets.first;
|
2011-03-20 18:44:20 +00:00
|
|
|
|
2015-05-21 19:42:35 +00:00
|
|
|
writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
|
2015-05-21 19:36:43 +00:00
|
|
|
*Section);
|
2011-03-20 18:44:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
void ELFObjectWriter::writeObject(MCAssembler &Asm,
|
2010-11-13 07:33:40 +00:00
|
|
|
const MCAsmLayout &Layout) {
|
2015-04-30 14:21:49 +00:00
|
|
|
MCContext &Ctx = Asm.getContext();
|
Produce a single string table in a ELF .o
Normally an ELF .o has two string tables, one for symbols, one for section
names.
With the scheme of naming sections like ".text.foo" where foo is a symbol,
there is a big potential saving in using a single one.
Building llvm+clang+lld with master and with this patch the results were:
master: 193,267,008 bytes
patch: 186,107,952 bytes
master non unique section names: 183,260,192 bytes
patch non unique section names: 183,118,632 bytes
So using non usique saves 10,006,816 bytes, and the patch saves 7,159,056 while
still using distinct names for the sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238073 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-22 23:58:30 +00:00
|
|
|
MCSectionELF *StrtabSection =
|
|
|
|
Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
|
|
|
|
StringTableIndex = addToSectionTable(StrtabSection);
|
2011-03-20 18:44:20 +00:00
|
|
|
|
2015-04-30 14:21:49 +00:00
|
|
|
RevGroupMapTy RevGroupMap;
|
|
|
|
SectionIndexMapTy SectionIndexMap;
|
2011-03-20 18:44:20 +00:00
|
|
|
|
2015-04-30 14:21:49 +00:00
|
|
|
std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
|
2015-04-08 11:41:24 +00:00
|
|
|
|
2015-04-14 22:54:16 +00:00
|
|
|
// Write out the ELF header ...
|
2015-04-29 20:39:37 +00:00
|
|
|
writeHeader(Asm);
|
2015-04-14 22:54:16 +00:00
|
|
|
|
|
|
|
// ... then the sections ...
|
2015-04-30 14:21:49 +00:00
|
|
|
SectionOffsetsTy SectionOffsets;
|
2015-05-21 20:43:13 +00:00
|
|
|
std::vector<MCSectionELF *> Groups;
|
|
|
|
std::vector<MCSectionELF *> Relocations;
|
2015-05-27 13:30:50 +00:00
|
|
|
for (MCSection &Sec : Asm) {
|
|
|
|
MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
|
2015-04-30 14:21:49 +00:00
|
|
|
|
2015-06-05 18:21:00 +00:00
|
|
|
align(Section.getAlignment());
|
2010-09-06 16:11:52 +00:00
|
|
|
|
2011-03-20 18:44:20 +00:00
|
|
|
// Remember the offset into the file for this section.
|
2015-04-28 15:04:09 +00:00
|
|
|
uint64_t SecStart = OS.tell();
|
2015-04-30 00:30:40 +00:00
|
|
|
|
2015-06-02 21:30:13 +00:00
|
|
|
const MCSymbolELF *SignatureSymbol = Section.getGroup();
|
2015-05-27 13:30:50 +00:00
|
|
|
writeSectionData(Asm, Section, Layout);
|
2015-04-30 00:30:40 +00:00
|
|
|
|
2015-04-28 15:04:09 +00:00
|
|
|
uint64_t SecEnd = OS.tell();
|
2015-04-30 14:21:49 +00:00
|
|
|
SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
|
|
|
|
|
2015-05-21 20:43:13 +00:00
|
|
|
MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
|
2015-04-30 14:21:49 +00:00
|
|
|
|
|
|
|
if (SignatureSymbol) {
|
2015-05-29 20:21:02 +00:00
|
|
|
Asm.registerSymbol(*SignatureSymbol);
|
2015-04-30 14:21:49 +00:00
|
|
|
unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
|
|
|
|
if (!GroupIdx) {
|
2015-05-21 19:20:38 +00:00
|
|
|
MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
|
2015-04-30 20:53:27 +00:00
|
|
|
GroupIdx = addToSectionTable(Group);
|
2015-05-21 20:43:13 +00:00
|
|
|
Group->setAlignment(4);
|
|
|
|
Groups.push_back(Group);
|
2015-04-30 14:21:49 +00:00
|
|
|
}
|
2015-06-05 17:54:25 +00:00
|
|
|
std::vector<const MCSectionELF *> &Members =
|
|
|
|
GroupMembers[SignatureSymbol];
|
|
|
|
Members.push_back(&Section);
|
2015-04-30 14:21:49 +00:00
|
|
|
if (RelSection)
|
2015-06-05 17:54:25 +00:00
|
|
|
Members.push_back(RelSection);
|
2015-04-30 14:21:49 +00:00
|
|
|
}
|
|
|
|
|
2015-04-30 20:53:27 +00:00
|
|
|
SectionIndexMap[&Section] = addToSectionTable(&Section);
|
2015-05-21 20:43:13 +00:00
|
|
|
if (RelSection) {
|
2015-04-30 20:53:27 +00:00
|
|
|
SectionIndexMap[RelSection] = addToSectionTable(RelSection);
|
2015-05-21 20:43:13 +00:00
|
|
|
Relocations.push_back(RelSection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (MCSectionELF *Group : Groups) {
|
2015-06-05 18:21:00 +00:00
|
|
|
align(Group->getAlignment());
|
2015-05-21 20:43:13 +00:00
|
|
|
|
|
|
|
// Remember the offset into the file for this section.
|
|
|
|
uint64_t SecStart = OS.tell();
|
|
|
|
|
|
|
|
const MCSymbol *SignatureSymbol = Group->getGroup();
|
|
|
|
assert(SignatureSymbol);
|
|
|
|
write(uint32_t(ELF::GRP_COMDAT));
|
|
|
|
for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
|
|
|
|
uint32_t SecIndex = SectionIndexMap.lookup(Member);
|
|
|
|
write(SecIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SecEnd = OS.tell();
|
|
|
|
SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
|
2015-04-30 14:21:49 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 20:43:13 +00:00
|
|
|
// Compute symbol table information.
|
2015-05-28 17:54:01 +00:00
|
|
|
computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
|
2015-05-21 20:43:13 +00:00
|
|
|
|
|
|
|
for (MCSectionELF *RelSection : Relocations) {
|
2015-06-05 18:21:00 +00:00
|
|
|
align(RelSection->getAlignment());
|
2015-05-21 20:43:13 +00:00
|
|
|
|
|
|
|
// Remember the offset into the file for this section.
|
|
|
|
uint64_t SecStart = OS.tell();
|
|
|
|
|
|
|
|
writeRelocations(Asm, *RelSection->getAssociatedSection());
|
|
|
|
|
|
|
|
uint64_t SecEnd = OS.tell();
|
|
|
|
SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 20:34:31 +00:00
|
|
|
{
|
|
|
|
uint64_t SecStart = OS.tell();
|
2015-04-30 21:10:06 +00:00
|
|
|
const MCSectionELF *Sec = createStringTable(Ctx);
|
2015-04-29 20:34:31 +00:00
|
|
|
uint64_t SecEnd = OS.tell();
|
2015-04-30 14:21:49 +00:00
|
|
|
SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
|
2015-04-29 20:34:31 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 22:54:16 +00:00
|
|
|
uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
|
2015-06-05 18:21:00 +00:00
|
|
|
align(NaturalAlignment);
|
2010-09-06 16:11:52 +00:00
|
|
|
|
2015-04-14 22:54:16 +00:00
|
|
|
const unsigned SectionHeaderOffset = OS.tell();
|
|
|
|
|
2011-03-20 18:44:20 +00:00
|
|
|
// ... then the section header table ...
|
2015-06-04 20:55:49 +00:00
|
|
|
writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
|
2015-04-14 22:54:16 +00:00
|
|
|
|
2015-04-30 20:53:27 +00:00
|
|
|
uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
|
2015-04-30 14:03:12 +00:00
|
|
|
? (uint16_t)ELF::SHN_UNDEF
|
2015-04-30 20:53:27 +00:00
|
|
|
: SectionTable.size() + 1;
|
2015-04-29 20:39:37 +00:00
|
|
|
if (sys::IsLittleEndianHost != IsLittleEndian)
|
|
|
|
sys::swapByteOrder(NumSections);
|
|
|
|
unsigned NumSectionsOffset;
|
|
|
|
|
2015-04-14 22:54:16 +00:00
|
|
|
if (is64Bit()) {
|
|
|
|
uint64_t Val = SectionHeaderOffset;
|
|
|
|
if (sys::IsLittleEndianHost != IsLittleEndian)
|
|
|
|
sys::swapByteOrder(Val);
|
|
|
|
OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
|
|
|
|
offsetof(ELF::Elf64_Ehdr, e_shoff));
|
2015-04-29 20:39:37 +00:00
|
|
|
NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
|
2015-04-14 22:54:16 +00:00
|
|
|
} else {
|
|
|
|
uint32_t Val = SectionHeaderOffset;
|
|
|
|
if (sys::IsLittleEndianHost != IsLittleEndian)
|
|
|
|
sys::swapByteOrder(Val);
|
|
|
|
OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
|
|
|
|
offsetof(ELF::Elf32_Ehdr, e_shoff));
|
2015-04-29 20:39:37 +00:00
|
|
|
NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
|
2015-04-14 22:54:16 +00:00
|
|
|
}
|
2015-04-29 20:39:37 +00:00
|
|
|
OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
|
|
|
|
NumSectionsOffset);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 22:24:41 +00:00
|
|
|
bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
|
2015-06-02 20:38:46 +00:00
|
|
|
const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
|
2015-04-17 21:15:17 +00:00
|
|
|
bool InSet, bool IsPCRel) const {
|
2015-06-02 20:38:46 +00:00
|
|
|
const auto &SymA = cast<MCSymbolELF>(SA);
|
2015-04-17 21:15:17 +00:00
|
|
|
if (IsPCRel) {
|
|
|
|
assert(!InSet);
|
2015-05-29 18:47:23 +00:00
|
|
|
if (::isWeak(SymA))
|
2015-04-17 21:15:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-06-04 22:24:41 +00:00
|
|
|
return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
|
2015-04-17 21:15:17 +00:00
|
|
|
InSet, IsPCRel);
|
2011-03-03 07:24:36 +00:00
|
|
|
}
|
|
|
|
|
2015-06-02 20:38:46 +00:00
|
|
|
bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
|
|
|
|
const auto &Sym = cast<MCSymbolELF>(S);
|
2015-05-29 18:47:23 +00:00
|
|
|
if (::isWeak(Sym))
|
2015-04-17 20:05:17 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// It is invalid to replace a reference to a global in a comdat
|
|
|
|
// with a reference to a local since out of comdat references
|
|
|
|
// to a local are forbidden.
|
|
|
|
// We could try to return false for more cases, like the reference
|
|
|
|
// being in the same comdat or Sym being an alias to another global,
|
|
|
|
// but it is not clear if it is worth the effort.
|
2015-06-02 20:38:46 +00:00
|
|
|
if (Sym.getBinding() != ELF::STB_GLOBAL)
|
2015-04-20 12:44:06 +00:00
|
|
|
return false;
|
2015-04-17 20:05:17 +00:00
|
|
|
|
2015-04-20 12:44:06 +00:00
|
|
|
if (!Sym.isInSection())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const auto &Sec = cast<MCSectionELF>(Sym.getSection());
|
|
|
|
return Sec.getGroup();
|
2015-03-25 13:16:53 +00:00
|
|
|
}
|
|
|
|
|
2010-12-17 17:45:22 +00:00
|
|
|
MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
|
2015-04-14 22:14:34 +00:00
|
|
|
raw_pwrite_stream &OS,
|
2010-12-18 03:27:34 +00:00
|
|
|
bool IsLittleEndian) {
|
2011-12-22 03:24:43 +00:00
|
|
|
return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
|
2011-12-21 17:30:17 +00:00
|
|
|
}
|