Add AsmParser support for darwin tbss directive.
[oota-llvm.git] / lib / MC / MCMachOStreamer.cpp
1 //===- lib/MC/MCMachOStreamer.cpp - Mach-O 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
12 #include "llvm/MC/MCAssembler.h"
13 #include "llvm/MC/MCContext.h"
14 #include "llvm/MC/MCCodeEmitter.h"
15 #include "llvm/MC/MCExpr.h"
16 #include "llvm/MC/MCInst.h"
17 #include "llvm/MC/MCSection.h"
18 #include "llvm/MC/MCSymbol.h"
19 #include "llvm/MC/MCMachOSymbolFlags.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/raw_ostream.h"
22 #include "llvm/Target/TargetAsmBackend.h"
23
24 using namespace llvm;
25
26 namespace {
27
28 class MCMachOStreamer : public MCStreamer {
29
30 private:
31   MCAssembler Assembler;
32   MCSectionData *CurSectionData;
33
34   /// Track the current atom for each section.
35   DenseMap<const MCSectionData*, MCSymbolData*> CurrentAtomMap;
36
37 private:
38   MCFragment *getCurrentFragment() const {
39     assert(CurSectionData && "No current section!");
40
41     if (!CurSectionData->empty())
42       return &CurSectionData->getFragmentList().back();
43
44     return 0;
45   }
46
47   /// Get a data fragment to write into, creating a new one if the current
48   /// fragment is not a data fragment.
49   MCDataFragment *getOrCreateDataFragment() const {
50     MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
51     if (!F)
52       F = createDataFragment();
53     return F;
54   }
55
56   /// Create a new data fragment in the current section.
57   MCDataFragment *createDataFragment() const {
58     MCDataFragment *DF = new MCDataFragment(CurSectionData);
59     DF->setAtom(CurrentAtomMap.lookup(CurSectionData));
60     return DF;
61   }
62
63 public:
64   MCMachOStreamer(MCContext &Context, TargetAsmBackend &TAB,
65                   raw_ostream &_OS, MCCodeEmitter *_Emitter)
66     : MCStreamer(Context), Assembler(Context, TAB, *_Emitter, _OS),
67       CurSectionData(0) {}
68   ~MCMachOStreamer() {}
69
70   MCAssembler &getAssembler() { return Assembler; }
71
72   const MCExpr *AddValueSymbols(const MCExpr *Value) {
73     switch (Value->getKind()) {
74     case MCExpr::Target: assert(0 && "Can't handle target exprs yet!");
75     case MCExpr::Constant:
76       break;
77
78     case MCExpr::Binary: {
79       const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
80       AddValueSymbols(BE->getLHS());
81       AddValueSymbols(BE->getRHS());
82       break;
83     }
84
85     case MCExpr::SymbolRef:
86       Assembler.getOrCreateSymbolData(
87         cast<MCSymbolRefExpr>(Value)->getSymbol());
88       break;
89
90     case MCExpr::Unary:
91       AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
92       break;
93     }
94
95     return Value;
96   }
97
98   /// @name MCStreamer Interface
99   /// @{
100
101   virtual void SwitchSection(const MCSection *Section);
102   virtual void EmitLabel(MCSymbol *Symbol);
103   virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
104   virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
105   virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
106   virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
107   virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
108                                 unsigned ByteAlignment);
109   virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol) {
110     assert(0 && "macho doesn't support this directive");
111   }
112   virtual void EmitCOFFSymbolStorageClass(int StorageClass) {
113     assert(0 && "macho doesn't support this directive");
114   }
115   virtual void EmitCOFFSymbolType(int Type) {
116     assert(0 && "macho doesn't support this directive");
117   }
118   virtual void EndCOFFSymbolDef() {
119     assert(0 && "macho doesn't support this directive");
120   }
121   virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
122     assert(0 && "macho doesn't support this directive");
123   }
124   virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
125     assert(0 && "macho doesn't support this directive");
126   }
127   virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
128                             unsigned Size = 0, unsigned ByteAlignment = 0);
129   virtual void EmitTBSSSymbol(MCSymbol *Symbol, uint64_t Size,
130                               unsigned ByteAlignment = 0);
131   virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
132   virtual void EmitValue(const MCExpr *Value, unsigned Size,unsigned AddrSpace);
133   virtual void EmitGPRel32Value(const MCExpr *Value) {
134     assert(0 && "macho doesn't support this directive");
135   }
136   virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
137                                     unsigned ValueSize = 1,
138                                     unsigned MaxBytesToEmit = 0);
139   virtual void EmitCodeAlignment(unsigned ByteAlignment,
140                                  unsigned MaxBytesToEmit = 0);
141   virtual void EmitValueToOffset(const MCExpr *Offset,
142                                  unsigned char Value = 0);
143   
144   virtual void EmitFileDirective(StringRef Filename) {
145     errs() << "FIXME: MCMachoStreamer:EmitFileDirective not implemented\n";
146   }
147   virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
148     errs() << "FIXME: MCMachoStreamer:EmitDwarfFileDirective not implemented\n";
149   }
150   
151   virtual void EmitInstruction(const MCInst &Inst);
152   virtual void Finish();
153
154   /// @}
155 };
156
157 } // end anonymous namespace.
158
159 void MCMachOStreamer::SwitchSection(const MCSection *Section) {
160   assert(Section && "Cannot switch to a null section!");
161   
162   // If already in this section, then this is a noop.
163   if (Section == CurSection) return;
164
165   CurSection = Section;
166   CurSectionData = &Assembler.getOrCreateSectionData(*Section);
167 }
168
169 void MCMachOStreamer::EmitLabel(MCSymbol *Symbol) {
170   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
171   assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
172   assert(CurSection && "Cannot emit before setting section!");
173
174   MCSymbolData &SD = Assembler.getOrCreateSymbolData(*Symbol);
175
176   // Update the current atom map, if necessary.
177   bool MustCreateFragment = false;
178   if (Assembler.isSymbolLinkerVisible(&SD)) {
179     CurrentAtomMap[CurSectionData] = &SD;
180
181     // We have to create a new fragment, fragments cannot span atoms.
182     MustCreateFragment = true;
183   }
184
185   // FIXME: This is wasteful, we don't necessarily need to create a data
186   // fragment. Instead, we should mark the symbol as pointing into the data
187   // fragment if it exists, otherwise we should just queue the label and set its
188   // fragment pointer when we emit the next fragment.
189   MCDataFragment *F =
190     MustCreateFragment ? createDataFragment() : getOrCreateDataFragment();
191   assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
192   SD.setFragment(F);
193   SD.setOffset(F->getContents().size());
194
195   // This causes the reference type and weak reference flags to be cleared.
196   SD.setFlags(SD.getFlags() & ~(SF_WeakReference | SF_ReferenceTypeMask));
197   
198   Symbol->setSection(*CurSection);
199 }
200
201 void MCMachOStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
202   switch (Flag) {
203   case MCAF_SubsectionsViaSymbols:
204     Assembler.setSubsectionsViaSymbols(true);
205     return;
206   }
207
208   assert(0 && "invalid assembler flag!");
209 }
210
211 void MCMachOStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
212   // FIXME: Lift context changes into super class.
213   Symbol->setVariableValue(AddValueSymbols(Value));
214 }
215
216 void MCMachOStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
217                                           MCSymbolAttr Attribute) {
218   // Indirect symbols are handled differently, to match how 'as' handles
219   // them. This makes writing matching .o files easier.
220   if (Attribute == MCSA_IndirectSymbol) {
221     // Note that we intentionally cannot use the symbol data here; this is
222     // important for matching the string table that 'as' generates.
223     IndirectSymbolData ISD;
224     ISD.Symbol = Symbol;
225     ISD.SectionData = CurSectionData;
226     Assembler.getIndirectSymbols().push_back(ISD);
227     return;
228   }
229
230   // Adding a symbol attribute always introduces the symbol, note that an
231   // important side effect of calling getOrCreateSymbolData here is to register
232   // the symbol with the assembler.
233   MCSymbolData &SD = Assembler.getOrCreateSymbolData(*Symbol);
234
235   // The implementation of symbol attributes is designed to match 'as', but it
236   // leaves much to desired. It doesn't really make sense to arbitrarily add and
237   // remove flags, but 'as' allows this (in particular, see .desc).
238   //
239   // In the future it might be worth trying to make these operations more well
240   // defined.
241   switch (Attribute) {
242   case MCSA_Invalid:
243   case MCSA_ELF_TypeFunction:
244   case MCSA_ELF_TypeIndFunction:
245   case MCSA_ELF_TypeObject:
246   case MCSA_ELF_TypeTLS:
247   case MCSA_ELF_TypeCommon:
248   case MCSA_ELF_TypeNoType:
249   case MCSA_IndirectSymbol:
250   case MCSA_Hidden:
251   case MCSA_Internal:
252   case MCSA_Protected:
253   case MCSA_Weak:
254   case MCSA_Local:
255     assert(0 && "Invalid symbol attribute for Mach-O!");
256     break;
257
258   case MCSA_Global:
259     SD.setExternal(true);
260     break;
261
262   case MCSA_LazyReference:
263     // FIXME: This requires -dynamic.
264     SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
265     if (Symbol->isUndefined())
266       SD.setFlags(SD.getFlags() | SF_ReferenceTypeUndefinedLazy);
267     break;
268
269     // Since .reference sets the no dead strip bit, it is equivalent to
270     // .no_dead_strip in practice.
271   case MCSA_Reference:
272   case MCSA_NoDeadStrip:
273     SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
274     break;
275
276   case MCSA_PrivateExtern:
277     SD.setExternal(true);
278     SD.setPrivateExtern(true);
279     break;
280
281   case MCSA_WeakReference:
282     // FIXME: This requires -dynamic.
283     if (Symbol->isUndefined())
284       SD.setFlags(SD.getFlags() | SF_WeakReference);
285     break;
286
287   case MCSA_WeakDefinition:
288     // FIXME: 'as' enforces that this is defined and global. The manual claims
289     // it has to be in a coalesced section, but this isn't enforced.
290     SD.setFlags(SD.getFlags() | SF_WeakDefinition);
291     break;
292   }
293 }
294
295 void MCMachOStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
296   // Encode the 'desc' value into the lowest implementation defined bits.
297   assert(DescValue == (DescValue & SF_DescFlagsMask) && 
298          "Invalid .desc value!");
299   Assembler.getOrCreateSymbolData(*Symbol).setFlags(DescValue&SF_DescFlagsMask);
300 }
301
302 void MCMachOStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
303                                        unsigned ByteAlignment) {
304   // FIXME: Darwin 'as' does appear to allow redef of a .comm by itself.
305   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
306
307   MCSymbolData &SD = Assembler.getOrCreateSymbolData(*Symbol);
308   SD.setExternal(true);
309   SD.setCommon(Size, ByteAlignment);
310 }
311
312 void MCMachOStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
313                                    unsigned Size, unsigned ByteAlignment) {
314   MCSectionData &SectData = Assembler.getOrCreateSectionData(*Section);
315
316   // The symbol may not be present, which only creates the section.
317   if (!Symbol)
318     return;
319
320   // FIXME: Assert that this section has the zerofill type.
321
322   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
323
324   MCSymbolData &SD = Assembler.getOrCreateSymbolData(*Symbol);
325
326   // Emit an align fragment if necessary.
327   if (ByteAlignment != 1)
328     new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectData);
329
330   MCFragment *F = new MCFillFragment(0, 0, Size, &SectData);
331   SD.setFragment(F);
332   if (Assembler.isSymbolLinkerVisible(&SD))
333     F->setAtom(&SD);
334
335   Symbol->setSection(*Section);
336
337   // Update the maximum alignment on the zero fill section if necessary.
338   if (ByteAlignment > SectData.getAlignment())
339     SectData.setAlignment(ByteAlignment);
340 }
341
342 void MCMachOStreamer::EmitTBSSSymbol(MCSymbol *Symbol, uint64_t Size,
343                                      unsigned ByteAlignment) {
344   assert(false && "Implement me!");
345 }
346
347 void MCMachOStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
348   getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
349 }
350
351 void MCMachOStreamer::EmitValue(const MCExpr *Value, unsigned Size,
352                                 unsigned AddrSpace) {
353   MCDataFragment *DF = getOrCreateDataFragment();
354
355   // Avoid fixups when possible.
356   int64_t AbsValue;
357   if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue)) {
358     // FIXME: Endianness assumption.
359     for (unsigned i = 0; i != Size; ++i)
360       DF->getContents().push_back(uint8_t(AbsValue >> (i * 8)));
361   } else {
362     DF->addFixup(MCAsmFixup(DF->getContents().size(), *AddValueSymbols(Value),
363                             MCFixup::getKindForSize(Size)));
364     DF->getContents().resize(DF->getContents().size() + Size, 0);
365   }
366 }
367
368 void MCMachOStreamer::EmitValueToAlignment(unsigned ByteAlignment,
369                                            int64_t Value, unsigned ValueSize,
370                                            unsigned MaxBytesToEmit) {
371   if (MaxBytesToEmit == 0)
372     MaxBytesToEmit = ByteAlignment;
373   MCFragment *F = new MCAlignFragment(ByteAlignment, Value, ValueSize,
374                                       MaxBytesToEmit, CurSectionData);
375   F->setAtom(CurrentAtomMap.lookup(CurSectionData));
376
377   // Update the maximum alignment on the current section if necessary.
378   if (ByteAlignment > CurSectionData->getAlignment())
379     CurSectionData->setAlignment(ByteAlignment);
380 }
381
382 void MCMachOStreamer::EmitCodeAlignment(unsigned ByteAlignment,
383                                         unsigned MaxBytesToEmit) {
384   if (MaxBytesToEmit == 0)
385     MaxBytesToEmit = ByteAlignment;
386   MCAlignFragment *F = new MCAlignFragment(ByteAlignment, 0, 1, MaxBytesToEmit,
387                                            CurSectionData);
388   F->setEmitNops(true);
389   F->setAtom(CurrentAtomMap.lookup(CurSectionData));
390
391   // Update the maximum alignment on the current section if necessary.
392   if (ByteAlignment > CurSectionData->getAlignment())
393     CurSectionData->setAlignment(ByteAlignment);
394 }
395
396 void MCMachOStreamer::EmitValueToOffset(const MCExpr *Offset,
397                                         unsigned char Value) {
398   MCFragment *F = new MCOrgFragment(*Offset, Value, CurSectionData);
399   F->setAtom(CurrentAtomMap.lookup(CurSectionData));
400 }
401
402 void MCMachOStreamer::EmitInstruction(const MCInst &Inst) {
403   // Scan for values.
404   for (unsigned i = 0; i != Inst.getNumOperands(); ++i)
405     if (Inst.getOperand(i).isExpr())
406       AddValueSymbols(Inst.getOperand(i).getExpr());
407
408   CurSectionData->setHasInstructions(true);
409
410   // FIXME-PERF: Common case is that we don't need to relax, encode directly
411   // onto the data fragments buffers.
412
413   SmallVector<MCFixup, 4> Fixups;
414   SmallString<256> Code;
415   raw_svector_ostream VecOS(Code);
416   Assembler.getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
417   VecOS.flush();
418
419   // FIXME: Eliminate this copy.
420   SmallVector<MCAsmFixup, 4> AsmFixups;
421   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
422     MCFixup &F = Fixups[i];
423     AsmFixups.push_back(MCAsmFixup(F.getOffset(), *F.getValue(),
424                                    F.getKind()));
425   }
426
427   // See if we might need to relax this instruction, if so it needs its own
428   // fragment.
429   //
430   // FIXME-PERF: Support target hook to do a fast path that avoids the encoder,
431   // when we can immediately tell that we will get something which might need
432   // relaxation (and compute its size).
433   //
434   // FIXME-PERF: We should also be smart about immediately relaxing instructions
435   // which we can already show will never possibly fit (we can also do a very
436   // good job of this before we do the first relaxation pass, because we have
437   // total knowledge about undefined symbols at that point). Even now, though,
438   // we can do a decent job, especially on Darwin where scattering means that we
439   // are going to often know that we can never fully resolve a fixup.
440   if (Assembler.getBackend().MayNeedRelaxation(Inst, AsmFixups)) {
441     MCInstFragment *IF = new MCInstFragment(Inst, CurSectionData);
442     IF->setAtom(CurrentAtomMap.lookup(CurSectionData));
443
444     // Add the fixups and data.
445     //
446     // FIXME: Revisit this design decision when relaxation is done, we may be
447     // able to get away with not storing any extra data in the MCInst.
448     IF->getCode() = Code;
449     IF->getFixups() = AsmFixups;
450
451     return;
452   }
453
454   // Add the fixups and data.
455   MCDataFragment *DF = getOrCreateDataFragment();
456   for (unsigned i = 0, e = AsmFixups.size(); i != e; ++i) {
457     AsmFixups[i].Offset += DF->getContents().size();
458     DF->addFixup(AsmFixups[i]);
459   }
460   DF->getContents().append(Code.begin(), Code.end());
461 }
462
463 void MCMachOStreamer::Finish() {
464   Assembler.Finish();
465 }
466
467 MCStreamer *llvm::createMachOStreamer(MCContext &Context, TargetAsmBackend &TAB,
468                                       raw_ostream &OS, MCCodeEmitter *CE,
469                                       bool RelaxAll) {
470   MCMachOStreamer *S = new MCMachOStreamer(Context, TAB, OS, CE);
471   if (RelaxAll)
472     S->getAssembler().setRelaxAll(true);
473   return S;
474 }