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