blob: f51be42cc9d41bb30a5a114158dddc900a92e1a7 [file] [log] [blame]
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001//===- lib/MC/MCAssembler.cpp - Assembler Backend Implementation ----------===//
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
Daniel Dunbar0adcd352009-08-25 21:10:45 +000010#define DEBUG_TYPE "assembler"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000011#include "llvm/MC/MCAssembler.h"
Daniel Dunbar1253a6f2009-10-16 01:58:03 +000012#include "llvm/MC/MCExpr.h"
Chris Lattnerbea2c952009-08-22 19:19:12 +000013#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1253a6f2009-10-16 01:58:03 +000014#include "llvm/MC/MCSymbol.h"
15#include "llvm/MC/MCValue.h"
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +000016#include "llvm/ADT/DenseMap.h"
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000017#include "llvm/ADT/SmallString.h"
Daniel Dunbar0adcd352009-08-25 21:10:45 +000018#include "llvm/ADT/Statistic.h"
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +000019#include "llvm/ADT/StringExtras.h"
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000020#include "llvm/ADT/StringMap.h"
Daniel Dunbard6f761e2009-08-21 23:07:38 +000021#include "llvm/ADT/Twine.h"
Daniel Dunbar0705fbf2009-08-21 18:29:01 +000022#include "llvm/Support/ErrorHandling.h"
Chris Lattner45f8c092010-02-02 19:38:14 +000023#include "llvm/Support/MachO.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000024#include "llvm/Support/raw_ostream.h"
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +000025#include "llvm/Support/Debug.h"
Daniel Dunbarf6346762010-02-13 09:29:02 +000026
27// FIXME: Gross.
28#include "../Target/X86/X86FixupKinds.h"
29
Chris Lattner23132b12009-08-24 03:52:50 +000030#include <vector>
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000031using namespace llvm;
32
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000033class MachObjectWriter;
34
Daniel Dunbar0adcd352009-08-25 21:10:45 +000035STATISTIC(EmittedFragments, "Number of emitted assembler fragments");
36
Daniel Dunbar8f4d1462009-08-28 07:08:35 +000037// FIXME FIXME FIXME: There are number of places in this file where we convert
38// what is a 64-bit assembler value used for computation into a value in the
39// object file, which may truncate it. We should detect that truncation where
40// invalid and report errors back.
41
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000042static void WriteFileData(raw_ostream &OS, const MCSectionData &SD,
43 MachObjectWriter &MOW);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000044
Kevin Enderby6e720482010-02-23 18:26:34 +000045static uint64_t WriteNopData(uint64_t Count, MachObjectWriter &MOW);
46
Daniel Dunbard5a8e982009-08-28 05:49:21 +000047/// isVirtualSection - Check if this is a section which does not actually exist
48/// in the object file.
49static bool isVirtualSection(const MCSection &Section) {
50 // FIXME: Lame.
51 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
52 unsigned Type = SMO.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
53 return (Type == MCSectionMachO::S_ZEROFILL);
54}
55
Duncan Sands9a7795c2010-02-17 14:52:22 +000056static unsigned getFixupKindLog2Size(unsigned Kind) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +000057 switch (Kind) {
58 default: llvm_unreachable("invalid fixup kind!");
Daniel Dunbarf6346762010-02-13 09:29:02 +000059 case X86::reloc_pcrel_1byte:
Daniel Dunbar2be2fd02010-02-13 09:28:54 +000060 case FK_Data_1: return 0;
61 case FK_Data_2: return 1;
Daniel Dunbarf6346762010-02-13 09:29:02 +000062 case X86::reloc_pcrel_4byte:
63 case X86::reloc_riprel_4byte:
Daniel Dunbar2be2fd02010-02-13 09:28:54 +000064 case FK_Data_4: return 2;
65 case FK_Data_8: return 3;
66 }
67}
68
Duncan Sands9a7795c2010-02-17 14:52:22 +000069static bool isFixupKindPCRel(unsigned Kind) {
Daniel Dunbar591047f2010-02-13 09:45:59 +000070 switch (Kind) {
71 default:
72 return false;
73 case X86::reloc_pcrel_1byte:
74 case X86::reloc_pcrel_4byte:
75 case X86::reloc_riprel_4byte:
76 return true;
77 }
78}
79
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000080class MachObjectWriter {
81 // See <mach-o/loader.h>.
82 enum {
83 Header_Magic32 = 0xFEEDFACE,
84 Header_Magic64 = 0xFEEDFACF
85 };
Daniel Dunbar7eb85192009-10-16 01:58:15 +000086
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000087 static const unsigned Header32Size = 28;
88 static const unsigned Header64Size = 32;
89 static const unsigned SegmentLoadCommand32Size = 56;
90 static const unsigned Section32Size = 68;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000091 static const unsigned SymtabLoadCommandSize = 24;
92 static const unsigned DysymtabLoadCommandSize = 80;
93 static const unsigned Nlist32Size = 12;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +000094 static const unsigned RelocationInfoSize = 8;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000095
96 enum HeaderFileType {
97 HFT_Object = 0x1
98 };
99
Daniel Dunbar6009db42009-08-26 21:22:22 +0000100 enum HeaderFlags {
101 HF_SubsectionsViaSymbols = 0x2000
102 };
103
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000104 enum LoadCommandType {
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000105 LCT_Segment = 0x1,
106 LCT_Symtab = 0x2,
107 LCT_Dysymtab = 0xb
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000108 };
109
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000110 // See <mach-o/nlist.h>.
111 enum SymbolTypeType {
112 STT_Undefined = 0x00,
113 STT_Absolute = 0x02,
114 STT_Section = 0x0e
115 };
116
117 enum SymbolTypeFlags {
118 // If any of these bits are set, then the entry is a stab entry number (see
119 // <mach-o/stab.h>. Otherwise the other masks apply.
120 STF_StabsEntryMask = 0xe0,
121
122 STF_TypeMask = 0x0e,
123 STF_External = 0x01,
124 STF_PrivateExtern = 0x10
125 };
126
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000127 /// IndirectSymbolFlags - Flags for encoding special values in the indirect
128 /// symbol entry.
129 enum IndirectSymbolFlags {
130 ISF_Local = 0x80000000,
131 ISF_Absolute = 0x40000000
132 };
133
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000134 /// RelocationFlags - Special flags for addresses.
135 enum RelocationFlags {
136 RF_Scattered = 0x80000000
137 };
138
139 enum RelocationInfoType {
140 RIT_Vanilla = 0,
141 RIT_Pair = 1,
142 RIT_Difference = 2,
143 RIT_PreboundLazyPointer = 3,
144 RIT_LocalDifference = 4
145 };
146
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000147 /// MachSymbolData - Helper struct for containing some precomputed information
148 /// on symbols.
149 struct MachSymbolData {
150 MCSymbolData *SymbolData;
151 uint64_t StringIndex;
152 uint8_t SectionIndex;
153
154 // Support lexicographic sorting.
155 bool operator<(const MachSymbolData &RHS) const {
156 const std::string &Name = SymbolData->getSymbol().getName();
157 return Name < RHS.SymbolData->getSymbol().getName();
158 }
159 };
160
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000161 raw_ostream &OS;
162 bool IsLSB;
163
164public:
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000165 MachObjectWriter(raw_ostream &_OS, bool _IsLSB = true)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000166 : OS(_OS), IsLSB(_IsLSB) {
167 }
168
169 /// @name Helper Methods
170 /// @{
171
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000172 void Write8(uint8_t Value) {
173 OS << char(Value);
174 }
175
176 void Write16(uint16_t Value) {
177 if (IsLSB) {
178 Write8(uint8_t(Value >> 0));
179 Write8(uint8_t(Value >> 8));
180 } else {
181 Write8(uint8_t(Value >> 8));
182 Write8(uint8_t(Value >> 0));
183 }
184 }
185
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000186 void Write32(uint32_t Value) {
187 if (IsLSB) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000188 Write16(uint16_t(Value >> 0));
189 Write16(uint16_t(Value >> 16));
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000190 } else {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000191 Write16(uint16_t(Value >> 16));
192 Write16(uint16_t(Value >> 0));
193 }
194 }
195
196 void Write64(uint64_t Value) {
197 if (IsLSB) {
198 Write32(uint32_t(Value >> 0));
199 Write32(uint32_t(Value >> 32));
200 } else {
201 Write32(uint32_t(Value >> 32));
202 Write32(uint32_t(Value >> 0));
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000203 }
204 }
205
206 void WriteZeros(unsigned N) {
207 const char Zeros[16] = { 0 };
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000208
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000209 for (unsigned i = 0, e = N / 16; i != e; ++i)
210 OS << StringRef(Zeros, 16);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000211
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000212 OS << StringRef(Zeros, N % 16);
213 }
214
Daniel Dunbar2928c832009-11-06 10:58:06 +0000215 void WriteString(StringRef Str, unsigned ZeroFillSize = 0) {
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000216 OS << Str;
217 if (ZeroFillSize)
218 WriteZeros(ZeroFillSize - Str.size());
219 }
220
221 /// @}
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000222
Daniel Dunbar6009db42009-08-26 21:22:22 +0000223 void WriteHeader32(unsigned NumLoadCommands, unsigned LoadCommandsSize,
224 bool SubsectionsViaSymbols) {
225 uint32_t Flags = 0;
226
227 if (SubsectionsViaSymbols)
228 Flags |= HF_SubsectionsViaSymbols;
229
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000230 // struct mach_header (28 bytes)
231
232 uint64_t Start = OS.tell();
233 (void) Start;
234
235 Write32(Header_Magic32);
236
237 // FIXME: Support cputype.
Chris Lattner45f8c092010-02-02 19:38:14 +0000238 Write32(MachO::CPUTypeI386);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000239 // FIXME: Support cpusubtype.
Chris Lattner45f8c092010-02-02 19:38:14 +0000240 Write32(MachO::CPUSubType_I386_ALL);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000241 Write32(HFT_Object);
Daniel Dunbar6009db42009-08-26 21:22:22 +0000242 Write32(NumLoadCommands); // Object files have a single load command, the
243 // segment.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000244 Write32(LoadCommandsSize);
Daniel Dunbar6009db42009-08-26 21:22:22 +0000245 Write32(Flags);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000246
247 assert(OS.tell() - Start == Header32Size);
248 }
249
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000250 /// WriteSegmentLoadCommand32 - Write a 32-bit segment load command.
251 ///
252 /// \arg NumSections - The number of sections in this segment.
253 /// \arg SectionDataSize - The total size of the sections.
254 void WriteSegmentLoadCommand32(unsigned NumSections,
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000255 uint64_t VMSize,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000256 uint64_t SectionDataStartOffset,
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000257 uint64_t SectionDataSize) {
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000258 // struct segment_command (56 bytes)
259
260 uint64_t Start = OS.tell();
261 (void) Start;
262
263 Write32(LCT_Segment);
264 Write32(SegmentLoadCommand32Size + NumSections * Section32Size);
265
266 WriteString("", 16);
267 Write32(0); // vmaddr
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000268 Write32(VMSize); // vmsize
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000269 Write32(SectionDataStartOffset); // file offset
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000270 Write32(SectionDataSize); // file size
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000271 Write32(0x7); // maxprot
272 Write32(0x7); // initprot
273 Write32(NumSections);
274 Write32(0); // flags
275
276 assert(OS.tell() - Start == SegmentLoadCommand32Size);
277 }
278
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000279 void WriteSection32(const MCSectionData &SD, uint64_t FileOffset,
280 uint64_t RelocationsStart, unsigned NumRelocations) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000281 // The offset is unused for virtual sections.
282 if (isVirtualSection(SD.getSection())) {
283 assert(SD.getFileSize() == 0 && "Invalid file size!");
284 FileOffset = 0;
285 }
286
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000287 // struct section (68 bytes)
288
289 uint64_t Start = OS.tell();
290 (void) Start;
291
292 // FIXME: cast<> support!
293 const MCSectionMachO &Section =
294 static_cast<const MCSectionMachO&>(SD.getSection());
295 WriteString(Section.getSectionName(), 16);
296 WriteString(Section.getSegmentName(), 16);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000297 Write32(SD.getAddress()); // address
Daniel Dunbar6742e342009-08-26 04:13:32 +0000298 Write32(SD.getSize()); // size
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000299 Write32(FileOffset);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000300
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000301 unsigned Flags = Section.getTypeAndAttributes();
302 if (SD.hasInstructions())
303 Flags |= MCSectionMachO::S_ATTR_SOME_INSTRUCTIONS;
304
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000305 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
306 Write32(Log2_32(SD.getAlignment()));
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000307 Write32(NumRelocations ? RelocationsStart : 0);
308 Write32(NumRelocations);
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000309 Write32(Flags);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000310 Write32(0); // reserved1
311 Write32(Section.getStubSize()); // reserved2
312
313 assert(OS.tell() - Start == Section32Size);
314 }
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000315
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000316 void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
317 uint32_t StringTableOffset,
318 uint32_t StringTableSize) {
319 // struct symtab_command (24 bytes)
320
321 uint64_t Start = OS.tell();
322 (void) Start;
323
324 Write32(LCT_Symtab);
325 Write32(SymtabLoadCommandSize);
326 Write32(SymbolOffset);
327 Write32(NumSymbols);
328 Write32(StringTableOffset);
329 Write32(StringTableSize);
330
331 assert(OS.tell() - Start == SymtabLoadCommandSize);
332 }
333
334 void WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
335 uint32_t NumLocalSymbols,
336 uint32_t FirstExternalSymbol,
337 uint32_t NumExternalSymbols,
338 uint32_t FirstUndefinedSymbol,
339 uint32_t NumUndefinedSymbols,
340 uint32_t IndirectSymbolOffset,
341 uint32_t NumIndirectSymbols) {
342 // struct dysymtab_command (80 bytes)
343
344 uint64_t Start = OS.tell();
345 (void) Start;
346
347 Write32(LCT_Dysymtab);
348 Write32(DysymtabLoadCommandSize);
349 Write32(FirstLocalSymbol);
350 Write32(NumLocalSymbols);
351 Write32(FirstExternalSymbol);
352 Write32(NumExternalSymbols);
353 Write32(FirstUndefinedSymbol);
354 Write32(NumUndefinedSymbols);
355 Write32(0); // tocoff
356 Write32(0); // ntoc
357 Write32(0); // modtaboff
358 Write32(0); // nmodtab
359 Write32(0); // extrefsymoff
360 Write32(0); // nextrefsyms
361 Write32(IndirectSymbolOffset);
362 Write32(NumIndirectSymbols);
363 Write32(0); // extreloff
364 Write32(0); // nextrel
365 Write32(0); // locreloff
366 Write32(0); // nlocrel
367
368 assert(OS.tell() - Start == DysymtabLoadCommandSize);
369 }
370
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000371 void WriteNlist32(MachSymbolData &MSD) {
Daniel Dunbar5e835962009-08-26 02:48:04 +0000372 MCSymbolData &Data = *MSD.SymbolData;
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000373 const MCSymbol &Symbol = Data.getSymbol();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000374 uint8_t Type = 0;
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000375 uint16_t Flags = Data.getFlags();
376 uint32_t Address = 0;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000377
378 // Set the N_TYPE bits. See <mach-o/nlist.h>.
379 //
380 // FIXME: Are the prebound or indirect fields possible here?
381 if (Symbol.isUndefined())
382 Type = STT_Undefined;
383 else if (Symbol.isAbsolute())
384 Type = STT_Absolute;
385 else
386 Type = STT_Section;
387
388 // FIXME: Set STAB bits.
389
Daniel Dunbar5e835962009-08-26 02:48:04 +0000390 if (Data.isPrivateExtern())
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000391 Type |= STF_PrivateExtern;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000392
393 // Set external bit.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000394 if (Data.isExternal() || Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000395 Type |= STF_External;
396
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000397 // Compute the symbol address.
398 if (Symbol.isDefined()) {
399 if (Symbol.isAbsolute()) {
400 llvm_unreachable("FIXME: Not yet implemented!");
401 } else {
402 Address = Data.getFragment()->getAddress() + Data.getOffset();
403 }
404 } else if (Data.isCommon()) {
405 // Common symbols are encoded with the size in the address
406 // field, and their alignment in the flags.
407 Address = Data.getCommonSize();
408
409 // Common alignment is packed into the 'desc' bits.
410 if (unsigned Align = Data.getCommonAlignment()) {
411 unsigned Log2Size = Log2_32(Align);
412 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
413 if (Log2Size > 15)
414 llvm_report_error("invalid 'common' alignment '" +
415 Twine(Align) + "'");
416 // FIXME: Keep this mask with the SymbolFlags enumeration.
417 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
418 }
419 }
420
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000421 // struct nlist (12 bytes)
422
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000423 Write32(MSD.StringIndex);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000424 Write8(Type);
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000425 Write8(MSD.SectionIndex);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000426
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000427 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
428 // value.
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000429 Write16(Flags);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000430 Write32(Address);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000431 }
432
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000433 struct MachRelocationEntry {
434 uint32_t Word0;
435 uint32_t Word1;
436 };
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000437 void ComputeScatteredRelocationInfo(MCAssembler &Asm, MCFragment &Fragment,
Daniel Dunbar27ade182010-02-11 21:29:29 +0000438 MCAsmFixup &Fixup,
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000439 const MCValue &Target,
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000440 std::vector<MachRelocationEntry> &Relocs) {
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000441 uint32_t Address = Fragment.getOffset() + Fixup.Offset;
Daniel Dunbare180fa92010-03-09 21:27:30 +0000442 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
Daniel Dunbareb3804e2010-02-17 23:45:16 +0000443 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000444 unsigned Type = RIT_Vanilla;
445
446 // See <reloc.h>.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000447 const MCSymbol *A = Target.getSymA();
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000448 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
Daniel Dunbar0ce6bd52010-03-08 21:10:39 +0000449
Daniel Dunbara015c1c2010-03-10 00:58:25 +0000450 if (!A_SD->getFragment())
Daniel Dunbar0ce6bd52010-03-08 21:10:39 +0000451 llvm_report_error("symbol '" + A->getName() +
452 "' can not be undefined in a subtraction expression");
453
Daniel Dunbara015c1c2010-03-10 00:58:25 +0000454 uint32_t Value = A_SD->getFragment()->getAddress() + A_SD->getOffset();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000455 uint32_t Value2 = 0;
456
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000457 if (const MCSymbol *B = Target.getSymB()) {
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000458 MCSymbolData *B_SD = &Asm.getSymbolData(*B);
Daniel Dunbar0ce6bd52010-03-08 21:10:39 +0000459
Daniel Dunbara015c1c2010-03-10 00:58:25 +0000460 if (!B_SD->getFragment())
Daniel Dunbar0ce6bd52010-03-08 21:10:39 +0000461 llvm_report_error("symbol '" + B->getName() +
462 "' can not be undefined in a subtraction expression");
463
Daniel Dunbar07a96412010-03-10 02:10:29 +0000464 // Select the appropriate difference relocation type.
465 //
466 // Note that there is no longer any semantic difference between these two
467 // relocation types from the linkers point of view, this is done solely
468 // for pedantic compatibility with 'as'.
Daniel Dunbara015c1c2010-03-10 00:58:25 +0000469 Type = A_SD->isExternal() ? RIT_Difference : RIT_LocalDifference;
470 Value2 = B_SD->getFragment()->getAddress() + B_SD->getOffset();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000471 }
472
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000473 // The value which goes in the fixup is current value of the expression.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000474 Fixup.FixedValue = Value - Value2 + Target.getConstant();
Daniel Dunbare180fa92010-03-09 21:27:30 +0000475 if (IsPCRel)
Daniel Dunbareb3804e2010-02-17 23:45:16 +0000476 Fixup.FixedValue -= Address;
Daniel Dunbare180fa92010-03-09 21:27:30 +0000477
478 // If this fixup is a vanilla PC relative relocation for a local label, we
479 // don't need a relocation.
480 //
481 // FIXME: Implement proper atom support.
482 if (IsPCRel && Target.getSymA() && Target.getSymA()->isTemporary() &&
483 !Target.getSymB())
484 return;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000485
486 MachRelocationEntry MRE;
487 MRE.Word0 = ((Address << 0) |
488 (Type << 24) |
489 (Log2Size << 28) |
490 (IsPCRel << 30) |
491 RF_Scattered);
492 MRE.Word1 = Value;
493 Relocs.push_back(MRE);
494
Daniel Dunbara015c1c2010-03-10 00:58:25 +0000495 if (Type == RIT_Difference || Type == RIT_LocalDifference) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000496 MachRelocationEntry MRE;
497 MRE.Word0 = ((0 << 0) |
Daniel Dunbaraef9d7a2010-03-09 21:27:47 +0000498 (RIT_Pair << 24) |
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000499 (Log2Size << 28) |
Daniel Dunbaraef9d7a2010-03-09 21:27:47 +0000500 (IsPCRel << 30) |
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000501 RF_Scattered);
502 MRE.Word1 = Value2;
503 Relocs.push_back(MRE);
504 }
505 }
506
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000507 void ComputeRelocationInfo(MCAssembler &Asm, MCDataFragment &Fragment,
Daniel Dunbar27ade182010-02-11 21:29:29 +0000508 MCAsmFixup &Fixup,
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000509 std::vector<MachRelocationEntry> &Relocs) {
Daniel Dunbarf3a066f2010-03-09 21:27:58 +0000510 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
511 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
512
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000513 MCValue Target;
514 if (!Fixup.Value->EvaluateAsRelocatable(Target))
515 llvm_report_error("expected relocatable expression");
516
Daniel Dunbarf3a066f2010-03-09 21:27:58 +0000517 // If this is a difference or a defined symbol plus an offset, then we need
518 // a scattered relocation entry.
519 uint32_t Offset = Target.getConstant();
520 if (IsPCRel)
521 Offset += 1 << Log2Size;
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000522 if (Target.getSymB() ||
523 (Target.getSymA() && !Target.getSymA()->isUndefined() &&
Daniel Dunbarf3a066f2010-03-09 21:27:58 +0000524 Offset))
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000525 return ComputeScatteredRelocationInfo(Asm, Fragment, Fixup, Target,
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000526 Relocs);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000527
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000528 // See <reloc.h>.
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000529 uint32_t Address = Fragment.getOffset() + Fixup.Offset;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000530 uint32_t Value = 0;
531 unsigned Index = 0;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000532 unsigned IsExtern = 0;
533 unsigned Type = 0;
534
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000535 if (Target.isAbsolute()) { // constant
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000536 // SymbolNum of 0 indicates the absolute section.
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000537 //
538 // FIXME: When is this generated?
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000539 Type = RIT_Vanilla;
540 Value = 0;
541 llvm_unreachable("FIXME: Not yet implemented!");
542 } else {
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000543 const MCSymbol *Symbol = Target.getSymA();
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000544 MCSymbolData *SD = &Asm.getSymbolData(*Symbol);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000545
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000546 if (Symbol->isUndefined()) {
547 IsExtern = 1;
548 Index = SD->getIndex();
549 Value = 0;
550 } else {
551 // The index is the section ordinal.
552 //
553 // FIXME: O(N)
554 Index = 1;
Daniel Dunbar591047f2010-02-13 09:45:59 +0000555 MCAssembler::iterator it = Asm.begin(), ie = Asm.end();
556 for (; it != ie; ++it, ++Index)
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000557 if (&*it == SD->getFragment()->getParent())
558 break;
Daniel Dunbar591047f2010-02-13 09:45:59 +0000559 assert(it != ie && "Unable to find section index!");
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000560 Value = SD->getFragment()->getAddress() + SD->getOffset();
561 }
562
563 Type = RIT_Vanilla;
564 }
565
566 // The value which goes in the fixup is current value of the expression.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000567 Fixup.FixedValue = Value + Target.getConstant();
Daniel Dunbare180fa92010-03-09 21:27:30 +0000568 if (IsPCRel)
Daniel Dunbareb3804e2010-02-17 23:45:16 +0000569 Fixup.FixedValue -= Address;
Daniel Dunbare180fa92010-03-09 21:27:30 +0000570
571 // If this fixup is a vanilla PC relative relocation for a local label, we
572 // don't need a relocation.
573 //
574 // FIXME: Implement proper atom support.
575 if (IsPCRel && Target.getSymA() && Target.getSymA()->isTemporary())
576 return;
Daniel Dunbar591047f2010-02-13 09:45:59 +0000577
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000578 // struct relocation_info (8 bytes)
579 MachRelocationEntry MRE;
580 MRE.Word0 = Address;
581 MRE.Word1 = ((Index << 0) |
582 (IsPCRel << 24) |
583 (Log2Size << 25) |
584 (IsExtern << 27) |
585 (Type << 28));
586 Relocs.push_back(MRE);
587 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000588
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000589 void BindIndirectSymbols(MCAssembler &Asm) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000590 // This is the point where 'as' creates actual symbols for indirect symbols
591 // (in the following two passes). It would be easier for us to do this
592 // sooner when we see the attribute, but that makes getting the order in the
593 // symbol table much more complicated than it is worth.
594 //
595 // FIXME: Revisit this when the dust settles.
596
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000597 // Bind non lazy symbol pointers first.
598 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
599 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
600 // FIXME: cast<> support!
601 const MCSectionMachO &Section =
602 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
603
604 unsigned Type =
605 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
606 if (Type != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
607 continue;
608
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000609 Asm.getOrCreateSymbolData(*it->Symbol);
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000610 }
611
612 // Then lazy symbol pointers and symbol stubs.
613 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
614 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
615 // FIXME: cast<> support!
616 const MCSectionMachO &Section =
617 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
618
619 unsigned Type =
620 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
621 if (Type != MCSectionMachO::S_LAZY_SYMBOL_POINTERS &&
622 Type != MCSectionMachO::S_SYMBOL_STUBS)
623 continue;
624
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000625 // Set the symbol type to undefined lazy, but only on construction.
626 //
627 // FIXME: Do not hardcode.
628 bool Created;
629 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
630 if (Created)
631 Entry.setFlags(Entry.getFlags() | 0x0001);
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000632 }
633 }
634
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000635 /// ComputeSymbolTable - Compute the symbol table data
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000636 ///
637 /// \param StringTable [out] - The string table data.
638 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
639 /// string table.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000640 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
641 std::vector<MachSymbolData> &LocalSymbolData,
642 std::vector<MachSymbolData> &ExternalSymbolData,
643 std::vector<MachSymbolData> &UndefinedSymbolData) {
644 // Build section lookup table.
645 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
646 unsigned Index = 1;
647 for (MCAssembler::iterator it = Asm.begin(),
648 ie = Asm.end(); it != ie; ++it, ++Index)
649 SectionIndexMap[&it->getSection()] = Index;
650 assert(Index <= 256 && "Too many sections!");
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000651
652 // Index 0 is always the empty string.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000653 StringMap<uint64_t> StringIndexMap;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000654 StringTable += '\x00';
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000655
656 // Build the symbol arrays and the string table, but only for non-local
657 // symbols.
658 //
659 // The particular order that we collect the symbols and create the string
660 // table, then sort the symbols is chosen to match 'as'. Even though it
661 // doesn't matter for correctness, this is important for letting us diff .o
662 // files.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000663 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
664 ie = Asm.symbol_end(); it != ie; ++it) {
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000665 const MCSymbol &Symbol = it->getSymbol();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000666
Daniel Dunbar959fd882009-08-26 22:13:22 +0000667 // Ignore assembler temporaries.
668 if (it->getSymbol().isTemporary())
669 continue;
670
Daniel Dunbar50e48b32009-08-24 08:39:57 +0000671 if (!it->isExternal() && !Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000672 continue;
673
674 uint64_t &Entry = StringIndexMap[Symbol.getName()];
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000675 if (!Entry) {
676 Entry = StringTable.size();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000677 StringTable += Symbol.getName();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000678 StringTable += '\x00';
679 }
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000680
681 MachSymbolData MSD;
682 MSD.SymbolData = it;
683 MSD.StringIndex = Entry;
684
685 if (Symbol.isUndefined()) {
686 MSD.SectionIndex = 0;
687 UndefinedSymbolData.push_back(MSD);
688 } else if (Symbol.isAbsolute()) {
689 MSD.SectionIndex = 0;
690 ExternalSymbolData.push_back(MSD);
691 } else {
692 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
693 assert(MSD.SectionIndex && "Invalid section index!");
694 ExternalSymbolData.push_back(MSD);
695 }
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000696 }
697
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000698 // Now add the data for local symbols.
699 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
700 ie = Asm.symbol_end(); it != ie; ++it) {
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000701 const MCSymbol &Symbol = it->getSymbol();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000702
Daniel Dunbar959fd882009-08-26 22:13:22 +0000703 // Ignore assembler temporaries.
704 if (it->getSymbol().isTemporary())
705 continue;
706
Daniel Dunbar50e48b32009-08-24 08:39:57 +0000707 if (it->isExternal() || Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000708 continue;
709
710 uint64_t &Entry = StringIndexMap[Symbol.getName()];
711 if (!Entry) {
712 Entry = StringTable.size();
713 StringTable += Symbol.getName();
714 StringTable += '\x00';
715 }
716
717 MachSymbolData MSD;
718 MSD.SymbolData = it;
719 MSD.StringIndex = Entry;
720
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000721 if (Symbol.isAbsolute()) {
722 MSD.SectionIndex = 0;
723 LocalSymbolData.push_back(MSD);
724 } else {
725 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
726 assert(MSD.SectionIndex && "Invalid section index!");
727 LocalSymbolData.push_back(MSD);
728 }
729 }
730
731 // External and undefined symbols are required to be in lexicographic order.
732 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
733 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
734
Daniel Dunbarbe963552009-08-26 13:57:54 +0000735 // Set the symbol indices.
736 Index = 0;
737 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
738 LocalSymbolData[i].SymbolData->setIndex(Index++);
739 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
740 ExternalSymbolData[i].SymbolData->setIndex(Index++);
741 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
742 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
743
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000744 // The string table is padded to a multiple of 4.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000745 while (StringTable.size() % 4)
746 StringTable += '\x00';
747 }
748
749 void WriteObject(MCAssembler &Asm) {
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000750 unsigned NumSections = Asm.size();
751
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000752 // Create symbol data for any indirect symbols.
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000753 BindIndirectSymbols(Asm);
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000754
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000755 // Compute symbol table information.
756 SmallString<256> StringTable;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000757 std::vector<MachSymbolData> LocalSymbolData;
758 std::vector<MachSymbolData> ExternalSymbolData;
759 std::vector<MachSymbolData> UndefinedSymbolData;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000760 unsigned NumSymbols = Asm.symbol_size();
761
762 // No symbol table command is written if there are no symbols.
763 if (NumSymbols)
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000764 ComputeSymbolTable(Asm, StringTable, LocalSymbolData, ExternalSymbolData,
765 UndefinedSymbolData);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000766
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000767 // The section data starts after the header, the segment load command (and
768 // section headers) and the symbol table.
769 unsigned NumLoadCommands = 1;
770 uint64_t LoadCommandsSize =
771 SegmentLoadCommand32Size + NumSections * Section32Size;
772
773 // Add the symbol table load command sizes, if used.
774 if (NumSymbols) {
775 NumLoadCommands += 2;
776 LoadCommandsSize += SymtabLoadCommandSize + DysymtabLoadCommandSize;
777 }
778
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000779 // Compute the total size of the section data, as well as its file size and
780 // vm size.
Daniel Dunbar6742e342009-08-26 04:13:32 +0000781 uint64_t SectionDataStart = Header32Size + LoadCommandsSize;
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000782 uint64_t SectionDataSize = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000783 uint64_t SectionDataFileSize = 0;
784 uint64_t VMSize = 0;
785 for (MCAssembler::iterator it = Asm.begin(),
786 ie = Asm.end(); it != ie; ++it) {
787 MCSectionData &SD = *it;
788
789 VMSize = std::max(VMSize, SD.getAddress() + SD.getSize());
790
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000791 if (isVirtualSection(SD.getSection()))
792 continue;
793
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000794 SectionDataSize = std::max(SectionDataSize,
795 SD.getAddress() + SD.getSize());
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000796 SectionDataFileSize = std::max(SectionDataFileSize,
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000797 SD.getAddress() + SD.getFileSize());
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000798 }
799
Daniel Dunbar6b716532010-02-09 23:00:14 +0000800 // The section data is padded to 4 bytes.
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000801 //
802 // FIXME: Is this machine dependent?
803 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
804 SectionDataFileSize += SectionDataPadding;
805
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000806 // Write the prolog, starting with the header and load command...
Daniel Dunbar6009db42009-08-26 21:22:22 +0000807 WriteHeader32(NumLoadCommands, LoadCommandsSize,
808 Asm.getSubsectionsViaSymbols());
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000809 WriteSegmentLoadCommand32(NumSections, VMSize,
810 SectionDataStart, SectionDataSize);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000811
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000812 // ... and then the section headers.
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000813 //
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000814 // We also compute the section relocations while we do this. Note that
Daniel Dunbar6b716532010-02-09 23:00:14 +0000815 // computing relocation info will also update the fixup to have the correct
816 // value; this will overwrite the appropriate data in the fragment when it
817 // is written.
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000818 std::vector<MachRelocationEntry> RelocInfos;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000819 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000820 for (MCAssembler::iterator it = Asm.begin(),
821 ie = Asm.end(); it != ie; ++it) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000822 MCSectionData &SD = *it;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000823
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000824 // The assembler writes relocations in the reverse order they were seen.
825 //
826 // FIXME: It is probably more complicated than this.
827 unsigned NumRelocsStart = RelocInfos.size();
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000828 for (MCSectionData::reverse_iterator it2 = SD.rbegin(),
829 ie2 = SD.rend(); it2 != ie2; ++it2)
Daniel Dunbar0bcf0742010-02-13 09:28:43 +0000830 if (MCDataFragment *DF = dyn_cast<MCDataFragment>(&*it2))
831 for (unsigned i = 0, e = DF->fixup_size(); i != e; ++i)
832 ComputeRelocationInfo(Asm, *DF, DF->getFixups()[e - i - 1],
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000833 RelocInfos);
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000834
835 unsigned NumRelocs = RelocInfos.size() - NumRelocsStart;
836 uint64_t SectionStart = SectionDataStart + SD.getAddress();
837 WriteSection32(SD, SectionStart, RelocTableEnd, NumRelocs);
838 RelocTableEnd += NumRelocs * RelocationInfoSize;
839 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000840
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000841 // Write the symbol table load command, if used.
842 if (NumSymbols) {
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000843 unsigned FirstLocalSymbol = 0;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000844 unsigned NumLocalSymbols = LocalSymbolData.size();
845 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
846 unsigned NumExternalSymbols = ExternalSymbolData.size();
847 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
848 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000849 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
850 unsigned NumSymTabSymbols =
851 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
852 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
853 uint64_t IndirectSymbolOffset = 0;
854
855 // If used, the indirect symbols are written after the section data.
856 if (NumIndirectSymbols)
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000857 IndirectSymbolOffset = RelocTableEnd;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000858
859 // The symbol table is written after the indirect symbol data.
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000860 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000861
862 // The string table is written after symbol table.
863 uint64_t StringTableOffset =
864 SymbolTableOffset + NumSymTabSymbols * Nlist32Size;
865 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
866 StringTableOffset, StringTable.size());
867
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000868 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
869 FirstExternalSymbol, NumExternalSymbols,
870 FirstUndefinedSymbol, NumUndefinedSymbols,
871 IndirectSymbolOffset, NumIndirectSymbols);
872 }
873
874 // Write the actual section data.
875 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
876 WriteFileData(OS, *it, *this);
877
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000878 // Write the extra padding.
879 WriteZeros(SectionDataPadding);
880
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000881 // Write the relocation entries.
882 for (unsigned i = 0, e = RelocInfos.size(); i != e; ++i) {
883 Write32(RelocInfos[i].Word0);
884 Write32(RelocInfos[i].Word1);
885 }
886
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000887 // Write the symbol table data, if used.
888 if (NumSymbols) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000889 // Write the indirect symbol entries.
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000890 for (MCAssembler::indirect_symbol_iterator
891 it = Asm.indirect_symbol_begin(),
892 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
893 // Indirect symbols in the non lazy symbol pointer section have some
894 // special handling.
895 const MCSectionMachO &Section =
896 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
897 unsigned Type =
898 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
899 if (Type == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
900 // If this symbol is defined and internal, mark it as such.
901 if (it->Symbol->isDefined() &&
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000902 !Asm.getSymbolData(*it->Symbol).isExternal()) {
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000903 uint32_t Flags = ISF_Local;
904 if (it->Symbol->isAbsolute())
905 Flags |= ISF_Absolute;
906 Write32(Flags);
907 continue;
908 }
909 }
910
Daniel Dunbar2101d9c2010-03-10 20:58:31 +0000911 Write32(Asm.getSymbolData(*it->Symbol).getIndex());
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000912 }
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000913
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000914 // FIXME: Check that offsets match computed ones.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000915
916 // Write the symbol table entries.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000917 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
918 WriteNlist32(LocalSymbolData[i]);
919 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
920 WriteNlist32(ExternalSymbolData[i]);
921 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
922 WriteNlist32(UndefinedSymbolData[i]);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000923
924 // Write the string table.
925 OS << StringTable.str();
926 }
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000927 }
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000928
929 void ApplyFixup(const MCAsmFixup &Fixup, MCDataFragment &DF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000930 unsigned Size = 1 << getFixupKindLog2Size(Fixup.Kind);
931
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000932 // FIXME: Endianness assumption.
Daniel Dunbar2be2fd02010-02-13 09:28:54 +0000933 assert(Fixup.Offset + Size <= DF.getContents().size() &&
934 "Invalid fixup offset!");
935 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar3a30b822010-02-13 09:28:15 +0000936 DF.getContents()[Fixup.Offset + i] = uint8_t(Fixup.FixedValue >> (i * 8));
937 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000938};
939
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000940/* *** */
941
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000942MCFragment::MCFragment() : Kind(FragmentType(~0)) {
943}
944
Daniel Dunbar5e835962009-08-26 02:48:04 +0000945MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000946 : Kind(_Kind),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000947 Parent(_Parent),
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000948 FileSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000949{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000950 if (Parent)
951 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000952}
953
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000954MCFragment::~MCFragment() {
955}
956
Daniel Dunbar5e835962009-08-26 02:48:04 +0000957uint64_t MCFragment::getAddress() const {
958 assert(getParent() && "Missing Section!");
959 return getParent()->getAddress() + Offset;
960}
961
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000962/* *** */
963
Daniel Dunbar81e40002009-08-27 00:38:04 +0000964MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000965
966MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000967 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000968 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000969 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000970 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000971 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000972 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000973{
974 if (A)
975 A->getSectionList().push_back(this);
976}
977
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000978/* *** */
979
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000980MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000981
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000982MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000983 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000984 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000985 IsExternal(false), IsPrivateExtern(false),
986 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000987{
988 if (A)
989 A->getSymbolList().push_back(this);
990}
991
992/* *** */
993
Daniel Dunbara03a3682009-08-31 08:07:55 +0000994MCAssembler::MCAssembler(MCContext &_Context, raw_ostream &_OS)
995 : Context(_Context), OS(_OS), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000996{
997}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000998
999MCAssembler::~MCAssembler() {
1000}
1001
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001002void MCAssembler::LayoutSection(MCSectionData &SD) {
Daniel Dunbar6742e342009-08-26 04:13:32 +00001003 uint64_t Address = SD.getAddress();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001004
1005 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
1006 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001007
Daniel Dunbar6742e342009-08-26 04:13:32 +00001008 F.setOffset(Address - SD.getAddress());
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001009
1010 // Evaluate fragment size.
1011 switch (F.getKind()) {
1012 case MCFragment::FT_Align: {
1013 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001014
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001015 uint64_t Size = OffsetToAlignment(Address, AF.getAlignment());
Daniel Dunbar6742e342009-08-26 04:13:32 +00001016 if (Size > AF.getMaxBytesToEmit())
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001017 AF.setFileSize(0);
1018 else
Daniel Dunbar6742e342009-08-26 04:13:32 +00001019 AF.setFileSize(Size);
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001020 break;
1021 }
1022
1023 case MCFragment::FT_Data:
Daniel Dunbara4766d72010-02-13 09:28:32 +00001024 case MCFragment::FT_Fill:
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001025 F.setFileSize(F.getMaxFileSize());
1026 break;
1027
1028 case MCFragment::FT_Org: {
1029 MCOrgFragment &OF = cast<MCOrgFragment>(F);
1030
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001031 MCValue Target;
1032 if (!OF.getOffset().EvaluateAsRelocatable(Target))
1033 llvm_report_error("expected relocatable expression");
1034
1035 if (!Target.isAbsolute())
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001036 llvm_unreachable("FIXME: Not yet implemented!");
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001037 uint64_t OrgOffset = Target.getConstant();
Daniel Dunbar6742e342009-08-26 04:13:32 +00001038 uint64_t Offset = Address - SD.getAddress();
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001039
1040 // FIXME: We need a way to communicate this error.
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001041 if (OrgOffset < Offset)
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001042 llvm_report_error("invalid .org offset '" + Twine(OrgOffset) +
Daniel Dunbar6742e342009-08-26 04:13:32 +00001043 "' (at offset '" + Twine(Offset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001044
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001045 F.setFileSize(OrgOffset - Offset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001046 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001047 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001048
1049 case MCFragment::FT_ZeroFill: {
1050 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
1051
1052 // Align the fragment offset; it is safe to adjust the offset freely since
1053 // this is only in virtual sections.
Daniel Dunbar37fad5c2010-03-08 21:10:42 +00001054 Address = RoundUpToAlignment(Address, ZFF.getAlignment());
1055 F.setOffset(Address - SD.getAddress());
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001056
1057 // FIXME: This is misnamed.
1058 F.setFileSize(ZFF.getSize());
1059 break;
1060 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001061 }
1062
Daniel Dunbar6742e342009-08-26 04:13:32 +00001063 Address += F.getFileSize();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001064 }
1065
Daniel Dunbar6742e342009-08-26 04:13:32 +00001066 // Set the section sizes.
1067 SD.setSize(Address - SD.getAddress());
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001068 if (isVirtualSection(SD.getSection()))
1069 SD.setFileSize(0);
1070 else
1071 SD.setFileSize(Address - SD.getAddress());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001072}
1073
Kevin Enderby6e720482010-02-23 18:26:34 +00001074/// WriteNopData - Write optimal nops to the output file for the \arg Count
1075/// bytes. This returns the number of bytes written. It may return 0 if
1076/// the \arg Count is more than the maximum optimal nops.
1077///
1078/// FIXME this is X86 32-bit specific and should move to a better place.
1079static uint64_t WriteNopData(uint64_t Count, MachObjectWriter &MOW) {
Kevin Enderby76687082010-02-23 21:41:24 +00001080 static const uint8_t Nops[16][16] = {
1081 // nop
1082 {0x90},
1083 // xchg %ax,%ax
1084 {0x66, 0x90},
1085 // nopl (%[re]ax)
1086 {0x0f, 0x1f, 0x00},
1087 // nopl 0(%[re]ax)
1088 {0x0f, 0x1f, 0x40, 0x00},
1089 // nopl 0(%[re]ax,%[re]ax,1)
1090 {0x0f, 0x1f, 0x44, 0x00, 0x00},
1091 // nopw 0(%[re]ax,%[re]ax,1)
1092 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
1093 // nopl 0L(%[re]ax)
1094 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
1095 // nopl 0L(%[re]ax,%[re]ax,1)
1096 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
1097 // nopw 0L(%[re]ax,%[re]ax,1)
1098 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
1099 // nopw %cs:0L(%[re]ax,%[re]ax,1)
1100 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
1101 // nopl 0(%[re]ax,%[re]ax,1)
1102 // nopw 0(%[re]ax,%[re]ax,1)
1103 {0x0f, 0x1f, 0x44, 0x00, 0x00,
1104 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
1105 // nopw 0(%[re]ax,%[re]ax,1)
1106 // nopw 0(%[re]ax,%[re]ax,1)
1107 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
1108 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
1109 // nopw 0(%[re]ax,%[re]ax,1)
1110 // nopl 0L(%[re]ax) */
1111 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
1112 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
1113 // nopl 0L(%[re]ax)
1114 // nopl 0L(%[re]ax)
1115 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
1116 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
1117 // nopl 0L(%[re]ax)
1118 // nopl 0L(%[re]ax,%[re]ax,1)
1119 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
1120 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
1121 };
1122
1123 if (Count > 15)
1124 return 0;
1125
Kevin Enderby6e720482010-02-23 18:26:34 +00001126 for (uint64_t i = 0; i < Count; i++)
Kevin Enderby76687082010-02-23 21:41:24 +00001127 MOW.Write8 (uint8_t(Nops[Count - 1][i]));
Kevin Enderby6e720482010-02-23 18:26:34 +00001128
1129 return Count;
1130}
1131
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001132/// WriteFileData - Write the \arg F data to the output file.
1133static void WriteFileData(raw_ostream &OS, const MCFragment &F,
1134 MachObjectWriter &MOW) {
1135 uint64_t Start = OS.tell();
1136 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001137
Daniel Dunbar0adcd352009-08-25 21:10:45 +00001138 ++EmittedFragments;
1139
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001140 // FIXME: Embed in fragments instead?
1141 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001142 case MCFragment::FT_Align: {
1143 MCAlignFragment &AF = cast<MCAlignFragment>(F);
1144 uint64_t Count = AF.getFileSize() / AF.getValueSize();
1145
1146 // FIXME: This error shouldn't actually occur (the front end should emit
1147 // multiple .align directives to enforce the semantics it wants), but is
1148 // severe enough that we want to report it. How to handle this?
1149 if (Count * AF.getValueSize() != AF.getFileSize())
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001150 llvm_report_error("undefined .align directive, value size '" +
1151 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001152 "' is not a divisor of padding size '" +
1153 Twine(AF.getFileSize()) + "'");
1154
Kevin Enderby6e720482010-02-23 18:26:34 +00001155 // See if we are aligning with nops, and if so do that first to try to fill
1156 // the Count bytes. Then if that did not fill any bytes or there are any
1157 // bytes left to fill use the the Value and ValueSize to fill the rest.
1158 if (AF.getEmitNops()) {
1159 uint64_t NopByteCount = WriteNopData(Count, MOW);
1160 Count -= NopByteCount;
1161 }
1162
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001163 for (uint64_t i = 0; i != Count; ++i) {
1164 switch (AF.getValueSize()) {
1165 default:
1166 assert(0 && "Invalid size!");
1167 case 1: MOW.Write8 (uint8_t (AF.getValue())); break;
1168 case 2: MOW.Write16(uint16_t(AF.getValue())); break;
1169 case 4: MOW.Write32(uint32_t(AF.getValue())); break;
1170 case 8: MOW.Write64(uint64_t(AF.getValue())); break;
1171 }
1172 }
1173 break;
1174 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001175
Daniel Dunbar3a30b822010-02-13 09:28:15 +00001176 case MCFragment::FT_Data: {
1177 MCDataFragment &DF = cast<MCDataFragment>(F);
1178
1179 // Apply the fixups.
1180 //
1181 // FIXME: Move elsewhere.
1182 for (MCDataFragment::const_fixup_iterator it = DF.fixup_begin(),
1183 ie = DF.fixup_end(); it != ie; ++it)
1184 MOW.ApplyFixup(*it, DF);
1185
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001186 OS << cast<MCDataFragment>(F).getContents().str();
1187 break;
Daniel Dunbar3a30b822010-02-13 09:28:15 +00001188 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001189
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001190 case MCFragment::FT_Fill: {
1191 MCFillFragment &FF = cast<MCFillFragment>(F);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001192 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
1193 switch (FF.getValueSize()) {
1194 default:
1195 assert(0 && "Invalid size!");
Daniel Dunbara4766d72010-02-13 09:28:32 +00001196 case 1: MOW.Write8 (uint8_t (FF.getValue())); break;
1197 case 2: MOW.Write16(uint16_t(FF.getValue())); break;
1198 case 4: MOW.Write32(uint32_t(FF.getValue())); break;
1199 case 8: MOW.Write64(uint64_t(FF.getValue())); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001200 }
1201 }
1202 break;
1203 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001204
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001205 case MCFragment::FT_Org: {
1206 MCOrgFragment &OF = cast<MCOrgFragment>(F);
1207
1208 for (uint64_t i = 0, e = OF.getFileSize(); i != e; ++i)
1209 MOW.Write8(uint8_t(OF.getValue()));
1210
1211 break;
1212 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001213
1214 case MCFragment::FT_ZeroFill: {
1215 assert(0 && "Invalid zero fill fragment in concrete section!");
1216 break;
1217 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001218 }
1219
1220 assert(OS.tell() - Start == F.getFileSize());
1221}
1222
1223/// WriteFileData - Write the \arg SD data to the output file.
1224static void WriteFileData(raw_ostream &OS, const MCSectionData &SD,
1225 MachObjectWriter &MOW) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001226 // Ignore virtual sections.
1227 if (isVirtualSection(SD.getSection())) {
1228 assert(SD.getFileSize() == 0);
1229 return;
1230 }
1231
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001232 uint64_t Start = OS.tell();
1233 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001234
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001235 for (MCSectionData::const_iterator it = SD.begin(),
1236 ie = SD.end(); it != ie; ++it)
1237 WriteFileData(OS, *it, MOW);
1238
Daniel Dunbar6742e342009-08-26 04:13:32 +00001239 // Add section padding.
1240 assert(SD.getFileSize() >= SD.getSize() && "Invalid section sizes!");
1241 MOW.WriteZeros(SD.getFileSize() - SD.getSize());
1242
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001243 assert(OS.tell() - Start == SD.getFileSize());
1244}
1245
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001246void MCAssembler::Finish() {
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001247 DEBUG_WITH_TYPE("mc-dump", {
1248 llvm::errs() << "assembler backend - pre-layout\n--\n";
1249 dump(); });
1250
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001251 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +00001252 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001253 MCSectionData *Prev = 0;
1254 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbar6742e342009-08-26 04:13:32 +00001255 MCSectionData &SD = *it;
1256
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001257 // Skip virtual sections.
1258 if (isVirtualSection(SD.getSection()))
1259 continue;
1260
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001261 // Align this section if necessary by adding padding bytes to the previous
1262 // section.
1263 if (uint64_t Pad = OffsetToAlignment(Address, it->getAlignment())) {
1264 assert(Prev && "Missing prev section!");
1265 Prev->setFileSize(Prev->getFileSize() + Pad);
1266 Address += Pad;
1267 }
Daniel Dunbar6742e342009-08-26 04:13:32 +00001268
1269 // Layout the section fragments and its size.
1270 SD.setAddress(Address);
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001271 LayoutSection(SD);
Daniel Dunbar6742e342009-08-26 04:13:32 +00001272 Address += SD.getFileSize();
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001273
1274 Prev = &SD;
Daniel Dunbar5e835962009-08-26 02:48:04 +00001275 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001276
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001277 // Layout the virtual sections.
1278 for (iterator it = begin(), ie = end(); it != ie; ++it) {
1279 MCSectionData &SD = *it;
1280
1281 if (!isVirtualSection(SD.getSection()))
1282 continue;
1283
Daniel Dunbarb2b4acd2010-03-08 22:03:42 +00001284 // Align this section if necessary by adding padding bytes to the previous
1285 // section.
Daniel Dunbarf8b8ad72010-03-09 01:12:20 +00001286 if (uint64_t Pad = OffsetToAlignment(Address, it->getAlignment()))
Daniel Dunbarb2b4acd2010-03-08 22:03:42 +00001287 Address += Pad;
Daniel Dunbarb2b4acd2010-03-08 22:03:42 +00001288
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001289 SD.setAddress(Address);
1290 LayoutSection(SD);
1291 Address += SD.getSize();
Daniel Dunbarb2b4acd2010-03-08 22:03:42 +00001292
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001293 }
1294
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001295 DEBUG_WITH_TYPE("mc-dump", {
1296 llvm::errs() << "assembler backend - post-layout\n--\n";
1297 dump(); });
1298
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001299 // Write the object file.
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001300 MachObjectWriter MOW(OS);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001301 MOW.WriteObject(*this);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001302
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001303 OS.flush();
1304}
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001305
1306
1307// Debugging methods
1308
1309namespace llvm {
1310
1311raw_ostream &operator<<(raw_ostream &OS, const MCAsmFixup &AF) {
Daniel Dunbar2be2fd02010-02-13 09:28:54 +00001312 OS << "<MCAsmFixup" << " Offset:" << AF.Offset << " Value:" << *AF.Value
1313 << " Kind:" << AF.Kind << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001314 return OS;
1315}
1316
1317}
1318
1319void MCFragment::dump() {
1320 raw_ostream &OS = llvm::errs();
1321
1322 OS << "<MCFragment " << (void*) this << " Offset:" << Offset
1323 << " FileSize:" << FileSize;
1324
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001325 OS << ">";
1326}
1327
1328void MCAlignFragment::dump() {
1329 raw_ostream &OS = llvm::errs();
1330
1331 OS << "<MCAlignFragment ";
1332 this->MCFragment::dump();
1333 OS << "\n ";
1334 OS << " Alignment:" << getAlignment()
1335 << " Value:" << getValue() << " ValueSize:" << getValueSize()
1336 << " MaxBytesToEmit:" << getMaxBytesToEmit() << ">";
1337}
1338
1339void MCDataFragment::dump() {
1340 raw_ostream &OS = llvm::errs();
1341
1342 OS << "<MCDataFragment ";
1343 this->MCFragment::dump();
1344 OS << "\n ";
1345 OS << " Contents:[";
1346 for (unsigned i = 0, e = getContents().size(); i != e; ++i) {
1347 if (i) OS << ",";
1348 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
1349 }
Daniel Dunbar2be2fd02010-02-13 09:28:54 +00001350 OS << "] (" << getContents().size() << " bytes)";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +00001351
1352 if (!getFixups().empty()) {
1353 OS << ",\n ";
1354 OS << " Fixups:[";
1355 for (fixup_iterator it = fixup_begin(), ie = fixup_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +00001356 if (it != fixup_begin()) OS << ",\n ";
Daniel Dunbar0bcf0742010-02-13 09:28:43 +00001357 OS << *it;
1358 }
1359 OS << "]";
1360 }
1361
1362 OS << ">";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001363}
1364
1365void MCFillFragment::dump() {
1366 raw_ostream &OS = llvm::errs();
1367
1368 OS << "<MCFillFragment ";
1369 this->MCFragment::dump();
1370 OS << "\n ";
1371 OS << " Value:" << getValue() << " ValueSize:" << getValueSize()
1372 << " Count:" << getCount() << ">";
1373}
1374
1375void MCOrgFragment::dump() {
1376 raw_ostream &OS = llvm::errs();
1377
1378 OS << "<MCOrgFragment ";
1379 this->MCFragment::dump();
1380 OS << "\n ";
1381 OS << " Offset:" << getOffset() << " Value:" << getValue() << ">";
1382}
1383
1384void MCZeroFillFragment::dump() {
1385 raw_ostream &OS = llvm::errs();
1386
1387 OS << "<MCZeroFillFragment ";
1388 this->MCFragment::dump();
1389 OS << "\n ";
1390 OS << " Size:" << getSize() << " Alignment:" << getAlignment() << ">";
1391}
1392
1393void MCSectionData::dump() {
1394 raw_ostream &OS = llvm::errs();
1395
1396 OS << "<MCSectionData";
1397 OS << " Alignment:" << getAlignment() << " Address:" << Address
1398 << " Size:" << Size << " FileSize:" << FileSize
Daniel Dunbar45aefff2010-03-09 01:12:23 +00001399 << " Fragments:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001400 for (iterator it = begin(), ie = end(); it != ie; ++it) {
1401 if (it != begin()) OS << ",\n ";
1402 it->dump();
1403 }
1404 OS << "]>";
1405}
1406
1407void MCSymbolData::dump() {
1408 raw_ostream &OS = llvm::errs();
1409
1410 OS << "<MCSymbolData Symbol:" << getSymbol()
1411 << " Fragment:" << getFragment() << " Offset:" << getOffset()
1412 << " Flags:" << getFlags() << " Index:" << getIndex();
1413 if (isCommon())
1414 OS << " (common, size:" << getCommonSize()
1415 << " align: " << getCommonAlignment() << ")";
1416 if (isExternal())
1417 OS << " (external)";
1418 if (isPrivateExtern())
1419 OS << " (private extern)";
1420 OS << ">";
1421}
1422
1423void MCAssembler::dump() {
1424 raw_ostream &OS = llvm::errs();
1425
1426 OS << "<MCAssembler\n";
Daniel Dunbar45aefff2010-03-09 01:12:23 +00001427 OS << " Sections:[\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001428 for (iterator it = begin(), ie = end(); it != ie; ++it) {
1429 if (it != begin()) OS << ",\n ";
1430 it->dump();
1431 }
1432 OS << "],\n";
1433 OS << " Symbols:[";
1434
1435 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
Daniel Dunbar45aefff2010-03-09 01:12:23 +00001436 if (it != symbol_begin()) OS << ",\n ";
Daniel Dunbarb7c3a4b2010-02-13 09:28:03 +00001437 it->dump();
1438 }
1439 OS << "]>\n";
1440}