blob: bb1f3d459a2d1fc13244b89ae9b63c5ada75948f [file] [log] [blame]
Daniel Dunbarabc75622010-11-17 16:06:47 +00001//===- lib/MC/MCPureStreamer.cpp - MC "Pure" Object 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
10#include "llvm/MC/MCStreamer.h"
11#include "llvm/MC/MCAssembler.h"
12#include "llvm/MC/MCCodeEmitter.h"
13#include "llvm/MC/MCContext.h"
14#include "llvm/MC/MCExpr.h"
15#include "llvm/MC/MCObjectStreamer.h"
16// FIXME: Remove this.
17#include "llvm/MC/MCSectionMachO.h"
18#include "llvm/MC/MCSymbol.h"
19#include "llvm/Support/ErrorHandling.h"
20
21using namespace llvm;
22
23namespace {
24
25class MCPureStreamer : public MCObjectStreamer {
26private:
27 virtual void EmitInstToFragment(const MCInst &Inst);
28 virtual void EmitInstToData(const MCInst &Inst);
29
30public:
Evan Cheng78c10ee2011-07-25 23:24:55 +000031 MCPureStreamer(MCContext &Context, MCAsmBackend &TAB,
Daniel Dunbarabc75622010-11-17 16:06:47 +000032 raw_ostream &OS, MCCodeEmitter *Emitter)
Rafael Espindola85f2ecc2010-12-07 00:27:36 +000033 : MCObjectStreamer(Context, TAB, OS, Emitter) {}
Daniel Dunbarabc75622010-11-17 16:06:47 +000034
35 /// @name MCStreamer Interface
36 /// @{
37
38 virtual void InitSections();
39 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotler2c3a4642012-12-16 04:00:45 +000040 virtual void EmitDebugLabel(MCSymbol *Symbol);
Daniel Dunbarabc75622010-11-17 16:06:47 +000041 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengc90a1fc2012-06-22 20:14:46 +000042 uint64_t Size = 0, unsigned ByteAlignment = 0);
Daniel Dunbarabc75622010-11-17 16:06:47 +000043 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Daniel Dunbarabc75622010-11-17 16:06:47 +000044 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
45 unsigned ValueSize = 1,
46 unsigned MaxBytesToEmit = 0);
47 virtual void EmitCodeAlignment(unsigned ByteAlignment,
48 unsigned MaxBytesToEmit = 0);
Jim Grosbachebd4c052012-01-27 00:37:08 +000049 virtual bool EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbarabc75622010-11-17 16:06:47 +000050 unsigned char Value = 0);
Rafael Espindola99b42372012-01-07 03:13:18 +000051 virtual void FinishImpl();
Daniel Dunbarabc75622010-11-17 16:06:47 +000052
53
54 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) {
55 report_fatal_error("unsupported directive in pure streamer");
56 }
57 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag) {
58 report_fatal_error("unsupported directive in pure streamer");
59 }
60 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
61 uint64_t Size, unsigned ByteAlignment = 0) {
62 report_fatal_error("unsupported directive in pure streamer");
63 }
64 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
65 report_fatal_error("unsupported directive in pure streamer");
66 }
67 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
68 unsigned ByteAlignment) {
69 report_fatal_error("unsupported directive in pure streamer");
70 }
71 virtual void EmitThumbFunc(MCSymbol *Func) {
72 report_fatal_error("unsupported directive in pure streamer");
73 }
74 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol) {
75 report_fatal_error("unsupported directive in pure streamer");
76 }
77 virtual void EmitCOFFSymbolStorageClass(int StorageClass) {
78 report_fatal_error("unsupported directive in pure streamer");
79 }
80 virtual void EmitCOFFSymbolType(int Type) {
81 report_fatal_error("unsupported directive in pure streamer");
82 }
83 virtual void EndCOFFSymbolDef() {
84 report_fatal_error("unsupported directive in pure streamer");
85 }
86 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
87 report_fatal_error("unsupported directive in pure streamer");
88 }
Benjamin Kramer36a16012011-09-01 23:04:27 +000089 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
90 unsigned ByteAlignment) {
Daniel Dunbarabc75622010-11-17 16:06:47 +000091 report_fatal_error("unsupported directive in pure streamer");
92 }
Daniel Dunbarabc75622010-11-17 16:06:47 +000093 virtual void EmitFileDirective(StringRef Filename) {
94 report_fatal_error("unsupported directive in pure streamer");
95 }
Nick Lewycky44d798d2011-10-17 23:05:28 +000096 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
97 StringRef Filename) {
Daniel Dunbarabc75622010-11-17 16:06:47 +000098 report_fatal_error("unsupported directive in pure streamer");
Daniel Dunbarabc75622010-11-17 16:06:47 +000099 }
100
101 /// @}
102};
103
104} // end anonymous namespace.
105
106void MCPureStreamer::InitSections() {
107 // FIMXE: To what!?
108 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
109 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
110 0, SectionKind::getText()));
111
112}
113
114void MCPureStreamer::EmitLabel(MCSymbol *Symbol) {
115 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
116 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000117 assert(getCurrentSection() && "Cannot emit before setting section!");
Daniel Dunbarabc75622010-11-17 16:06:47 +0000118
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000119 Symbol->setSection(*getCurrentSection());
Daniel Dunbarabc75622010-11-17 16:06:47 +0000120
121 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
122
123 // We have to create a new fragment if this is an atom defining symbol,
124 // fragments cannot span atoms.
125 if (getAssembler().isSymbolLinkerVisible(SD.getSymbol()))
126 new MCDataFragment(getCurrentSectionData());
127
128 // FIXME: This is wasteful, we don't necessarily need to create a data
129 // fragment. Instead, we should mark the symbol as pointing into the data
130 // fragment if it exists, otherwise we should just queue the label and set its
131 // fragment pointer when we emit the next fragment.
132 MCDataFragment *F = getOrCreateDataFragment();
133 assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
134 SD.setFragment(F);
135 SD.setOffset(F->getContents().size());
136}
137
Reed Kotler2c3a4642012-12-16 04:00:45 +0000138
Daniel Dunbarabc75622010-11-17 16:06:47 +0000139void MCPureStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000140 uint64_t Size, unsigned ByteAlignment) {
Daniel Dunbarabc75622010-11-17 16:06:47 +0000141 report_fatal_error("not yet implemented in pure streamer");
142}
143
144void MCPureStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
145 // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
146 // MCObjectStreamer.
147 getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
148}
149
Daniel Dunbarabc75622010-11-17 16:06:47 +0000150void MCPureStreamer::EmitValueToAlignment(unsigned ByteAlignment,
151 int64_t Value, unsigned ValueSize,
152 unsigned MaxBytesToEmit) {
153 // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
154 // MCObjectStreamer.
155 if (MaxBytesToEmit == 0)
156 MaxBytesToEmit = ByteAlignment;
157 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
158 getCurrentSectionData());
159
160 // Update the maximum alignment on the current section if necessary.
161 if (ByteAlignment > getCurrentSectionData()->getAlignment())
162 getCurrentSectionData()->setAlignment(ByteAlignment);
163}
164
165void MCPureStreamer::EmitCodeAlignment(unsigned ByteAlignment,
166 unsigned MaxBytesToEmit) {
167 // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
168 // MCObjectStreamer.
169 if (MaxBytesToEmit == 0)
170 MaxBytesToEmit = ByteAlignment;
171 MCAlignFragment *F = new MCAlignFragment(ByteAlignment, 0, 1, MaxBytesToEmit,
172 getCurrentSectionData());
173 F->setEmitNops(true);
174
175 // Update the maximum alignment on the current section if necessary.
176 if (ByteAlignment > getCurrentSectionData()->getAlignment())
177 getCurrentSectionData()->setAlignment(ByteAlignment);
178}
179
Jim Grosbachebd4c052012-01-27 00:37:08 +0000180bool MCPureStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbarabc75622010-11-17 16:06:47 +0000181 unsigned char Value) {
182 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
Jim Grosbachebd4c052012-01-27 00:37:08 +0000183 return false;
Daniel Dunbarabc75622010-11-17 16:06:47 +0000184}
185
186void MCPureStreamer::EmitInstToFragment(const MCInst &Inst) {
187 MCInstFragment *IF = new MCInstFragment(Inst, getCurrentSectionData());
188
189 // Add the fixups and data.
190 //
191 // FIXME: Revisit this design decision when relaxation is done, we may be
192 // able to get away with not storing any extra data in the MCInst.
193 SmallVector<MCFixup, 4> Fixups;
194 SmallString<256> Code;
195 raw_svector_ostream VecOS(Code);
196 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
197 VecOS.flush();
198
Eli Bendersky64d9a322012-12-07 19:13:57 +0000199 IF->getContents() = Code;
Daniel Dunbarabc75622010-11-17 16:06:47 +0000200 IF->getFixups() = Fixups;
201}
202
203void MCPureStreamer::EmitInstToData(const MCInst &Inst) {
204 MCDataFragment *DF = getOrCreateDataFragment();
205
206 SmallVector<MCFixup, 4> Fixups;
207 SmallString<256> Code;
208 raw_svector_ostream VecOS(Code);
209 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
210 VecOS.flush();
211
212 // Add the fixups and data.
213 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
214 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
Eli Bendersky64d9a322012-12-07 19:13:57 +0000215 DF->getFixups().push_back(Fixups[i]);
Daniel Dunbarabc75622010-11-17 16:06:47 +0000216 }
217 DF->getContents().append(Code.begin(), Code.end());
218}
219
Rafael Espindola99b42372012-01-07 03:13:18 +0000220void MCPureStreamer::FinishImpl() {
Daniel Dunbarabc75622010-11-17 16:06:47 +0000221 // FIXME: Handle DWARF tables?
222
Rafael Espindola99b42372012-01-07 03:13:18 +0000223 this->MCObjectStreamer::FinishImpl();
Daniel Dunbarabc75622010-11-17 16:06:47 +0000224}
225
Evan Cheng78c10ee2011-07-25 23:24:55 +0000226MCStreamer *llvm::createPureStreamer(MCContext &Context, MCAsmBackend &MAB,
Daniel Dunbarabc75622010-11-17 16:06:47 +0000227 raw_ostream &OS, MCCodeEmitter *CE) {
Evan Cheng78c10ee2011-07-25 23:24:55 +0000228 return new MCPureStreamer(Context, MAB, OS, CE);
Daniel Dunbarabc75622010-11-17 16:06:47 +0000229}