2010-06-16 20:04:22 +00:00
|
|
|
//===- lib/MC/MCObjectStreamer.cpp - Object File MCStreamer Interface -----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCObjectStreamer.h"
|
2012-03-26 06:58:25 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2010-06-16 20:04:22 +00:00
|
|
|
#include "llvm/MC/MCAssembler.h"
|
2010-07-29 17:48:06 +00:00
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
2010-12-10 07:39:47 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2010-11-01 16:27:31 +00:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2010-07-19 06:13:10 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2012-03-26 06:58:25 +00:00
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2010-11-28 17:18:55 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2012-03-26 06:58:25 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-06-16 20:04:22 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2013-01-31 23:29:57 +00:00
|
|
|
MCObjectStreamer::MCObjectStreamer(StreamerKind Kind, MCContext &Context,
|
|
|
|
MCAsmBackend &TAB, raw_ostream &OS,
|
|
|
|
MCCodeEmitter *Emitter_)
|
|
|
|
: MCStreamer(Kind, Context),
|
|
|
|
Assembler(new MCAssembler(Context, TAB, *Emitter_,
|
|
|
|
*TAB.createObjectWriter(OS), OS)),
|
|
|
|
CurSectionData(0) {}
|
2010-06-16 20:04:22 +00:00
|
|
|
|
2013-01-31 23:29:57 +00:00
|
|
|
MCObjectStreamer::MCObjectStreamer(StreamerKind Kind, MCContext &Context,
|
|
|
|
MCAsmBackend &TAB, raw_ostream &OS,
|
|
|
|
MCCodeEmitter *Emitter_,
|
2011-03-09 17:33:05 +00:00
|
|
|
MCAssembler *_Assembler)
|
2013-01-31 23:29:57 +00:00
|
|
|
: MCStreamer(Kind, Context), Assembler(_Assembler), CurSectionData(0) {}
|
2011-03-09 17:33:05 +00:00
|
|
|
|
2010-06-16 20:04:22 +00:00
|
|
|
MCObjectStreamer::~MCObjectStreamer() {
|
2010-07-29 17:48:06 +00:00
|
|
|
delete &Assembler->getBackend();
|
|
|
|
delete &Assembler->getEmitter();
|
2010-12-17 02:45:41 +00:00
|
|
|
delete &Assembler->getWriter();
|
2010-06-16 20:04:22 +00:00
|
|
|
delete Assembler;
|
|
|
|
}
|
2010-06-16 20:04:25 +00:00
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
void MCObjectStreamer::reset() {
|
2012-12-14 18:52:11 +00:00
|
|
|
if (Assembler)
|
|
|
|
Assembler->reset();
|
2013-01-04 18:04:42 +00:00
|
|
|
CurSectionData = 0;
|
2012-12-12 22:59:46 +00:00
|
|
|
MCStreamer::reset();
|
|
|
|
}
|
|
|
|
|
2010-07-19 06:13:10 +00:00
|
|
|
MCFragment *MCObjectStreamer::getCurrentFragment() const {
|
|
|
|
assert(getCurrentSectionData() && "No current section!");
|
|
|
|
|
|
|
|
if (!getCurrentSectionData()->empty())
|
|
|
|
return &getCurrentSectionData()->getFragmentList().back();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCDataFragment *MCObjectStreamer::getOrCreateDataFragment() const {
|
|
|
|
MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
|
2013-02-15 22:50:52 +00:00
|
|
|
// When bundling is enabled, we don't want to add data to a fragment that
|
|
|
|
// already has instructions (see MCELFStreamer::EmitInstToData for details)
|
|
|
|
if (!F || (Assembler->isBundlingEnabled() && F->hasInstructions()))
|
2010-07-19 06:13:10 +00:00
|
|
|
F = new MCDataFragment(getCurrentSectionData());
|
|
|
|
return F;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *MCObjectStreamer::AddValueSymbols(const MCExpr *Value) {
|
|
|
|
switch (Value->getKind()) {
|
2011-01-13 07:58:56 +00:00
|
|
|
case MCExpr::Target:
|
|
|
|
cast<MCTargetExpr>(Value)->AddValueSymbols(Assembler);
|
|
|
|
break;
|
|
|
|
|
2010-07-19 06:13:10 +00:00
|
|
|
case MCExpr::Constant:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Binary: {
|
|
|
|
const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
|
|
|
|
AddValueSymbols(BE->getLHS());
|
|
|
|
AddValueSymbols(BE->getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MCExpr::SymbolRef:
|
|
|
|
Assembler->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Unary:
|
|
|
|
AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Value;
|
|
|
|
}
|
|
|
|
|
2010-12-10 07:39:47 +00:00
|
|
|
void MCObjectStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
|
2011-05-01 03:50:49 +00:00
|
|
|
unsigned AddrSpace) {
|
2010-11-28 23:08:47 +00:00
|
|
|
assert(AddrSpace == 0 && "Address space must be 0!");
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
|
|
|
|
// Avoid fixups when possible.
|
|
|
|
int64_t AbsValue;
|
2010-12-18 03:57:21 +00:00
|
|
|
if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue, getAssembler())) {
|
2010-12-03 02:54:21 +00:00
|
|
|
EmitIntValue(AbsValue, Size, AddrSpace);
|
|
|
|
return;
|
2010-11-28 23:08:47 +00:00
|
|
|
}
|
2012-12-07 19:13:57 +00:00
|
|
|
DF->getFixups().push_back(
|
|
|
|
MCFixup::Create(DF->getContents().size(), Value,
|
|
|
|
MCFixup::getKindForSize(Size, false)));
|
2010-12-03 02:54:21 +00:00
|
|
|
DF->getContents().resize(DF->getContents().size() + Size, 0);
|
2010-11-28 23:08:47 +00:00
|
|
|
}
|
|
|
|
|
2012-01-07 22:42:19 +00:00
|
|
|
void MCObjectStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
|
|
|
|
RecordProcStart(Frame);
|
|
|
|
}
|
|
|
|
|
2012-01-09 00:17:29 +00:00
|
|
|
void MCObjectStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
|
|
|
|
RecordProcEnd(Frame);
|
|
|
|
}
|
|
|
|
|
2010-11-28 17:18:55 +00:00
|
|
|
void MCObjectStreamer::EmitLabel(MCSymbol *Symbol) {
|
2011-04-27 15:21:19 +00:00
|
|
|
MCStreamer::EmitLabel(Symbol);
|
2010-11-28 17:18:55 +00:00
|
|
|
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
|
|
|
|
// FIXME: This is wasteful, we don't necessarily need to create a data
|
|
|
|
// fragment. Instead, we should mark the symbol as pointing into the data
|
|
|
|
// fragment if it exists, otherwise we should just queue the label and set its
|
|
|
|
// fragment pointer when we emit the next fragment.
|
|
|
|
MCDataFragment *F = getOrCreateDataFragment();
|
|
|
|
assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
|
|
|
|
SD.setFragment(F);
|
|
|
|
SD.setOffset(F->getContents().size());
|
|
|
|
}
|
|
|
|
|
2012-12-16 04:00:45 +00:00
|
|
|
void MCObjectStreamer::EmitDebugLabel(MCSymbol *Symbol) {
|
|
|
|
EmitLabel(Symbol);
|
|
|
|
}
|
|
|
|
|
2011-04-21 23:39:26 +00:00
|
|
|
void MCObjectStreamer::EmitULEB128Value(const MCExpr *Value) {
|
2010-12-03 01:19:49 +00:00
|
|
|
int64_t IntValue;
|
2010-12-18 03:57:21 +00:00
|
|
|
if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
|
2011-04-21 23:39:26 +00:00
|
|
|
EmitULEB128IntValue(IntValue);
|
2010-12-03 01:19:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-05-19 21:40:34 +00:00
|
|
|
Value = ForceExpAbs(Value);
|
2010-11-02 17:22:24 +00:00
|
|
|
new MCLEBFragment(*Value, false, getCurrentSectionData());
|
|
|
|
}
|
|
|
|
|
2011-04-21 23:39:26 +00:00
|
|
|
void MCObjectStreamer::EmitSLEB128Value(const MCExpr *Value) {
|
2010-12-03 01:19:49 +00:00
|
|
|
int64_t IntValue;
|
2010-12-18 03:57:21 +00:00
|
|
|
if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
|
2011-04-21 23:39:26 +00:00
|
|
|
EmitSLEB128IntValue(IntValue);
|
2010-12-03 01:19:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-05-19 21:40:34 +00:00
|
|
|
Value = ForceExpAbs(Value);
|
2010-11-02 17:22:24 +00:00
|
|
|
new MCLEBFragment(*Value, true, getCurrentSectionData());
|
|
|
|
}
|
|
|
|
|
2010-11-01 14:28:48 +00:00
|
|
|
void MCObjectStreamer::EmitWeakReference(MCSymbol *Alias,
|
|
|
|
const MCSymbol *Symbol) {
|
|
|
|
report_fatal_error("This file format doesn't support weak aliases.");
|
|
|
|
}
|
|
|
|
|
2011-02-16 01:08:29 +00:00
|
|
|
void MCObjectStreamer::ChangeSection(const MCSection *Section) {
|
2010-06-16 20:04:25 +00:00
|
|
|
assert(Section && "Cannot switch to a null section!");
|
|
|
|
|
|
|
|
CurSectionData = &getAssembler().getOrCreateSectionData(*Section);
|
|
|
|
}
|
|
|
|
|
2012-12-07 17:42:41 +00:00
|
|
|
void MCObjectStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
|
|
|
|
getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
Symbol->setVariableValue(AddValueSymbols(Value));
|
|
|
|
}
|
|
|
|
|
2010-11-01 16:27:31 +00:00
|
|
|
void MCObjectStreamer::EmitInstruction(const MCInst &Inst) {
|
|
|
|
// Scan for values.
|
|
|
|
for (unsigned i = Inst.getNumOperands(); i--; )
|
|
|
|
if (Inst.getOperand(i).isExpr())
|
|
|
|
AddValueSymbols(Inst.getOperand(i).getExpr());
|
|
|
|
|
2012-12-20 19:05:53 +00:00
|
|
|
MCSectionData *SD = getCurrentSectionData();
|
|
|
|
SD->setHasInstructions(true);
|
2010-11-01 16:27:31 +00:00
|
|
|
|
|
|
|
// Now that a machine instruction has been assembled into this section, make
|
|
|
|
// a line entry for any .loc directive that has been seen.
|
|
|
|
MCLineEntry::Make(this, getCurrentSection());
|
|
|
|
|
|
|
|
// If this instruction doesn't need relaxation, just emit it as data.
|
2012-12-20 19:05:53 +00:00
|
|
|
MCAssembler &Assembler = getAssembler();
|
|
|
|
if (!Assembler.getBackend().mayNeedRelaxation(Inst)) {
|
2010-11-01 16:27:31 +00:00
|
|
|
EmitInstToData(Inst);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-20 19:05:53 +00:00
|
|
|
// Otherwise, relax and emit it as data if either:
|
|
|
|
// - The RelaxAll flag was passed
|
|
|
|
// - Bundling is enabled and this instruction is inside a bundle-locked
|
|
|
|
// group. We want to emit all such instructions into the same data
|
|
|
|
// fragment.
|
|
|
|
if (Assembler.getRelaxAll() ||
|
|
|
|
(Assembler.isBundlingEnabled() && SD->isBundleLocked())) {
|
2010-11-01 16:27:31 +00:00
|
|
|
MCInst Relaxed;
|
2012-01-18 18:52:16 +00:00
|
|
|
getAssembler().getBackend().relaxInstruction(Inst, Relaxed);
|
|
|
|
while (getAssembler().getBackend().mayNeedRelaxation(Relaxed))
|
|
|
|
getAssembler().getBackend().relaxInstruction(Relaxed, Relaxed);
|
2010-11-01 16:27:31 +00:00
|
|
|
EmitInstToData(Relaxed);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise emit to a separate fragment.
|
|
|
|
EmitInstToFragment(Inst);
|
|
|
|
}
|
|
|
|
|
2010-12-02 05:44:06 +00:00
|
|
|
void MCObjectStreamer::EmitInstToFragment(const MCInst &Inst) {
|
2012-12-20 19:05:53 +00:00
|
|
|
// Always create a new, separate fragment here, because its size can change
|
|
|
|
// during relaxation.
|
2013-01-08 00:22:56 +00:00
|
|
|
MCRelaxableFragment *IF =
|
|
|
|
new MCRelaxableFragment(Inst, getCurrentSectionData());
|
2010-12-02 05:44:06 +00:00
|
|
|
|
2011-04-18 20:54:46 +00:00
|
|
|
SmallString<128> Code;
|
|
|
|
raw_svector_ostream VecOS(Code);
|
2010-12-02 05:44:06 +00:00
|
|
|
getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, IF->getFixups());
|
2011-04-18 20:54:46 +00:00
|
|
|
VecOS.flush();
|
2012-12-07 19:13:57 +00:00
|
|
|
IF->getContents().append(Code.begin(), Code.end());
|
2010-12-02 05:44:06 +00:00
|
|
|
}
|
|
|
|
|
2013-02-15 23:12:33 +00:00
|
|
|
#ifndef NDEBUG
|
2013-02-15 12:30:38 +00:00
|
|
|
static const char *BundlingNotImplementedMsg =
|
2012-12-20 19:05:53 +00:00
|
|
|
"Aligned bundling is not implemented for this object format";
|
2013-02-15 23:12:33 +00:00
|
|
|
#endif
|
2012-12-20 19:05:53 +00:00
|
|
|
|
|
|
|
void MCObjectStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
|
|
|
|
llvm_unreachable(BundlingNotImplementedMsg);
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:51:08 +00:00
|
|
|
void MCObjectStreamer::EmitBundleLock(bool AlignToEnd) {
|
2012-12-20 19:05:53 +00:00
|
|
|
llvm_unreachable(BundlingNotImplementedMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCObjectStreamer::EmitBundleUnlock() {
|
|
|
|
llvm_unreachable(BundlingNotImplementedMsg);
|
|
|
|
}
|
|
|
|
|
2010-12-03 00:55:40 +00:00
|
|
|
void MCObjectStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
|
|
|
|
const MCSymbol *LastLabel,
|
2011-07-14 05:43:07 +00:00
|
|
|
const MCSymbol *Label,
|
|
|
|
unsigned PointerSize) {
|
2010-12-03 00:55:40 +00:00
|
|
|
if (!LastLabel) {
|
|
|
|
EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
|
|
|
|
return;
|
|
|
|
}
|
2010-12-28 05:39:27 +00:00
|
|
|
const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
|
2010-12-03 00:55:40 +00:00
|
|
|
int64_t Res;
|
2010-12-18 03:57:21 +00:00
|
|
|
if (AddrDelta->EvaluateAsAbsolute(Res, getAssembler())) {
|
2010-12-03 00:55:40 +00:00
|
|
|
MCDwarfLineAddr::Emit(this, LineDelta, Res);
|
|
|
|
return;
|
|
|
|
}
|
2011-05-19 21:40:34 +00:00
|
|
|
AddrDelta = ForceExpAbs(AddrDelta);
|
2010-12-03 00:55:40 +00:00
|
|
|
new MCDwarfLineAddrFragment(LineDelta, *AddrDelta, getCurrentSectionData());
|
|
|
|
}
|
|
|
|
|
2010-12-28 05:39:27 +00:00
|
|
|
void MCObjectStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
|
|
|
|
const MCSymbol *Label) {
|
|
|
|
const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
|
|
|
|
int64_t Res;
|
|
|
|
if (AddrDelta->EvaluateAsAbsolute(Res, getAssembler())) {
|
|
|
|
MCDwarfFrameEmitter::EmitAdvanceLoc(*this, Res);
|
|
|
|
return;
|
|
|
|
}
|
2011-05-19 21:40:34 +00:00
|
|
|
AddrDelta = ForceExpAbs(AddrDelta);
|
2010-12-28 05:39:27 +00:00
|
|
|
new MCDwarfCallFrameFragment(*AddrDelta, getCurrentSectionData());
|
|
|
|
}
|
|
|
|
|
2012-10-04 13:12:43 +00:00
|
|
|
void MCObjectStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
|
|
|
|
assert(AddrSpace == 0 && "Address space must be 0!");
|
|
|
|
getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment,
|
|
|
|
int64_t Value,
|
|
|
|
unsigned ValueSize,
|
|
|
|
unsigned MaxBytesToEmit) {
|
|
|
|
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 MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment,
|
|
|
|
unsigned MaxBytesToEmit) {
|
|
|
|
EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
|
|
|
|
cast<MCAlignFragment>(getCurrentFragment())->setEmitNops(true);
|
|
|
|
}
|
|
|
|
|
2012-01-27 00:37:08 +00:00
|
|
|
bool MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset,
|
2012-01-26 23:47:45 +00:00
|
|
|
unsigned char Value) {
|
2011-02-20 20:20:07 +00:00
|
|
|
int64_t Res;
|
|
|
|
if (Offset->EvaluateAsAbsolute(Res, getAssembler())) {
|
|
|
|
new MCOrgFragment(*Offset, Value, getCurrentSectionData());
|
2012-01-27 00:37:08 +00:00
|
|
|
return false;
|
2011-02-20 20:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *CurrentPos = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(CurrentPos);
|
|
|
|
MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
|
|
|
|
const MCExpr *Ref =
|
|
|
|
MCSymbolRefExpr::Create(CurrentPos, Variant, getContext());
|
|
|
|
const MCExpr *Delta =
|
|
|
|
MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
|
|
|
|
|
|
|
|
if (!Delta->EvaluateAsAbsolute(Res, getAssembler()))
|
2012-01-27 00:37:08 +00:00
|
|
|
return true;
|
2013-01-09 01:35:34 +00:00
|
|
|
EmitFill(Res, Value);
|
2012-01-27 00:37:08 +00:00
|
|
|
return false;
|
2010-12-02 05:59:38 +00:00
|
|
|
}
|
|
|
|
|
2011-11-23 22:18:04 +00:00
|
|
|
// Associate GPRel32 fixup with data and resize data area
|
|
|
|
void MCObjectStreamer::EmitGPRel32Value(const MCExpr *Value) {
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
|
2012-12-07 19:13:57 +00:00
|
|
|
DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(),
|
|
|
|
Value, FK_GPRel_4));
|
2011-11-23 22:18:04 +00:00
|
|
|
DF->getContents().resize(DF->getContents().size() + 4, 0);
|
|
|
|
}
|
|
|
|
|
2012-08-22 00:49:30 +00:00
|
|
|
// Associate GPRel32 fixup with data and resize data area
|
|
|
|
void MCObjectStreamer::EmitGPRel64Value(const MCExpr *Value) {
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
|
2012-12-07 19:13:57 +00:00
|
|
|
DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(),
|
|
|
|
Value, FK_GPRel_4));
|
2012-08-22 00:49:30 +00:00
|
|
|
DF->getContents().resize(DF->getContents().size() + 8, 0);
|
|
|
|
}
|
|
|
|
|
2012-10-01 15:14:14 +00:00
|
|
|
void MCObjectStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
|
|
|
|
unsigned AddrSpace) {
|
|
|
|
assert(AddrSpace == 0 && "Address space must be 0!");
|
|
|
|
// FIXME: A MCFillFragment would be more memory efficient but MCExpr has
|
|
|
|
// problems evaluating expressions across multiple fragments.
|
|
|
|
getOrCreateDataFragment()->getContents().append(NumBytes, FillValue);
|
|
|
|
}
|
|
|
|
|
2012-01-07 03:13:18 +00:00
|
|
|
void MCObjectStreamer::FinishImpl() {
|
2010-12-10 07:39:47 +00:00
|
|
|
// Dump out the dwarf file & directory tables and line tables.
|
2012-03-03 14:24:15 +00:00
|
|
|
const MCSymbol *LineSectionSymbol = NULL;
|
2010-12-10 07:39:47 +00:00
|
|
|
if (getContext().hasDwarfFiles())
|
2012-02-28 21:13:05 +00:00
|
|
|
LineSectionSymbol = MCDwarfFileTable::Emit(this);
|
2010-12-10 07:39:47 +00:00
|
|
|
|
2011-12-09 18:09:40 +00:00
|
|
|
// If we are generating dwarf for assembly source files dump out the sections.
|
|
|
|
if (getContext().getGenDwarfForAssembly())
|
2012-02-28 21:13:05 +00:00
|
|
|
MCGenDwarfInfo::Emit(this, LineSectionSymbol);
|
2011-12-09 18:09:40 +00:00
|
|
|
|
2010-06-16 20:04:25 +00:00
|
|
|
getAssembler().Finish();
|
|
|
|
}
|