blob: 4a88807883324728daa99f305fd8f7a8700b0880 [file] [log] [blame]
Daniel Dunbar7760fbe2009-08-21 09:11:24 +00001//===- 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
Daniel Dunbar7760fbe2009-08-21 09:11:24 +000012#include "llvm/MC/MCAssembler.h"
13#include "llvm/MC/MCContext.h"
14#include "llvm/MC/MCSection.h"
15#include "llvm/MC/MCSymbol.h"
Daniel Dunbar7760fbe2009-08-21 09:11:24 +000016#include "llvm/Support/ErrorHandling.h"
17using namespace llvm;
18
19namespace {
20
21class MCMachOStreamer : public MCStreamer {
Daniel Dunbar30b09422009-08-24 08:40:12 +000022 /// SymbolFlags - We store the value for the 'desc' symbol field in the lowest
23 /// 16 bits of the implementation defined flags.
24 enum SymbolFlags { // See <mach-o/nlist.h>.
25 SF_DescFlagsMask = 0xFFFF,
26
27 // Reference type flags.
28 SF_ReferenceTypeMask = 0x0007,
29 SF_ReferenceTypeUndefinedNonLazy = 0x0000,
30 SF_ReferenceTypeUndefinedLazy = 0x0001,
31 SF_ReferenceTypeDefined = 0x0002,
32 SF_ReferenceTypePrivateDefined = 0x0003,
33 SF_ReferenceTypePrivateUndefinedNonLazy = 0x0004,
34 SF_ReferenceTypePrivateUndefinedLazy = 0x0005,
35
36 // Other 'desc' flags.
37 SF_NoDeadStrip = 0x0020,
38 SF_WeakReference = 0x0040,
39 SF_WeakDefinition = 0x0080
40 };
41
42private:
Daniel Dunbar7760fbe2009-08-21 09:11:24 +000043 MCAssembler Assembler;
44
45 MCSectionData *CurSectionData;
46
47 DenseMap<const MCSection*, MCSectionData*> SectionMap;
Daniel Dunbar197f5632009-08-22 10:13:24 +000048
49 DenseMap<const MCSymbol*, MCSymbolData*> SymbolMap;
50
51private:
52 MCFragment *getCurrentFragment() const {
53 assert(CurSectionData && "No current section!");
54
55 if (!CurSectionData->empty())
56 return &CurSectionData->getFragmentList().back();
57
58 return 0;
59 }
60
61 MCSymbolData &getSymbolData(MCSymbol &Symbol) {
62 MCSymbolData *&Entry = SymbolMap[&Symbol];
63
64 if (!Entry)
65 Entry = new MCSymbolData(Symbol, 0, 0, &Assembler);
66
67 return *Entry;
68 }
Daniel Dunbar7760fbe2009-08-21 09:11:24 +000069
70public:
71 MCMachOStreamer(MCContext &Context, raw_ostream &_OS)
72 : MCStreamer(Context), Assembler(_OS), CurSectionData(0) {}
73 ~MCMachOStreamer() {}
74
Daniel Dunbar4486ac12009-08-26 13:57:37 +000075 const MCValue &AddValueSymbols(const MCValue &Value) {
76 if (Value.getSymA())
77 getSymbolData(*const_cast<MCSymbol*>(Value.getSymA()));
78 if (Value.getSymB())
79 getSymbolData(*const_cast<MCSymbol*>(Value.getSymB()));
80 return Value;
81 }
82
Daniel Dunbar7760fbe2009-08-21 09:11:24 +000083 /// @name MCStreamer Interface
84 /// @{
85
86 virtual void SwitchSection(const MCSection *Section);
87
88 virtual void EmitLabel(MCSymbol *Symbol);
89
90 virtual void EmitAssemblerFlag(AssemblerFlag Flag);
91
92 virtual void EmitAssignment(MCSymbol *Symbol, const MCValue &Value,
93 bool MakeAbsolute = false);
94
95 virtual void EmitSymbolAttribute(MCSymbol *Symbol, SymbolAttr Attribute);
96
97 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
98
99 virtual void EmitLocalSymbol(MCSymbol *Symbol, const MCValue &Value);
100
101 virtual void EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
102 unsigned Pow2Alignment, bool IsLocal);
103
104 virtual void EmitZerofill(MCSection *Section, MCSymbol *Symbol = NULL,
105 unsigned Size = 0, unsigned Pow2Alignment = 0);
106
107 virtual void EmitBytes(const StringRef &Data);
108
109 virtual void EmitValue(const MCValue &Value, unsigned Size);
110
111 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
112 unsigned ValueSize = 1,
113 unsigned MaxBytesToEmit = 0);
114
115 virtual void EmitValueToOffset(const MCValue &Offset,
116 unsigned char Value = 0);
117
118 virtual void EmitInstruction(const MCInst &Inst);
119
120 virtual void Finish();
121
122 /// @}
123};
124
125} // end anonymous namespace.
126
127void MCMachOStreamer::SwitchSection(const MCSection *Section) {
128 assert(Section && "Cannot switch to a null section!");
Chris Lattnerbf7a11f2009-08-22 19:35:08 +0000129
130 // If already in this section, then this is a noop.
131 if (Section == CurSection) return;
132
133 CurSection = Section;
134 MCSectionData *&Entry = SectionMap[Section];
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000135
Chris Lattnerbf7a11f2009-08-22 19:35:08 +0000136 if (!Entry)
137 Entry = new MCSectionData(*Section, &Assembler);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000138
Chris Lattnerbf7a11f2009-08-22 19:35:08 +0000139 CurSectionData = Entry;
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000140}
141
142void MCMachOStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar1c2ee9f2009-08-22 07:22:36 +0000143 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000144
Daniel Dunbarb3730b12009-08-26 02:48:04 +0000145 // FIXME: We should also use offsets into Fill fragments.
Daniel Dunbar197f5632009-08-22 10:13:24 +0000146 MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
147 if (!F)
148 F = new MCDataFragment(CurSectionData);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000149
Daniel Dunbar197f5632009-08-22 10:13:24 +0000150 MCSymbolData &SD = getSymbolData(*Symbol);
151 assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
152 SD.setFragment(F);
153 SD.setOffset(F->getContents().size());
Daniel Dunbar30b09422009-08-24 08:40:12 +0000154
155 // This causes the reference type and weak reference flags to be cleared.
156 SD.setFlags(SD.getFlags() & ~(SF_WeakReference | SF_ReferenceTypeMask));
Daniel Dunbar197f5632009-08-22 10:13:24 +0000157
Daniel Dunbar1c2ee9f2009-08-22 07:22:36 +0000158 Symbol->setSection(*CurSection);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000159}
160
161void MCMachOStreamer::EmitAssemblerFlag(AssemblerFlag Flag) {
162 llvm_unreachable("FIXME: Not yet implemented!");
163}
164
165void MCMachOStreamer::EmitAssignment(MCSymbol *Symbol,
166 const MCValue &Value,
167 bool MakeAbsolute) {
Daniel Dunbar1c2ee9f2009-08-22 07:22:36 +0000168 // Only absolute symbols can be redefined.
169 assert((Symbol->isUndefined() || Symbol->isAbsolute()) &&
170 "Cannot define a symbol twice!");
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000171
172 llvm_unreachable("FIXME: Not yet implemented!");
173}
174
175void MCMachOStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
176 SymbolAttr Attribute) {
Daniel Dunbara0151d02009-08-24 11:56:58 +0000177 // Indirect symbols are handled differently, to match how 'as' handles
178 // them. This makes writing matching .o files easier.
179 if (Attribute == MCStreamer::IndirectSymbol) {
Daniel Dunbar6d294da2009-08-26 00:18:21 +0000180 // Note that we intentionally cannot use the symbol data here; this is
181 // important for matching the string table that 'as' generates.
Daniel Dunbara0151d02009-08-24 11:56:58 +0000182 IndirectSymbolData ISD;
183 ISD.Symbol = Symbol;
184 ISD.SectionData = CurSectionData;
185 Assembler.getIndirectSymbols().push_back(ISD);
186 return;
187 }
188
Daniel Dunbar30b09422009-08-24 08:40:12 +0000189 // Adding a symbol attribute always introduces the symbol, note that an
190 // important side effect of calling getSymbolData here is to register the
191 // symbol with the assembler.
192 MCSymbolData &SD = getSymbolData(*Symbol);
193
194 // The implementation of symbol attributes is designed to match 'as', but it
195 // leaves much to desired. It doesn't really make sense to arbitrarily add and
196 // remove flags, but 'as' allows this (in particular, see .desc).
197 //
198 // In the future it might be worth trying to make these operations more well
199 // defined.
Daniel Dunbar6fae16d2009-08-22 11:41:10 +0000200 switch (Attribute) {
Daniel Dunbara0151d02009-08-24 11:56:58 +0000201 case MCStreamer::IndirectSymbol:
Daniel Dunbar30b09422009-08-24 08:40:12 +0000202 case MCStreamer::Hidden:
203 case MCStreamer::Internal:
204 case MCStreamer::Protected:
205 case MCStreamer::Weak:
206 assert(0 && "Invalid symbol attribute for Mach-O!");
207 break;
Daniel Dunbar6fae16d2009-08-22 11:41:10 +0000208
209 case MCStreamer::Global:
210 getSymbolData(*Symbol).setExternal(true);
211 break;
Daniel Dunbar30b09422009-08-24 08:40:12 +0000212
213 case MCStreamer::LazyReference:
214 // FIXME: This requires -dynamic.
215 SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
216 if (Symbol->isUndefined())
217 SD.setFlags(SD.getFlags() | SF_ReferenceTypeUndefinedLazy);
218 break;
219
Daniel Dunbar30b09422009-08-24 08:40:12 +0000220 // Since .reference sets the no dead strip bit, it is equivalent to
221 // .no_dead_strip in practice.
222 case MCStreamer::Reference:
223 case MCStreamer::NoDeadStrip:
224 SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
225 break;
226
227 case MCStreamer::PrivateExtern:
228 SD.setExternal(true);
229 SD.setPrivateExtern(true);
230 break;
231
232 case MCStreamer::WeakReference:
233 // FIXME: This requires -dynamic.
234 if (Symbol->isUndefined())
235 SD.setFlags(SD.getFlags() | SF_WeakReference);
236 break;
237
238 case MCStreamer::WeakDefinition:
239 // FIXME: 'as' enforces that this is defined and global. The manual claims
240 // it has to be in a coalesced section, but this isn't enforced.
241 SD.setFlags(SD.getFlags() | SF_WeakDefinition);
242 break;
Daniel Dunbar6fae16d2009-08-22 11:41:10 +0000243 }
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000244}
245
246void MCMachOStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Daniel Dunbar30b09422009-08-24 08:40:12 +0000247 // Encode the 'desc' value into the lowest implementation defined bits.
248 assert(DescValue == (DescValue & SF_DescFlagsMask) &&
249 "Invalid .desc value!");
250 getSymbolData(*Symbol).setFlags(DescValue & SF_DescFlagsMask);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000251}
252
253void MCMachOStreamer::EmitLocalSymbol(MCSymbol *Symbol, const MCValue &Value) {
254 llvm_unreachable("FIXME: Not yet implemented!");
255}
256
257void MCMachOStreamer::EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
258 unsigned Pow2Alignment,
259 bool IsLocal) {
260 llvm_unreachable("FIXME: Not yet implemented!");
261}
262
263void MCMachOStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol,
264 unsigned Size, unsigned Pow2Alignment) {
265 llvm_unreachable("FIXME: Not yet implemented!");
266}
267
268void MCMachOStreamer::EmitBytes(const StringRef &Data) {
Daniel Dunbar197f5632009-08-22 10:13:24 +0000269 MCDataFragment *DF = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
270 if (!DF)
271 DF = new MCDataFragment(CurSectionData);
Daniel Dunbar8fcefbe2009-08-21 18:29:01 +0000272 DF->getContents().append(Data.begin(), Data.end());
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000273}
274
275void MCMachOStreamer::EmitValue(const MCValue &Value, unsigned Size) {
Daniel Dunbar4486ac12009-08-26 13:57:37 +0000276 new MCFillFragment(AddValueSymbols(Value), Size, 1, CurSectionData);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000277}
278
279void MCMachOStreamer::EmitValueToAlignment(unsigned ByteAlignment,
280 int64_t Value, unsigned ValueSize,
281 unsigned MaxBytesToEmit) {
Daniel Dunbar3d153ff2009-08-21 23:07:38 +0000282 if (MaxBytesToEmit == 0)
283 MaxBytesToEmit = ByteAlignment;
Daniel Dunbar8fcefbe2009-08-21 18:29:01 +0000284 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
285 CurSectionData);
286
Daniel Dunbar197f5632009-08-22 10:13:24 +0000287 // Update the maximum alignment on the current section if necessary.
Daniel Dunbar8fcefbe2009-08-21 18:29:01 +0000288 if (ByteAlignment > CurSectionData->getAlignment())
289 CurSectionData->setAlignment(ByteAlignment);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000290}
291
292void MCMachOStreamer::EmitValueToOffset(const MCValue &Offset,
293 unsigned char Value) {
Daniel Dunbar4486ac12009-08-26 13:57:37 +0000294 new MCOrgFragment(AddValueSymbols(Offset), Value, CurSectionData);
Daniel Dunbar7760fbe2009-08-21 09:11:24 +0000295}
296
297void MCMachOStreamer::EmitInstruction(const MCInst &Inst) {
298 llvm_unreachable("FIXME: Not yet implemented!");
299}
300
301void MCMachOStreamer::Finish() {
302 Assembler.Finish();
303}
304
305MCStreamer *llvm::createMachOStreamer(MCContext &Context, raw_ostream &OS) {
306 return new MCMachOStreamer(Context, OS);
307}