blob: 682b505e3474b39bb08b815cc591af0e8ddfd364 [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 Dunbarf3d2ef02009-08-22 10:13:24 +000019#include "llvm/ADT/StringMap.h"
Daniel Dunbard6f761e2009-08-21 23:07:38 +000020#include "llvm/ADT/Twine.h"
Daniel Dunbar0705fbf2009-08-21 18:29:01 +000021#include "llvm/Support/ErrorHandling.h"
Chris Lattner45f8c092010-02-02 19:38:14 +000022#include "llvm/Support/MachO.h"
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000023#include "llvm/Support/raw_ostream.h"
Chris Lattner23132b12009-08-24 03:52:50 +000024#include <vector>
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000025using namespace llvm;
26
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000027class MachObjectWriter;
28
Daniel Dunbar0adcd352009-08-25 21:10:45 +000029STATISTIC(EmittedFragments, "Number of emitted assembler fragments");
30
Daniel Dunbar8f4d1462009-08-28 07:08:35 +000031// FIXME FIXME FIXME: There are number of places in this file where we convert
32// what is a 64-bit assembler value used for computation into a value in the
33// object file, which may truncate it. We should detect that truncation where
34// invalid and report errors back.
35
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000036static void WriteFileData(raw_ostream &OS, const MCSectionData &SD,
37 MachObjectWriter &MOW);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000038
Daniel Dunbard5a8e982009-08-28 05:49:21 +000039/// isVirtualSection - Check if this is a section which does not actually exist
40/// in the object file.
41static bool isVirtualSection(const MCSection &Section) {
42 // FIXME: Lame.
43 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
44 unsigned Type = SMO.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
45 return (Type == MCSectionMachO::S_ZEROFILL);
46}
47
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000048class MachObjectWriter {
49 // See <mach-o/loader.h>.
50 enum {
51 Header_Magic32 = 0xFEEDFACE,
52 Header_Magic64 = 0xFEEDFACF
53 };
Daniel Dunbar7eb85192009-10-16 01:58:15 +000054
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000055 static const unsigned Header32Size = 28;
56 static const unsigned Header64Size = 32;
57 static const unsigned SegmentLoadCommand32Size = 56;
58 static const unsigned Section32Size = 68;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000059 static const unsigned SymtabLoadCommandSize = 24;
60 static const unsigned DysymtabLoadCommandSize = 80;
61 static const unsigned Nlist32Size = 12;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +000062 static const unsigned RelocationInfoSize = 8;
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000063
64 enum HeaderFileType {
65 HFT_Object = 0x1
66 };
67
Daniel Dunbar6009db42009-08-26 21:22:22 +000068 enum HeaderFlags {
69 HF_SubsectionsViaSymbols = 0x2000
70 };
71
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000072 enum LoadCommandType {
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +000073 LCT_Segment = 0x1,
74 LCT_Symtab = 0x2,
75 LCT_Dysymtab = 0xb
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +000076 };
77
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +000078 // See <mach-o/nlist.h>.
79 enum SymbolTypeType {
80 STT_Undefined = 0x00,
81 STT_Absolute = 0x02,
82 STT_Section = 0x0e
83 };
84
85 enum SymbolTypeFlags {
86 // If any of these bits are set, then the entry is a stab entry number (see
87 // <mach-o/stab.h>. Otherwise the other masks apply.
88 STF_StabsEntryMask = 0xe0,
89
90 STF_TypeMask = 0x0e,
91 STF_External = 0x01,
92 STF_PrivateExtern = 0x10
93 };
94
Daniel Dunbarad7c3d52009-08-26 00:18:21 +000095 /// IndirectSymbolFlags - Flags for encoding special values in the indirect
96 /// symbol entry.
97 enum IndirectSymbolFlags {
98 ISF_Local = 0x80000000,
99 ISF_Absolute = 0x40000000
100 };
101
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000102 /// RelocationFlags - Special flags for addresses.
103 enum RelocationFlags {
104 RF_Scattered = 0x80000000
105 };
106
107 enum RelocationInfoType {
108 RIT_Vanilla = 0,
109 RIT_Pair = 1,
110 RIT_Difference = 2,
111 RIT_PreboundLazyPointer = 3,
112 RIT_LocalDifference = 4
113 };
114
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000115 /// MachSymbolData - Helper struct for containing some precomputed information
116 /// on symbols.
117 struct MachSymbolData {
118 MCSymbolData *SymbolData;
119 uint64_t StringIndex;
120 uint8_t SectionIndex;
121
122 // Support lexicographic sorting.
123 bool operator<(const MachSymbolData &RHS) const {
124 const std::string &Name = SymbolData->getSymbol().getName();
125 return Name < RHS.SymbolData->getSymbol().getName();
126 }
127 };
128
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000129 raw_ostream &OS;
130 bool IsLSB;
131
132public:
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000133 MachObjectWriter(raw_ostream &_OS, bool _IsLSB = true)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000134 : OS(_OS), IsLSB(_IsLSB) {
135 }
136
137 /// @name Helper Methods
138 /// @{
139
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000140 void Write8(uint8_t Value) {
141 OS << char(Value);
142 }
143
144 void Write16(uint16_t Value) {
145 if (IsLSB) {
146 Write8(uint8_t(Value >> 0));
147 Write8(uint8_t(Value >> 8));
148 } else {
149 Write8(uint8_t(Value >> 8));
150 Write8(uint8_t(Value >> 0));
151 }
152 }
153
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000154 void Write32(uint32_t Value) {
155 if (IsLSB) {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000156 Write16(uint16_t(Value >> 0));
157 Write16(uint16_t(Value >> 16));
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000158 } else {
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000159 Write16(uint16_t(Value >> 16));
160 Write16(uint16_t(Value >> 0));
161 }
162 }
163
164 void Write64(uint64_t Value) {
165 if (IsLSB) {
166 Write32(uint32_t(Value >> 0));
167 Write32(uint32_t(Value >> 32));
168 } else {
169 Write32(uint32_t(Value >> 32));
170 Write32(uint32_t(Value >> 0));
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000171 }
172 }
173
174 void WriteZeros(unsigned N) {
175 const char Zeros[16] = { 0 };
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000176
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000177 for (unsigned i = 0, e = N / 16; i != e; ++i)
178 OS << StringRef(Zeros, 16);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000179
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000180 OS << StringRef(Zeros, N % 16);
181 }
182
Daniel Dunbar2928c832009-11-06 10:58:06 +0000183 void WriteString(StringRef Str, unsigned ZeroFillSize = 0) {
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000184 OS << Str;
185 if (ZeroFillSize)
186 WriteZeros(ZeroFillSize - Str.size());
187 }
188
189 /// @}
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000190
Daniel Dunbar6009db42009-08-26 21:22:22 +0000191 void WriteHeader32(unsigned NumLoadCommands, unsigned LoadCommandsSize,
192 bool SubsectionsViaSymbols) {
193 uint32_t Flags = 0;
194
195 if (SubsectionsViaSymbols)
196 Flags |= HF_SubsectionsViaSymbols;
197
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000198 // struct mach_header (28 bytes)
199
200 uint64_t Start = OS.tell();
201 (void) Start;
202
203 Write32(Header_Magic32);
204
205 // FIXME: Support cputype.
Chris Lattner45f8c092010-02-02 19:38:14 +0000206 Write32(MachO::CPUTypeI386);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000207 // FIXME: Support cpusubtype.
Chris Lattner45f8c092010-02-02 19:38:14 +0000208 Write32(MachO::CPUSubType_I386_ALL);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000209 Write32(HFT_Object);
Daniel Dunbar6009db42009-08-26 21:22:22 +0000210 Write32(NumLoadCommands); // Object files have a single load command, the
211 // segment.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000212 Write32(LoadCommandsSize);
Daniel Dunbar6009db42009-08-26 21:22:22 +0000213 Write32(Flags);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000214
215 assert(OS.tell() - Start == Header32Size);
216 }
217
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000218 /// WriteSegmentLoadCommand32 - Write a 32-bit segment load command.
219 ///
220 /// \arg NumSections - The number of sections in this segment.
221 /// \arg SectionDataSize - The total size of the sections.
222 void WriteSegmentLoadCommand32(unsigned NumSections,
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000223 uint64_t VMSize,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000224 uint64_t SectionDataStartOffset,
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000225 uint64_t SectionDataSize) {
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000226 // struct segment_command (56 bytes)
227
228 uint64_t Start = OS.tell();
229 (void) Start;
230
231 Write32(LCT_Segment);
232 Write32(SegmentLoadCommand32Size + NumSections * Section32Size);
233
234 WriteString("", 16);
235 Write32(0); // vmaddr
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000236 Write32(VMSize); // vmsize
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000237 Write32(SectionDataStartOffset); // file offset
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000238 Write32(SectionDataSize); // file size
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000239 Write32(0x7); // maxprot
240 Write32(0x7); // initprot
241 Write32(NumSections);
242 Write32(0); // flags
243
244 assert(OS.tell() - Start == SegmentLoadCommand32Size);
245 }
246
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000247 void WriteSection32(const MCSectionData &SD, uint64_t FileOffset,
248 uint64_t RelocationsStart, unsigned NumRelocations) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000249 // The offset is unused for virtual sections.
250 if (isVirtualSection(SD.getSection())) {
251 assert(SD.getFileSize() == 0 && "Invalid file size!");
252 FileOffset = 0;
253 }
254
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000255 // struct section (68 bytes)
256
257 uint64_t Start = OS.tell();
258 (void) Start;
259
260 // FIXME: cast<> support!
261 const MCSectionMachO &Section =
262 static_cast<const MCSectionMachO&>(SD.getSection());
263 WriteString(Section.getSectionName(), 16);
264 WriteString(Section.getSegmentName(), 16);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000265 Write32(SD.getAddress()); // address
Daniel Dunbar6742e342009-08-26 04:13:32 +0000266 Write32(SD.getSize()); // size
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000267 Write32(FileOffset);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000268
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000269 unsigned Flags = Section.getTypeAndAttributes();
270 if (SD.hasInstructions())
271 Flags |= MCSectionMachO::S_ATTR_SOME_INSTRUCTIONS;
272
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000273 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
274 Write32(Log2_32(SD.getAlignment()));
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000275 Write32(NumRelocations ? RelocationsStart : 0);
276 Write32(NumRelocations);
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000277 Write32(Flags);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000278 Write32(0); // reserved1
279 Write32(Section.getStubSize()); // reserved2
280
281 assert(OS.tell() - Start == Section32Size);
282 }
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000283
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000284 void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
285 uint32_t StringTableOffset,
286 uint32_t StringTableSize) {
287 // struct symtab_command (24 bytes)
288
289 uint64_t Start = OS.tell();
290 (void) Start;
291
292 Write32(LCT_Symtab);
293 Write32(SymtabLoadCommandSize);
294 Write32(SymbolOffset);
295 Write32(NumSymbols);
296 Write32(StringTableOffset);
297 Write32(StringTableSize);
298
299 assert(OS.tell() - Start == SymtabLoadCommandSize);
300 }
301
302 void WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
303 uint32_t NumLocalSymbols,
304 uint32_t FirstExternalSymbol,
305 uint32_t NumExternalSymbols,
306 uint32_t FirstUndefinedSymbol,
307 uint32_t NumUndefinedSymbols,
308 uint32_t IndirectSymbolOffset,
309 uint32_t NumIndirectSymbols) {
310 // struct dysymtab_command (80 bytes)
311
312 uint64_t Start = OS.tell();
313 (void) Start;
314
315 Write32(LCT_Dysymtab);
316 Write32(DysymtabLoadCommandSize);
317 Write32(FirstLocalSymbol);
318 Write32(NumLocalSymbols);
319 Write32(FirstExternalSymbol);
320 Write32(NumExternalSymbols);
321 Write32(FirstUndefinedSymbol);
322 Write32(NumUndefinedSymbols);
323 Write32(0); // tocoff
324 Write32(0); // ntoc
325 Write32(0); // modtaboff
326 Write32(0); // nmodtab
327 Write32(0); // extrefsymoff
328 Write32(0); // nextrefsyms
329 Write32(IndirectSymbolOffset);
330 Write32(NumIndirectSymbols);
331 Write32(0); // extreloff
332 Write32(0); // nextrel
333 Write32(0); // locreloff
334 Write32(0); // nlocrel
335
336 assert(OS.tell() - Start == DysymtabLoadCommandSize);
337 }
338
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000339 void WriteNlist32(MachSymbolData &MSD) {
Daniel Dunbar5e835962009-08-26 02:48:04 +0000340 MCSymbolData &Data = *MSD.SymbolData;
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000341 const MCSymbol &Symbol = Data.getSymbol();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000342 uint8_t Type = 0;
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000343 uint16_t Flags = Data.getFlags();
344 uint32_t Address = 0;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000345
346 // Set the N_TYPE bits. See <mach-o/nlist.h>.
347 //
348 // FIXME: Are the prebound or indirect fields possible here?
349 if (Symbol.isUndefined())
350 Type = STT_Undefined;
351 else if (Symbol.isAbsolute())
352 Type = STT_Absolute;
353 else
354 Type = STT_Section;
355
356 // FIXME: Set STAB bits.
357
Daniel Dunbar5e835962009-08-26 02:48:04 +0000358 if (Data.isPrivateExtern())
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000359 Type |= STF_PrivateExtern;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000360
361 // Set external bit.
Daniel Dunbar5e835962009-08-26 02:48:04 +0000362 if (Data.isExternal() || Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000363 Type |= STF_External;
364
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000365 // Compute the symbol address.
366 if (Symbol.isDefined()) {
367 if (Symbol.isAbsolute()) {
368 llvm_unreachable("FIXME: Not yet implemented!");
369 } else {
370 Address = Data.getFragment()->getAddress() + Data.getOffset();
371 }
372 } else if (Data.isCommon()) {
373 // Common symbols are encoded with the size in the address
374 // field, and their alignment in the flags.
375 Address = Data.getCommonSize();
376
377 // Common alignment is packed into the 'desc' bits.
378 if (unsigned Align = Data.getCommonAlignment()) {
379 unsigned Log2Size = Log2_32(Align);
380 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
381 if (Log2Size > 15)
382 llvm_report_error("invalid 'common' alignment '" +
383 Twine(Align) + "'");
384 // FIXME: Keep this mask with the SymbolFlags enumeration.
385 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
386 }
387 }
388
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000389 // struct nlist (12 bytes)
390
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000391 Write32(MSD.StringIndex);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000392 Write8(Type);
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000393 Write8(MSD.SectionIndex);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000394
Daniel Dunbar6aff2fb2009-08-24 08:40:12 +0000395 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
396 // value.
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000397 Write16(Flags);
Daniel Dunbar5e835962009-08-26 02:48:04 +0000398 Write32(Address);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000399 }
400
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000401 struct MachRelocationEntry {
402 uint32_t Word0;
403 uint32_t Word1;
404 };
405 void ComputeScatteredRelocationInfo(MCAssembler &Asm,
Daniel Dunbar27ade182010-02-11 21:29:29 +0000406 MCAsmFixup &Fixup,
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000407 const MCValue &Target,
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000408 DenseMap<const MCSymbol*,MCSymbolData*> &SymbolMap,
409 std::vector<MachRelocationEntry> &Relocs) {
410 uint32_t Address = Fixup.Fragment->getOffset() + Fixup.Offset;
411 unsigned IsPCRel = 0;
412 unsigned Type = RIT_Vanilla;
413
414 // See <reloc.h>.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000415 const MCSymbol *A = Target.getSymA();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000416 MCSymbolData *SD = SymbolMap.lookup(A);
417 uint32_t Value = SD->getFragment()->getAddress() + SD->getOffset();
418 uint32_t Value2 = 0;
419
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000420 if (const MCSymbol *B = Target.getSymB()) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000421 Type = RIT_LocalDifference;
422
423 MCSymbolData *SD = SymbolMap.lookup(B);
424 Value2 = SD->getFragment()->getAddress() + SD->getOffset();
425 }
426
427 unsigned Log2Size = Log2_32(Fixup.Size);
428 assert((1U << Log2Size) == Fixup.Size && "Invalid fixup size!");
429
430 // The value which goes in the fixup is current value of the expression.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000431 Fixup.FixedValue = Value - Value2 + Target.getConstant();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000432
433 MachRelocationEntry MRE;
434 MRE.Word0 = ((Address << 0) |
435 (Type << 24) |
436 (Log2Size << 28) |
437 (IsPCRel << 30) |
438 RF_Scattered);
439 MRE.Word1 = Value;
440 Relocs.push_back(MRE);
441
442 if (Type == RIT_LocalDifference) {
443 Type = RIT_Pair;
444
445 MachRelocationEntry MRE;
446 MRE.Word0 = ((0 << 0) |
447 (Type << 24) |
448 (Log2Size << 28) |
449 (0 << 30) |
450 RF_Scattered);
451 MRE.Word1 = Value2;
452 Relocs.push_back(MRE);
453 }
454 }
455
456 void ComputeRelocationInfo(MCAssembler &Asm,
Daniel Dunbar27ade182010-02-11 21:29:29 +0000457 MCAsmFixup &Fixup,
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000458 DenseMap<const MCSymbol*,MCSymbolData*> &SymbolMap,
459 std::vector<MachRelocationEntry> &Relocs) {
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000460 MCValue Target;
461 if (!Fixup.Value->EvaluateAsRelocatable(Target))
462 llvm_report_error("expected relocatable expression");
463
464 // If this is a difference or a local symbol plus an offset, then we need a
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000465 // scattered relocation entry.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000466 if (Target.getSymB() ||
467 (Target.getSymA() && !Target.getSymA()->isUndefined() &&
468 Target.getConstant()))
469 return ComputeScatteredRelocationInfo(Asm, Fixup, Target,
470 SymbolMap, Relocs);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000471
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000472 // See <reloc.h>.
473 uint32_t Address = Fixup.Fragment->getOffset() + Fixup.Offset;
474 uint32_t Value = 0;
475 unsigned Index = 0;
476 unsigned IsPCRel = 0;
477 unsigned IsExtern = 0;
478 unsigned Type = 0;
479
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000480 if (Target.isAbsolute()) { // constant
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000481 // SymbolNum of 0 indicates the absolute section.
482 Type = RIT_Vanilla;
483 Value = 0;
484 llvm_unreachable("FIXME: Not yet implemented!");
485 } else {
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000486 const MCSymbol *Symbol = Target.getSymA();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000487 MCSymbolData *SD = SymbolMap.lookup(Symbol);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000488
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000489 if (Symbol->isUndefined()) {
490 IsExtern = 1;
491 Index = SD->getIndex();
492 Value = 0;
493 } else {
494 // The index is the section ordinal.
495 //
496 // FIXME: O(N)
497 Index = 1;
498 for (MCAssembler::iterator it = Asm.begin(),
499 ie = Asm.end(); it != ie; ++it, ++Index)
500 if (&*it == SD->getFragment()->getParent())
501 break;
502 Value = SD->getFragment()->getAddress() + SD->getOffset();
503 }
504
505 Type = RIT_Vanilla;
506 }
507
508 // The value which goes in the fixup is current value of the expression.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000509 Fixup.FixedValue = Value + Target.getConstant();
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000510
511 unsigned Log2Size = Log2_32(Fixup.Size);
512 assert((1U << Log2Size) == Fixup.Size && "Invalid fixup size!");
513
514 // struct relocation_info (8 bytes)
515 MachRelocationEntry MRE;
516 MRE.Word0 = Address;
517 MRE.Word1 = ((Index << 0) |
518 (IsPCRel << 24) |
519 (Log2Size << 25) |
520 (IsExtern << 27) |
521 (Type << 28));
522 Relocs.push_back(MRE);
523 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000524
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000525 void BindIndirectSymbols(MCAssembler &Asm,
Daniel Dunbarbe963552009-08-26 13:57:54 +0000526 DenseMap<const MCSymbol*,MCSymbolData*> &SymbolMap) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000527 // This is the point where 'as' creates actual symbols for indirect symbols
528 // (in the following two passes). It would be easier for us to do this
529 // sooner when we see the attribute, but that makes getting the order in the
530 // symbol table much more complicated than it is worth.
531 //
532 // FIXME: Revisit this when the dust settles.
533
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000534 // Bind non lazy symbol pointers first.
535 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
536 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
537 // FIXME: cast<> support!
538 const MCSectionMachO &Section =
539 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
540
541 unsigned Type =
542 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
543 if (Type != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
544 continue;
545
546 MCSymbolData *&Entry = SymbolMap[it->Symbol];
547 if (!Entry)
548 Entry = new MCSymbolData(*it->Symbol, 0, 0, &Asm);
549 }
550
551 // Then lazy symbol pointers and symbol stubs.
552 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
553 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
554 // FIXME: cast<> support!
555 const MCSectionMachO &Section =
556 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
557
558 unsigned Type =
559 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
560 if (Type != MCSectionMachO::S_LAZY_SYMBOL_POINTERS &&
561 Type != MCSectionMachO::S_SYMBOL_STUBS)
562 continue;
563
564 MCSymbolData *&Entry = SymbolMap[it->Symbol];
565 if (!Entry) {
566 Entry = new MCSymbolData(*it->Symbol, 0, 0, &Asm);
567
568 // Set the symbol type to undefined lazy, but only on construction.
569 //
570 // FIXME: Do not hardcode.
571 Entry->setFlags(Entry->getFlags() | 0x0001);
572 }
573 }
574 }
575
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000576 /// ComputeSymbolTable - Compute the symbol table data
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000577 ///
578 /// \param StringTable [out] - The string table data.
579 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
580 /// string table.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000581 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
582 std::vector<MachSymbolData> &LocalSymbolData,
583 std::vector<MachSymbolData> &ExternalSymbolData,
584 std::vector<MachSymbolData> &UndefinedSymbolData) {
585 // Build section lookup table.
586 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
587 unsigned Index = 1;
588 for (MCAssembler::iterator it = Asm.begin(),
589 ie = Asm.end(); it != ie; ++it, ++Index)
590 SectionIndexMap[&it->getSection()] = Index;
591 assert(Index <= 256 && "Too many sections!");
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000592
593 // Index 0 is always the empty string.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000594 StringMap<uint64_t> StringIndexMap;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000595 StringTable += '\x00';
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000596
597 // Build the symbol arrays and the string table, but only for non-local
598 // symbols.
599 //
600 // The particular order that we collect the symbols and create the string
601 // table, then sort the symbols is chosen to match 'as'. Even though it
602 // doesn't matter for correctness, this is important for letting us diff .o
603 // files.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000604 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
605 ie = Asm.symbol_end(); it != ie; ++it) {
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000606 const MCSymbol &Symbol = it->getSymbol();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000607
Daniel Dunbar959fd882009-08-26 22:13:22 +0000608 // Ignore assembler temporaries.
609 if (it->getSymbol().isTemporary())
610 continue;
611
Daniel Dunbar50e48b32009-08-24 08:39:57 +0000612 if (!it->isExternal() && !Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000613 continue;
614
615 uint64_t &Entry = StringIndexMap[Symbol.getName()];
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000616 if (!Entry) {
617 Entry = StringTable.size();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000618 StringTable += Symbol.getName();
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000619 StringTable += '\x00';
620 }
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000621
622 MachSymbolData MSD;
623 MSD.SymbolData = it;
624 MSD.StringIndex = Entry;
625
626 if (Symbol.isUndefined()) {
627 MSD.SectionIndex = 0;
628 UndefinedSymbolData.push_back(MSD);
629 } else if (Symbol.isAbsolute()) {
630 MSD.SectionIndex = 0;
631 ExternalSymbolData.push_back(MSD);
632 } else {
633 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
634 assert(MSD.SectionIndex && "Invalid section index!");
635 ExternalSymbolData.push_back(MSD);
636 }
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000637 }
638
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000639 // Now add the data for local symbols.
640 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
641 ie = Asm.symbol_end(); it != ie; ++it) {
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000642 const MCSymbol &Symbol = it->getSymbol();
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000643
Daniel Dunbar959fd882009-08-26 22:13:22 +0000644 // Ignore assembler temporaries.
645 if (it->getSymbol().isTemporary())
646 continue;
647
Daniel Dunbar50e48b32009-08-24 08:39:57 +0000648 if (it->isExternal() || Symbol.isUndefined())
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000649 continue;
650
651 uint64_t &Entry = StringIndexMap[Symbol.getName()];
652 if (!Entry) {
653 Entry = StringTable.size();
654 StringTable += Symbol.getName();
655 StringTable += '\x00';
656 }
657
658 MachSymbolData MSD;
659 MSD.SymbolData = it;
660 MSD.StringIndex = Entry;
661
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000662 if (Symbol.isAbsolute()) {
663 MSD.SectionIndex = 0;
664 LocalSymbolData.push_back(MSD);
665 } else {
666 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
667 assert(MSD.SectionIndex && "Invalid section index!");
668 LocalSymbolData.push_back(MSD);
669 }
670 }
671
672 // External and undefined symbols are required to be in lexicographic order.
673 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
674 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
675
Daniel Dunbarbe963552009-08-26 13:57:54 +0000676 // Set the symbol indices.
677 Index = 0;
678 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
679 LocalSymbolData[i].SymbolData->setIndex(Index++);
680 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
681 ExternalSymbolData[i].SymbolData->setIndex(Index++);
682 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
683 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
684
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000685 // The string table is padded to a multiple of 4.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000686 while (StringTable.size() % 4)
687 StringTable += '\x00';
688 }
689
690 void WriteObject(MCAssembler &Asm) {
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000691 unsigned NumSections = Asm.size();
692
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000693 // Compute the symbol -> symbol data map.
694 //
695 // FIXME: This should not be here.
Daniel Dunbarbe963552009-08-26 13:57:54 +0000696 DenseMap<const MCSymbol*, MCSymbolData *> SymbolMap;
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000697 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
698 ie = Asm.symbol_end(); it != ie; ++it)
699 SymbolMap[&it->getSymbol()] = it;
700
701 // Create symbol data for any indirect symbols.
702 BindIndirectSymbols(Asm, SymbolMap);
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000703
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000704 // Compute symbol table information.
705 SmallString<256> StringTable;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000706 std::vector<MachSymbolData> LocalSymbolData;
707 std::vector<MachSymbolData> ExternalSymbolData;
708 std::vector<MachSymbolData> UndefinedSymbolData;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000709 unsigned NumSymbols = Asm.symbol_size();
710
711 // No symbol table command is written if there are no symbols.
712 if (NumSymbols)
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000713 ComputeSymbolTable(Asm, StringTable, LocalSymbolData, ExternalSymbolData,
714 UndefinedSymbolData);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000715
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000716 // The section data starts after the header, the segment load command (and
717 // section headers) and the symbol table.
718 unsigned NumLoadCommands = 1;
719 uint64_t LoadCommandsSize =
720 SegmentLoadCommand32Size + NumSections * Section32Size;
721
722 // Add the symbol table load command sizes, if used.
723 if (NumSymbols) {
724 NumLoadCommands += 2;
725 LoadCommandsSize += SymtabLoadCommandSize + DysymtabLoadCommandSize;
726 }
727
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000728 // Compute the total size of the section data, as well as its file size and
729 // vm size.
Daniel Dunbar6742e342009-08-26 04:13:32 +0000730 uint64_t SectionDataStart = Header32Size + LoadCommandsSize;
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000731 uint64_t SectionDataSize = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000732 uint64_t SectionDataFileSize = 0;
733 uint64_t VMSize = 0;
734 for (MCAssembler::iterator it = Asm.begin(),
735 ie = Asm.end(); it != ie; ++it) {
736 MCSectionData &SD = *it;
737
738 VMSize = std::max(VMSize, SD.getAddress() + SD.getSize());
739
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000740 if (isVirtualSection(SD.getSection()))
741 continue;
742
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000743 SectionDataSize = std::max(SectionDataSize,
744 SD.getAddress() + SD.getSize());
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000745 SectionDataFileSize = std::max(SectionDataFileSize,
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000746 SD.getAddress() + SD.getFileSize());
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000747 }
748
Daniel Dunbar6b716532010-02-09 23:00:14 +0000749 // The section data is padded to 4 bytes.
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000750 //
751 // FIXME: Is this machine dependent?
752 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
753 SectionDataFileSize += SectionDataPadding;
754
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000755 // Write the prolog, starting with the header and load command...
Daniel Dunbar6009db42009-08-26 21:22:22 +0000756 WriteHeader32(NumLoadCommands, LoadCommandsSize,
757 Asm.getSubsectionsViaSymbols());
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000758 WriteSegmentLoadCommand32(NumSections, VMSize,
759 SectionDataStart, SectionDataSize);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000760
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000761 // ... and then the section headers.
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000762 //
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000763 // We also compute the section relocations while we do this. Note that
Daniel Dunbar6b716532010-02-09 23:00:14 +0000764 // computing relocation info will also update the fixup to have the correct
765 // value; this will overwrite the appropriate data in the fragment when it
766 // is written.
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000767 std::vector<MachRelocationEntry> RelocInfos;
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000768 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000769 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie;
770 ++it) {
771 MCSectionData &SD = *it;
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000772
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000773 // The assembler writes relocations in the reverse order they were seen.
774 //
775 // FIXME: It is probably more complicated than this.
776 unsigned NumRelocsStart = RelocInfos.size();
777 for (unsigned i = 0, e = SD.fixup_size(); i != e; ++i)
778 ComputeRelocationInfo(Asm, SD.getFixups()[e - i - 1], SymbolMap,
779 RelocInfos);
780
781 unsigned NumRelocs = RelocInfos.size() - NumRelocsStart;
782 uint64_t SectionStart = SectionDataStart + SD.getAddress();
783 WriteSection32(SD, SectionStart, RelocTableEnd, NumRelocs);
784 RelocTableEnd += NumRelocs * RelocationInfoSize;
785 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000786
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000787 // Write the symbol table load command, if used.
788 if (NumSymbols) {
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000789 unsigned FirstLocalSymbol = 0;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000790 unsigned NumLocalSymbols = LocalSymbolData.size();
791 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
792 unsigned NumExternalSymbols = ExternalSymbolData.size();
793 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
794 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000795 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
796 unsigned NumSymTabSymbols =
797 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
798 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
799 uint64_t IndirectSymbolOffset = 0;
800
801 // If used, the indirect symbols are written after the section data.
802 if (NumIndirectSymbols)
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000803 IndirectSymbolOffset = RelocTableEnd;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000804
805 // The symbol table is written after the indirect symbol data.
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000806 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000807
808 // The string table is written after symbol table.
809 uint64_t StringTableOffset =
810 SymbolTableOffset + NumSymTabSymbols * Nlist32Size;
811 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
812 StringTableOffset, StringTable.size());
813
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000814 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
815 FirstExternalSymbol, NumExternalSymbols,
816 FirstUndefinedSymbol, NumUndefinedSymbols,
817 IndirectSymbolOffset, NumIndirectSymbols);
818 }
819
820 // Write the actual section data.
821 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
822 WriteFileData(OS, *it, *this);
823
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000824 // Write the extra padding.
825 WriteZeros(SectionDataPadding);
826
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000827 // Write the relocation entries.
828 for (unsigned i = 0, e = RelocInfos.size(); i != e; ++i) {
829 Write32(RelocInfos[i].Word0);
830 Write32(RelocInfos[i].Word1);
831 }
832
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000833 // Write the symbol table data, if used.
834 if (NumSymbols) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000835 // Write the indirect symbol entries.
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000836 for (MCAssembler::indirect_symbol_iterator
837 it = Asm.indirect_symbol_begin(),
838 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
839 // Indirect symbols in the non lazy symbol pointer section have some
840 // special handling.
841 const MCSectionMachO &Section =
842 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
843 unsigned Type =
844 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
845 if (Type == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
846 // If this symbol is defined and internal, mark it as such.
847 if (it->Symbol->isDefined() &&
848 !SymbolMap.lookup(it->Symbol)->isExternal()) {
849 uint32_t Flags = ISF_Local;
850 if (it->Symbol->isAbsolute())
851 Flags |= ISF_Absolute;
852 Write32(Flags);
853 continue;
854 }
855 }
856
Daniel Dunbarbe963552009-08-26 13:57:54 +0000857 Write32(SymbolMap[it->Symbol]->getIndex());
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000858 }
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000859
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000860 // FIXME: Check that offsets match computed ones.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000861
862 // Write the symbol table entries.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000863 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
864 WriteNlist32(LocalSymbolData[i]);
865 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
866 WriteNlist32(ExternalSymbolData[i]);
867 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
868 WriteNlist32(UndefinedSymbolData[i]);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000869
870 // Write the string table.
871 OS << StringTable.str();
872 }
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000873 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000874};
875
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000876/* *** */
877
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000878MCFragment::MCFragment() : Kind(FragmentType(~0)) {
879}
880
Daniel Dunbar5e835962009-08-26 02:48:04 +0000881MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000882 : Kind(_Kind),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000883 Parent(_Parent),
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000884 FileSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000885{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000886 if (Parent)
887 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000888}
889
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000890MCFragment::~MCFragment() {
891}
892
Daniel Dunbar5e835962009-08-26 02:48:04 +0000893uint64_t MCFragment::getAddress() const {
894 assert(getParent() && "Missing Section!");
895 return getParent()->getAddress() + Offset;
896}
897
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000898/* *** */
899
Daniel Dunbar81e40002009-08-27 00:38:04 +0000900MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000901
902MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000903 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000904 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000905 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000906 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000907 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000908 LastFixupLookup(~0),
909 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000910{
911 if (A)
912 A->getSectionList().push_back(this);
913}
914
Daniel Dunbar27ade182010-02-11 21:29:29 +0000915const MCAsmFixup *MCSectionData::LookupFixup(const MCFragment *Fragment,
916 uint64_t Offset) const {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000917 // Use a one level cache to turn the common case of accessing the fixups in
918 // order into O(1) instead of O(N).
919 unsigned i = LastFixupLookup, Count = Fixups.size(), End = Fixups.size();
920 if (i >= End)
921 i = 0;
922 while (Count--) {
Daniel Dunbar27ade182010-02-11 21:29:29 +0000923 const MCAsmFixup &F = Fixups[i];
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000924 if (F.Fragment == Fragment && F.Offset == Offset) {
925 LastFixupLookup = i;
926 return &F;
927 }
928
929 ++i;
930 if (i == End)
931 i = 0;
932 }
933
934 return 0;
935}
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000936
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000937/* *** */
938
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000939MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000940
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000941MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000942 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000943 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000944 IsExternal(false), IsPrivateExtern(false),
945 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000946{
947 if (A)
948 A->getSymbolList().push_back(this);
949}
950
951/* *** */
952
Daniel Dunbara03a3682009-08-31 08:07:55 +0000953MCAssembler::MCAssembler(MCContext &_Context, raw_ostream &_OS)
954 : Context(_Context), OS(_OS), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000955{
956}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000957
958MCAssembler::~MCAssembler() {
959}
960
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000961void MCAssembler::LayoutSection(MCSectionData &SD) {
Daniel Dunbar6742e342009-08-26 04:13:32 +0000962 uint64_t Address = SD.getAddress();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000963
964 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
965 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000966
Daniel Dunbar6742e342009-08-26 04:13:32 +0000967 F.setOffset(Address - SD.getAddress());
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000968
969 // Evaluate fragment size.
970 switch (F.getKind()) {
971 case MCFragment::FT_Align: {
972 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000973
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000974 uint64_t Size = OffsetToAlignment(Address, AF.getAlignment());
Daniel Dunbar6742e342009-08-26 04:13:32 +0000975 if (Size > AF.getMaxBytesToEmit())
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000976 AF.setFileSize(0);
977 else
Daniel Dunbar6742e342009-08-26 04:13:32 +0000978 AF.setFileSize(Size);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000979 break;
980 }
981
982 case MCFragment::FT_Data:
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000983 F.setFileSize(F.getMaxFileSize());
984 break;
985
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000986 case MCFragment::FT_Fill: {
987 MCFillFragment &FF = cast<MCFillFragment>(F);
988
989 F.setFileSize(F.getMaxFileSize());
990
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000991 MCValue Target;
992 if (!FF.getValue().EvaluateAsRelocatable(Target))
993 llvm_report_error("expected relocatable expression");
994
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000995 // If the fill value is constant, thats it.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000996 if (Target.isAbsolute())
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000997 break;
998
999 // Otherwise, add fixups for the values.
1000 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
Daniel Dunbar27ade182010-02-11 21:29:29 +00001001 MCAsmFixup Fix(F, i*FF.getValueSize(), FF.getValue(),FF.getValueSize());
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001002 SD.getFixups().push_back(Fix);
1003 }
1004 break;
1005 }
1006
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001007 case MCFragment::FT_Org: {
1008 MCOrgFragment &OF = cast<MCOrgFragment>(F);
1009
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001010 MCValue Target;
1011 if (!OF.getOffset().EvaluateAsRelocatable(Target))
1012 llvm_report_error("expected relocatable expression");
1013
1014 if (!Target.isAbsolute())
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001015 llvm_unreachable("FIXME: Not yet implemented!");
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001016 uint64_t OrgOffset = Target.getConstant();
Daniel Dunbar6742e342009-08-26 04:13:32 +00001017 uint64_t Offset = Address - SD.getAddress();
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001018
1019 // FIXME: We need a way to communicate this error.
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001020 if (OrgOffset < Offset)
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001021 llvm_report_error("invalid .org offset '" + Twine(OrgOffset) +
Daniel Dunbar6742e342009-08-26 04:13:32 +00001022 "' (at offset '" + Twine(Offset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001023
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001024 F.setFileSize(OrgOffset - Offset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001025 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001026 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001027
1028 case MCFragment::FT_ZeroFill: {
1029 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
1030
1031 // Align the fragment offset; it is safe to adjust the offset freely since
1032 // this is only in virtual sections.
1033 uint64_t Aligned = RoundUpToAlignment(Address, ZFF.getAlignment());
1034 F.setOffset(Aligned - SD.getAddress());
1035
1036 // FIXME: This is misnamed.
1037 F.setFileSize(ZFF.getSize());
1038 break;
1039 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001040 }
1041
Daniel Dunbar6742e342009-08-26 04:13:32 +00001042 Address += F.getFileSize();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001043 }
1044
Daniel Dunbar6742e342009-08-26 04:13:32 +00001045 // Set the section sizes.
1046 SD.setSize(Address - SD.getAddress());
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001047 if (isVirtualSection(SD.getSection()))
1048 SD.setFileSize(0);
1049 else
1050 SD.setFileSize(Address - SD.getAddress());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001051}
1052
1053/// WriteFileData - Write the \arg F data to the output file.
1054static void WriteFileData(raw_ostream &OS, const MCFragment &F,
1055 MachObjectWriter &MOW) {
1056 uint64_t Start = OS.tell();
1057 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001058
Daniel Dunbar0adcd352009-08-25 21:10:45 +00001059 ++EmittedFragments;
1060
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001061 // FIXME: Embed in fragments instead?
1062 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001063 case MCFragment::FT_Align: {
1064 MCAlignFragment &AF = cast<MCAlignFragment>(F);
1065 uint64_t Count = AF.getFileSize() / AF.getValueSize();
1066
1067 // FIXME: This error shouldn't actually occur (the front end should emit
1068 // multiple .align directives to enforce the semantics it wants), but is
1069 // severe enough that we want to report it. How to handle this?
1070 if (Count * AF.getValueSize() != AF.getFileSize())
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001071 llvm_report_error("undefined .align directive, value size '" +
1072 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001073 "' is not a divisor of padding size '" +
1074 Twine(AF.getFileSize()) + "'");
1075
1076 for (uint64_t i = 0; i != Count; ++i) {
1077 switch (AF.getValueSize()) {
1078 default:
1079 assert(0 && "Invalid size!");
1080 case 1: MOW.Write8 (uint8_t (AF.getValue())); break;
1081 case 2: MOW.Write16(uint16_t(AF.getValue())); break;
1082 case 4: MOW.Write32(uint32_t(AF.getValue())); break;
1083 case 8: MOW.Write64(uint64_t(AF.getValue())); break;
1084 }
1085 }
1086 break;
1087 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001088
1089 case MCFragment::FT_Data:
1090 OS << cast<MCDataFragment>(F).getContents().str();
1091 break;
1092
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001093 case MCFragment::FT_Fill: {
1094 MCFillFragment &FF = cast<MCFillFragment>(F);
1095
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001096 int64_t Value = 0;
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001097
1098 MCValue Target;
1099 if (!FF.getValue().EvaluateAsRelocatable(Target))
1100 llvm_report_error("expected relocatable expression");
1101
1102 if (Target.isAbsolute())
1103 Value = Target.getConstant();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001104 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001105 if (!Target.isAbsolute()) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001106 // Find the fixup.
1107 //
1108 // FIXME: Find a better way to write in the fixes.
Daniel Dunbar27ade182010-02-11 21:29:29 +00001109 const MCAsmFixup *Fixup =
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001110 F.getParent()->LookupFixup(&F, i * FF.getValueSize());
1111 assert(Fixup && "Missing fixup for fill value!");
1112 Value = Fixup->FixedValue;
1113 }
1114
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001115 switch (FF.getValueSize()) {
1116 default:
1117 assert(0 && "Invalid size!");
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001118 case 1: MOW.Write8 (uint8_t (Value)); break;
1119 case 2: MOW.Write16(uint16_t(Value)); break;
1120 case 4: MOW.Write32(uint32_t(Value)); break;
1121 case 8: MOW.Write64(uint64_t(Value)); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001122 }
1123 }
1124 break;
1125 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001126
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001127 case MCFragment::FT_Org: {
1128 MCOrgFragment &OF = cast<MCOrgFragment>(F);
1129
1130 for (uint64_t i = 0, e = OF.getFileSize(); i != e; ++i)
1131 MOW.Write8(uint8_t(OF.getValue()));
1132
1133 break;
1134 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001135
1136 case MCFragment::FT_ZeroFill: {
1137 assert(0 && "Invalid zero fill fragment in concrete section!");
1138 break;
1139 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001140 }
1141
1142 assert(OS.tell() - Start == F.getFileSize());
1143}
1144
1145/// WriteFileData - Write the \arg SD data to the output file.
1146static void WriteFileData(raw_ostream &OS, const MCSectionData &SD,
1147 MachObjectWriter &MOW) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001148 // Ignore virtual sections.
1149 if (isVirtualSection(SD.getSection())) {
1150 assert(SD.getFileSize() == 0);
1151 return;
1152 }
1153
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001154 uint64_t Start = OS.tell();
1155 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001156
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001157 for (MCSectionData::const_iterator it = SD.begin(),
1158 ie = SD.end(); it != ie; ++it)
1159 WriteFileData(OS, *it, MOW);
1160
Daniel Dunbar6742e342009-08-26 04:13:32 +00001161 // Add section padding.
1162 assert(SD.getFileSize() >= SD.getSize() && "Invalid section sizes!");
1163 MOW.WriteZeros(SD.getFileSize() - SD.getSize());
1164
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001165 assert(OS.tell() - Start == SD.getFileSize());
1166}
1167
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001168void MCAssembler::Finish() {
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001169 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +00001170 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001171 MCSectionData *Prev = 0;
1172 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbar6742e342009-08-26 04:13:32 +00001173 MCSectionData &SD = *it;
1174
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001175 // Skip virtual sections.
1176 if (isVirtualSection(SD.getSection()))
1177 continue;
1178
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001179 // Align this section if necessary by adding padding bytes to the previous
1180 // section.
1181 if (uint64_t Pad = OffsetToAlignment(Address, it->getAlignment())) {
1182 assert(Prev && "Missing prev section!");
1183 Prev->setFileSize(Prev->getFileSize() + Pad);
1184 Address += Pad;
1185 }
Daniel Dunbar6742e342009-08-26 04:13:32 +00001186
1187 // Layout the section fragments and its size.
1188 SD.setAddress(Address);
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001189 LayoutSection(SD);
Daniel Dunbar6742e342009-08-26 04:13:32 +00001190 Address += SD.getFileSize();
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001191
1192 Prev = &SD;
Daniel Dunbar5e835962009-08-26 02:48:04 +00001193 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001194
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001195 // Layout the virtual sections.
1196 for (iterator it = begin(), ie = end(); it != ie; ++it) {
1197 MCSectionData &SD = *it;
1198
1199 if (!isVirtualSection(SD.getSection()))
1200 continue;
1201
1202 SD.setAddress(Address);
1203 LayoutSection(SD);
1204 Address += SD.getSize();
1205 }
1206
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001207 // Write the object file.
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001208 MachObjectWriter MOW(OS);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001209 MOW.WriteObject(*this);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001210
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001211 OS.flush();
1212}