Add disassembler support for SSE4.1 register/register form of PEXTRW. There is a...
[oota-llvm.git] / lib / MC / MCPureStreamer.cpp
1 //===- 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/MCObjectFileInfo.h"
16 #include "llvm/MC/MCObjectStreamer.h"
17 #include "llvm/MC/MCSymbol.h"
18 #include "llvm/Support/ErrorHandling.h"
19
20 using namespace llvm;
21
22 namespace {
23
24 class MCPureStreamer : public MCObjectStreamer {
25 private:
26   virtual void EmitInstToFragment(const MCInst &Inst);
27   virtual void EmitInstToData(const MCInst &Inst);
28
29 public:
30   MCPureStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS,
31                  MCCodeEmitter *Emitter)
32       : MCObjectStreamer(Context, 0, TAB, OS, Emitter) {}
33
34   /// @name MCStreamer Interface
35   /// @{
36
37   virtual void InitSections();
38   virtual void InitToTextSection();
39   virtual void EmitLabel(MCSymbol *Symbol);
40   virtual void EmitDebugLabel(MCSymbol *Symbol);
41   virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
42                             uint64_t Size = 0, unsigned ByteAlignment = 0);
43   virtual void EmitBytes(StringRef Data);
44   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);
49   virtual bool EmitValueToOffset(const MCExpr *Offset,
50                                  unsigned char Value = 0);
51   virtual void FinishImpl();
52
53
54   virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) {
55     report_fatal_error("unsupported directive in pure streamer");
56     return false;
57   }
58   virtual void EmitAssemblerFlag(MCAssemblerFlag Flag) {
59     report_fatal_error("unsupported directive in pure streamer");
60   }
61   virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
62                               uint64_t Size, unsigned ByteAlignment = 0) {
63     report_fatal_error("unsupported directive in pure streamer");
64   }
65   virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
66     report_fatal_error("unsupported directive in pure streamer");
67   }
68   virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
69                                 unsigned ByteAlignment) {
70     report_fatal_error("unsupported directive in pure streamer");
71   }
72   virtual void EmitThumbFunc(MCSymbol *Func) {
73     report_fatal_error("unsupported directive in pure streamer");
74   }
75   virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol) {
76     report_fatal_error("unsupported directive in pure streamer");
77   }
78   virtual void EmitCOFFSymbolStorageClass(int StorageClass) {
79     report_fatal_error("unsupported directive in pure streamer");
80   }
81   virtual void EmitCOFFSymbolType(int Type) {
82     report_fatal_error("unsupported directive in pure streamer");
83   }
84   virtual void EndCOFFSymbolDef() {
85     report_fatal_error("unsupported directive in pure streamer");
86   }
87   virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
88     report_fatal_error("unsupported directive in pure streamer");
89   }
90   virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
91                                      unsigned ByteAlignment) {
92     report_fatal_error("unsupported directive in pure streamer");
93   }
94   virtual void EmitFileDirective(StringRef Filename) {
95     report_fatal_error("unsupported directive in pure streamer");
96   }
97   virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
98                                       StringRef Filename, unsigned CUID = 0) {
99     report_fatal_error("unsupported directive in pure streamer");
100   }
101 };
102
103 } // end anonymous namespace.
104
105 void MCPureStreamer::InitSections() {
106   InitToTextSection();
107 }
108
109 void MCPureStreamer::InitToTextSection() {
110   SwitchSection(getContext().getObjectFileInfo()->getTextSection());
111 }
112
113 void MCPureStreamer::EmitLabel(MCSymbol *Symbol) {
114   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
115   assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
116   assert(getCurrentSection().first && "Cannot emit before setting section!");
117
118   AssignSection(Symbol, getCurrentSection().first);
119
120   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
121
122   // We have to create a new fragment if this is an atom defining symbol,
123   // fragments cannot span atoms.
124   if (getAssembler().isSymbolLinkerVisible(SD.getSymbol()))
125     insert(new MCDataFragment());
126
127   // FIXME: This is wasteful, we don't necessarily need to create a data
128   // fragment. Instead, we should mark the symbol as pointing into the data
129   // fragment if it exists, otherwise we should just queue the label and set its
130   // fragment pointer when we emit the next fragment.
131   MCDataFragment *F = getOrCreateDataFragment();
132   assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
133   SD.setFragment(F);
134   SD.setOffset(F->getContents().size());
135 }
136
137
138 void MCPureStreamer::EmitDebugLabel(MCSymbol *Symbol) {
139   EmitLabel(Symbol);
140 }
141
142 void MCPureStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
143                                   uint64_t Size, unsigned ByteAlignment) {
144   report_fatal_error("not yet implemented in pure streamer");
145 }
146
147 void MCPureStreamer::EmitBytes(StringRef Data) {
148   // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
149   // MCObjectStreamer.
150   getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
151 }
152
153 void MCPureStreamer::EmitValueToAlignment(unsigned ByteAlignment,
154                                           int64_t Value, unsigned ValueSize,
155                                           unsigned MaxBytesToEmit) {
156   // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
157   // MCObjectStreamer.
158   if (MaxBytesToEmit == 0)
159     MaxBytesToEmit = ByteAlignment;
160   insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit));
161
162   // Update the maximum alignment on the current section if necessary.
163   if (ByteAlignment > getCurrentSectionData()->getAlignment())
164     getCurrentSectionData()->setAlignment(ByteAlignment);
165 }
166
167 void MCPureStreamer::EmitCodeAlignment(unsigned ByteAlignment,
168                                        unsigned MaxBytesToEmit) {
169   // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into
170   // MCObjectStreamer.
171   if (MaxBytesToEmit == 0)
172     MaxBytesToEmit = ByteAlignment;
173   MCAlignFragment *F = new MCAlignFragment(ByteAlignment, 0, 1, MaxBytesToEmit);
174   insert(F);
175   F->setEmitNops(true);
176
177   // Update the maximum alignment on the current section if necessary.
178   if (ByteAlignment > getCurrentSectionData()->getAlignment())
179     getCurrentSectionData()->setAlignment(ByteAlignment);
180 }
181
182 bool MCPureStreamer::EmitValueToOffset(const MCExpr *Offset,
183                                        unsigned char Value) {
184   insert(new MCOrgFragment(*Offset, Value));
185   return false;
186 }
187
188 void MCPureStreamer::EmitInstToFragment(const MCInst &Inst) {
189   MCRelaxableFragment *IF = new MCRelaxableFragment(Inst);
190   insert(IF);
191
192   // Add the fixups and data.
193   //
194   // FIXME: Revisit this design decision when relaxation is done, we may be
195   // able to get away with not storing any extra data in the MCInst.
196   SmallVector<MCFixup, 4> Fixups;
197   SmallString<256> Code;
198   raw_svector_ostream VecOS(Code);
199   getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
200   VecOS.flush();
201
202   IF->getContents() = Code;
203   IF->getFixups() = Fixups;
204 }
205
206 void MCPureStreamer::EmitInstToData(const MCInst &Inst) {
207   MCDataFragment *DF = getOrCreateDataFragment();
208
209   SmallVector<MCFixup, 4> Fixups;
210   SmallString<256> Code;
211   raw_svector_ostream VecOS(Code);
212   getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
213   VecOS.flush();
214
215   // Add the fixups and data.
216   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
217     Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
218     DF->getFixups().push_back(Fixups[i]);
219   }
220   DF->getContents().append(Code.begin(), Code.end());
221 }
222
223 void MCPureStreamer::FinishImpl() {
224   // FIXME: Handle DWARF tables?
225
226   this->MCObjectStreamer::FinishImpl();
227 }
228
229 MCStreamer *llvm::createPureStreamer(MCContext &Context, MCAsmBackend &MAB,
230                                      raw_ostream &OS, MCCodeEmitter *CE) {
231   return new MCPureStreamer(Context, MAB, OS, CE);
232 }