2010-08-16 18:57:57 +00:00
|
|
|
//===- lib/MC/MCELFStreamer.cpp - ELF Object Output ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file assembles .s files and emits ELF .o object files.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-03-03 14:52:12 +00:00
|
|
|
#include "MCELFStreamer.h"
|
2011-02-28 21:45:04 +00:00
|
|
|
#include "MCELF.h"
|
2011-03-03 14:52:12 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
|
|
|
#include "llvm/MC/MCELFSymbolFlags.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-11-01 14:28:48 +00:00
|
|
|
#include "llvm/MC/MCValue.h"
|
2011-07-25 23:24:55 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2010-08-16 18:57:57 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ELF.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2010-09-15 21:48:40 +00:00
|
|
|
void MCELFStreamer::InitSections() {
|
|
|
|
// This emulates the same behavior of GNU as. This makes it easier
|
|
|
|
// to compare the output as the major sections are in the same order.
|
|
|
|
SetSectionText();
|
|
|
|
SetSectionData();
|
|
|
|
SetSectionBss();
|
|
|
|
SetSectionText();
|
|
|
|
}
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
void MCELFStreamer::EmitLabel(MCSymbol *Symbol) {
|
2010-11-28 16:22:59 +00:00
|
|
|
assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
|
|
|
|
|
2010-11-28 17:18:55 +00:00
|
|
|
MCObjectStreamer::EmitLabel(Symbol);
|
2010-09-25 05:42:19 +00:00
|
|
|
|
2010-11-11 19:04:55 +00:00
|
|
|
const MCSectionELF &Section =
|
|
|
|
static_cast<const MCSectionELF&>(Symbol->getSection());
|
2010-11-28 17:18:55 +00:00
|
|
|
MCSymbolData &SD = getAssembler().getSymbolData(*Symbol);
|
2011-01-23 04:43:11 +00:00
|
|
|
if (Section.getFlags() & ELF::SHF_TLS)
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_TLS);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MCELFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
|
|
|
|
switch (Flag) {
|
2010-11-05 22:08:08 +00:00
|
|
|
case MCAF_SyntaxUnified: return; // no-op here.
|
2011-07-27 00:38:12 +00:00
|
|
|
case MCAF_Code16: return; // Change parsing mode; no-op here.
|
|
|
|
case MCAF_Code32: return; // Change parsing mode; no-op here.
|
|
|
|
case MCAF_Code64: return; // Change parsing mode; no-op here.
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCAF_SubsectionsViaSymbols:
|
|
|
|
getAssembler().setSubsectionsViaSymbols(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0 && "invalid assembler flag!");
|
|
|
|
}
|
|
|
|
|
2010-11-05 22:08:08 +00:00
|
|
|
void MCELFStreamer::EmitThumbFunc(MCSymbol *Func) {
|
|
|
|
// FIXME: Anything needed here to flag the function as thumb?
|
2011-05-16 16:17:21 +00:00
|
|
|
|
|
|
|
getAssembler().setIsThumbFunc(Func);
|
|
|
|
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Func);
|
|
|
|
SD.setFlags(SD.getFlags() | ELF_Other_ThumbFunc);
|
2010-11-05 22:08:08 +00:00
|
|
|
}
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
void MCELFStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
|
|
|
|
// TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
|
|
|
|
// MCObjectStreamer.
|
|
|
|
// FIXME: Lift context changes into super class.
|
|
|
|
getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
Symbol->setVariableValue(AddValueSymbols(Value));
|
|
|
|
}
|
|
|
|
|
2011-02-16 01:08:29 +00:00
|
|
|
void MCELFStreamer::ChangeSection(const MCSection *Section) {
|
2010-11-14 04:17:37 +00:00
|
|
|
const MCSymbol *Grp = static_cast<const MCSectionELF *>(Section)->getGroup();
|
|
|
|
if (Grp)
|
|
|
|
getAssembler().getOrCreateSymbolData(*Grp);
|
2011-02-16 01:08:29 +00:00
|
|
|
this->MCObjectStreamer::ChangeSection(Section);
|
2010-11-14 04:17:37 +00:00
|
|
|
}
|
|
|
|
|
2010-11-01 14:28:48 +00:00
|
|
|
void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
|
|
|
|
getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
MCSymbolData &AliasSD = getAssembler().getOrCreateSymbolData(*Alias);
|
|
|
|
AliasSD.setFlags(AliasSD.getFlags() | ELF_Other_Weakref);
|
2010-11-15 16:33:49 +00:00
|
|
|
const MCExpr *Value = MCSymbolRefExpr::Create(Symbol, getContext());
|
2010-11-01 14:28:48 +00:00
|
|
|
Alias->setVariableValue(Value);
|
|
|
|
}
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
void MCELFStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
|
|
|
|
MCSymbolAttr Attribute) {
|
|
|
|
// Indirect symbols are handled differently, to match how 'as' handles
|
|
|
|
// them. This makes writing matching .o files easier.
|
|
|
|
if (Attribute == MCSA_IndirectSymbol) {
|
|
|
|
// Note that we intentionally cannot use the symbol data here; this is
|
|
|
|
// important for matching the string table that 'as' generates.
|
|
|
|
IndirectSymbolData ISD;
|
|
|
|
ISD.Symbol = Symbol;
|
|
|
|
ISD.SectionData = getCurrentSectionData();
|
|
|
|
getAssembler().getIndirectSymbols().push_back(ISD);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adding a symbol attribute always introduces the symbol, note that an
|
|
|
|
// important side effect of calling getOrCreateSymbolData here is to register
|
|
|
|
// the symbol with the assembler.
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
|
|
|
|
// The implementation of symbol attributes is designed to match 'as', but it
|
|
|
|
// leaves much to desired. It doesn't really make sense to arbitrarily add and
|
|
|
|
// remove flags, but 'as' allows this (in particular, see .desc).
|
|
|
|
//
|
|
|
|
// In the future it might be worth trying to make these operations more well
|
|
|
|
// defined.
|
|
|
|
switch (Attribute) {
|
|
|
|
case MCSA_LazyReference:
|
|
|
|
case MCSA_Reference:
|
|
|
|
case MCSA_NoDeadStrip:
|
2010-11-19 18:39:33 +00:00
|
|
|
case MCSA_SymbolResolver:
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCSA_PrivateExtern:
|
|
|
|
case MCSA_WeakDefinition:
|
2010-08-16 19:15:06 +00:00
|
|
|
case MCSA_WeakDefAutoPrivate:
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCSA_Invalid:
|
|
|
|
case MCSA_IndirectSymbol:
|
|
|
|
assert(0 && "Invalid symbol attribute for ELF!");
|
|
|
|
break;
|
|
|
|
|
2010-11-14 01:34:31 +00:00
|
|
|
case MCSA_ELF_TypeGnuUniqueObject:
|
|
|
|
// Ignore for now.
|
|
|
|
break;
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCSA_Global:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetBinding(SD, ELF::STB_GLOBAL);
|
2010-08-16 18:57:57 +00:00
|
|
|
SD.setExternal(true);
|
2010-09-21 00:24:38 +00:00
|
|
|
BindingExplicitlySet.insert(Symbol);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
2010-09-02 17:18:32 +00:00
|
|
|
case MCSA_WeakReference:
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCSA_Weak:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetBinding(SD, ELF::STB_WEAK);
|
2010-10-06 16:47:31 +00:00
|
|
|
SD.setExternal(true);
|
2010-09-21 00:24:38 +00:00
|
|
|
BindingExplicitlySet.insert(Symbol);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_Local:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetBinding(SD, ELF::STB_LOCAL);
|
2010-09-21 00:24:38 +00:00
|
|
|
SD.setExternal(false);
|
|
|
|
BindingExplicitlySet.insert(Symbol);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_ELF_TypeFunction:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_FUNC);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
2011-12-12 17:34:04 +00:00
|
|
|
case MCSA_ELF_TypeIndFunction:
|
|
|
|
MCELF::SetType(SD, ELF::STT_GNU_IFUNC);
|
|
|
|
break;
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
case MCSA_ELF_TypeObject:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_OBJECT);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_ELF_TypeTLS:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_TLS);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_ELF_TypeCommon:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_COMMON);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_ELF_TypeNoType:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_NOTYPE);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_Protected:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetVisibility(SD, ELF::STV_PROTECTED);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_Hidden:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetVisibility(SD, ELF::STV_HIDDEN);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MCSA_Internal:
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetVisibility(SD, ELF::STV_INTERNAL);
|
2010-08-16 18:57:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
|
|
|
|
unsigned ByteAlignment) {
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
|
2010-09-21 00:24:38 +00:00
|
|
|
if (!BindingExplicitlySet.count(Symbol)) {
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetBinding(SD, ELF::STB_GLOBAL);
|
2010-09-21 00:24:38 +00:00
|
|
|
SD.setExternal(true);
|
|
|
|
}
|
|
|
|
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_OBJECT);
|
2010-11-14 21:11:16 +00:00
|
|
|
|
2011-02-28 21:45:04 +00:00
|
|
|
if (MCELF::GetBinding(SD) == ELF_STB_Local) {
|
2010-08-16 18:57:57 +00:00
|
|
|
const MCSection *Section = getAssembler().getContext().getELFSection(".bss",
|
2011-11-15 16:46:22 +00:00
|
|
|
ELF::SHT_NOBITS,
|
|
|
|
ELF::SHF_WRITE |
|
|
|
|
ELF::SHF_ALLOC,
|
|
|
|
SectionKind::getBSS());
|
2010-08-16 18:57:57 +00:00
|
|
|
Symbol->setSection(*Section);
|
2010-09-22 17:43:04 +00:00
|
|
|
|
2010-09-29 14:52:01 +00:00
|
|
|
struct LocalCommon L = {&SD, Size, ByteAlignment};
|
|
|
|
LocalCommons.push_back(L);
|
2010-09-21 00:24:38 +00:00
|
|
|
} else {
|
|
|
|
SD.setCommon(Size, ByteAlignment);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2010-09-21 00:24:38 +00:00
|
|
|
SD.setSize(MCConstantExpr::Create(Size, getContext()));
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 23:04:27 +00:00
|
|
|
void MCELFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
|
|
|
|
unsigned ByteAlignment) {
|
2010-12-16 03:12:17 +00:00
|
|
|
// FIXME: Should this be caught and done earlier?
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetBinding(SD, ELF::STB_LOCAL);
|
2010-12-16 03:12:17 +00:00
|
|
|
SD.setExternal(false);
|
|
|
|
BindingExplicitlySet.insert(Symbol);
|
2011-09-01 23:04:27 +00:00
|
|
|
EmitCommonSymbol(Symbol, Size, ByteAlignment);
|
2010-12-16 03:12:17 +00:00
|
|
|
}
|
|
|
|
|
2010-08-16 18:57:57 +00:00
|
|
|
void MCELFStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
|
|
|
|
// TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
|
|
|
|
// MCObjectStreamer.
|
|
|
|
getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment,
|
|
|
|
int64_t Value, unsigned ValueSize,
|
|
|
|
unsigned MaxBytesToEmit) {
|
|
|
|
// TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
|
|
|
|
// MCObjectStreamer.
|
|
|
|
if (MaxBytesToEmit == 0)
|
|
|
|
MaxBytesToEmit = ByteAlignment;
|
|
|
|
new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
|
|
|
|
getCurrentSectionData());
|
|
|
|
|
|
|
|
// Update the maximum alignment on the current section if necessary.
|
|
|
|
if (ByteAlignment > getCurrentSectionData()->getAlignment())
|
|
|
|
getCurrentSectionData()->setAlignment(ByteAlignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCELFStreamer::EmitCodeAlignment(unsigned ByteAlignment,
|
|
|
|
unsigned MaxBytesToEmit) {
|
|
|
|
// TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
|
|
|
|
// MCObjectStreamer.
|
|
|
|
if (MaxBytesToEmit == 0)
|
|
|
|
MaxBytesToEmit = ByteAlignment;
|
|
|
|
MCAlignFragment *F = new MCAlignFragment(ByteAlignment, 0, 1, MaxBytesToEmit,
|
|
|
|
getCurrentSectionData());
|
|
|
|
F->setEmitNops(true);
|
|
|
|
|
|
|
|
// Update the maximum alignment on the current section if necessary.
|
|
|
|
if (ByteAlignment > getCurrentSectionData()->getAlignment())
|
|
|
|
getCurrentSectionData()->setAlignment(ByteAlignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a symbol for the file name of this module. This is the second
|
|
|
|
// entry in the module's symbol table (the first being the null symbol).
|
|
|
|
void MCELFStreamer::EmitFileDirective(StringRef Filename) {
|
|
|
|
MCSymbol *Symbol = getAssembler().getContext().GetOrCreateSymbol(Filename);
|
2011-02-16 01:08:29 +00:00
|
|
|
Symbol->setSection(*getCurrentSection());
|
2010-08-16 18:57:57 +00:00
|
|
|
Symbol->setAbsolute();
|
|
|
|
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
|
|
|
|
SD.setFlags(ELF_STT_File | ELF_STB_Local | ELF_STV_Default);
|
|
|
|
}
|
|
|
|
|
2010-11-24 02:19:40 +00:00
|
|
|
void MCELFStreamer::fixSymbolsInTLSFixups(const MCExpr *expr) {
|
|
|
|
switch (expr->getKind()) {
|
|
|
|
case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
|
|
|
|
case MCExpr::Constant:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Binary: {
|
|
|
|
const MCBinaryExpr *be = cast<MCBinaryExpr>(expr);
|
|
|
|
fixSymbolsInTLSFixups(be->getLHS());
|
|
|
|
fixSymbolsInTLSFixups(be->getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MCExpr::SymbolRef: {
|
|
|
|
const MCSymbolRefExpr &symRef = *cast<MCSymbolRefExpr>(expr);
|
2010-11-24 18:51:21 +00:00
|
|
|
switch (symRef.getKind()) {
|
|
|
|
default:
|
2010-11-24 02:19:40 +00:00
|
|
|
return;
|
2011-03-17 00:35:10 +00:00
|
|
|
case MCSymbolRefExpr::VK_GOTTPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_INDNTPOFF:
|
2010-11-24 18:51:21 +00:00
|
|
|
case MCSymbolRefExpr::VK_NTPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_GOTNTPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_TLSGD:
|
2011-03-17 00:35:10 +00:00
|
|
|
case MCSymbolRefExpr::VK_TLSLD:
|
2010-11-24 18:51:21 +00:00
|
|
|
case MCSymbolRefExpr::VK_TLSLDM:
|
|
|
|
case MCSymbolRefExpr::VK_TPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_DTPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_ARM_TLSGD:
|
2011-03-17 00:35:10 +00:00
|
|
|
case MCSymbolRefExpr::VK_ARM_TPOFF:
|
|
|
|
case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
|
2011-10-25 18:13:20 +00:00
|
|
|
case MCSymbolRefExpr::VK_Mips_TLSGD:
|
|
|
|
case MCSymbolRefExpr::VK_Mips_GOTTPREL:
|
|
|
|
case MCSymbolRefExpr::VK_Mips_TPREL_HI:
|
|
|
|
case MCSymbolRefExpr::VK_Mips_TPREL_LO:
|
2010-11-24 18:51:21 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-11-24 02:19:40 +00:00
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(symRef.getSymbol());
|
2011-02-28 21:45:04 +00:00
|
|
|
MCELF::SetType(SD, ELF::STT_TLS);
|
2010-11-24 02:19:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MCExpr::Unary:
|
|
|
|
fixSymbolsInTLSFixups(cast<MCUnaryExpr>(expr)->getSubExpr());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-27 10:40:51 +00:00
|
|
|
void MCELFStreamer::EmitInstToFragment(const MCInst &Inst) {
|
2010-12-02 05:44:06 +00:00
|
|
|
this->MCObjectStreamer::EmitInstToFragment(Inst);
|
|
|
|
MCInstFragment &F = *cast<MCInstFragment>(getCurrentFragment());
|
2010-08-16 18:57:57 +00:00
|
|
|
|
2010-12-02 05:44:06 +00:00
|
|
|
for (unsigned i = 0, e = F.getFixups().size(); i != e; ++i)
|
|
|
|
fixSymbolsInTLSFixups(F.getFixups()[i].getValue());
|
2010-08-27 10:40:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MCELFStreamer::EmitInstToData(const MCInst &Inst) {
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
SmallVector<MCFixup, 4> Fixups;
|
|
|
|
SmallString<256> Code;
|
|
|
|
raw_svector_ostream VecOS(Code);
|
|
|
|
getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
|
|
|
|
VecOS.flush();
|
|
|
|
|
2010-11-24 02:19:40 +00:00
|
|
|
for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
|
|
|
|
fixSymbolsInTLSFixups(Fixups[i].getValue());
|
|
|
|
|
2010-08-27 10:40:51 +00:00
|
|
|
// Add the fixups and data.
|
2010-08-16 18:57:57 +00:00
|
|
|
for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
|
2010-08-27 10:40:51 +00:00
|
|
|
Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
|
|
|
|
DF->addFixup(Fixups[i]);
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
2010-08-27 10:40:51 +00:00
|
|
|
DF->getContents().append(Code.begin(), Code.end());
|
|
|
|
}
|
2010-08-16 18:57:57 +00:00
|
|
|
|
|
|
|
void MCELFStreamer::Finish() {
|
2011-05-10 03:14:15 +00:00
|
|
|
EmitFrames(true);
|
2010-11-01 17:07:14 +00:00
|
|
|
|
2010-09-29 14:52:01 +00:00
|
|
|
for (std::vector<LocalCommon>::const_iterator i = LocalCommons.begin(),
|
|
|
|
e = LocalCommons.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
MCSymbolData *SD = i->SD;
|
|
|
|
uint64_t Size = i->Size;
|
|
|
|
unsigned ByteAlignment = i->ByteAlignment;
|
|
|
|
const MCSymbol &Symbol = SD->getSymbol();
|
|
|
|
const MCSection &Section = Symbol.getSection();
|
|
|
|
|
|
|
|
MCSectionData &SectData = getAssembler().getOrCreateSectionData(Section);
|
|
|
|
new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &SectData);
|
|
|
|
|
|
|
|
MCFragment *F = new MCFillFragment(0, 0, Size, &SectData);
|
|
|
|
SD->setFragment(F);
|
|
|
|
|
|
|
|
// Update the maximum alignment of the section if necessary.
|
|
|
|
if (ByteAlignment > SectData.getAlignment())
|
|
|
|
SectData.setAlignment(ByteAlignment);
|
|
|
|
}
|
|
|
|
|
2010-09-25 05:42:19 +00:00
|
|
|
this->MCObjectStreamer::Finish();
|
2010-08-16 18:57:57 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 23:24:55 +00:00
|
|
|
MCStreamer *llvm::createELFStreamer(MCContext &Context, MCAsmBackend &MAB,
|
2011-01-23 17:55:27 +00:00
|
|
|
raw_ostream &OS, MCCodeEmitter *CE,
|
|
|
|
bool RelaxAll, bool NoExecStack) {
|
2011-07-25 23:24:55 +00:00
|
|
|
MCELFStreamer *S = new MCELFStreamer(Context, MAB, OS, CE);
|
2010-08-16 18:57:57 +00:00
|
|
|
if (RelaxAll)
|
|
|
|
S->getAssembler().setRelaxAll(true);
|
2011-01-23 17:55:27 +00:00
|
|
|
if (NoExecStack)
|
|
|
|
S->getAssembler().setNoExecStack(true);
|
2010-08-16 18:57:57 +00:00
|
|
|
return S;
|
|
|
|
}
|