blob: 096cea7bc7f10144763095c5c2d6df15dcee902f [file] [log] [blame]
Daniel Dunbara11af532009-06-24 01:03:06 +00001//===- lib/MC/MCStreamer.cpp - Streaming Machine Code Output --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Rafael Espindola0bbe0b42010-12-06 17:27:56 +000010#include "llvm/MC/MCAsmInfo.h"
Rafael Espindolaaf6b58082010-11-16 21:20:32 +000011#include "llvm/MC/MCContext.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000012#include "llvm/MC/MCStreamer.h"
Chris Lattnerddf6bdd2010-01-19 18:45:47 +000013#include "llvm/MC/MCExpr.h"
Kevin Enderbyc0957932010-09-30 16:52:03 +000014#include "llvm/MC/MCObjectWriter.h"
Rafael Espindola484291c2010-11-01 14:28:48 +000015#include "llvm/Support/ErrorHandling.h"
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000016#include "llvm/Support/raw_ostream.h"
Chris Lattner58bc4dd2010-04-03 22:12:35 +000017#include "llvm/ADT/SmallString.h"
18#include "llvm/ADT/Twine.h"
Chris Lattner3580dea2010-04-03 21:48:59 +000019#include <cstdlib>
Daniel Dunbara11af532009-06-24 01:03:06 +000020using namespace llvm;
21
Benjamin Kramer1674b0b2010-09-02 18:53:37 +000022MCStreamer::MCStreamer(MCContext &Ctx) : Context(Ctx), CurSection(0),
23 PrevSection(0) {
Daniel Dunbara11af532009-06-24 01:03:06 +000024}
25
26MCStreamer::~MCStreamer() {
27}
Chris Lattnerddf6bdd2010-01-19 18:45:47 +000028
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000029raw_ostream &MCStreamer::GetCommentOS() {
30 // By default, discard comments.
31 return nulls();
32}
33
Rafael Espindola32a006e2010-12-03 00:55:40 +000034void MCStreamer::EmitDwarfSetLineAddr(int64_t LineDelta,
35 const MCSymbol *Label, int PointerSize) {
36 // emit the sequence to set the address
37 EmitIntValue(dwarf::DW_LNS_extended_op, 1);
38 EmitULEB128IntValue(PointerSize + 1);
39 EmitIntValue(dwarf::DW_LNE_set_address, 1);
40 EmitSymbolValue(Label, PointerSize);
41
42 // emit the sequence for the LineDelta (from 1) and a zero address delta.
43 MCDwarfLineAddr::Emit(this, LineDelta, 0);
44}
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000045
Chris Lattner32ae3fe2010-01-19 22:03:38 +000046/// EmitIntValue - Special case of EmitValue that avoids the client having to
47/// pass in a MCExpr for constant integers.
48void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size,
49 unsigned AddrSpace) {
Rafael Espindola2df042c2010-12-03 02:54:21 +000050 assert(Size <= 8);
51 char buf[8];
52 // FIXME: Endianness assumption.
53 for (unsigned i = 0; i != Size; ++i)
54 buf[i] = uint8_t(Value >> (i * 8));
55 EmitBytes(StringRef(buf, Size), AddrSpace);
Chris Lattner32ae3fe2010-01-19 22:03:38 +000056}
57
Rafael Espindola3ff57092010-11-02 17:22:24 +000058/// EmitULEB128Value - Special case of EmitULEB128Value that avoids the
59/// client having to pass in a MCExpr for constant integers.
60void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned AddrSpace) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +000061 SmallString<32> Tmp;
62 raw_svector_ostream OSE(Tmp);
63 MCObjectWriter::EncodeULEB128(Value, OSE);
64 EmitBytes(OSE.str(), AddrSpace);
Kevin Enderbyc0957932010-09-30 16:52:03 +000065}
66
Rafael Espindola3ff57092010-11-02 17:22:24 +000067/// EmitSLEB128Value - Special case of EmitSLEB128Value that avoids the
68/// client having to pass in a MCExpr for constant integers.
69void MCStreamer::EmitSLEB128IntValue(int64_t Value, unsigned AddrSpace) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +000070 SmallString<32> Tmp;
71 raw_svector_ostream OSE(Tmp);
72 MCObjectWriter::EncodeSLEB128(Value, OSE);
73 EmitBytes(OSE.str(), AddrSpace);
Kevin Enderbyc0957932010-09-30 16:52:03 +000074}
75
Rafael Espindola0bbe0b42010-12-06 17:27:56 +000076void MCStreamer::EmitAbsValue(const MCExpr *Value, unsigned Size,
77 unsigned AddrSpace) {
78 if (!getContext().getAsmInfo().needsSetToChangeDiffSize()) {
79 EmitValue(Value, Size, AddrSpace);
80 return;
81 }
82 MCSymbol *ABS = getContext().CreateTempSymbol();
83 EmitAssignment(ABS, Value);
84 EmitSymbolValue(ABS, Size, AddrSpace);
85}
86
Chris Lattner6cde3e62010-03-09 00:39:24 +000087void MCStreamer::EmitSymbolValue(const MCSymbol *Sym, unsigned Size,
88 unsigned AddrSpace) {
89 EmitValue(MCSymbolRefExpr::Create(Sym, getContext()), Size, AddrSpace);
90}
91
Rafael Espindola3e032112010-11-28 15:09:24 +000092void MCStreamer::EmitGPRel32Value(const MCExpr *Value) {
93 report_fatal_error("unsupported directive in streamer");
94}
95
Chris Lattnerddf6bdd2010-01-19 18:45:47 +000096/// EmitFill - Emit NumBytes bytes worth of the value specified by
97/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +000098void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
99 unsigned AddrSpace) {
Chris Lattnerddf6bdd2010-01-19 18:45:47 +0000100 const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
101 for (uint64_t i = 0, e = NumBytes; i != e; ++i)
Chris Lattneraaec2052010-01-19 19:46:13 +0000102 EmitValue(E, 1, AddrSpace);
Chris Lattnerddf6bdd2010-01-19 18:45:47 +0000103}
Chris Lattner91bead72010-04-03 21:35:55 +0000104
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000105bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo,
106 StringRef Filename) {
107 return getContext().GetDwarfFile(Filename, FileNo) == 0;
108}
109
110void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
111 unsigned Column, unsigned Flags,
112 unsigned Isa,
113 unsigned Discriminator) {
114 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa,
115 Discriminator);
116}
117
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000118bool MCStreamer::EmitCFIStartProc() {
119 return false;
120}
121
122bool MCStreamer::EmitCFIEndProc() {
123 return false;
124}
125
126bool MCStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
127 return false;
128}
129
130bool MCStreamer::EmitCFIDefCfaRegister(int64_t Register) {
131 return false;
132}
133
134bool MCStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
135 return false;
136}
137
138bool MCStreamer::EmitCFIPersonality(const MCSymbol *Sym) {
139 return false;
140}
141
142bool MCStreamer::EmitCFILsda(const MCSymbol *Sym) {
143 return false;
144}
145
Matt Flemingab3b3652010-05-20 19:45:09 +0000146/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000147/// the specified string in the output .s file. This capability is
148/// indicated by the hasRawTextSupport() predicate.
149void MCStreamer::EmitRawText(StringRef String) {
150 errs() << "EmitRawText called on an MCStreamer that doesn't support it, "
151 " something must not be fully mc'ized\n";
152 abort();
153}
Chris Lattner58bc4dd2010-04-03 22:12:35 +0000154
155void MCStreamer::EmitRawText(const Twine &T) {
156 SmallString<128> Str;
157 T.toVector(Str);
158 EmitRawText(Str.str());
159}