2005-06-27 06:29:00 +00:00
|
|
|
//===-- ELFWriter.cpp - Target-independent ELF Writer code ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-06-27 06:29:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the target-independent ELF writer. This file writes out
|
|
|
|
// the ELF file in the following order:
|
|
|
|
//
|
|
|
|
// #1. ELF Header
|
2005-07-07 07:02:20 +00:00
|
|
|
// #2. '.text' section
|
|
|
|
// #3. '.data' section
|
|
|
|
// #4. '.bss' section (conceptual position in file)
|
2005-06-27 06:29:00 +00:00
|
|
|
// ...
|
|
|
|
// #X. '.shstrtab' section
|
|
|
|
// #Y. Section Table
|
|
|
|
//
|
|
|
|
// The entries in the section table are laid out as:
|
|
|
|
// #0. Null entry [required]
|
2005-07-07 07:02:20 +00:00
|
|
|
// #1. ".text" entry - the program code
|
|
|
|
// #2. ".data" entry - global variables with initializers. [ if needed ]
|
|
|
|
// #3. ".bss" entry - global variables without initializers. [ if needed ]
|
2005-06-27 06:29:00 +00:00
|
|
|
// ...
|
|
|
|
// #N. ".shstrtab" entry - String table for the section names.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-06-07 21:22:38 +00:00
|
|
|
#define DEBUG_TYPE "elfwriter"
|
2009-07-02 18:29:24 +00:00
|
|
|
#include "ELF.h"
|
2007-02-08 01:35:27 +00:00
|
|
|
#include "ELFWriter.h"
|
2009-06-03 17:47:27 +00:00
|
|
|
#include "ELFCodeEmitter.h"
|
2009-06-11 19:16:03 +00:00
|
|
|
#include "llvm/Constants.h"
|
2005-06-27 06:29:00 +00:00
|
|
|
#include "llvm/Module.h"
|
2007-02-08 01:35:27 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2009-01-04 20:19:20 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2009-06-14 07:53:21 +00:00
|
|
|
#include "llvm/CodeGen/BinaryObject.h"
|
2007-02-08 01:35:27 +00:00
|
|
|
#include "llvm/CodeGen/FileWriters.h"
|
2005-07-11 05:17:18 +00:00
|
|
|
#include "llvm/CodeGen/MachineCodeEmitter.h"
|
2009-07-06 05:09:34 +00:00
|
|
|
#include "llvm/CodeGen/ObjectCodeEmitter.h"
|
|
|
|
#include "llvm/CodeGen/MachineCodeEmitter.h"
|
2005-07-11 05:17:18 +00:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2009-07-02 18:29:24 +00:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2006-05-12 06:33:49 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-07-02 18:29:24 +00:00
|
|
|
#include "llvm/Target/TargetELFWriterInfo.h"
|
2009-07-28 03:13:23 +00:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2005-06-27 06:29:00 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2005-07-11 03:11:47 +00:00
|
|
|
#include "llvm/Support/Mangler.h"
|
2006-11-29 00:39:47 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2008-08-21 00:14:44 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-06-07 21:22:38 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 20:10:48 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-07-06 09:26:48 +00:00
|
|
|
|
2005-06-27 06:29:00 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char ELFWriter::ID = 0;
|
2009-07-06 09:26:48 +00:00
|
|
|
|
|
|
|
/// AddELFWriter - Add the ELF writer to the function pass manager
|
2009-07-06 05:09:34 +00:00
|
|
|
ObjectCodeEmitter *llvm::AddELFWriter(PassManagerBase &PM,
|
2009-07-06 09:26:48 +00:00
|
|
|
raw_ostream &O,
|
|
|
|
TargetMachine &TM) {
|
2007-02-08 01:35:27 +00:00
|
|
|
ELFWriter *EW = new ELFWriter(O, TM);
|
2008-03-11 22:29:46 +00:00
|
|
|
PM.add(EW);
|
2009-07-06 09:26:48 +00:00
|
|
|
return EW->getObjectCodeEmitter();
|
2007-02-08 01:35:27 +00:00
|
|
|
}
|
|
|
|
|
2005-07-11 06:34:30 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ELFWriter Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
2005-07-11 05:17:18 +00:00
|
|
|
|
2009-06-03 17:47:27 +00:00
|
|
|
ELFWriter::ELFWriter(raw_ostream &o, TargetMachine &tm)
|
2009-06-14 07:53:21 +00:00
|
|
|
: MachineFunctionPass(&ID), O(o), TM(tm),
|
|
|
|
is64Bit(TM.getTargetData()->getPointerSizeInBits() == 64),
|
|
|
|
isLittleEndian(TM.getTargetData()->isLittleEndian()),
|
|
|
|
ElfHdr(isLittleEndian, is64Bit) {
|
2005-07-11 05:17:18 +00:00
|
|
|
|
2009-06-11 19:16:03 +00:00
|
|
|
TAI = TM.getTargetAsmInfo();
|
2009-06-14 07:53:21 +00:00
|
|
|
TEW = TM.getELFWriterInfo();
|
2009-06-07 21:22:38 +00:00
|
|
|
|
2009-07-06 09:26:48 +00:00
|
|
|
// Create the object code emitter object for this target.
|
|
|
|
ElfCE = new ELFCodeEmitter(*this);
|
2009-06-14 07:53:21 +00:00
|
|
|
|
|
|
|
// Inital number of sections
|
2005-07-16 08:01:13 +00:00
|
|
|
NumSections = 0;
|
2005-07-11 05:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ELFWriter::~ELFWriter() {
|
2009-07-06 09:26:48 +00:00
|
|
|
delete ElfCE;
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// doInitialization - Emit the file header and all of the global variables for
|
|
|
|
// the module to the ELF file.
|
|
|
|
bool ELFWriter::doInitialization(Module &M) {
|
2005-07-11 03:11:47 +00:00
|
|
|
Mang = new Mangler(M);
|
|
|
|
|
2009-06-06 03:56:29 +00:00
|
|
|
// ELF Header
|
|
|
|
// ----------
|
|
|
|
// Fields e_shnum e_shstrndx are only known after all section have
|
|
|
|
// been emitted. They locations in the ouput buffer are recorded so
|
|
|
|
// to be patched up later.
|
|
|
|
//
|
|
|
|
// Note
|
|
|
|
// ----
|
2009-06-14 07:53:21 +00:00
|
|
|
// emitWord method behaves differently for ELF32 and ELF64, writing
|
2009-06-06 03:56:29 +00:00
|
|
|
// 4 bytes in the former and 8 in the last for *_off and *_addr elf types
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
ElfHdr.emitByte(0x7f); // e_ident[EI_MAG0]
|
|
|
|
ElfHdr.emitByte('E'); // e_ident[EI_MAG1]
|
|
|
|
ElfHdr.emitByte('L'); // e_ident[EI_MAG2]
|
|
|
|
ElfHdr.emitByte('F'); // e_ident[EI_MAG3]
|
|
|
|
|
|
|
|
ElfHdr.emitByte(TEW->getEIClass()); // e_ident[EI_CLASS]
|
|
|
|
ElfHdr.emitByte(TEW->getEIData()); // e_ident[EI_DATA]
|
|
|
|
ElfHdr.emitByte(EV_CURRENT); // e_ident[EI_VERSION]
|
|
|
|
ElfHdr.emitAlignment(16); // e_ident[EI_NIDENT-EI_PAD]
|
|
|
|
|
|
|
|
ElfHdr.emitWord16(ET_REL); // e_type
|
|
|
|
ElfHdr.emitWord16(TEW->getEMachine()); // e_machine = target
|
|
|
|
ElfHdr.emitWord32(EV_CURRENT); // e_version
|
|
|
|
ElfHdr.emitWord(0); // e_entry, no entry point in .o file
|
|
|
|
ElfHdr.emitWord(0); // e_phoff, no program header for .o
|
|
|
|
ELFHdr_e_shoff_Offset = ElfHdr.size();
|
|
|
|
ElfHdr.emitWord(0); // e_shoff = sec hdr table off in bytes
|
|
|
|
ElfHdr.emitWord32(TEW->getEFlags()); // e_flags = whatever the target wants
|
|
|
|
ElfHdr.emitWord16(TEW->getHdrSize()); // e_ehsize = ELF header size
|
|
|
|
ElfHdr.emitWord16(0); // e_phentsize = prog header entry size
|
|
|
|
ElfHdr.emitWord16(0); // e_phnum = # prog header entries = 0
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2009-06-07 21:22:38 +00:00
|
|
|
// e_shentsize = Section header entry size
|
2009-06-14 07:53:21 +00:00
|
|
|
ElfHdr.emitWord16(TEW->getSHdrSize());
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2009-06-06 03:56:29 +00:00
|
|
|
// e_shnum = # of section header ents
|
2009-06-14 07:53:21 +00:00
|
|
|
ELFHdr_e_shnum_Offset = ElfHdr.size();
|
|
|
|
ElfHdr.emitWord16(0); // Placeholder
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2009-06-06 03:56:29 +00:00
|
|
|
// e_shstrndx = Section # of '.shstrtab'
|
2009-06-14 07:53:21 +00:00
|
|
|
ELFHdr_e_shstrndx_Offset = ElfHdr.size();
|
|
|
|
ElfHdr.emitWord16(0); // Placeholder
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Add the null section, which is required to be first in the file.
|
2009-06-22 19:16:16 +00:00
|
|
|
getNullSection();
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2009-07-28 19:25:33 +00:00
|
|
|
// The first entry in the symtab is the null symbol and the second
|
|
|
|
// is a local symbol containing the module/file name
|
|
|
|
SymbolList.push_back(new ELFSym());
|
|
|
|
SymbolList.push_back(ELFSym::getFileSym());
|
|
|
|
|
2005-06-27 06:29:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-27 18:54:47 +00:00
|
|
|
// addGlobalSymbol - Add a global to be processed and to the
|
|
|
|
// global symbol lookup, use a zero index for non private symbols
|
|
|
|
// because the table index will be determined later.
|
|
|
|
void ELFWriter::addGlobalSymbol(const GlobalValue *GV) {
|
|
|
|
PendingGlobals.insert(GV);
|
|
|
|
}
|
|
|
|
|
|
|
|
// addExternalSymbol - Add the external to be processed and to the
|
|
|
|
// external symbol lookup, use a zero index because the symbol
|
|
|
|
// table index will be determined later
|
|
|
|
void ELFWriter::addExternalSymbol(const char *External) {
|
|
|
|
PendingExternals.insert(External);
|
|
|
|
ExtSymLookup[External] = 0;
|
|
|
|
}
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// Get jump table section on the section name returned by TAI
|
2009-07-18 23:24:01 +00:00
|
|
|
ELFSection &ELFWriter::getJumpTableSection() {
|
|
|
|
unsigned Align = TM.getTargetData()->getPointerABIAlignment();
|
|
|
|
return getSection(TAI->getJumpTableDataSection(),
|
|
|
|
ELFSection::SHT_PROGBITS,
|
|
|
|
ELFSection::SHF_ALLOC, Align);
|
|
|
|
}
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// Get a constant pool section based on the section name returned by TAI
|
2009-07-18 23:24:01 +00:00
|
|
|
ELFSection &ELFWriter::getConstantPoolSection(MachineConstantPoolEntry &CPE) {
|
2009-07-26 06:26:55 +00:00
|
|
|
SectionKind Kind;
|
|
|
|
switch (CPE.getRelocationInfo()) {
|
|
|
|
default: llvm_unreachable("Unknown section kind");
|
2009-07-26 07:00:12 +00:00
|
|
|
case 2: Kind = SectionKind::get(SectionKind::ReadOnlyWithRel,false); break;
|
|
|
|
case 1:
|
|
|
|
Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal,false);
|
|
|
|
break;
|
2009-07-26 06:26:55 +00:00
|
|
|
case 0:
|
|
|
|
switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
|
2009-07-26 07:00:12 +00:00
|
|
|
case 4: Kind = SectionKind::get(SectionKind::MergeableConst4,false); break;
|
|
|
|
case 8: Kind = SectionKind::get(SectionKind::MergeableConst8,false); break;
|
|
|
|
case 16: Kind = SectionKind::get(SectionKind::MergeableConst16,false);break;
|
|
|
|
default: Kind = SectionKind::get(SectionKind::MergeableConst,false); break;
|
2009-07-26 06:26:55 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-27 18:54:47 +00:00
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
const TargetLoweringObjectFile &TLOF =
|
|
|
|
TM.getTargetLowering()->getObjFileLowering();
|
2009-07-28 19:25:33 +00:00
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
return getSection(TLOF.getSectionForMergeableConstant(Kind)->getName(),
|
2009-07-18 23:24:01 +00:00
|
|
|
ELFSection::SHT_PROGBITS,
|
|
|
|
ELFSection::SHF_MERGE | ELFSection::SHF_ALLOC,
|
|
|
|
CPE.getAlignment());
|
|
|
|
}
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// Return the relocation section of section 'S'. 'RelA' is true
|
|
|
|
// if the relocation section contains entries with addends.
|
|
|
|
ELFSection &ELFWriter::getRelocSection(ELFSection &S) {
|
|
|
|
unsigned SectionHeaderTy = TEW->hasRelocationAddend() ?
|
|
|
|
ELFSection::SHT_RELA : ELFSection::SHT_REL;
|
|
|
|
std::string RelSName(".rel");
|
|
|
|
if (TEW->hasRelocationAddend())
|
|
|
|
RelSName.append("a");
|
|
|
|
RelSName.append(S.getName());
|
|
|
|
|
|
|
|
return getSection(RelSName, SectionHeaderTy, 0, TEW->getPrefELFAlignment());
|
|
|
|
}
|
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// getGlobalELFVisibility - Returns the ELF specific visibility type
|
2009-07-02 18:29:24 +00:00
|
|
|
unsigned ELFWriter::getGlobalELFVisibility(const GlobalValue *GV) {
|
|
|
|
switch (GV->getVisibility()) {
|
|
|
|
default:
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("unknown visibility type");
|
2009-07-02 18:29:24 +00:00
|
|
|
case GlobalValue::DefaultVisibility:
|
|
|
|
return ELFSym::STV_DEFAULT;
|
|
|
|
case GlobalValue::HiddenVisibility:
|
|
|
|
return ELFSym::STV_HIDDEN;
|
|
|
|
case GlobalValue::ProtectedVisibility:
|
|
|
|
return ELFSym::STV_PROTECTED;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// getGlobalELFBinding - Returns the ELF specific binding type
|
|
|
|
unsigned ELFWriter::getGlobalELFBinding(const GlobalValue *GV) {
|
2009-06-22 19:16:16 +00:00
|
|
|
if (GV->hasInternalLinkage())
|
|
|
|
return ELFSym::STB_LOCAL;
|
2009-06-11 19:16:03 +00:00
|
|
|
|
2009-06-22 19:16:16 +00:00
|
|
|
if (GV->hasWeakLinkage())
|
|
|
|
return ELFSym::STB_WEAK;
|
2009-06-11 19:16:03 +00:00
|
|
|
|
2009-06-22 19:16:16 +00:00
|
|
|
return ELFSym::STB_GLOBAL;
|
|
|
|
}
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// getGlobalELFType - Returns the ELF specific type for a global
|
|
|
|
unsigned ELFWriter::getGlobalELFType(const GlobalValue *GV) {
|
|
|
|
if (GV->isDeclaration())
|
|
|
|
return ELFSym::STT_NOTYPE;
|
|
|
|
|
|
|
|
if (isa<Function>(GV))
|
|
|
|
return ELFSym::STT_FUNC;
|
|
|
|
|
|
|
|
return ELFSym::STT_OBJECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// getElfSectionFlags - Get the ELF Section Header flags based
|
|
|
|
// on the flags defined in ELFTargetAsmInfo.
|
2009-07-27 05:32:16 +00:00
|
|
|
unsigned ELFWriter::getElfSectionFlags(SectionKind Kind) {
|
2009-07-03 04:36:26 +00:00
|
|
|
unsigned ElfSectionFlags = ELFSection::SHF_ALLOC;
|
|
|
|
|
2009-07-27 05:32:16 +00:00
|
|
|
if (Kind.isText())
|
2009-07-03 04:36:26 +00:00
|
|
|
ElfSectionFlags |= ELFSection::SHF_EXECINSTR;
|
2009-07-27 05:32:16 +00:00
|
|
|
if (Kind.isWriteable())
|
2009-07-03 04:36:26 +00:00
|
|
|
ElfSectionFlags |= ELFSection::SHF_WRITE;
|
2009-07-27 05:32:16 +00:00
|
|
|
if (Kind.isMergeableConst())
|
2009-07-03 04:36:26 +00:00
|
|
|
ElfSectionFlags |= ELFSection::SHF_MERGE;
|
2009-07-27 05:32:16 +00:00
|
|
|
if (Kind.isThreadLocal())
|
2009-07-03 04:36:26 +00:00
|
|
|
ElfSectionFlags |= ELFSection::SHF_TLS;
|
2009-07-27 05:32:16 +00:00
|
|
|
if (Kind.isMergeableCString())
|
2009-07-03 04:36:26 +00:00
|
|
|
ElfSectionFlags |= ELFSection::SHF_STRINGS;
|
|
|
|
|
|
|
|
return ElfSectionFlags;
|
|
|
|
}
|
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// isELFUndefSym - the symbol has no section and must be placed in
|
|
|
|
// the symbol table with a reference to the null section.
|
|
|
|
static bool isELFUndefSym(const GlobalValue *GV) {
|
|
|
|
return GV->isDeclaration();
|
|
|
|
}
|
2009-07-03 04:36:26 +00:00
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// isELFBssSym - for an undef or null value, the symbol must go to a bss
|
|
|
|
// section if it's not weak for linker, otherwise it's a common sym.
|
2009-07-21 06:51:32 +00:00
|
|
|
static bool isELFBssSym(const GlobalVariable *GV) {
|
|
|
|
const Constant *CV = GV->getInitializer();
|
|
|
|
return ((CV->isNullValue() || isa<UndefValue>(CV)) && !GV->isWeakForLinker());
|
2009-07-13 22:40:39 +00:00
|
|
|
}
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// isELFCommonSym - for an undef or null value, the symbol must go to a
|
|
|
|
// common section if it's weak for linker, otherwise bss.
|
2009-07-21 06:51:32 +00:00
|
|
|
static bool isELFCommonSym(const GlobalVariable *GV) {
|
|
|
|
const Constant *CV = GV->getInitializer();
|
|
|
|
return ((CV->isNullValue() || isa<UndefValue>(CV)) && GV->isWeakForLinker());
|
2009-06-22 19:16:16 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// isELFDataSym - if the symbol is an initialized but no null constant
|
|
|
|
// it must go to some kind of data section gathered from TAI
|
2009-07-21 06:51:32 +00:00
|
|
|
static bool isELFDataSym(const Constant *CV) {
|
|
|
|
return (!(CV->isNullValue() || isa<UndefValue>(CV)));
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// EmitGlobal - Choose the right section for global and emit it
|
|
|
|
void ELFWriter::EmitGlobal(const GlobalValue *GV) {
|
|
|
|
|
2009-07-21 06:51:32 +00:00
|
|
|
// Check if the referenced symbol is already emitted
|
|
|
|
if (GblSymLookup.find(GV) != GblSymLookup.end())
|
|
|
|
return;
|
|
|
|
|
2009-07-27 18:54:47 +00:00
|
|
|
// If the global is a function already emited in the text section
|
|
|
|
// just add it to the global symbol lookup with a zero index to be
|
|
|
|
// patched up later.
|
|
|
|
if (isa<Function>(GV) && !GV->isDeclaration()) {
|
|
|
|
GblSymLookup[GV] = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-13 22:40:39 +00:00
|
|
|
// Handle ELF Bind, Visibility and Type for the current symbol
|
|
|
|
unsigned SymBind = getGlobalELFBinding(GV);
|
2009-07-27 18:54:47 +00:00
|
|
|
ELFSym *GblSym = ELFSym::getGV(GV, SymBind, getGlobalELFType(GV),
|
|
|
|
getGlobalELFVisibility(GV));
|
2009-07-13 22:40:39 +00:00
|
|
|
|
|
|
|
if (isELFUndefSym(GV)) {
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->SectionIdx = ELFSection::SHN_UNDEF;
|
2009-07-13 22:40:39 +00:00
|
|
|
} else {
|
|
|
|
assert(isa<GlobalVariable>(GV) && "GV not a global variable!");
|
|
|
|
const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
const TargetLoweringObjectFile &TLOF =
|
|
|
|
TM.getTargetLowering()->getObjFileLowering();
|
|
|
|
|
2009-07-28 19:25:33 +00:00
|
|
|
// Get the ELF section where this global belongs from TLOF
|
2009-07-29 05:09:30 +00:00
|
|
|
const Section *S = TLOF.SectionForGlobal(GV, Mang, TM);
|
2009-07-27 05:32:16 +00:00
|
|
|
unsigned SectionFlags = getElfSectionFlags(S->getKind());
|
2009-07-13 22:40:39 +00:00
|
|
|
|
|
|
|
// The symbol align should update the section alignment if needed
|
2009-06-23 04:39:27 +00:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
2009-07-13 22:40:39 +00:00
|
|
|
unsigned Align = TD->getPreferredAlignment(GVar);
|
|
|
|
unsigned Size = TD->getTypeAllocSize(GVar->getInitializer()->getType());
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->Size = Size;
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-07-21 06:51:32 +00:00
|
|
|
if (isELFCommonSym(GVar)) {
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->SectionIdx = ELFSection::SHN_COMMON;
|
2009-07-13 22:40:39 +00:00
|
|
|
getSection(S->getName(), ELFSection::SHT_NOBITS, SectionFlags, 1);
|
|
|
|
|
|
|
|
// A new linkonce section is created for each global in the
|
|
|
|
// common section, the default alignment is 1 and the symbol
|
|
|
|
// value contains its alignment.
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->Value = Align;
|
2009-07-13 22:40:39 +00:00
|
|
|
|
2009-07-21 06:51:32 +00:00
|
|
|
} else if (isELFBssSym(GVar)) {
|
2009-07-13 22:40:39 +00:00
|
|
|
ELFSection &ES =
|
|
|
|
getSection(S->getName(), ELFSection::SHT_NOBITS, SectionFlags);
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->SectionIdx = ES.SectionIdx;
|
2009-07-13 22:40:39 +00:00
|
|
|
|
|
|
|
// Update the size with alignment and the next object can
|
|
|
|
// start in the right offset in the section
|
|
|
|
if (Align) ES.Size = (ES.Size + Align-1) & ~(Align-1);
|
|
|
|
ES.Align = std::max(ES.Align, Align);
|
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// GblSym->Value should contain the virtual offset inside the section.
|
2009-07-13 22:40:39 +00:00
|
|
|
// Virtual because the BSS space is not allocated on ELF objects
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->Value = ES.Size;
|
2009-07-13 22:40:39 +00:00
|
|
|
ES.Size += Size;
|
|
|
|
|
|
|
|
} else if (isELFDataSym(GV)) {
|
|
|
|
ELFSection &ES =
|
|
|
|
getSection(S->getName(), ELFSection::SHT_PROGBITS, SectionFlags);
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->SectionIdx = ES.SectionIdx;
|
2009-07-13 22:40:39 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// GblSym->Value should contain the symbol offset inside the section,
|
2009-07-13 22:40:39 +00:00
|
|
|
// and all symbols should start on their required alignment boundary
|
|
|
|
ES.Align = std::max(ES.Align, Align);
|
2009-07-15 20:49:10 +00:00
|
|
|
GblSym->Value = (ES.size() + (Align-1)) & (-Align);
|
2009-07-13 22:40:39 +00:00
|
|
|
ES.emitAlignment(ES.Align);
|
|
|
|
|
|
|
|
// Emit the global to the data section 'ES'
|
|
|
|
EmitGlobalConstant(GVar->getInitializer(), ES);
|
|
|
|
}
|
2009-06-22 19:16:16 +00:00
|
|
|
}
|
|
|
|
|
2009-07-18 19:30:09 +00:00
|
|
|
if (GV->hasPrivateLinkage()) {
|
2009-07-27 18:54:47 +00:00
|
|
|
// For a private symbols, keep track of the index inside the
|
|
|
|
// private list since it will never go to the symbol table and
|
|
|
|
// won't be patched up later.
|
2009-07-18 19:30:09 +00:00
|
|
|
PrivateSyms.push_back(GblSym);
|
2009-07-27 18:54:47 +00:00
|
|
|
GblSymLookup[GV] = PrivateSyms.size()-1;
|
2009-07-18 19:30:09 +00:00
|
|
|
} else {
|
2009-07-27 18:54:47 +00:00
|
|
|
// Non private symbol are left with zero indices until they are patched
|
|
|
|
// up during the symbol table emition (where the indicies are created).
|
2009-07-15 20:49:10 +00:00
|
|
|
SymbolList.push_back(GblSym);
|
2009-07-27 18:54:47 +00:00
|
|
|
GblSymLookup[GV] = 0;
|
2009-07-18 19:30:09 +00:00
|
|
|
}
|
2009-06-22 19:16:16 +00:00
|
|
|
}
|
|
|
|
|
2009-06-11 19:16:03 +00:00
|
|
|
void ELFWriter::EmitGlobalConstantStruct(const ConstantStruct *CVS,
|
2009-06-14 07:53:21 +00:00
|
|
|
ELFSection &GblS) {
|
2009-06-11 19:16:03 +00:00
|
|
|
|
|
|
|
// Print the fields in successive locations. Pad to align if needed!
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
unsigned Size = TD->getTypeAllocSize(CVS->getType());
|
|
|
|
const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
|
|
|
|
uint64_t sizeSoFar = 0;
|
|
|
|
for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
|
|
|
|
const Constant* field = CVS->getOperand(i);
|
|
|
|
|
|
|
|
// Check if padding is needed and insert one or more 0s.
|
|
|
|
uint64_t fieldSize = TD->getTypeAllocSize(field->getType());
|
|
|
|
uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1))
|
|
|
|
- cvsLayout->getElementOffset(i)) - fieldSize;
|
|
|
|
sizeSoFar += fieldSize + padSize;
|
|
|
|
|
|
|
|
// Now print the actual field value.
|
2009-06-14 07:53:21 +00:00
|
|
|
EmitGlobalConstant(field, GblS);
|
2009-06-11 19:16:03 +00:00
|
|
|
|
|
|
|
// Insert padding - this may include padding to increase the size of the
|
|
|
|
// current field up to the ABI size (if the struct is not packed) as well
|
|
|
|
// as padding to ensure that the next field starts at the right offset.
|
|
|
|
for (unsigned p=0; p < padSize; p++)
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitByte(0);
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
|
|
|
assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
|
|
|
|
"Layout of constant struct may be incorrect!");
|
|
|
|
}
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
void ELFWriter::EmitGlobalConstant(const Constant *CV, ELFSection &GblS) {
|
2009-06-11 19:16:03 +00:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
unsigned Size = TD->getTypeAllocSize(CV->getType());
|
|
|
|
|
|
|
|
if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
|
|
|
|
if (CVA->isString()) {
|
|
|
|
std::string GblStr = CVA->getAsString();
|
2009-06-22 19:16:16 +00:00
|
|
|
GblStr.resize(GblStr.size()-1);
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitString(GblStr);
|
2009-06-11 19:16:03 +00:00
|
|
|
} else { // Not a string. Print the values in successive locations
|
|
|
|
for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
|
2009-06-14 07:53:21 +00:00
|
|
|
EmitGlobalConstant(CVA->getOperand(i), GblS);
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
|
2009-06-14 07:53:21 +00:00
|
|
|
EmitGlobalConstantStruct(CVS, GblS);
|
2009-06-11 19:16:03 +00:00
|
|
|
return;
|
|
|
|
} else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
|
|
|
|
uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
|
|
|
|
if (CFP->getType() == Type::DoubleTy)
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitWord64(Val);
|
2009-06-11 19:16:03 +00:00
|
|
|
else if (CFP->getType() == Type::FloatTy)
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitWord32(Val);
|
2009-06-11 19:16:03 +00:00
|
|
|
else if (CFP->getType() == Type::X86_FP80Ty) {
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("X86_FP80Ty global emission not implemented");
|
2009-06-11 19:16:03 +00:00
|
|
|
} else if (CFP->getType() == Type::PPC_FP128Ty)
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("PPC_FP128Ty global emission not implemented");
|
2009-06-11 19:16:03 +00:00
|
|
|
return;
|
|
|
|
} else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
|
|
|
|
if (Size == 4)
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitWord32(CI->getZExtValue());
|
2009-06-11 19:16:03 +00:00
|
|
|
else if (Size == 8)
|
2009-06-14 07:53:21 +00:00
|
|
|
GblS.emitWord64(CI->getZExtValue());
|
2009-06-11 19:16:03 +00:00
|
|
|
else
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("LargeInt global emission not implemented");
|
2009-06-11 19:16:03 +00:00
|
|
|
return;
|
|
|
|
} else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
|
|
|
|
const VectorType *PTy = CP->getType();
|
|
|
|
for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
|
2009-06-14 07:53:21 +00:00
|
|
|
EmitGlobalConstant(CP->getOperand(I), GblS);
|
2009-06-11 19:16:03 +00:00
|
|
|
return;
|
2009-07-21 06:51:32 +00:00
|
|
|
} else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
|
|
|
|
// This is a constant address for a global variable or function and
|
|
|
|
// therefore must be referenced using a relocation entry.
|
|
|
|
|
|
|
|
// Check if the referenced symbol is already emitted
|
|
|
|
if (GblSymLookup.find(GV) == GblSymLookup.end())
|
|
|
|
EmitGlobal(GV);
|
|
|
|
|
|
|
|
// Create the relocation entry for the global value
|
|
|
|
MachineRelocation MR =
|
|
|
|
MachineRelocation::getGV(GblS.getCurrentPCOffset(),
|
|
|
|
TEW->getAbsoluteLabelMachineRelTy(),
|
|
|
|
const_cast<GlobalValue*>(GV));
|
|
|
|
|
|
|
|
// Fill the data entry with zeros
|
|
|
|
for (unsigned i=0; i < Size; ++i)
|
|
|
|
GblS.emitByte(0);
|
|
|
|
|
|
|
|
// Add the relocation entry for the current data section
|
|
|
|
GblS.addRelocation(MR);
|
|
|
|
return;
|
|
|
|
} else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
|
|
|
|
if (CE->getOpcode() == Instruction::BitCast) {
|
|
|
|
EmitGlobalConstant(CE->getOperand(0), GblS);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// See AsmPrinter::EmitConstantValueOnly for other ConstantExpr types
|
|
|
|
llvm_unreachable("Unsupported ConstantExpr type");
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
2009-07-21 06:51:32 +00:00
|
|
|
|
|
|
|
llvm_unreachable("Unknown global constant type");
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ELFWriter::runOnMachineFunction(MachineFunction &MF) {
|
2009-07-06 09:26:48 +00:00
|
|
|
// Nothing to do here, this is all done through the ElfCE object above.
|
2005-06-27 06:29:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// doFinalization - Now that the module has been completely processed, emit
|
|
|
|
/// the ELF file to 'O'.
|
|
|
|
bool ELFWriter::doFinalization(Module &M) {
|
2009-06-14 07:53:21 +00:00
|
|
|
// Emit .data section placeholder
|
2009-06-11 19:16:03 +00:00
|
|
|
getDataSection();
|
2009-06-14 07:53:21 +00:00
|
|
|
|
|
|
|
// Emit .bss section placeholder
|
2009-06-11 19:16:03 +00:00
|
|
|
getBSSSection();
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
// Build and emit data, bss and "common" sections.
|
2005-07-16 08:01:13 +00:00
|
|
|
for (Module::global_iterator I = M.global_begin(), E = M.global_end();
|
2009-07-21 06:51:32 +00:00
|
|
|
I != E; ++I)
|
2009-07-13 22:40:39 +00:00
|
|
|
EmitGlobal(I);
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// Emit all pending globals
|
2009-07-27 18:54:47 +00:00
|
|
|
for (PendingGblsIter I = PendingGlobals.begin(), E = PendingGlobals.end();
|
|
|
|
I != E; ++I)
|
2009-07-13 22:40:39 +00:00
|
|
|
EmitGlobal(*I);
|
2005-07-07 07:02:20 +00:00
|
|
|
|
2009-07-27 18:54:47 +00:00
|
|
|
// Emit all pending externals
|
|
|
|
for (PendingExtsIter I = PendingExternals.begin(), E = PendingExternals.end();
|
|
|
|
I != E; ++I)
|
|
|
|
SymbolList.push_back(ELFSym::getExtSym(*I));
|
|
|
|
|
2009-06-11 19:16:03 +00:00
|
|
|
// Emit non-executable stack note
|
|
|
|
if (TAI->getNonexecutableStackDirective())
|
2009-06-14 07:53:21 +00:00
|
|
|
getNonExecStackSection();
|
2009-06-11 19:16:03 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// Emit a symbol for each section created until now, skip null section
|
|
|
|
for (unsigned i = 1, e = SectionList.size(); i < e; ++i) {
|
|
|
|
ELFSection &ES = *SectionList[i];
|
2009-07-27 18:54:47 +00:00
|
|
|
ELFSym *SectionSym = ELFSym::getSectionSym();
|
2009-07-15 20:49:10 +00:00
|
|
|
SectionSym->SectionIdx = ES.SectionIdx;
|
|
|
|
SymbolList.push_back(SectionSym);
|
|
|
|
ES.Sym = SymbolList.back();
|
2009-06-25 07:36:24 +00:00
|
|
|
}
|
|
|
|
|
2009-06-22 19:29:56 +00:00
|
|
|
// Emit string table
|
2009-07-27 19:32:57 +00:00
|
|
|
EmitStringTable(M.getModuleIdentifier());
|
2009-06-22 19:29:56 +00:00
|
|
|
|
2005-07-07 07:02:20 +00:00
|
|
|
// Emit the symbol table now, if non-empty.
|
|
|
|
EmitSymbolTable();
|
|
|
|
|
2009-06-07 21:22:38 +00:00
|
|
|
// Emit the relocation sections.
|
|
|
|
EmitRelocations();
|
2005-07-07 07:02:20 +00:00
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
// Emit the sections string table.
|
2005-06-27 06:29:00 +00:00
|
|
|
EmitSectionTableStringTable();
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
// Dump the sections and section table to the .o file.
|
2005-07-16 08:01:13 +00:00
|
|
|
OutputSectionsAndSectionTable();
|
2005-06-27 06:29:00 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// We are done with the abstract symbols.
|
2009-07-15 20:49:10 +00:00
|
|
|
SymbolList.clear();
|
2005-07-16 08:01:13 +00:00
|
|
|
SectionList.clear();
|
|
|
|
NumSections = 0;
|
2005-07-11 03:11:47 +00:00
|
|
|
|
|
|
|
// Release the name mangler object.
|
|
|
|
delete Mang; Mang = 0;
|
2005-06-27 06:29:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// RelocateField - Patch relocatable field with 'Offset' in 'BO'
|
|
|
|
// using a 'Value' of known 'Size'
|
|
|
|
void ELFWriter::RelocateField(BinaryObject &BO, uint32_t Offset,
|
|
|
|
int64_t Value, unsigned Size) {
|
|
|
|
if (Size == 32)
|
|
|
|
BO.fixWord32(Value, Offset);
|
|
|
|
else if (Size == 64)
|
|
|
|
BO.fixWord64(Value, Offset);
|
|
|
|
else
|
|
|
|
llvm_unreachable("don't know howto patch relocatable field");
|
|
|
|
}
|
|
|
|
|
2009-06-07 21:22:38 +00:00
|
|
|
/// EmitRelocations - Emit relocations
|
|
|
|
void ELFWriter::EmitRelocations() {
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// True if the target uses the relocation entry to hold the addend,
|
|
|
|
// otherwise the addend is written directly to the relocatable field.
|
|
|
|
bool HasRelA = TEW->hasRelocationAddend();
|
|
|
|
|
2009-06-22 19:16:16 +00:00
|
|
|
// Create Relocation sections for each section which needs it.
|
2009-07-17 18:02:30 +00:00
|
|
|
for (unsigned i=0, e=SectionList.size(); i != e; ++i) {
|
|
|
|
ELFSection &S = *SectionList[i];
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// This section does not have relocations
|
2009-07-15 20:49:10 +00:00
|
|
|
if (!S.hasRelocations()) continue;
|
2009-07-20 08:52:02 +00:00
|
|
|
ELFSection &RelSec = getRelocSection(S);
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// 'Link' - Section hdr idx of the associated symbol table
|
|
|
|
// 'Info' - Section hdr idx of the section to which the relocation applies
|
|
|
|
ELFSection &SymTab = getSymbolTableSection();
|
|
|
|
RelSec.Link = SymTab.SectionIdx;
|
2009-07-15 20:49:10 +00:00
|
|
|
RelSec.Info = S.SectionIdx;
|
2009-06-22 19:16:16 +00:00
|
|
|
RelSec.EntSize = TEW->getRelocationEntrySize();
|
|
|
|
|
|
|
|
// Get the relocations from Section
|
2009-07-15 20:49:10 +00:00
|
|
|
std::vector<MachineRelocation> Relos = S.getRelocations();
|
2009-06-22 19:16:16 +00:00
|
|
|
for (std::vector<MachineRelocation>::iterator MRI = Relos.begin(),
|
|
|
|
MRE = Relos.end(); MRI != MRE; ++MRI) {
|
|
|
|
MachineRelocation &MR = *MRI;
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// Relocatable field offset from the section start
|
|
|
|
unsigned RelOffset = MR.getMachineCodeOffset();
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// Symbol index in the symbol table
|
|
|
|
unsigned SymIdx = 0;
|
|
|
|
|
2009-07-20 08:52:02 +00:00
|
|
|
// Target specific relocation field type and size
|
2009-06-22 19:16:16 +00:00
|
|
|
unsigned RelType = TEW->getRelocationType(MR.getRelocationType());
|
2009-07-20 08:52:02 +00:00
|
|
|
unsigned RelTySize = TEW->getRelocationTySize(RelType);
|
2009-06-25 07:36:24 +00:00
|
|
|
int64_t Addend = 0;
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// There are several machine relocations types, and each one of
|
|
|
|
// them needs a different approach to retrieve the symbol table index.
|
|
|
|
if (MR.isGlobalValue()) {
|
|
|
|
const GlobalValue *G = MR.getGlobalValue();
|
|
|
|
SymIdx = GblSymLookup[G];
|
2009-07-18 19:30:09 +00:00
|
|
|
if (G->hasPrivateLinkage()) {
|
|
|
|
// If the target uses a section offset in the relocation:
|
|
|
|
// SymIdx + Addend = section sym for global + section offset
|
|
|
|
unsigned SectionIdx = PrivateSyms[SymIdx]->SectionIdx;
|
|
|
|
Addend = PrivateSyms[SymIdx]->Value;
|
|
|
|
SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
|
|
|
|
} else {
|
|
|
|
Addend = TEW->getDefaultAddendForRelTy(RelType);
|
|
|
|
}
|
2009-07-27 18:54:47 +00:00
|
|
|
} else if (MR.isExternalSymbol()) {
|
|
|
|
const char *ExtSym = MR.getExternalSymbol();
|
|
|
|
SymIdx = ExtSymLookup[ExtSym];
|
|
|
|
Addend = TEW->getDefaultAddendForRelTy(RelType);
|
2009-06-22 19:16:16 +00:00
|
|
|
} else {
|
2009-07-18 23:24:01 +00:00
|
|
|
// Get the symbol index for the section symbol
|
2009-06-25 07:36:24 +00:00
|
|
|
unsigned SectionIdx = MR.getConstantVal();
|
2009-07-20 08:52:02 +00:00
|
|
|
SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
|
|
|
|
Addend = (uint64_t)MR.getResultPointer();
|
|
|
|
|
|
|
|
// For pc relative relocations where symbols are defined in the same
|
|
|
|
// section they are referenced, ignore the relocation entry and patch
|
|
|
|
// the relocatable field with the symbol offset directly.
|
|
|
|
if (S.SectionIdx == SectionIdx && TEW->isPCRelativeRel(RelType)) {
|
|
|
|
int64_t Value = TEW->computeRelocation(Addend, RelOffset, RelType);
|
|
|
|
RelocateField(S, RelOffset, Value, RelTySize);
|
|
|
|
continue;
|
|
|
|
}
|
2009-07-18 23:24:01 +00:00
|
|
|
|
|
|
|
// Handle Jump Table Index relocation
|
|
|
|
if ((SectionIdx == getJumpTableSection().SectionIdx) &&
|
2009-07-20 08:52:02 +00:00
|
|
|
TEW->hasCustomJumpTableIndexRelTy()) {
|
2009-07-18 23:24:01 +00:00
|
|
|
RelType = TEW->getJumpTableIndexRelTy();
|
2009-07-20 08:52:02 +00:00
|
|
|
RelTySize = TEW->getRelocationTySize(RelType);
|
|
|
|
}
|
2009-06-22 19:16:16 +00:00
|
|
|
}
|
|
|
|
|
2009-07-18 19:30:09 +00:00
|
|
|
// The target without addend on the relocation symbol must be
|
|
|
|
// patched in the relocation place itself to contain the addend
|
2009-07-20 08:52:02 +00:00
|
|
|
if (!HasRelA)
|
|
|
|
RelocateField(S, RelOffset, Addend, RelTySize);
|
2009-07-18 19:30:09 +00:00
|
|
|
|
2009-06-22 19:16:16 +00:00
|
|
|
// Get the relocation entry and emit to the relocation section
|
2009-07-20 08:52:02 +00:00
|
|
|
ELFRelocation Rel(RelOffset, SymIdx, RelType, HasRelA, Addend);
|
2009-06-22 19:16:16 +00:00
|
|
|
EmitRelocation(RelSec, Rel, HasRelA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitRelocation - Write relocation 'Rel' to the relocation section 'Rel'
|
|
|
|
void ELFWriter::EmitRelocation(BinaryObject &RelSec, ELFRelocation &Rel,
|
|
|
|
bool HasRelA) {
|
|
|
|
RelSec.emitWord(Rel.getOffset());
|
|
|
|
RelSec.emitWord(Rel.getInfo(is64Bit));
|
|
|
|
if (HasRelA)
|
|
|
|
RelSec.emitWord(Rel.getAddend());
|
2009-06-07 21:22:38 +00:00
|
|
|
}
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
/// EmitSymbol - Write symbol 'Sym' to the symbol table 'SymbolTable'
|
|
|
|
void ELFWriter::EmitSymbol(BinaryObject &SymbolTable, ELFSym &Sym) {
|
2009-06-11 19:16:03 +00:00
|
|
|
if (is64Bit) {
|
2009-06-14 07:53:21 +00:00
|
|
|
SymbolTable.emitWord32(Sym.NameIdx);
|
|
|
|
SymbolTable.emitByte(Sym.Info);
|
|
|
|
SymbolTable.emitByte(Sym.Other);
|
|
|
|
SymbolTable.emitWord16(Sym.SectionIdx);
|
|
|
|
SymbolTable.emitWord64(Sym.Value);
|
|
|
|
SymbolTable.emitWord64(Sym.Size);
|
2009-06-11 19:16:03 +00:00
|
|
|
} else {
|
2009-06-14 07:53:21 +00:00
|
|
|
SymbolTable.emitWord32(Sym.NameIdx);
|
|
|
|
SymbolTable.emitWord32(Sym.Value);
|
|
|
|
SymbolTable.emitWord32(Sym.Size);
|
|
|
|
SymbolTable.emitByte(Sym.Info);
|
|
|
|
SymbolTable.emitByte(Sym.Other);
|
|
|
|
SymbolTable.emitWord16(Sym.SectionIdx);
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
/// EmitSectionHeader - Write section 'Section' header in 'SHdrTab'
|
2009-06-11 19:16:03 +00:00
|
|
|
/// Section Header Table
|
2009-07-13 22:40:39 +00:00
|
|
|
void ELFWriter::EmitSectionHeader(BinaryObject &SHdrTab,
|
2009-06-14 07:53:21 +00:00
|
|
|
const ELFSection &SHdr) {
|
|
|
|
SHdrTab.emitWord32(SHdr.NameIdx);
|
|
|
|
SHdrTab.emitWord32(SHdr.Type);
|
2009-06-11 19:16:03 +00:00
|
|
|
if (is64Bit) {
|
2009-06-14 07:53:21 +00:00
|
|
|
SHdrTab.emitWord64(SHdr.Flags);
|
|
|
|
SHdrTab.emitWord(SHdr.Addr);
|
|
|
|
SHdrTab.emitWord(SHdr.Offset);
|
|
|
|
SHdrTab.emitWord64(SHdr.Size);
|
|
|
|
SHdrTab.emitWord32(SHdr.Link);
|
|
|
|
SHdrTab.emitWord32(SHdr.Info);
|
|
|
|
SHdrTab.emitWord64(SHdr.Align);
|
|
|
|
SHdrTab.emitWord64(SHdr.EntSize);
|
2009-06-11 19:16:03 +00:00
|
|
|
} else {
|
2009-06-14 07:53:21 +00:00
|
|
|
SHdrTab.emitWord32(SHdr.Flags);
|
|
|
|
SHdrTab.emitWord(SHdr.Addr);
|
|
|
|
SHdrTab.emitWord(SHdr.Offset);
|
|
|
|
SHdrTab.emitWord32(SHdr.Size);
|
|
|
|
SHdrTab.emitWord32(SHdr.Link);
|
|
|
|
SHdrTab.emitWord32(SHdr.Info);
|
|
|
|
SHdrTab.emitWord32(SHdr.Align);
|
|
|
|
SHdrTab.emitWord32(SHdr.EntSize);
|
2009-06-11 19:16:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-22 19:29:56 +00:00
|
|
|
/// EmitStringTable - If the current symbol table is non-empty, emit the string
|
|
|
|
/// table for it
|
2009-07-27 19:32:57 +00:00
|
|
|
void ELFWriter::EmitStringTable(const std::string &ModuleName) {
|
2009-06-22 19:16:16 +00:00
|
|
|
if (!SymbolList.size()) return; // Empty symbol table.
|
2009-06-11 19:16:03 +00:00
|
|
|
ELFSection &StrTab = getStringTableSection();
|
2005-07-16 08:01:13 +00:00
|
|
|
|
2005-07-07 07:02:20 +00:00
|
|
|
// Set the zero'th symbol to a null byte, as required.
|
2009-06-14 07:53:21 +00:00
|
|
|
StrTab.emitByte(0);
|
2009-06-11 19:16:03 +00:00
|
|
|
|
2009-07-17 18:02:30 +00:00
|
|
|
// Walk on the symbol list and write symbol names into the string table.
|
2005-07-07 07:02:20 +00:00
|
|
|
unsigned Index = 1;
|
2009-07-16 06:26:41 +00:00
|
|
|
for (ELFSymIter I=SymbolList.begin(), E=SymbolList.end(); I != E; ++I) {
|
|
|
|
ELFSym &Sym = *(*I);
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-06-25 07:36:24 +00:00
|
|
|
std::string Name;
|
2009-07-27 18:54:47 +00:00
|
|
|
if (Sym.isGlobalValue())
|
2009-07-27 19:32:57 +00:00
|
|
|
// Use the name mangler to uniquify the LLVM symbol.
|
2009-07-27 18:54:47 +00:00
|
|
|
Name.append(Mang->getMangledName(Sym.getGlobalValue()));
|
|
|
|
else if (Sym.isExternalSym())
|
|
|
|
Name.append(Sym.getExternalSymbol());
|
2009-07-27 19:32:57 +00:00
|
|
|
else if (Sym.isFileType())
|
|
|
|
Name.append(ModuleName);
|
2005-07-07 07:02:20 +00:00
|
|
|
|
|
|
|
if (Name.empty()) {
|
2009-07-15 20:49:10 +00:00
|
|
|
Sym.NameIdx = 0;
|
2005-07-07 07:02:20 +00:00
|
|
|
} else {
|
2009-07-15 20:49:10 +00:00
|
|
|
Sym.NameIdx = Index;
|
2009-06-14 07:53:21 +00:00
|
|
|
StrTab.emitString(Name);
|
2005-07-07 07:02:20 +00:00
|
|
|
|
|
|
|
// Keep track of the number of bytes emitted to this section.
|
|
|
|
Index += Name.size()+1;
|
|
|
|
}
|
|
|
|
}
|
2009-06-14 07:53:21 +00:00
|
|
|
assert(Index == StrTab.size());
|
2005-07-16 08:01:13 +00:00
|
|
|
StrTab.Size = Index;
|
2009-06-22 19:29:56 +00:00
|
|
|
}
|
2005-07-07 07:02:20 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// SortSymbols - On the symbol table local symbols must come before
|
|
|
|
// all other symbols with non-local bindings. The return value is
|
|
|
|
// the position of the first non local symbol.
|
|
|
|
unsigned ELFWriter::SortSymbols() {
|
2009-07-16 06:26:41 +00:00
|
|
|
unsigned FirstNonLocalSymbol;
|
2009-07-15 20:49:10 +00:00
|
|
|
std::vector<ELFSym*> LocalSyms, OtherSyms;
|
|
|
|
|
2009-07-16 06:26:41 +00:00
|
|
|
for (ELFSymIter I=SymbolList.begin(), E=SymbolList.end(); I != E; ++I) {
|
|
|
|
if ((*I)->isLocalBind())
|
|
|
|
LocalSyms.push_back(*I);
|
2009-07-15 20:49:10 +00:00
|
|
|
else
|
2009-07-16 06:26:41 +00:00
|
|
|
OtherSyms.push_back(*I);
|
2009-07-15 20:49:10 +00:00
|
|
|
}
|
|
|
|
SymbolList.clear();
|
|
|
|
FirstNonLocalSymbol = LocalSyms.size();
|
|
|
|
|
2009-07-16 06:26:41 +00:00
|
|
|
for (unsigned i = 0; i < FirstNonLocalSymbol; ++i)
|
2009-07-15 20:49:10 +00:00
|
|
|
SymbolList.push_back(LocalSyms[i]);
|
|
|
|
|
2009-07-16 06:26:41 +00:00
|
|
|
for (ELFSymIter I=OtherSyms.begin(), E=OtherSyms.end(); I != E; ++I)
|
|
|
|
SymbolList.push_back(*I);
|
2009-07-15 20:49:10 +00:00
|
|
|
|
|
|
|
LocalSyms.clear();
|
|
|
|
OtherSyms.clear();
|
|
|
|
|
|
|
|
return FirstNonLocalSymbol;
|
|
|
|
}
|
|
|
|
|
2009-06-22 19:29:56 +00:00
|
|
|
/// EmitSymbolTable - Emit the symbol table itself.
|
|
|
|
void ELFWriter::EmitSymbolTable() {
|
|
|
|
if (!SymbolList.size()) return; // Empty symbol table.
|
|
|
|
|
2005-07-07 07:02:20 +00:00
|
|
|
// Now that we have emitted the string table and know the offset into the
|
|
|
|
// string table of each symbol, emit the symbol table itself.
|
2009-06-11 19:16:03 +00:00
|
|
|
ELFSection &SymTab = getSymbolTableSection();
|
2009-06-22 19:16:16 +00:00
|
|
|
SymTab.Align = TEW->getPrefELFAlignment();
|
2009-06-22 19:29:56 +00:00
|
|
|
|
|
|
|
// Section Index of .strtab.
|
|
|
|
SymTab.Link = getStringTableSection().SectionIdx;
|
2009-06-11 19:16:03 +00:00
|
|
|
|
|
|
|
// Size of each symtab entry.
|
2009-06-14 07:53:21 +00:00
|
|
|
SymTab.EntSize = TEW->getSymTabEntrySize();
|
2005-07-07 07:02:20 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// Reorder the symbol table with local symbols first!
|
|
|
|
unsigned FirstNonLocalSymbol = SortSymbols();
|
|
|
|
|
|
|
|
// Emit all the symbols to the symbol table.
|
|
|
|
for (unsigned i = 0, e = SymbolList.size(); i < e; ++i) {
|
|
|
|
ELFSym &Sym = *SymbolList[i];
|
2009-06-22 19:16:16 +00:00
|
|
|
|
|
|
|
// Emit symbol to the symbol table
|
2009-07-15 20:49:10 +00:00
|
|
|
EmitSymbol(SymTab, Sym);
|
2009-06-22 19:16:16 +00:00
|
|
|
|
2009-07-27 18:54:47 +00:00
|
|
|
// Record the symbol table index for each symbol
|
|
|
|
if (Sym.isGlobalValue())
|
|
|
|
GblSymLookup[Sym.getGlobalValue()] = i;
|
|
|
|
else if (Sym.isExternalSym())
|
|
|
|
ExtSymLookup[Sym.getExternalSymbol()] = i;
|
2009-06-25 07:36:24 +00:00
|
|
|
|
|
|
|
// Keep track on the symbol index into the symbol table
|
2009-07-15 20:49:10 +00:00
|
|
|
Sym.SymTabIdx = i;
|
2009-06-22 19:16:16 +00:00
|
|
|
}
|
2005-07-07 07:02:20 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// One greater than the symbol table index of the last local symbol
|
2009-06-22 19:16:16 +00:00
|
|
|
SymTab.Info = FirstNonLocalSymbol;
|
2009-06-14 07:53:21 +00:00
|
|
|
SymTab.Size = SymTab.size();
|
2005-07-07 07:02:20 +00:00
|
|
|
}
|
|
|
|
|
2005-06-27 06:29:00 +00:00
|
|
|
/// EmitSectionTableStringTable - This method adds and emits a section for the
|
|
|
|
/// ELF Section Table string table: the string table that holds all of the
|
|
|
|
/// section names.
|
|
|
|
void ELFWriter::EmitSectionTableStringTable() {
|
|
|
|
// First step: add the section for the string table to the list of sections:
|
2009-06-23 04:39:27 +00:00
|
|
|
ELFSection &SHStrTab = getSectionHeaderStringTableSection();
|
2005-06-27 06:29:00 +00:00
|
|
|
|
|
|
|
// Now that we know which section number is the .shstrtab section, update the
|
|
|
|
// e_shstrndx entry in the ELF header.
|
2009-06-14 07:53:21 +00:00
|
|
|
ElfHdr.fixWord16(SHStrTab.SectionIdx, ELFHdr_e_shstrndx_Offset);
|
2005-06-27 06:29:00 +00:00
|
|
|
|
|
|
|
// Set the NameIdx of each section in the string table and emit the bytes for
|
|
|
|
// the string table.
|
|
|
|
unsigned Index = 0;
|
|
|
|
|
2009-07-16 06:26:41 +00:00
|
|
|
for (ELFSectionIter I=SectionList.begin(), E=SectionList.end(); I != E; ++I) {
|
|
|
|
ELFSection &S = *(*I);
|
2005-06-27 06:29:00 +00:00
|
|
|
// Set the index into the table. Note if we have lots of entries with
|
|
|
|
// common suffixes, we could memoize them here if we cared.
|
2009-07-16 06:26:41 +00:00
|
|
|
S.NameIdx = Index;
|
|
|
|
SHStrTab.emitString(S.getName());
|
2005-06-27 06:29:00 +00:00
|
|
|
|
|
|
|
// Keep track of the number of bytes emitted to this section.
|
2009-07-16 06:26:41 +00:00
|
|
|
Index += S.getName().size()+1;
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the size of .shstrtab now that we know what it is.
|
2009-06-14 07:53:21 +00:00
|
|
|
assert(Index == SHStrTab.size());
|
2005-07-16 08:01:13 +00:00
|
|
|
SHStrTab.Size = Index;
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
/// OutputSectionsAndSectionTable - Now that we have constructed the file header
|
|
|
|
/// and all of the sections, emit these to the ostream destination and emit the
|
|
|
|
/// SectionTable.
|
|
|
|
void ELFWriter::OutputSectionsAndSectionTable() {
|
|
|
|
// Pass #1: Compute the file offset for each section.
|
2009-06-14 07:53:21 +00:00
|
|
|
size_t FileOff = ElfHdr.size(); // File header first.
|
2005-07-16 08:01:13 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
// Adjust alignment of all section if needed, skip the null section.
|
|
|
|
for (unsigned i=1, e=SectionList.size(); i < e; ++i) {
|
|
|
|
ELFSection &ES = *SectionList[i];
|
|
|
|
if (!ES.size()) {
|
|
|
|
ES.Offset = FileOff;
|
2009-06-11 19:16:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-06-07 21:22:38 +00:00
|
|
|
// Update Section size
|
2009-07-15 20:49:10 +00:00
|
|
|
if (!ES.Size)
|
|
|
|
ES.Size = ES.size();
|
2009-06-07 21:22:38 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Align FileOff to whatever the alignment restrictions of the section are.
|
2009-07-15 20:49:10 +00:00
|
|
|
if (ES.Align)
|
|
|
|
FileOff = (FileOff+ES.Align-1) & ~(ES.Align-1);
|
2009-06-07 21:22:38 +00:00
|
|
|
|
2009-07-15 20:49:10 +00:00
|
|
|
ES.Offset = FileOff;
|
|
|
|
FileOff += ES.Size;
|
2005-07-16 08:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Align Section Header.
|
2009-06-22 19:16:16 +00:00
|
|
|
unsigned TableAlign = TEW->getPrefELFAlignment();
|
2005-07-16 08:01:13 +00:00
|
|
|
FileOff = (FileOff+TableAlign-1) & ~(TableAlign-1);
|
|
|
|
|
|
|
|
// Now that we know where all of the sections will be emitted, set the e_shnum
|
|
|
|
// entry in the ELF header.
|
2009-06-14 07:53:21 +00:00
|
|
|
ElfHdr.fixWord16(NumSections, ELFHdr_e_shnum_Offset);
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Now that we know the offset in the file of the section table, update the
|
|
|
|
// e_shoff address in the ELF header.
|
2009-06-14 07:53:21 +00:00
|
|
|
ElfHdr.fixWord(FileOff, ELFHdr_e_shoff_Offset);
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Now that we know all of the data in the file header, emit it and all of the
|
|
|
|
// sections!
|
2009-06-14 07:53:21 +00:00
|
|
|
O.write((char *)&ElfHdr.getData()[0], ElfHdr.size());
|
|
|
|
FileOff = ElfHdr.size();
|
2005-07-16 08:01:13 +00:00
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
// Section Header Table blob
|
|
|
|
BinaryObject SHdrTable(isLittleEndian, is64Bit);
|
2005-07-16 08:01:13 +00:00
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
// Emit all of sections to the file and build the section header table.
|
2009-07-16 06:26:41 +00:00
|
|
|
for (ELFSectionIter I=SectionList.begin(), E=SectionList.end(); I != E; ++I) {
|
|
|
|
ELFSection &S = *(*I);
|
2009-06-14 07:53:21 +00:00
|
|
|
DOUT << "SectionIdx: " << S.SectionIdx << ", Name: " << S.getName()
|
2009-06-11 19:16:03 +00:00
|
|
|
<< ", Size: " << S.Size << ", Offset: " << S.Offset
|
2009-06-14 07:53:21 +00:00
|
|
|
<< ", SectionData Size: " << S.size() << "\n";
|
2005-07-16 08:01:13 +00:00
|
|
|
|
|
|
|
// Align FileOff to whatever the alignment restrictions of the section are.
|
2009-06-14 07:53:21 +00:00
|
|
|
if (S.size()) {
|
2009-06-23 04:39:27 +00:00
|
|
|
if (S.Align) {
|
|
|
|
for (size_t NewFileOff = (FileOff+S.Align-1) & ~(S.Align-1);
|
|
|
|
FileOff != NewFileOff; ++FileOff)
|
|
|
|
O << (char)0xAB;
|
|
|
|
}
|
2009-06-14 07:53:21 +00:00
|
|
|
O.write((char *)&S.getData()[0], S.Size);
|
2009-06-11 19:16:03 +00:00
|
|
|
FileOff += S.Size;
|
|
|
|
}
|
2005-07-16 08:01:13 +00:00
|
|
|
|
2009-06-14 07:53:21 +00:00
|
|
|
EmitSectionHeader(SHdrTable, S);
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Align output for the section table.
|
|
|
|
for (size_t NewFileOff = (FileOff+TableAlign-1) & ~(TableAlign-1);
|
|
|
|
FileOff != NewFileOff; ++FileOff)
|
2008-08-21 00:14:44 +00:00
|
|
|
O << (char)0xAB;
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2005-07-16 08:01:13 +00:00
|
|
|
// Emit the section table itself.
|
2009-06-14 07:53:21 +00:00
|
|
|
O.write((char *)&SHdrTable.getData()[0], SHdrTable.size());
|
2005-06-27 06:29:00 +00:00
|
|
|
}
|