blob: 9afc169fcf4a65d936d48429fe5591a4dde3aea9 [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 };
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000405 void ComputeScatteredRelocationInfo(MCAssembler &Asm, MCFragment &Fragment,
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) {
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000410 uint32_t Address = Fragment.getOffset() + Fixup.Offset;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000411 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
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000456 void ComputeRelocationInfo(MCAssembler &Asm, MCFragment &Fragment,
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()))
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000469 return ComputeScatteredRelocationInfo(Asm, Fragment, Fixup, Target,
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000470 SymbolMap, Relocs);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000471
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000472 // See <reloc.h>.
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000473 uint32_t Address = Fragment.getOffset() + Fixup.Offset;
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000474 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 Dunbarcb7d7432010-02-11 21:29:46 +0000769 for (MCAssembler::iterator it = Asm.begin(),
770 ie = Asm.end(); it != ie; ++it) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000771 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();
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000777 for (MCSectionData::reverse_iterator it2 = SD.rbegin(),
778 ie2 = SD.rend(); it2 != ie2; ++it2)
779 for (unsigned i = 0, e = it2->fixup_size(); i != e; ++i)
780 ComputeRelocationInfo(Asm, *it2, it2->getFixups()[e - i - 1],
781 SymbolMap, RelocInfos);
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000782
783 unsigned NumRelocs = RelocInfos.size() - NumRelocsStart;
784 uint64_t SectionStart = SectionDataStart + SD.getAddress();
785 WriteSection32(SD, SectionStart, RelocTableEnd, NumRelocs);
786 RelocTableEnd += NumRelocs * RelocationInfoSize;
787 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000788
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000789 // Write the symbol table load command, if used.
790 if (NumSymbols) {
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000791 unsigned FirstLocalSymbol = 0;
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000792 unsigned NumLocalSymbols = LocalSymbolData.size();
793 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
794 unsigned NumExternalSymbols = ExternalSymbolData.size();
795 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
796 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000797 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
798 unsigned NumSymTabSymbols =
799 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
800 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
801 uint64_t IndirectSymbolOffset = 0;
802
803 // If used, the indirect symbols are written after the section data.
804 if (NumIndirectSymbols)
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000805 IndirectSymbolOffset = RelocTableEnd;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000806
807 // The symbol table is written after the indirect symbol data.
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000808 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000809
810 // The string table is written after symbol table.
811 uint64_t StringTableOffset =
812 SymbolTableOffset + NumSymTabSymbols * Nlist32Size;
813 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
814 StringTableOffset, StringTable.size());
815
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000816 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
817 FirstExternalSymbol, NumExternalSymbols,
818 FirstUndefinedSymbol, NumUndefinedSymbols,
819 IndirectSymbolOffset, NumIndirectSymbols);
820 }
821
822 // Write the actual section data.
823 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
824 WriteFileData(OS, *it, *this);
825
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000826 // Write the extra padding.
827 WriteZeros(SectionDataPadding);
828
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000829 // Write the relocation entries.
830 for (unsigned i = 0, e = RelocInfos.size(); i != e; ++i) {
831 Write32(RelocInfos[i].Word0);
832 Write32(RelocInfos[i].Word1);
833 }
834
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000835 // Write the symbol table data, if used.
836 if (NumSymbols) {
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000837 // Write the indirect symbol entries.
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000838 for (MCAssembler::indirect_symbol_iterator
839 it = Asm.indirect_symbol_begin(),
840 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
841 // Indirect symbols in the non lazy symbol pointer section have some
842 // special handling.
843 const MCSectionMachO &Section =
844 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
845 unsigned Type =
846 Section.getTypeAndAttributes() & MCSectionMachO::SECTION_TYPE;
847 if (Type == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
848 // If this symbol is defined and internal, mark it as such.
849 if (it->Symbol->isDefined() &&
850 !SymbolMap.lookup(it->Symbol)->isExternal()) {
851 uint32_t Flags = ISF_Local;
852 if (it->Symbol->isAbsolute())
853 Flags |= ISF_Absolute;
854 Write32(Flags);
855 continue;
856 }
857 }
858
Daniel Dunbarbe963552009-08-26 13:57:54 +0000859 Write32(SymbolMap[it->Symbol]->getIndex());
Daniel Dunbarad7c3d52009-08-26 00:18:21 +0000860 }
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000861
Daniel Dunbar0c7761b2009-08-24 11:56:58 +0000862 // FIXME: Check that offsets match computed ones.
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000863
864 // Write the symbol table entries.
Daniel Dunbar3edd9bb2009-08-22 11:41:10 +0000865 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
866 WriteNlist32(LocalSymbolData[i]);
867 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
868 WriteNlist32(ExternalSymbolData[i]);
869 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
870 WriteNlist32(UndefinedSymbolData[i]);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000871
872 // Write the string table.
873 OS << StringTable.str();
874 }
Daniel Dunbar2ae58f22009-08-22 08:28:27 +0000875 }
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000876};
877
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000878/* *** */
879
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000880MCFragment::MCFragment() : Kind(FragmentType(~0)) {
881}
882
Daniel Dunbar5e835962009-08-26 02:48:04 +0000883MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000884 : Kind(_Kind),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000885 Parent(_Parent),
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000886 FileSize(~UINT64_C(0))
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000887{
Daniel Dunbar5e835962009-08-26 02:48:04 +0000888 if (Parent)
889 Parent->getFragmentList().push_back(this);
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000890}
891
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000892MCFragment::~MCFragment() {
893}
894
Daniel Dunbar5e835962009-08-26 02:48:04 +0000895uint64_t MCFragment::getAddress() const {
896 assert(getParent() && "Missing Section!");
897 return getParent()->getAddress() + Offset;
898}
899
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000900/* *** */
901
Daniel Dunbar81e40002009-08-27 00:38:04 +0000902MCSectionData::MCSectionData() : Section(0) {}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000903
904MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A)
Daniel Dunbar81e40002009-08-27 00:38:04 +0000905 : Section(&_Section),
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000906 Alignment(1),
Daniel Dunbar5e835962009-08-26 02:48:04 +0000907 Address(~UINT64_C(0)),
Daniel Dunbar6742e342009-08-26 04:13:32 +0000908 Size(~UINT64_C(0)),
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000909 FileSize(~UINT64_C(0)),
Daniel Dunbare1ec6172010-02-02 21:44:01 +0000910 HasInstructions(false)
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000911{
912 if (A)
913 A->getSectionList().push_back(this);
914}
915
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000916/* *** */
917
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000918MCSymbolData::MCSymbolData() : Symbol(0) {}
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000919
Daniel Dunbarcb579b32009-08-31 08:08:06 +0000920MCSymbolData::MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment,
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000921 uint64_t _Offset, MCAssembler *A)
Daniel Dunbarefbb5332009-09-01 04:09:03 +0000922 : Symbol(&_Symbol), Fragment(_Fragment), Offset(_Offset),
Daniel Dunbar8f4d1462009-08-28 07:08:35 +0000923 IsExternal(false), IsPrivateExtern(false),
924 CommonSize(0), CommonAlign(0), Flags(0), Index(0)
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +0000925{
926 if (A)
927 A->getSymbolList().push_back(this);
928}
929
930/* *** */
931
Daniel Dunbara03a3682009-08-31 08:07:55 +0000932MCAssembler::MCAssembler(MCContext &_Context, raw_ostream &_OS)
933 : Context(_Context), OS(_OS), SubsectionsViaSymbols(false)
Daniel Dunbar6009db42009-08-26 21:22:22 +0000934{
935}
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +0000936
937MCAssembler::~MCAssembler() {
938}
939
Daniel Dunbaredc670f2009-08-28 05:49:04 +0000940void MCAssembler::LayoutSection(MCSectionData &SD) {
Daniel Dunbar6742e342009-08-26 04:13:32 +0000941 uint64_t Address = SD.getAddress();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +0000942
943 for (MCSectionData::iterator it = SD.begin(), ie = SD.end(); it != ie; ++it) {
944 MCFragment &F = *it;
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000945
Daniel Dunbar6742e342009-08-26 04:13:32 +0000946 F.setOffset(Address - SD.getAddress());
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000947
948 // Evaluate fragment size.
949 switch (F.getKind()) {
950 case MCFragment::FT_Align: {
951 MCAlignFragment &AF = cast<MCAlignFragment>(F);
Daniel Dunbar7eb85192009-10-16 01:58:15 +0000952
Daniel Dunbard5a8e982009-08-28 05:49:21 +0000953 uint64_t Size = OffsetToAlignment(Address, AF.getAlignment());
Daniel Dunbar6742e342009-08-26 04:13:32 +0000954 if (Size > AF.getMaxBytesToEmit())
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000955 AF.setFileSize(0);
956 else
Daniel Dunbar6742e342009-08-26 04:13:32 +0000957 AF.setFileSize(Size);
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000958 break;
959 }
960
961 case MCFragment::FT_Data:
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000962 F.setFileSize(F.getMaxFileSize());
963 break;
964
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000965 case MCFragment::FT_Fill: {
966 MCFillFragment &FF = cast<MCFillFragment>(F);
967
968 F.setFileSize(F.getMaxFileSize());
969
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000970 MCValue Target;
971 if (!FF.getValue().EvaluateAsRelocatable(Target))
972 llvm_report_error("expected relocatable expression");
973
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000974 // If the fill value is constant, thats it.
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000975 if (Target.isAbsolute())
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000976 break;
977
978 // Otherwise, add fixups for the values.
Daniel Dunbarcb7d7432010-02-11 21:29:46 +0000979 //
980 // FIXME: What we want to do here is lower this to a data fragment once we
981 // realize it will need relocations. This means that the only place we
982 // need to worry about relocations and fixing is on data fragments.
983 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i)
984 FF.getFixups().push_back(MCAsmFixup(i*FF.getValueSize(), FF.getValue(),
985 FF.getValueSize()));
Daniel Dunbar3f6a9602009-08-26 13:58:10 +0000986 break;
987 }
988
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000989 case MCFragment::FT_Org: {
990 MCOrgFragment &OF = cast<MCOrgFragment>(F);
991
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000992 MCValue Target;
993 if (!OF.getOffset().EvaluateAsRelocatable(Target))
994 llvm_report_error("expected relocatable expression");
995
996 if (!Target.isAbsolute())
Daniel Dunbard6f761e2009-08-21 23:07:38 +0000997 llvm_unreachable("FIXME: Not yet implemented!");
Daniel Dunbar1253a6f2009-10-16 01:58:03 +0000998 uint64_t OrgOffset = Target.getConstant();
Daniel Dunbar6742e342009-08-26 04:13:32 +0000999 uint64_t Offset = Address - SD.getAddress();
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001000
1001 // FIXME: We need a way to communicate this error.
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001002 if (OrgOffset < Offset)
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001003 llvm_report_error("invalid .org offset '" + Twine(OrgOffset) +
Daniel Dunbar6742e342009-08-26 04:13:32 +00001004 "' (at offset '" + Twine(Offset) + "'");
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001005
Daniel Dunbara5441fe2009-08-22 08:27:54 +00001006 F.setFileSize(OrgOffset - Offset);
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001007 break;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001008 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001009
1010 case MCFragment::FT_ZeroFill: {
1011 MCZeroFillFragment &ZFF = cast<MCZeroFillFragment>(F);
1012
1013 // Align the fragment offset; it is safe to adjust the offset freely since
1014 // this is only in virtual sections.
1015 uint64_t Aligned = RoundUpToAlignment(Address, ZFF.getAlignment());
1016 F.setOffset(Aligned - SD.getAddress());
1017
1018 // FIXME: This is misnamed.
1019 F.setFileSize(ZFF.getSize());
1020 break;
1021 }
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001022 }
1023
Daniel Dunbar6742e342009-08-26 04:13:32 +00001024 Address += F.getFileSize();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001025 }
1026
Daniel Dunbar6742e342009-08-26 04:13:32 +00001027 // Set the section sizes.
1028 SD.setSize(Address - SD.getAddress());
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001029 if (isVirtualSection(SD.getSection()))
1030 SD.setFileSize(0);
1031 else
1032 SD.setFileSize(Address - SD.getAddress());
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001033}
1034
1035/// WriteFileData - Write the \arg F data to the output file.
1036static void WriteFileData(raw_ostream &OS, const MCFragment &F,
1037 MachObjectWriter &MOW) {
1038 uint64_t Start = OS.tell();
1039 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001040
Daniel Dunbar0adcd352009-08-25 21:10:45 +00001041 ++EmittedFragments;
1042
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001043 // FIXME: Embed in fragments instead?
1044 switch (F.getKind()) {
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001045 case MCFragment::FT_Align: {
1046 MCAlignFragment &AF = cast<MCAlignFragment>(F);
1047 uint64_t Count = AF.getFileSize() / AF.getValueSize();
1048
1049 // FIXME: This error shouldn't actually occur (the front end should emit
1050 // multiple .align directives to enforce the semantics it wants), but is
1051 // severe enough that we want to report it. How to handle this?
1052 if (Count * AF.getValueSize() != AF.getFileSize())
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001053 llvm_report_error("undefined .align directive, value size '" +
1054 Twine(AF.getValueSize()) +
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001055 "' is not a divisor of padding size '" +
1056 Twine(AF.getFileSize()) + "'");
1057
1058 for (uint64_t i = 0; i != Count; ++i) {
1059 switch (AF.getValueSize()) {
1060 default:
1061 assert(0 && "Invalid size!");
1062 case 1: MOW.Write8 (uint8_t (AF.getValue())); break;
1063 case 2: MOW.Write16(uint16_t(AF.getValue())); break;
1064 case 4: MOW.Write32(uint32_t(AF.getValue())); break;
1065 case 8: MOW.Write64(uint64_t(AF.getValue())); break;
1066 }
1067 }
1068 break;
1069 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001070
1071 case MCFragment::FT_Data:
1072 OS << cast<MCDataFragment>(F).getContents().str();
1073 break;
1074
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001075 case MCFragment::FT_Fill: {
1076 MCFillFragment &FF = cast<MCFillFragment>(F);
1077
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001078 int64_t Value = 0;
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001079
1080 MCValue Target;
1081 if (!FF.getValue().EvaluateAsRelocatable(Target))
1082 llvm_report_error("expected relocatable expression");
1083
1084 if (Target.isAbsolute())
1085 Value = Target.getConstant();
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001086 for (uint64_t i = 0, e = FF.getCount(); i != e; ++i) {
Daniel Dunbar1253a6f2009-10-16 01:58:03 +00001087 if (!Target.isAbsolute()) {
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001088 // Find the fixup.
1089 //
Daniel Dunbarcb7d7432010-02-11 21:29:46 +00001090 // FIXME: Find a better way to write in the fixes (move to
1091 // MCDataFragment).
1092 const MCAsmFixup *Fixup = FF.LookupFixup(i * FF.getValueSize());
Daniel Dunbar3f6a9602009-08-26 13:58:10 +00001093 assert(Fixup && "Missing fixup for fill value!");
1094 Value = Fixup->FixedValue;
1095 }
1096
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001097 switch (FF.getValueSize()) {
1098 default:
1099 assert(0 && "Invalid size!");
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001100 case 1: MOW.Write8 (uint8_t (Value)); break;
1101 case 2: MOW.Write16(uint16_t(Value)); break;
1102 case 4: MOW.Write32(uint32_t(Value)); break;
1103 case 8: MOW.Write64(uint64_t(Value)); break;
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001104 }
1105 }
1106 break;
1107 }
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001108
Daniel Dunbard6f761e2009-08-21 23:07:38 +00001109 case MCFragment::FT_Org: {
1110 MCOrgFragment &OF = cast<MCOrgFragment>(F);
1111
1112 for (uint64_t i = 0, e = OF.getFileSize(); i != e; ++i)
1113 MOW.Write8(uint8_t(OF.getValue()));
1114
1115 break;
1116 }
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001117
1118 case MCFragment::FT_ZeroFill: {
1119 assert(0 && "Invalid zero fill fragment in concrete section!");
1120 break;
1121 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001122 }
1123
1124 assert(OS.tell() - Start == F.getFileSize());
1125}
1126
1127/// WriteFileData - Write the \arg SD data to the output file.
1128static void WriteFileData(raw_ostream &OS, const MCSectionData &SD,
1129 MachObjectWriter &MOW) {
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001130 // Ignore virtual sections.
1131 if (isVirtualSection(SD.getSection())) {
1132 assert(SD.getFileSize() == 0);
1133 return;
1134 }
1135
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001136 uint64_t Start = OS.tell();
1137 (void) Start;
Daniel Dunbar7eb85192009-10-16 01:58:15 +00001138
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001139 for (MCSectionData::const_iterator it = SD.begin(),
1140 ie = SD.end(); it != ie; ++it)
1141 WriteFileData(OS, *it, MOW);
1142
Daniel Dunbar6742e342009-08-26 04:13:32 +00001143 // Add section padding.
1144 assert(SD.getFileSize() >= SD.getSize() && "Invalid section sizes!");
1145 MOW.WriteZeros(SD.getFileSize() - SD.getSize());
1146
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001147 assert(OS.tell() - Start == SD.getFileSize());
1148}
1149
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001150void MCAssembler::Finish() {
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001151 // Layout the concrete sections and fragments.
Daniel Dunbar5e835962009-08-26 02:48:04 +00001152 uint64_t Address = 0;
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001153 MCSectionData *Prev = 0;
1154 for (iterator it = begin(), ie = end(); it != ie; ++it) {
Daniel Dunbar6742e342009-08-26 04:13:32 +00001155 MCSectionData &SD = *it;
1156
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001157 // Skip virtual sections.
1158 if (isVirtualSection(SD.getSection()))
1159 continue;
1160
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001161 // Align this section if necessary by adding padding bytes to the previous
1162 // section.
1163 if (uint64_t Pad = OffsetToAlignment(Address, it->getAlignment())) {
1164 assert(Prev && "Missing prev section!");
1165 Prev->setFileSize(Prev->getFileSize() + Pad);
1166 Address += Pad;
1167 }
Daniel Dunbar6742e342009-08-26 04:13:32 +00001168
1169 // Layout the section fragments and its size.
1170 SD.setAddress(Address);
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001171 LayoutSection(SD);
Daniel Dunbar6742e342009-08-26 04:13:32 +00001172 Address += SD.getFileSize();
Daniel Dunbaredc670f2009-08-28 05:49:04 +00001173
1174 Prev = &SD;
Daniel Dunbar5e835962009-08-26 02:48:04 +00001175 }
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001176
Daniel Dunbard5a8e982009-08-28 05:49:21 +00001177 // Layout the virtual sections.
1178 for (iterator it = begin(), ie = end(); it != ie; ++it) {
1179 MCSectionData &SD = *it;
1180
1181 if (!isVirtualSection(SD.getSection()))
1182 continue;
1183
1184 SD.setAddress(Address);
1185 LayoutSection(SD);
1186 Address += SD.getSize();
1187 }
1188
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001189 // Write the object file.
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001190 MachObjectWriter MOW(OS);
Daniel Dunbarf3d2ef02009-08-22 10:13:24 +00001191 MOW.WriteObject(*this);
Daniel Dunbar0705fbf2009-08-21 18:29:01 +00001192
Daniel Dunbarfb4a6b32009-08-21 09:11:24 +00001193 OS.flush();
1194}