2009-06-24 01:03:06 +00: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2013-09-09 02:37:14 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2010-12-06 17:27:56 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2010-11-16 21:20:32 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2010-01-19 18:45:47 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2014-01-24 02:42:26 +00:00
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
2010-09-30 16:52:03 +00:00
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
2011-04-27 15:21:19 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2014-07-17 03:08:50 +00:00
|
|
|
#include "llvm/MC/MCWin64EH.h"
|
2010-11-01 14:28:48 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2012-08-08 23:56:06 +00:00
|
|
|
#include "llvm/Support/LEB128.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-04-03 21:48:59 +00:00
|
|
|
#include <cstdlib>
|
2009-06-24 01:03:06 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2013-11-19 00:57:56 +00:00
|
|
|
// Pin the vtables to this file.
|
2013-10-08 13:08:17 +00:00
|
|
|
MCTargetStreamer::~MCTargetStreamer() {}
|
2014-01-26 06:06:37 +00:00
|
|
|
|
|
|
|
MCTargetStreamer::MCTargetStreamer(MCStreamer &S) : Streamer(S) {
|
|
|
|
S.setTargetStreamer(this);
|
|
|
|
}
|
|
|
|
|
2014-01-14 04:25:13 +00:00
|
|
|
void MCTargetStreamer::emitLabel(MCSymbol *Symbol) {}
|
2013-10-08 13:08:17 +00:00
|
|
|
|
2014-01-31 23:10:26 +00:00
|
|
|
void MCTargetStreamer::finish() {}
|
|
|
|
|
2014-03-20 09:44:49 +00:00
|
|
|
void MCTargetStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) {}
|
|
|
|
|
2014-01-26 06:06:37 +00:00
|
|
|
MCStreamer::MCStreamer(MCContext &Ctx)
|
2014-07-13 19:03:36 +00:00
|
|
|
: Context(Ctx), CurrentWinFrameInfo(nullptr) {
|
2013-04-17 21:18:16 +00:00
|
|
|
SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
|
2009-06-24 01:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MCStreamer::~MCStreamer() {
|
2014-07-13 19:03:36 +00:00
|
|
|
for (unsigned i = 0; i < getNumWinFrameInfos(); ++i)
|
|
|
|
delete WinFrameInfos[i];
|
2009-06-24 01:03:06 +00:00
|
|
|
}
|
2010-01-19 18:45:47 +00:00
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
void MCStreamer::reset() {
|
2014-07-13 19:03:36 +00:00
|
|
|
for (unsigned i = 0; i < getNumWinFrameInfos(); ++i)
|
|
|
|
delete WinFrameInfos[i];
|
|
|
|
WinFrameInfos.clear();
|
|
|
|
CurrentWinFrameInfo = nullptr;
|
2012-12-12 22:59:46 +00:00
|
|
|
SectionStack.clear();
|
2013-04-17 21:18:16 +00:00
|
|
|
SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
|
2012-12-12 22:59:46 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 14:24:41 +00:00
|
|
|
static const MCExpr *forceExpAbs(MCStreamer &OS, const MCExpr* Expr) {
|
|
|
|
MCContext &Context = OS.getContext();
|
2014-03-20 21:26:38 +00:00
|
|
|
assert(!isa<MCSymbolRefExpr>(Expr));
|
|
|
|
if (Context.getAsmInfo()->hasAggressiveSymbolFolding())
|
2011-05-19 21:40:34 +00:00
|
|
|
return Expr;
|
|
|
|
|
|
|
|
MCSymbol *ABS = Context.CreateTempSymbol();
|
2014-08-15 14:24:41 +00:00
|
|
|
OS.EmitAssignment(ABS, Expr);
|
2011-05-19 21:40:34 +00:00
|
|
|
return MCSymbolRefExpr::Create(ABS, Context);
|
2011-04-30 03:21:04 +00:00
|
|
|
}
|
|
|
|
|
2010-01-22 19:17:48 +00:00
|
|
|
raw_ostream &MCStreamer::GetCommentOS() {
|
|
|
|
// By default, discard comments.
|
|
|
|
return nulls();
|
2013-09-09 02:37:14 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 16:28:37 +00:00
|
|
|
void MCStreamer::emitRawComment(const Twine &T, bool TabPrefix) {}
|
|
|
|
|
2013-09-09 19:48:37 +00:00
|
|
|
void MCStreamer::generateCompactUnwindEncodings(MCAsmBackend *MAB) {
|
2014-07-13 19:03:36 +00:00
|
|
|
for (auto &FI : DwarfFrameInfos)
|
|
|
|
FI.CompactUnwindEncoding =
|
|
|
|
(MAB ? MAB->generateCompactUnwindEncoding(FI.Instructions) : 0);
|
2010-01-22 19:17:48 +00:00
|
|
|
}
|
|
|
|
|
2010-12-03 00:55:40 +00:00
|
|
|
void MCStreamer::EmitDwarfSetLineAddr(int64_t LineDelta,
|
|
|
|
const MCSymbol *Label, int PointerSize) {
|
|
|
|
// emit the sequence to set the address
|
|
|
|
EmitIntValue(dwarf::DW_LNS_extended_op, 1);
|
|
|
|
EmitULEB128IntValue(PointerSize + 1);
|
|
|
|
EmitIntValue(dwarf::DW_LNE_set_address, 1);
|
|
|
|
EmitSymbolValue(Label, PointerSize);
|
|
|
|
|
|
|
|
// emit the sequence for the LineDelta (from 1) and a zero address delta.
|
|
|
|
MCDwarfLineAddr::Emit(this, LineDelta, 0);
|
|
|
|
}
|
2010-01-22 19:17:48 +00:00
|
|
|
|
2010-01-19 22:03:38 +00:00
|
|
|
/// EmitIntValue - Special case of EmitValue that avoids the client having to
|
|
|
|
/// pass in a MCExpr for constant integers.
|
2013-07-02 15:49:13 +00:00
|
|
|
void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
|
2010-12-09 19:26:21 +00:00
|
|
|
assert(Size <= 8 && "Invalid size");
|
2010-12-15 23:14:45 +00:00
|
|
|
assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
|
|
|
|
"Invalid size");
|
2010-12-03 02:54:21 +00:00
|
|
|
char buf[8];
|
2013-06-18 07:20:20 +00:00
|
|
|
const bool isLittleEndian = Context.getAsmInfo()->isLittleEndian();
|
2011-06-07 17:31:02 +00:00
|
|
|
for (unsigned i = 0; i != Size; ++i) {
|
|
|
|
unsigned index = isLittleEndian ? i : (Size - i - 1);
|
|
|
|
buf[i] = uint8_t(Value >> (index * 8));
|
|
|
|
}
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitBytes(StringRef(buf, Size));
|
2010-01-19 22:03:38 +00:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:22:24 +00:00
|
|
|
/// EmitULEB128Value - Special case of EmitULEB128Value that avoids the
|
|
|
|
/// client having to pass in a MCExpr for constant integers.
|
2013-07-02 15:49:13 +00:00
|
|
|
void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned Padding) {
|
2012-02-23 21:15:21 +00:00
|
|
|
SmallString<128> Tmp;
|
2010-12-03 01:19:49 +00:00
|
|
|
raw_svector_ostream OSE(Tmp);
|
2012-08-08 23:56:06 +00:00
|
|
|
encodeULEB128(Value, OSE, Padding);
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitBytes(OSE.str());
|
2010-09-30 16:52:03 +00:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:22:24 +00:00
|
|
|
/// EmitSLEB128Value - Special case of EmitSLEB128Value that avoids the
|
|
|
|
/// client having to pass in a MCExpr for constant integers.
|
2013-07-02 15:49:13 +00:00
|
|
|
void MCStreamer::EmitSLEB128IntValue(int64_t Value) {
|
2012-02-23 21:15:21 +00:00
|
|
|
SmallString<128> Tmp;
|
2010-12-03 01:19:49 +00:00
|
|
|
raw_svector_ostream OSE(Tmp);
|
2012-08-08 23:56:06 +00:00
|
|
|
encodeSLEB128(Value, OSE);
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitBytes(OSE.str());
|
2010-09-30 16:52:03 +00:00
|
|
|
}
|
|
|
|
|
2013-07-02 15:49:13 +00:00
|
|
|
void MCStreamer::EmitAbsValue(const MCExpr *Value, unsigned Size) {
|
2014-08-15 14:24:41 +00:00
|
|
|
const MCExpr *ABS = forceExpAbs(*this, Value);
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitValue(ABS, Size);
|
2010-12-06 17:27:56 +00:00
|
|
|
}
|
|
|
|
|
2010-12-10 07:39:47 +00:00
|
|
|
|
2014-04-22 17:27:29 +00:00
|
|
|
void MCStreamer::EmitValue(const MCExpr *Value, unsigned Size,
|
|
|
|
const SMLoc &Loc) {
|
|
|
|
EmitValueImpl(Value, Size, Loc);
|
2010-12-10 07:39:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 21:01:58 +00:00
|
|
|
void MCStreamer::EmitSymbolValue(const MCSymbol *Sym, unsigned Size,
|
|
|
|
bool IsSectionRelative) {
|
|
|
|
assert((!IsSectionRelative || Size == 4) &&
|
|
|
|
"SectionRelative value requires 4-bytes");
|
|
|
|
|
|
|
|
if (!IsSectionRelative)
|
|
|
|
EmitValueImpl(MCSymbolRefExpr::Create(Sym, getContext()), Size);
|
|
|
|
else
|
|
|
|
EmitCOFFSecRel32(Sym);
|
2010-12-10 07:39:47 +00:00
|
|
|
}
|
|
|
|
|
2012-02-03 04:33:00 +00:00
|
|
|
void MCStreamer::EmitGPRel64Value(const MCExpr *Value) {
|
|
|
|
report_fatal_error("unsupported directive in streamer");
|
|
|
|
}
|
|
|
|
|
2010-11-28 15:09:24 +00:00
|
|
|
void MCStreamer::EmitGPRel32Value(const MCExpr *Value) {
|
|
|
|
report_fatal_error("unsupported directive in streamer");
|
|
|
|
}
|
|
|
|
|
2010-01-19 18:45:47 +00:00
|
|
|
/// EmitFill - Emit NumBytes bytes worth of the value specified by
|
|
|
|
/// FillValue. This implements directives such as '.space'.
|
2013-07-02 15:49:13 +00:00
|
|
|
void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
|
2010-01-19 18:45:47 +00:00
|
|
|
const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
|
|
|
|
for (uint64_t i = 0, e = NumBytes; i != e; ++i)
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitValue(E, 1);
|
2010-01-19 18:45:47 +00:00
|
|
|
}
|
2010-04-03 21:35:55 +00:00
|
|
|
|
2013-07-02 15:49:13 +00:00
|
|
|
/// The implementation in this class just redirects to EmitFill.
|
|
|
|
void MCStreamer::EmitZeros(uint64_t NumBytes) {
|
|
|
|
EmitFill(NumBytes, 0);
|
2013-06-27 14:35:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 01:52:11 +00:00
|
|
|
unsigned MCStreamer::EmitDwarfFileDirective(unsigned FileNo,
|
|
|
|
StringRef Directory,
|
|
|
|
StringRef Filename, unsigned CUID) {
|
|
|
|
return getContext().GetDwarfFile(Directory, Filename, FileNo, CUID);
|
2010-11-16 21:20:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
|
|
|
|
unsigned Column, unsigned Flags,
|
|
|
|
unsigned Isa,
|
2011-04-18 20:26:49 +00:00
|
|
|
unsigned Discriminator,
|
|
|
|
StringRef FileName) {
|
2010-11-16 21:20:32 +00:00
|
|
|
getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa,
|
|
|
|
Discriminator);
|
|
|
|
}
|
|
|
|
|
2014-04-01 08:07:52 +00:00
|
|
|
MCSymbol *MCStreamer::getDwarfLineTableSymbol(unsigned CUID) {
|
|
|
|
MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID);
|
|
|
|
if (!Table.getLabel()) {
|
|
|
|
StringRef Prefix = Context.getAsmInfo()->getPrivateGlobalPrefix();
|
|
|
|
Table.setLabel(
|
|
|
|
Context.GetOrCreateSymbol(Prefix + "line_table_start" + Twine(CUID)));
|
|
|
|
}
|
|
|
|
return Table.getLabel();
|
|
|
|
}
|
|
|
|
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *MCStreamer::getCurrentDwarfFrameInfo() {
|
|
|
|
if (DwarfFrameInfos.empty())
|
2014-04-13 04:57:38 +00:00
|
|
|
return nullptr;
|
2014-07-13 19:03:36 +00:00
|
|
|
return &DwarfFrameInfos.back();
|
2010-12-10 07:39:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-13 19:03:36 +00:00
|
|
|
void MCStreamer::EnsureValidDwarfFrame() {
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-10 07:39:47 +00:00
|
|
|
if (!CurFrame || CurFrame->End)
|
|
|
|
report_fatal_error("No open frame");
|
|
|
|
}
|
|
|
|
|
2011-04-28 12:50:37 +00:00
|
|
|
void MCStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
|
|
|
|
MCSymbol *EHSymbol) {
|
|
|
|
}
|
|
|
|
|
2014-03-05 20:09:15 +00:00
|
|
|
void MCStreamer::InitSections() {
|
2014-01-24 02:42:26 +00:00
|
|
|
SwitchSection(getContext().getObjectFileInfo()->getTextSection());
|
|
|
|
}
|
|
|
|
|
2013-09-19 23:21:01 +00:00
|
|
|
void MCStreamer::AssignSection(MCSymbol *Symbol, const MCSection *Section) {
|
|
|
|
if (Section)
|
|
|
|
Symbol->setSection(*Section);
|
|
|
|
else
|
|
|
|
Symbol->setUndefined();
|
|
|
|
|
|
|
|
// As we emit symbols into a section, track the order so that they can
|
|
|
|
// be sorted upon later. Zero is reserved to mean 'unemitted'.
|
|
|
|
SymbolOrdering[Symbol] = 1 + SymbolOrdering.size();
|
|
|
|
}
|
|
|
|
|
2011-04-27 15:21:19 +00:00
|
|
|
void MCStreamer::EmitLabel(MCSymbol *Symbol) {
|
|
|
|
assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
|
2013-04-17 21:18:16 +00:00
|
|
|
assert(getCurrentSection().first && "Cannot emit before setting section!");
|
2013-09-19 23:21:01 +00:00
|
|
|
AssignSection(Symbol, getCurrentSection().first);
|
2014-01-14 04:25:13 +00:00
|
|
|
|
|
|
|
MCTargetStreamer *TS = getTargetStreamer();
|
|
|
|
if (TS)
|
|
|
|
TS->emitLabel(Symbol);
|
2011-04-27 15:21:19 +00:00
|
|
|
}
|
|
|
|
|
2011-07-19 00:01:42 +00:00
|
|
|
void MCStreamer::EmitCompactUnwindEncoding(uint32_t CompactUnwindEncoding) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-07-19 00:01:42 +00:00
|
|
|
CurFrame->CompactUnwindEncoding = CompactUnwindEncoding;
|
|
|
|
}
|
|
|
|
|
2011-05-10 01:10:18 +00:00
|
|
|
void MCStreamer::EmitCFISections(bool EH, bool Debug) {
|
2011-05-10 13:39:48 +00:00
|
|
|
assert(EH || Debug);
|
2011-05-10 01:10:18 +00:00
|
|
|
}
|
|
|
|
|
2014-01-27 17:20:25 +00:00
|
|
|
void MCStreamer::EmitCFIStartProc(bool IsSimple) {
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-04-12 23:59:07 +00:00
|
|
|
if (CurFrame && !CurFrame->End)
|
2010-12-10 07:39:47 +00:00
|
|
|
report_fatal_error("Starting a frame before finishing the previous one!");
|
2011-08-02 20:24:22 +00:00
|
|
|
|
2011-08-24 22:31:37 +00:00
|
|
|
MCDwarfFrameInfo Frame;
|
2014-01-27 17:20:25 +00:00
|
|
|
Frame.IsSimple = IsSimple;
|
2012-01-07 22:42:19 +00:00
|
|
|
EmitCFIStartProcImpl(Frame);
|
|
|
|
|
2014-07-13 19:03:36 +00:00
|
|
|
DwarfFrameInfos.push_back(Frame);
|
2012-01-07 22:42:19 +00:00
|
|
|
}
|
2011-08-02 20:24:22 +00:00
|
|
|
|
2012-01-07 22:42:19 +00:00
|
|
|
void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
|
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIEndProc() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2012-01-09 00:17:29 +00:00
|
|
|
EmitCFIEndProcImpl(*CurFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
|
2014-06-25 00:13:59 +00:00
|
|
|
// Put a dummy non-null value in Frame.End to mark that this frame has been
|
|
|
|
// closed.
|
|
|
|
Frame.End = (MCSymbol *) 1;
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *MCStreamer::EmitCFICommon() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
2010-12-29 01:42:56 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2012-11-24 02:18:49 +00:00
|
|
|
return Label;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
|
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createDefCfa(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-29 01:42:56 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createDefCfaOffset(Label, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-28 18:36:23 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 18:53:30 +00:00
|
|
|
void MCStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-04-12 18:53:30 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIDefCfaRegister(int64_t Register) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createDefCfaRegister(Label, Register);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-29 00:26:06 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
2012-11-24 03:10:54 +00:00
|
|
|
MCCFIInstruction::createOffset(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-29 00:09:59 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 16:12:03 +00:00
|
|
|
void MCStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createRelOffset(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-04-12 16:12:03 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIPersonality(const MCSymbol *Sym,
|
2010-12-27 00:36:05 +00:00
|
|
|
unsigned Encoding) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-10 07:39:47 +00:00
|
|
|
CurFrame->Personality = Sym;
|
2010-12-27 00:36:05 +00:00
|
|
|
CurFrame->PersonalityEncoding = Encoding;
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-10 07:39:47 +00:00
|
|
|
CurFrame->Lsda = Sym;
|
2010-12-27 15:56:22 +00:00
|
|
|
CurFrame->LsdaEncoding = Encoding;
|
2010-11-22 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIRememberState() {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction = MCCFIInstruction::createRememberState(Label);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-28 18:36:23 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-04-12 23:59:07 +00:00
|
|
|
void MCStreamer::EmitCFIRestoreState() {
|
2010-12-28 18:36:23 +00:00
|
|
|
// FIXME: Error if there is no matching cfi_remember_state.
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction = MCCFIInstruction::createRestoreState(Label);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2010-12-28 18:36:23 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-04-12 15:31:05 +00:00
|
|
|
void MCStreamer::EmitCFISameValue(int64_t Register) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createSameValue(Label, Register);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-04-12 15:31:05 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-12-29 21:43:03 +00:00
|
|
|
void MCStreamer::EmitCFIRestore(int64_t Register) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createRestore(Label, Register);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-12-29 21:43:03 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2011-12-29 20:24:47 +00:00
|
|
|
void MCStreamer::EmitCFIEscape(StringRef Values) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction = MCCFIInstruction::createEscape(Label, Values);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2011-12-29 20:24:47 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2012-01-23 21:51:52 +00:00
|
|
|
void MCStreamer::EmitCFISignalFrame() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidDwarfFrame();
|
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2012-01-23 21:51:52 +00:00
|
|
|
CurFrame->IsSignalFrame = true;
|
|
|
|
}
|
|
|
|
|
2012-11-23 16:59:41 +00:00
|
|
|
void MCStreamer::EmitCFIUndefined(int64_t Register) {
|
2012-11-24 02:18:49 +00:00
|
|
|
MCSymbol *Label = EmitCFICommon();
|
2012-11-24 02:01:08 +00:00
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createUndefined(Label, Register);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2012-11-23 16:59:41 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2012-11-25 15:14:49 +00:00
|
|
|
void MCStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
|
|
|
|
MCSymbol *Label = EmitCFICommon();
|
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createRegister(Label, Register1, Register2);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2012-11-25 15:14:49 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2013-09-26 14:49:40 +00:00
|
|
|
void MCStreamer::EmitCFIWindowSave() {
|
|
|
|
MCSymbol *Label = EmitCFICommon();
|
|
|
|
MCCFIInstruction Instruction =
|
|
|
|
MCCFIInstruction::createWindowSave(Label);
|
2014-07-13 19:03:36 +00:00
|
|
|
MCDwarfFrameInfo *CurFrame = getCurrentDwarfFrameInfo();
|
2013-09-26 14:49:40 +00:00
|
|
|
CurFrame->Instructions.push_back(Instruction);
|
|
|
|
}
|
|
|
|
|
2014-07-13 19:03:36 +00:00
|
|
|
void MCStreamer::EnsureValidWinFrameInfo() {
|
|
|
|
if (!CurrentWinFrameInfo || CurrentWinFrameInfo->End)
|
2011-05-19 02:49:00 +00:00
|
|
|
report_fatal_error("No open Win64 EH frame function!");
|
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIStartProc(const MCSymbol *Symbol) {
|
2014-07-13 19:03:36 +00:00
|
|
|
if (CurrentWinFrameInfo && !CurrentWinFrameInfo->End)
|
2011-05-19 02:49:00 +00:00
|
|
|
report_fatal_error("Starting a function before ending the previous one!");
|
2014-08-03 18:51:17 +00:00
|
|
|
|
|
|
|
MCSymbol *StartProc = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(StartProc);
|
|
|
|
|
|
|
|
WinFrameInfos.push_back(new WinEH::FrameInfo(Symbol, StartProc));
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo = WinFrameInfos.back();
|
2011-05-19 02:49:00 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIEndProc() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (CurrentWinFrameInfo->ChainedParent)
|
2011-05-19 02:49:00 +00:00
|
|
|
report_fatal_error("Not all chained regions terminated!");
|
2014-08-03 18:51:17 +00:00
|
|
|
|
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
|
|
|
CurrentWinFrameInfo->End = Label;
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIStartChained() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2014-08-03 18:51:17 +00:00
|
|
|
|
|
|
|
MCSymbol *StartProc = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(StartProc);
|
|
|
|
|
|
|
|
WinFrameInfos.push_back(new WinEH::FrameInfo(CurrentWinFrameInfo->Function,
|
|
|
|
StartProc, CurrentWinFrameInfo));
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo = WinFrameInfos.back();
|
2011-05-18 20:54:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIEndChained() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (!CurrentWinFrameInfo->ChainedParent)
|
2011-05-19 04:04:13 +00:00
|
|
|
report_fatal_error("End of a chained region outside a chained region!");
|
2014-08-03 18:51:17 +00:00
|
|
|
|
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
|
|
|
|
|
|
|
CurrentWinFrameInfo->End = Label;
|
|
|
|
CurrentWinFrameInfo =
|
|
|
|
const_cast<WinEH::FrameInfo *>(CurrentWinFrameInfo->ChainedParent);
|
2011-05-18 20:54:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinEHHandler(const MCSymbol *Sym, bool Unwind,
|
|
|
|
bool Except) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (CurrentWinFrameInfo->ChainedParent)
|
2011-05-21 17:36:25 +00:00
|
|
|
report_fatal_error("Chained unwind areas can't have handlers!");
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->ExceptionHandler = Sym;
|
2011-05-21 15:57:49 +00:00
|
|
|
if (!Except && !Unwind)
|
2011-05-19 17:46:39 +00:00
|
|
|
report_fatal_error("Don't know what kind of handler this is!");
|
2011-05-21 15:57:49 +00:00
|
|
|
if (Unwind)
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->HandlesUnwind = true;
|
2011-05-21 15:57:49 +00:00
|
|
|
if (Except)
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->HandlesExceptions = true;
|
2011-05-19 17:46:39 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinEHHandlerData() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (CurrentWinFrameInfo->ChainedParent)
|
2011-05-21 17:36:25 +00:00
|
|
|
report_fatal_error("Chained unwind areas can't have handlers!");
|
2011-05-18 20:54:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIPushReg(unsigned Register) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2011-05-27 03:25:01 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst = Win64EH::Instruction::PushNonVol(Label, Register);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-18 20:54:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFISetFrame(unsigned Register, unsigned Offset) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (CurrentWinFrameInfo->LastFrameInst >= 0)
|
2011-05-27 01:42:17 +00:00
|
|
|
report_fatal_error("Frame register and offset already specified!");
|
2011-05-22 00:56:20 +00:00
|
|
|
if (Offset & 0x0F)
|
|
|
|
report_fatal_error("Misaligned frame pointer offset!");
|
2014-06-25 12:41:52 +00:00
|
|
|
if (Offset > 240)
|
|
|
|
report_fatal_error("Frame offset must be less than or equal to 240!");
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2013-08-27 04:16:16 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst =
|
|
|
|
Win64EH::Instruction::SetFPReg(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->LastFrameInst = CurrentWinFrameInfo->Instructions.size();
|
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIAllocStack(unsigned Size) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2014-07-01 00:42:47 +00:00
|
|
|
if (Size == 0)
|
|
|
|
report_fatal_error("Allocation size must be non-zero!");
|
2011-05-22 00:56:20 +00:00
|
|
|
if (Size & 7)
|
|
|
|
report_fatal_error("Misaligned stack allocation!");
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2011-05-27 03:25:01 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst = Win64EH::Instruction::Alloc(Label, Size);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFISaveReg(unsigned Register, unsigned Offset) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2011-05-22 00:56:20 +00:00
|
|
|
if (Offset & 7)
|
|
|
|
report_fatal_error("Misaligned saved register offset!");
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2011-05-27 03:25:01 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst =
|
|
|
|
Win64EH::Instruction::SaveNonVol(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFISaveXMM(unsigned Register, unsigned Offset) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2011-05-22 00:56:20 +00:00
|
|
|
if (Offset & 0x0F)
|
|
|
|
report_fatal_error("Misaligned saved vector register offset!");
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2011-05-27 03:25:01 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst =
|
|
|
|
Win64EH::Instruction::SaveXMM(Label, Register, Offset);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIPushFrame(bool Code) {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
|
|
|
if (CurrentWinFrameInfo->Instructions.size() > 0)
|
2011-05-27 01:42:17 +00:00
|
|
|
report_fatal_error("If present, PushMachFrame must be the first UOP");
|
2014-07-17 03:08:50 +00:00
|
|
|
|
2011-05-27 03:25:01 +00:00
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
2014-07-17 03:08:50 +00:00
|
|
|
|
|
|
|
WinEH::Instruction Inst = Win64EH::Instruction::PushMachFrame(Label, Code);
|
2014-07-13 19:03:36 +00:00
|
|
|
CurrentWinFrameInfo->Instructions.push_back(Inst);
|
2011-05-15 17:20:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
void MCStreamer::EmitWinCFIEndProlog() {
|
2014-07-13 19:03:36 +00:00
|
|
|
EnsureValidWinFrameInfo();
|
2014-08-03 18:51:17 +00:00
|
|
|
|
|
|
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Label);
|
|
|
|
|
|
|
|
CurrentWinFrameInfo->PrologEnd = Label;
|
2011-05-16 21:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 18:15:00 +00:00
|
|
|
void MCStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
|
|
|
|
}
|
|
|
|
|
2011-12-17 01:14:52 +00:00
|
|
|
void MCStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
|
|
|
|
}
|
|
|
|
|
2010-05-20 19:45:09 +00:00
|
|
|
/// EmitRawText - If this file is backed by an assembly streamer, this dumps
|
2010-04-03 21:35:55 +00:00
|
|
|
/// the specified string in the output .s file. This capability is
|
|
|
|
/// indicated by the hasRawTextSupport() predicate.
|
2013-10-24 22:43:10 +00:00
|
|
|
void MCStreamer::EmitRawTextImpl(StringRef String) {
|
2010-04-03 21:35:55 +00:00
|
|
|
errs() << "EmitRawText called on an MCStreamer that doesn't support it, "
|
|
|
|
" something must not be fully mc'ized\n";
|
|
|
|
abort();
|
|
|
|
}
|
2010-04-03 22:12:35 +00:00
|
|
|
|
|
|
|
void MCStreamer::EmitRawText(const Twine &T) {
|
|
|
|
SmallString<128> Str;
|
2013-10-24 22:43:10 +00:00
|
|
|
EmitRawTextImpl(T.toStringRef(Str));
|
2010-04-03 22:12:35 +00:00
|
|
|
}
|
2011-05-10 03:14:15 +00:00
|
|
|
|
2014-07-13 19:03:36 +00:00
|
|
|
void MCStreamer::EmitWindowsUnwindTables() {
|
2011-05-22 04:15:07 +00:00
|
|
|
}
|
2012-01-07 03:13:18 +00:00
|
|
|
|
|
|
|
void MCStreamer::Finish() {
|
2014-07-13 19:03:36 +00:00
|
|
|
if (!DwarfFrameInfos.empty() && !DwarfFrameInfos.back().End)
|
2012-01-07 03:13:18 +00:00
|
|
|
report_fatal_error("Unfinished frame!");
|
|
|
|
|
2014-01-31 23:10:26 +00:00
|
|
|
MCTargetStreamer *TS = getTargetStreamer();
|
|
|
|
if (TS)
|
|
|
|
TS->finish();
|
|
|
|
|
2012-01-07 03:13:18 +00:00
|
|
|
FinishImpl();
|
|
|
|
}
|
2013-02-19 21:57:35 +00:00
|
|
|
|
2014-03-20 09:44:49 +00:00
|
|
|
void MCStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
|
2014-06-25 18:37:33 +00:00
|
|
|
visitUsedExpr(*Value);
|
2014-03-20 09:44:49 +00:00
|
|
|
Symbol->setVariableValue(Value);
|
|
|
|
|
|
|
|
MCTargetStreamer *TS = getTargetStreamer();
|
|
|
|
if (TS)
|
|
|
|
TS->emitAssignment(Symbol, Value);
|
|
|
|
}
|
2014-06-25 00:27:53 +00:00
|
|
|
|
2014-06-25 15:45:33 +00:00
|
|
|
void MCStreamer::visitUsedSymbol(const MCSymbol &Sym) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCStreamer::visitUsedExpr(const MCExpr &Expr) {
|
|
|
|
switch (Expr.getKind()) {
|
|
|
|
case MCExpr::Target:
|
|
|
|
cast<MCTargetExpr>(Expr).visitUsedExpr(*this);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Constant:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Binary: {
|
|
|
|
const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr);
|
|
|
|
visitUsedExpr(*BE.getLHS());
|
|
|
|
visitUsedExpr(*BE.getRHS());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MCExpr::SymbolRef:
|
|
|
|
visitUsedSymbol(cast<MCSymbolRefExpr>(Expr).getSymbol());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCExpr::Unary:
|
|
|
|
visitUsedExpr(*cast<MCUnaryExpr>(Expr).getSubExpr());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-25 18:37:33 +00:00
|
|
|
void MCStreamer::EmitInstruction(const MCInst &Inst,
|
|
|
|
const MCSubtargetInfo &STI) {
|
|
|
|
// Scan for values.
|
|
|
|
for (unsigned i = Inst.getNumOperands(); i--;)
|
|
|
|
if (Inst.getOperand(i).isExpr())
|
|
|
|
visitUsedExpr(*Inst.getOperand(i).getExpr());
|
|
|
|
}
|
|
|
|
|
2014-06-25 00:27:53 +00:00
|
|
|
void MCStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {}
|
|
|
|
void MCStreamer::EmitThumbFunc(MCSymbol *Func) {}
|
|
|
|
void MCStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {}
|
|
|
|
void MCStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {}
|
|
|
|
void MCStreamer::EndCOFFSymbolDef() {}
|
|
|
|
void MCStreamer::EmitFileDirective(StringRef Filename) {}
|
|
|
|
void MCStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {}
|
|
|
|
void MCStreamer::EmitCOFFSymbolType(int Type) {}
|
|
|
|
void MCStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {}
|
|
|
|
void MCStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
|
|
|
|
unsigned ByteAlignment) {}
|
|
|
|
void MCStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
|
|
|
|
uint64_t Size, unsigned ByteAlignment) {}
|
|
|
|
void MCStreamer::ChangeSection(const MCSection *, const MCExpr *) {}
|
|
|
|
void MCStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {}
|
|
|
|
void MCStreamer::EmitBytes(StringRef Data) {}
|
|
|
|
void MCStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
|
2014-06-25 18:37:33 +00:00
|
|
|
const SMLoc &Loc) {
|
|
|
|
visitUsedExpr(*Value);
|
|
|
|
}
|
2014-06-25 00:27:53 +00:00
|
|
|
void MCStreamer::EmitULEB128Value(const MCExpr *Value) {}
|
|
|
|
void MCStreamer::EmitSLEB128Value(const MCExpr *Value) {}
|
|
|
|
void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
|
|
|
|
unsigned ValueSize,
|
|
|
|
unsigned MaxBytesToEmit) {}
|
|
|
|
void MCStreamer::EmitCodeAlignment(unsigned ByteAlignment,
|
|
|
|
unsigned MaxBytesToEmit) {}
|
|
|
|
bool MCStreamer::EmitValueToOffset(const MCExpr *Offset, unsigned char Value) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void MCStreamer::EmitBundleAlignMode(unsigned AlignPow2) {}
|
|
|
|
void MCStreamer::EmitBundleLock(bool AlignToEnd) {}
|
|
|
|
void MCStreamer::FinishImpl() {}
|
|
|
|
void MCStreamer::EmitBundleUnlock() {}
|