MC/Assembler: Make the MCObjectWriter available through the lifetime of the
[oota-llvm.git] / lib / MC / MCObjectStreamer.cpp
1 //===- lib/MC/MCObjectStreamer.cpp - Object File MCStreamer Interface -----===//
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/MCObjectStreamer.h"
11
12 #include "llvm/Support/ErrorHandling.h"
13 #include "llvm/MC/MCAssembler.h"
14 #include "llvm/MC/MCCodeEmitter.h"
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCDwarf.h"
17 #include "llvm/MC/MCExpr.h"
18 #include "llvm/MC/MCSymbol.h"
19 #include "llvm/Target/TargetAsmBackend.h"
20 #include "llvm/Target/TargetAsmInfo.h"
21 using namespace llvm;
22
23 MCObjectStreamer::MCObjectStreamer(MCContext &Context, TargetAsmBackend &TAB,
24                                    raw_ostream &OS, MCCodeEmitter *Emitter_)
25   : MCStreamer(Context),
26     Assembler(new MCAssembler(Context, TAB,
27                               *Emitter_, *TAB.createObjectWriter(OS),
28                               OS)),
29     CurSectionData(0)
30 {
31 }
32
33 MCObjectStreamer::~MCObjectStreamer() {
34   delete &Assembler->getBackend();
35   delete &Assembler->getEmitter();
36   delete &Assembler->getWriter();
37   delete Assembler;
38 }
39
40 MCFragment *MCObjectStreamer::getCurrentFragment() const {
41   assert(getCurrentSectionData() && "No current section!");
42
43   if (!getCurrentSectionData()->empty())
44     return &getCurrentSectionData()->getFragmentList().back();
45
46   return 0;
47 }
48
49 MCDataFragment *MCObjectStreamer::getOrCreateDataFragment() const {
50   MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
51   if (!F)
52     F = new MCDataFragment(getCurrentSectionData());
53   return F;
54 }
55
56 const MCExpr *MCObjectStreamer::AddValueSymbols(const MCExpr *Value) {
57   switch (Value->getKind()) {
58   case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
59   case MCExpr::Constant:
60     break;
61
62   case MCExpr::Binary: {
63     const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
64     AddValueSymbols(BE->getLHS());
65     AddValueSymbols(BE->getRHS());
66     break;
67   }
68
69   case MCExpr::SymbolRef:
70     Assembler->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
71     break;
72
73   case MCExpr::Unary:
74     AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
75     break;
76   }
77
78   return Value;
79 }
80
81 void MCObjectStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
82                                      bool isPCRel, unsigned AddrSpace) {
83   assert(AddrSpace == 0 && "Address space must be 0!");
84   MCDataFragment *DF = getOrCreateDataFragment();
85
86   // Avoid fixups when possible.
87   int64_t AbsValue;
88   if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue)) {
89     EmitIntValue(AbsValue, Size, AddrSpace);
90     return;
91   }
92   DF->addFixup(MCFixup::Create(DF->getContents().size(),
93                                AddValueSymbols(Value),
94                                MCFixup::getKindForSize(Size, isPCRel)));
95   DF->getContents().resize(DF->getContents().size() + Size, 0);
96 }
97
98 void MCObjectStreamer::EmitLabel(MCSymbol *Symbol) {
99   assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
100   assert(CurSection && "Cannot emit before setting section!");
101
102   Symbol->setSection(*CurSection);
103
104   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
105
106   // FIXME: This is wasteful, we don't necessarily need to create a data
107   // fragment. Instead, we should mark the symbol as pointing into the data
108   // fragment if it exists, otherwise we should just queue the label and set its
109   // fragment pointer when we emit the next fragment.
110   MCDataFragment *F = getOrCreateDataFragment();
111   assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
112   SD.setFragment(F);
113   SD.setOffset(F->getContents().size());
114 }
115
116 void MCObjectStreamer::EmitULEB128Value(const MCExpr *Value,
117                                         unsigned AddrSpace) {
118   int64_t IntValue;
119   if (Value->EvaluateAsAbsolute(IntValue)) {
120     EmitULEB128IntValue(IntValue, AddrSpace);
121     return;
122   }
123   new MCLEBFragment(*Value, false, getCurrentSectionData());
124 }
125
126 void MCObjectStreamer::EmitSLEB128Value(const MCExpr *Value,
127                                         unsigned AddrSpace) {
128   int64_t IntValue;
129   if (Value->EvaluateAsAbsolute(IntValue)) {
130     EmitSLEB128IntValue(IntValue, AddrSpace);
131     return;
132   }
133   new MCLEBFragment(*Value, true, getCurrentSectionData());
134 }
135
136 void MCObjectStreamer::EmitWeakReference(MCSymbol *Alias,
137                                          const MCSymbol *Symbol) {
138   report_fatal_error("This file format doesn't support weak aliases.");
139 }
140
141 void MCObjectStreamer::SwitchSection(const MCSection *Section) {
142   assert(Section && "Cannot switch to a null section!");
143
144   // If already in this section, then this is a noop.
145   if (Section == CurSection) return;
146
147   PrevSection = CurSection;
148   CurSection = Section;
149   CurSectionData = &getAssembler().getOrCreateSectionData(*Section);
150 }
151
152 void MCObjectStreamer::EmitInstruction(const MCInst &Inst) {
153   // Scan for values.
154   for (unsigned i = Inst.getNumOperands(); i--; )
155     if (Inst.getOperand(i).isExpr())
156       AddValueSymbols(Inst.getOperand(i).getExpr());
157
158   getCurrentSectionData()->setHasInstructions(true);
159
160   // Now that a machine instruction has been assembled into this section, make
161   // a line entry for any .loc directive that has been seen.
162   MCLineEntry::Make(this, getCurrentSection());
163
164   // If this instruction doesn't need relaxation, just emit it as data.
165   if (!getAssembler().getBackend().MayNeedRelaxation(Inst)) {
166     EmitInstToData(Inst);
167     return;
168   }
169
170   // Otherwise, if we are relaxing everything, relax the instruction as much as
171   // possible and emit it as data.
172   if (getAssembler().getRelaxAll()) {
173     MCInst Relaxed;
174     getAssembler().getBackend().RelaxInstruction(Inst, Relaxed);
175     while (getAssembler().getBackend().MayNeedRelaxation(Relaxed))
176       getAssembler().getBackend().RelaxInstruction(Relaxed, Relaxed);
177     EmitInstToData(Relaxed);
178     return;
179   }
180
181   // Otherwise emit to a separate fragment.
182   EmitInstToFragment(Inst);
183 }
184
185 void MCObjectStreamer::EmitInstToFragment(const MCInst &Inst) {
186   MCInstFragment *IF = new MCInstFragment(Inst, getCurrentSectionData());
187
188   raw_svector_ostream VecOS(IF->getCode());
189   getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, IF->getFixups());
190 }
191
192 void MCObjectStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
193                                                 const MCSymbol *LastLabel,
194                                                 const MCSymbol *Label) {
195   if (!LastLabel) {
196     int PointerSize = getContext().getTargetAsmInfo().getPointerSize();
197     EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
198     return;
199   }
200   MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
201   const MCExpr *LabelRef =
202     MCSymbolRefExpr::Create(Label, Variant, getContext());
203   const MCExpr *LastLabelRef =
204     MCSymbolRefExpr::Create(LastLabel, Variant, getContext());
205   const MCExpr *AddrDelta =
206     MCBinaryExpr::Create(MCBinaryExpr::Sub, LabelRef, LastLabelRef,
207                          getContext());
208   int64_t Res;
209   if (AddrDelta->EvaluateAsAbsolute(Res)) {
210     MCDwarfLineAddr::Emit(this, LineDelta, Res);
211     return;
212   }
213   new MCDwarfLineAddrFragment(LineDelta, *AddrDelta, getCurrentSectionData());
214 }
215
216 void MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset,
217                                         unsigned char Value) {
218   new MCOrgFragment(*Offset, Value, getCurrentSectionData());
219 }
220
221 void MCObjectStreamer::Finish() {
222   // Dump out the dwarf file & directory tables and line tables.
223   if (getContext().hasDwarfFiles())
224     MCDwarfFileTable::Emit(this);
225
226   getAssembler().Finish();
227 }