blob: 44bc267c11c299bf6aac8fd86e72b8e21a6ce635 [file] [log] [blame]
Daniel Dunbarfb4a6b32009-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 Dunbarfb4a6b32009-08-21 09:11:24 +000012#include "llvm/MC/MCAssembler.h"
13#include "llvm/MC/MCContext.h"
Daniel Dunbar4fac7492009-08-27 08:17:51 +000014#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000015#include "llvm/MC/MCExpr.h"
Daniel Dunbar4fac7492009-08-27 08:17:51 +000016#include "llvm/MC/MCInst.h"
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000017#include "llvm/MC/MCObjectStreamer.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000018#include "llvm/MC/MCSection.h"
19#include "llvm/MC/MCSymbol.h"
Kevin Enderbya6eeb6e2010-05-07 21:44:23 +000020#include "llvm/MC/MCMachOSymbolFlags.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000021#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar4fac7492009-08-27 08:17:51 +000022#include "llvm/Support/raw_ostream.h"
Daniel Dunbard8036fb2010-03-23 05:09:03 +000023#include "llvm/Target/TargetAsmBackend.h"
24
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000025using namespace llvm;
26
27namespace {
28
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000029class MCMachOStreamer : public MCObjectStreamer {
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +000030private:
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000031 MCFragment *getCurrentFragment() const {
Daniel Dunbar83b46712010-06-16 20:04:25 +000032 assert(getCurrentSectionData() && "No current section!");
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000033
Daniel Dunbar83b46712010-06-16 20:04:25 +000034 if (!getCurrentSectionData()->empty())
35 return &getCurrentSectionData()->getFragmentList().back();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000036
37 return 0;
38 }
39
Daniel Dunbarf70f4772010-03-22 20:35:46 +000040 /// Get a data fragment to write into, creating a new one if the current
41 /// fragment is not a data fragment.
42 MCDataFragment *getOrCreateDataFragment() const {
43 MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
44 if (!F)
Daniel Dunbara86de102010-06-16 20:04:32 +000045 F = new MCDataFragment(getCurrentSectionData());
Daniel Dunbarf70f4772010-03-22 20:35:46 +000046 return F;
47 }
48
Daniel Dunbar2ac0c452010-05-26 20:37:00 +000049 void EmitInstToFragment(const MCInst &Inst);
50 void EmitInstToData(const MCInst &Inst);
51
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000052public:
Daniel Dunbar1f3e4452010-03-11 01:34:27 +000053 MCMachOStreamer(MCContext &Context, TargetAsmBackend &TAB,
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000054 raw_ostream &OS, MCCodeEmitter *Emitter)
Daniel Dunbar83b46712010-06-16 20:04:25 +000055 : MCObjectStreamer(Context, TAB, OS, Emitter) {}
Daniel Dunbarac2884a2010-03-25 22:49:09 +000056
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000057 const MCExpr *AddValueSymbols(const MCExpr *Value) {
58 switch (Value->getKind()) {
Chris Lattner5d917a82010-02-08 19:41:07 +000059 case MCExpr::Target: assert(0 && "Can't handle target exprs yet!");
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000060 case MCExpr::Constant:
61 break;
62
63 case MCExpr::Binary: {
64 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
65 AddValueSymbols(BE->getLHS());
66 AddValueSymbols(BE->getRHS());
67 break;
68 }
69
70 case MCExpr::SymbolRef:
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000071 getAssembler().getOrCreateSymbolData(
Daniel Dunbar46836a72010-03-10 20:58:29 +000072 cast<MCSymbolRefExpr>(Value)->getSymbol());
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000073 break;
74
75 case MCExpr::Unary:
76 AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
77 break;
78 }
79
80 return Value;
81 }
82
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000083 /// @name MCStreamer Interface
84 /// @{
85
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000086 virtual void EmitLabel(MCSymbol *Symbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +000087 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbar821e3332009-08-31 08:09:28 +000088 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnera5ad93a2010-01-23 06:39:22 +000089 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000090 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner9eb158d2010-01-23 07:47:02 +000091 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +000092 unsigned ByteAlignment);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +000093 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol) {
94 assert(0 && "macho doesn't support this directive");
95 }
96 virtual void EmitCOFFSymbolStorageClass(int StorageClass) {
97 assert(0 && "macho doesn't support this directive");
98 }
99 virtual void EmitCOFFSymbolType(int Type) {
100 assert(0 && "macho doesn't support this directive");
101 }
102 virtual void EndCOFFSymbolDef() {
103 assert(0 && "macho doesn't support this directive");
104 }
Chris Lattner99328ad2010-01-25 07:52:13 +0000105 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
106 assert(0 && "macho doesn't support this directive");
107 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000108 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
109 assert(0 && "macho doesn't support this directive");
110 }
Daniel Dunbar8751b942009-08-28 05:48:22 +0000111 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000112 unsigned Size = 0, unsigned ByteAlignment = 0);
Eric Christopher011c3f12010-05-18 21:26:41 +0000113 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
114 uint64_t Size, unsigned ByteAlignment = 0);
Chris Lattneraaec2052010-01-19 19:46:13 +0000115 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattneraaec2052010-01-19 19:46:13 +0000116 virtual void EmitValue(const MCExpr *Value, unsigned Size,unsigned AddrSpace);
Chris Lattner718fb592010-01-25 21:28:50 +0000117 virtual void EmitGPRel32Value(const MCExpr *Value) {
118 assert(0 && "macho doesn't support this directive");
119 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000120 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
121 unsigned ValueSize = 1,
122 unsigned MaxBytesToEmit = 0);
Kevin Enderby6e720482010-02-23 18:26:34 +0000123 virtual void EmitCodeAlignment(unsigned ByteAlignment,
124 unsigned MaxBytesToEmit = 0);
Daniel Dunbar821e3332009-08-31 08:09:28 +0000125 virtual void EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000126 unsigned char Value = 0);
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000127
Chris Lattnera6594fc2010-01-25 18:58:59 +0000128 virtual void EmitFileDirective(StringRef Filename) {
Daniel Dunbarca1212d2010-05-18 17:28:17 +0000129 report_fatal_error("unsupported directive: '.file'");
Chris Lattnera6594fc2010-01-25 18:58:59 +0000130 }
131 virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
Daniel Dunbarca1212d2010-05-18 17:28:17 +0000132 report_fatal_error("unsupported directive: '.file'");
Chris Lattnera6594fc2010-01-25 18:58:59 +0000133 }
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000134
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000135 virtual void EmitInstruction(const MCInst &Inst);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000136
Daniel Dunbara86de102010-06-16 20:04:32 +0000137 virtual void Finish();
138
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000139 /// @}
140};
141
142} // end anonymous namespace.
143
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000144void MCMachOStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000145 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Daniel Dunbarc3047182010-05-05 19:01:00 +0000146 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
147 assert(CurSection && "Cannot emit before setting section!");
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000148
Daniel Dunbara86de102010-06-16 20:04:32 +0000149 Symbol->setSection(*CurSection);
150
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000151 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000152
Daniel Dunbara86de102010-06-16 20:04:32 +0000153 // We have to create a new fragment if this is an atom defining symbol,
154 // fragments cannot span atoms.
155 if (getAssembler().isSymbolLinkerVisible(SD.getSymbol()))
156 new MCDataFragment(getCurrentSectionData());
Daniel Dunbar071f73d2010-05-10 22:45:09 +0000157
Daniel Dunbarf70f4772010-03-22 20:35:46 +0000158 // FIXME: This is wasteful, we don't necessarily need to create a data
159 // fragment. Instead, we should mark the symbol as pointing into the data
160 // fragment if it exists, otherwise we should just queue the label and set its
161 // fragment pointer when we emit the next fragment.
Daniel Dunbara86de102010-06-16 20:04:32 +0000162 MCDataFragment *F = getOrCreateDataFragment();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000163 assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
164 SD.setFragment(F);
165 SD.setOffset(F->getContents().size());
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000166
Daniel Dunbarb18d2dd2010-05-17 20:12:31 +0000167 // This causes the reference type flag to be cleared. Darwin 'as' was "trying"
168 // to clear the weak reference and weak definition bits too, but the
169 // implementation was buggy. For now we just try to match 'as', for
170 // diffability.
171 //
172 // FIXME: Cleanup this code, these bits should be emitted based on semantic
173 // properties, not on the order of definition, etc.
174 SD.setFlags(SD.getFlags() & ~SF_ReferenceTypeMask);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000175}
176
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000177void MCMachOStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Daniel Dunbar6009db42009-08-26 21:22:22 +0000178 switch (Flag) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000179 case MCAF_SubsectionsViaSymbols:
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000180 getAssembler().setSubsectionsViaSymbols(true);
Daniel Dunbar8c3eaf42009-08-28 07:08:47 +0000181 return;
Daniel Dunbar6009db42009-08-26 21:22:22 +0000182 }
Daniel Dunbar8c3eaf42009-08-28 07:08:47 +0000183
184 assert(0 && "invalid assembler flag!");
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000185}
186
Daniel Dunbar821e3332009-08-31 08:09:28 +0000187void MCMachOStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Daniel Dunbara4d86672009-10-16 01:58:23 +0000188 // FIXME: Lift context changes into super class.
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000189 getAssembler().getOrCreateSymbolData(*Symbol);
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000190 Symbol->setVariableValue(AddValueSymbols(Value));
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000191}
192
193void MCMachOStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000194 MCSymbolAttr Attribute) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000195 // Indirect symbols are handled differently, to match how 'as' handles
196 // them. This makes writing matching .o files easier.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000197 if (Attribute == MCSA_IndirectSymbol) {
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000198 // Note that we intentionally cannot use the symbol data here; this is
199 // important for matching the string table that 'as' generates.
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000200 IndirectSymbolData ISD;
201 ISD.Symbol = Symbol;
Daniel Dunbar83b46712010-06-16 20:04:25 +0000202 ISD.SectionData = getCurrentSectionData();
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000203 getAssembler().getIndirectSymbols().push_back(ISD);
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000204 return;
205 }
206
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000207 // Adding a symbol attribute always introduces the symbol, note that an
Daniel Dunbar46836a72010-03-10 20:58:29 +0000208 // important side effect of calling getOrCreateSymbolData here is to register
209 // the symbol with the assembler.
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000210 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000211
212 // The implementation of symbol attributes is designed to match 'as', but it
213 // leaves much to desired. It doesn't really make sense to arbitrarily add and
214 // remove flags, but 'as' allows this (in particular, see .desc).
215 //
216 // In the future it might be worth trying to make these operations more well
217 // defined.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000218 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000219 case MCSA_Invalid:
Chris Lattnered0ab152010-01-25 18:30:45 +0000220 case MCSA_ELF_TypeFunction:
221 case MCSA_ELF_TypeIndFunction:
222 case MCSA_ELF_TypeObject:
223 case MCSA_ELF_TypeTLS:
224 case MCSA_ELF_TypeCommon:
225 case MCSA_ELF_TypeNoType:
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000226 case MCSA_IndirectSymbol:
227 case MCSA_Hidden:
228 case MCSA_Internal:
229 case MCSA_Protected:
230 case MCSA_Weak:
231 case MCSA_Local:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000232 assert(0 && "Invalid symbol attribute for Mach-O!");
233 break;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000234
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000235 case MCSA_Global:
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000236 SD.setExternal(true);
Daniel Dunbarb18d2dd2010-05-17 20:12:31 +0000237 // This effectively clears the undefined lazy bit, in Darwin 'as', although
238 // it isn't very consistent because it implements this as part of symbol
239 // lookup.
240 //
241 // FIXME: Cleanup this code, these bits should be emitted based on semantic
242 // properties, not on the order of definition, etc.
243 SD.setFlags(SD.getFlags() & ~SF_ReferenceTypeUndefinedLazy);
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000244 break;
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000245
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000246 case MCSA_LazyReference:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000247 // FIXME: This requires -dynamic.
248 SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
249 if (Symbol->isUndefined())
250 SD.setFlags(SD.getFlags() | SF_ReferenceTypeUndefinedLazy);
251 break;
252
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000253 // Since .reference sets the no dead strip bit, it is equivalent to
254 // .no_dead_strip in practice.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000255 case MCSA_Reference:
256 case MCSA_NoDeadStrip:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000257 SD.setFlags(SD.getFlags() | SF_NoDeadStrip);
258 break;
259
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000260 case MCSA_PrivateExtern:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000261 SD.setExternal(true);
262 SD.setPrivateExtern(true);
263 break;
264
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000265 case MCSA_WeakReference:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000266 // FIXME: This requires -dynamic.
267 if (Symbol->isUndefined())
268 SD.setFlags(SD.getFlags() | SF_WeakReference);
269 break;
270
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000271 case MCSA_WeakDefinition:
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000272 // FIXME: 'as' enforces that this is defined and global. The manual claims
273 // it has to be in a coalesced section, but this isn't enforced.
274 SD.setFlags(SD.getFlags() | SF_WeakDefinition);
275 break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000276
277 case MCSA_WeakDefAutoPrivate:
278 SD.setFlags(SD.getFlags() | SF_WeakDefinition | SF_WeakReference);
279 break;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000280 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000281}
282
283void MCMachOStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000284 // Encode the 'desc' value into the lowest implementation defined bits.
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000285 assert(DescValue == (DescValue & SF_DescFlagsMask) &&
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000286 "Invalid .desc value!");
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000287 getAssembler().getOrCreateSymbolData(*Symbol).setFlags(
288 DescValue & SF_DescFlagsMask);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000289}
290
Chris Lattner9eb158d2010-01-23 07:47:02 +0000291void MCMachOStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000292 unsigned ByteAlignment) {
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000293 // FIXME: Darwin 'as' does appear to allow redef of a .comm by itself.
294 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
295
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000296 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000297 SD.setExternal(true);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000298 SD.setCommon(Size, ByteAlignment);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000299}
300
Daniel Dunbar8751b942009-08-28 05:48:22 +0000301void MCMachOStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000302 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000303 MCSectionData &SectData = getAssembler().getOrCreateSectionData(*Section);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000304
305 // The symbol may not be present, which only creates the section.
306 if (!Symbol)
307 return;
308
309 // FIXME: Assert that this section has the zerofill type.
310
311 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
312
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000313 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000314
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000315 // Emit an align fragment if necessary.
316 if (ByteAlignment != 1)
Daniel Dunbar1c154132010-05-12 22:56:23 +0000317 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectData);
Daniel Dunbare73d49e2010-05-12 22:51:27 +0000318
Daniel Dunbar4e544872010-05-12 22:51:38 +0000319 MCFragment *F = new MCFillFragment(0, 0, Size, &SectData);
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000320 SD.setFragment(F);
321
322 Symbol->setSection(*Section);
323
324 // Update the maximum alignment on the zero fill section if necessary.
325 if (ByteAlignment > SectData.getAlignment())
326 SectData.setAlignment(ByteAlignment);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000327}
328
Eric Christopher070c1ab2010-05-21 23:03:53 +0000329// This should always be called with the thread local bss section. Like the
330// .zerofill directive this doesn't actually switch sections on us.
Eric Christopher011c3f12010-05-18 21:26:41 +0000331void MCMachOStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
332 uint64_t Size, unsigned ByteAlignment) {
333 EmitZerofill(Section, Symbol, Size, ByteAlignment);
334 return;
Eric Christopher482eba02010-05-14 01:50:28 +0000335}
336
Chris Lattneraaec2052010-01-19 19:46:13 +0000337void MCMachOStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Daniel Dunbarf70f4772010-03-22 20:35:46 +0000338 getOrCreateDataFragment()->getContents().append(Data.begin(), Data.end());
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000339}
340
Chris Lattneraaec2052010-01-19 19:46:13 +0000341void MCMachOStreamer::EmitValue(const MCExpr *Value, unsigned Size,
342 unsigned AddrSpace) {
Daniel Dunbarf70f4772010-03-22 20:35:46 +0000343 MCDataFragment *DF = getOrCreateDataFragment();
Daniel Dunbar45f48742010-02-13 09:28:22 +0000344
345 // Avoid fixups when possible.
346 int64_t AbsValue;
Daniel Dunbar40ebe2472010-02-22 22:08:57 +0000347 if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue)) {
Daniel Dunbar45f48742010-02-13 09:28:22 +0000348 // FIXME: Endianness assumption.
349 for (unsigned i = 0; i != Size; ++i)
350 DF->getContents().push_back(uint8_t(AbsValue >> (i * 8)));
351 } else {
Daniel Dunbarc90e30a2010-05-26 15:18:56 +0000352 DF->addFixup(MCFixup::Create(DF->getContents().size(),
353 AddValueSymbols(Value),
354 MCFixup::getKindForSize(Size)));
Daniel Dunbar45f48742010-02-13 09:28:22 +0000355 DF->getContents().resize(DF->getContents().size() + Size, 0);
356 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000357}
358
359void MCMachOStreamer::EmitValueToAlignment(unsigned ByteAlignment,
360 int64_t Value, unsigned ValueSize,
361 unsigned MaxBytesToEmit) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000362 if (MaxBytesToEmit == 0)
363 MaxBytesToEmit = ByteAlignment;
Daniel Dunbara86de102010-06-16 20:04:32 +0000364 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
365 getCurrentSectionData());
Kevin Enderby6e720482010-02-23 18:26:34 +0000366
367 // Update the maximum alignment on the current section if necessary.
Daniel Dunbar83b46712010-06-16 20:04:25 +0000368 if (ByteAlignment > getCurrentSectionData()->getAlignment())
369 getCurrentSectionData()->setAlignment(ByteAlignment);
Kevin Enderby6e720482010-02-23 18:26:34 +0000370}
371
372void MCMachOStreamer::EmitCodeAlignment(unsigned ByteAlignment,
373 unsigned MaxBytesToEmit) {
374 if (MaxBytesToEmit == 0)
375 MaxBytesToEmit = ByteAlignment;
Daniel Dunbar1c154132010-05-12 22:56:23 +0000376 MCAlignFragment *F = new MCAlignFragment(ByteAlignment, 0, 1, MaxBytesToEmit,
Daniel Dunbar83b46712010-06-16 20:04:25 +0000377 getCurrentSectionData());
Daniel Dunbar1c154132010-05-12 22:56:23 +0000378 F->setEmitNops(true);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000379
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000380 // Update the maximum alignment on the current section if necessary.
Daniel Dunbar83b46712010-06-16 20:04:25 +0000381 if (ByteAlignment > getCurrentSectionData()->getAlignment())
382 getCurrentSectionData()->setAlignment(ByteAlignment);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000383}
384
Daniel Dunbar821e3332009-08-31 08:09:28 +0000385void MCMachOStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000386 unsigned char Value) {
Daniel Dunbara86de102010-06-16 20:04:32 +0000387 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000388}
389
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000390void MCMachOStreamer::EmitInstToFragment(const MCInst &Inst) {
Daniel Dunbar83b46712010-06-16 20:04:25 +0000391 MCInstFragment *IF = new MCInstFragment(Inst, getCurrentSectionData());
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000392
393 // Add the fixups and data.
394 //
395 // FIXME: Revisit this design decision when relaxation is done, we may be
396 // able to get away with not storing any extra data in the MCInst.
397 SmallVector<MCFixup, 4> Fixups;
398 SmallString<256> Code;
399 raw_svector_ostream VecOS(Code);
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000400 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000401 VecOS.flush();
402
403 IF->getCode() = Code;
404 IF->getFixups() = Fixups;
405}
406
407void MCMachOStreamer::EmitInstToData(const MCInst &Inst) {
408 MCDataFragment *DF = getOrCreateDataFragment();
409
410 SmallVector<MCFixup, 4> Fixups;
411 SmallString<256> Code;
412 raw_svector_ostream VecOS(Code);
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000413 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000414 VecOS.flush();
415
416 // Add the fixups and data.
417 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
418 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
419 DF->addFixup(Fixups[i]);
420 }
421 DF->getContents().append(Code.begin(), Code.end());
422}
423
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000424void MCMachOStreamer::EmitInstruction(const MCInst &Inst) {
Daniel Dunbar4fac7492009-08-27 08:17:51 +0000425 // Scan for values.
Daniel Dunbardb9014d2010-05-17 21:19:59 +0000426 for (unsigned i = Inst.getNumOperands(); i--; )
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000427 if (Inst.getOperand(i).isExpr())
428 AddValueSymbols(Inst.getOperand(i).getExpr());
Daniel Dunbar4fac7492009-08-27 08:17:51 +0000429
Daniel Dunbar83b46712010-06-16 20:04:25 +0000430 getCurrentSectionData()->setHasInstructions(true);
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000431
Daniel Dunbar83194de2010-05-26 20:37:03 +0000432 // If this instruction doesn't need relaxation, just emit it as data.
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000433 if (!getAssembler().getBackend().MayNeedRelaxation(Inst)) {
Daniel Dunbar2ac0c452010-05-26 20:37:00 +0000434 EmitInstToData(Inst);
Daniel Dunbar83194de2010-05-26 20:37:03 +0000435 return;
436 }
437
438 // Otherwise, if we are relaxing everything, relax the instruction as much as
439 // possible and emit it as data.
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000440 if (getAssembler().getRelaxAll()) {
Daniel Dunbar83194de2010-05-26 20:37:03 +0000441 MCInst Relaxed;
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +0000442 getAssembler().getBackend().RelaxInstruction(Inst, Relaxed);
443 while (getAssembler().getBackend().MayNeedRelaxation(Relaxed))
444 getAssembler().getBackend().RelaxInstruction(Relaxed, Relaxed);
Daniel Dunbar83194de2010-05-26 20:37:03 +0000445 EmitInstToData(Relaxed);
446 return;
447 }
448
449 // Otherwise emit to a separate fragment.
450 EmitInstToFragment(Inst);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000451}
452
Daniel Dunbara86de102010-06-16 20:04:32 +0000453void MCMachOStreamer::Finish() {
454 // We have to set the fragment atom associations so we can relax properly for
455 // Mach-O.
456
457 // First, scan the symbol table to build a lookup table from fragments to
458 // defining symbols.
459 DenseMap<const MCFragment*, MCSymbolData*> DefiningSymbolMap;
460 for (MCAssembler::symbol_iterator it = getAssembler().symbol_begin(),
461 ie = getAssembler().symbol_end(); it != ie; ++it) {
462 if (getAssembler().isSymbolLinkerVisible(it->getSymbol()) &&
463 it->getFragment()) {
464 // An atom defining symbol should never be internal to a fragment.
465 assert(it->getOffset() == 0 && "Invalid offset in atom defining symbol!");
466 DefiningSymbolMap[it->getFragment()] = it;
467 }
468 }
469
470 // Set the fragment atom associations by tracking the last seen atom defining
471 // symbol.
472 for (MCAssembler::iterator it = getAssembler().begin(),
473 ie = getAssembler().end(); it != ie; ++it) {
474 MCSymbolData *CurrentAtom = 0;
475 for (MCSectionData::iterator it2 = it->begin(),
476 ie2 = it->end(); it2 != ie2; ++it2) {
477 if (MCSymbolData *SD = DefiningSymbolMap.lookup(it2))
478 CurrentAtom = SD;
479 it2->setAtom(CurrentAtom);
480 }
481 }
482
483 this->MCObjectStreamer::Finish();
484}
485
Daniel Dunbar1f3e4452010-03-11 01:34:27 +0000486MCStreamer *llvm::createMachOStreamer(MCContext &Context, TargetAsmBackend &TAB,
Daniel Dunbarac2884a2010-03-25 22:49:09 +0000487 raw_ostream &OS, MCCodeEmitter *CE,
488 bool RelaxAll) {
489 MCMachOStreamer *S = new MCMachOStreamer(Context, TAB, OS, CE);
490 if (RelaxAll)
491 S->getAssembler().setRelaxAll(true);
492 return S;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000493}