2009-06-24 03:03:06 +02:00
|
|
|
//===- lib/MC/MCStreamer.cpp - Streaming Machine Code Output --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-16 22:20:32 +01:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2009-06-24 03:03:06 +02:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2010-01-19 19:45:47 +01:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2010-09-30 18:52:03 +02:00
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2010-11-01 15:28:48 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-01-22 20:17:48 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-04-04 00:12:35 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2010-04-03 23:48:59 +02:00
|
|
|
#include <cstdlib>
|
2009-06-24 03:03:06 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-09-02 20:53:37 +02:00
|
|
|
MCStreamer::MCStreamer(MCContext &Ctx) : Context(Ctx), CurSection(0),
|
|
|
|
PrevSection(0) {
|
2009-06-24 03:03:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MCStreamer::~MCStreamer() {
|
|
|
|
}
|
2010-01-19 19:45:47 +01:00
|
|
|
|
2010-01-22 20:17:48 +01:00
|
|
|
raw_ostream &MCStreamer::GetCommentOS() {
|
|
|
|
// By default, discard comments.
|
|
|
|
return nulls();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-19 23:03:38 +01:00
|
|
|
/// EmitIntValue - Special case of EmitValue that avoids the client having to
|
|
|
|
/// pass in a MCExpr for constant integers.
|
|
|
|
void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size,
|
|
|
|
unsigned AddrSpace) {
|
|
|
|
EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
|
|
|
|
}
|
|
|
|
|
2010-11-02 18:22:24 +01:00
|
|
|
/// EmitULEB128Value - Special case of EmitULEB128Value that avoids the
|
|
|
|
/// client having to pass in a MCExpr for constant integers.
|
|
|
|
void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned AddrSpace) {
|
|
|
|
EmitULEB128Value(MCConstantExpr::Create(Value, getContext()), AddrSpace);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
2010-11-02 18:22:24 +01:00
|
|
|
/// EmitSLEB128Value - Special case of EmitSLEB128Value that avoids the
|
|
|
|
/// client having to pass in a MCExpr for constant integers.
|
|
|
|
void MCStreamer::EmitSLEB128IntValue(int64_t Value, unsigned AddrSpace) {
|
|
|
|
EmitSLEB128Value(MCConstantExpr::Create(Value, getContext()), AddrSpace);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
2010-03-09 01:39:24 +01:00
|
|
|
void MCStreamer::EmitSymbolValue(const MCSymbol *Sym, unsigned Size,
|
|
|
|
unsigned AddrSpace) {
|
|
|
|
EmitValue(MCSymbolRefExpr::Create(Sym, getContext()), Size, AddrSpace);
|
|
|
|
}
|
|
|
|
|
2010-01-19 19:45:47 +01:00
|
|
|
/// EmitFill - Emit NumBytes bytes worth of the value specified by
|
|
|
|
/// FillValue. This implements directives such as '.space'.
|
2010-01-19 20:46:13 +01:00
|
|
|
void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
|
|
|
|
unsigned AddrSpace) {
|
2010-01-19 19:45:47 +01:00
|
|
|
const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
|
|
|
|
for (uint64_t i = 0, e = NumBytes; i != e; ++i)
|
2010-01-19 20:46:13 +01:00
|
|
|
EmitValue(E, 1, AddrSpace);
|
2010-01-19 19:45:47 +01:00
|
|
|
}
|
2010-04-03 23:35:55 +02:00
|
|
|
|
2010-11-16 22:20:32 +01:00
|
|
|
bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo,
|
|
|
|
StringRef Filename) {
|
|
|
|
return getContext().GetDwarfFile(Filename, FileNo) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
|
|
|
|
unsigned Column, unsigned Flags,
|
|
|
|
unsigned Isa,
|
|
|
|
unsigned Discriminator) {
|
|
|
|
getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa,
|
|
|
|
Discriminator);
|
|
|
|
}
|
|
|
|
|
2010-11-22 15:27:24 +01:00
|
|
|
bool MCStreamer::EmitCFIStartProc() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFIEndProc() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFIDefCfaRegister(int64_t Register) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFIPersonality(const MCSymbol *Sym) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCStreamer::EmitCFILsda(const MCSymbol *Sym) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-20 21:45:09 +02:00
|
|
|
/// EmitRawText - If this file is backed by an assembly streamer, this dumps
|
2010-04-03 23:35:55 +02:00
|
|
|
/// the specified string in the output .s file. This capability is
|
|
|
|
/// indicated by the hasRawTextSupport() predicate.
|
|
|
|
void MCStreamer::EmitRawText(StringRef String) {
|
|
|
|
errs() << "EmitRawText called on an MCStreamer that doesn't support it, "
|
|
|
|
" something must not be fully mc'ized\n";
|
|
|
|
abort();
|
|
|
|
}
|
2010-04-04 00:12:35 +02:00
|
|
|
|
|
|
|
void MCStreamer::EmitRawText(const Twine &T) {
|
|
|
|
SmallString<128> Str;
|
|
|
|
T.toVector(Str);
|
|
|
|
EmitRawText(Str.str());
|
|
|
|
}
|