blob: a0f708244d7ea49b9584009ea4030712abf79ef1 [file] [log] [blame]
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001//===- lib/MC/MachObjectWriter.cpp - Mach-O File Writer -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/MC/MachObjectWriter.h"
11#include "llvm/ADT/StringMap.h"
12#include "llvm/ADT/Twine.h"
13#include "llvm/MC/MCAssembler.h"
Daniel Dunbar207e06e2010-03-24 03:43:40 +000014#include "llvm/MC/MCAsmLayout.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000015#include "llvm/MC/MCExpr.h"
16#include "llvm/MC/MCObjectWriter.h"
17#include "llvm/MC/MCSectionMachO.h"
18#include "llvm/MC/MCSymbol.h"
Kevin Enderbya6eeb6e2010-05-07 21:44:23 +000019#include "llvm/MC/MCMachOSymbolFlags.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000020#include "llvm/MC/MCValue.h"
21#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/MachO.h"
23#include "llvm/Target/TargetAsmBackend.h"
24
25// FIXME: Gross.
26#include "../Target/X86/X86FixupKinds.h"
27
28#include <vector>
29using namespace llvm;
30
31static unsigned getFixupKindLog2Size(unsigned Kind) {
32 switch (Kind) {
33 default: llvm_unreachable("invalid fixup kind!");
34 case X86::reloc_pcrel_1byte:
35 case FK_Data_1: return 0;
36 case FK_Data_2: return 1;
37 case X86::reloc_pcrel_4byte:
38 case X86::reloc_riprel_4byte:
Daniel Dunbar602b40f2010-03-19 18:07:55 +000039 case X86::reloc_riprel_4byte_movq_load:
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000040 case FK_Data_4: return 2;
41 case FK_Data_8: return 3;
42 }
43}
44
45static bool isFixupKindPCRel(unsigned Kind) {
46 switch (Kind) {
47 default:
48 return false;
49 case X86::reloc_pcrel_1byte:
50 case X86::reloc_pcrel_4byte:
51 case X86::reloc_riprel_4byte:
Daniel Dunbar602b40f2010-03-19 18:07:55 +000052 case X86::reloc_riprel_4byte_movq_load:
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000053 return true;
54 }
55}
56
Daniel Dunbar602b40f2010-03-19 18:07:55 +000057static bool isFixupKindRIPRel(unsigned Kind) {
58 return Kind == X86::reloc_riprel_4byte ||
59 Kind == X86::reloc_riprel_4byte_movq_load;
60}
61
Daniel Dunbare9460ec2010-05-10 23:15:13 +000062static bool doesSymbolRequireExternRelocation(MCSymbolData *SD) {
63 // Undefined symbols are always extern.
64 if (SD->Symbol->isUndefined())
65 return true;
66
67 // References to weak definitions require external relocation entries; the
68 // definition may not always be the one in the same object file.
69 if (SD->getFlags() & SF_WeakDefinition)
70 return true;
71
72 // Otherwise, we can use an internal relocation.
73 return false;
74}
75
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000076namespace {
77
78class MachObjectWriterImpl {
79 // See <mach-o/loader.h>.
80 enum {
81 Header_Magic32 = 0xFEEDFACE,
82 Header_Magic64 = 0xFEEDFACF
83 };
84
85 enum {
86 Header32Size = 28,
87 Header64Size = 32,
88 SegmentLoadCommand32Size = 56,
89 SegmentLoadCommand64Size = 72,
90 Section32Size = 68,
91 Section64Size = 80,
92 SymtabLoadCommandSize = 24,
93 DysymtabLoadCommandSize = 80,
94 Nlist32Size = 12,
95 Nlist64Size = 16,
96 RelocationInfoSize = 8
97 };
98
99 enum HeaderFileType {
100 HFT_Object = 0x1
101 };
102
103 enum HeaderFlags {
104 HF_SubsectionsViaSymbols = 0x2000
105 };
106
107 enum LoadCommandType {
108 LCT_Segment = 0x1,
109 LCT_Symtab = 0x2,
110 LCT_Dysymtab = 0xb,
111 LCT_Segment64 = 0x19
112 };
113
114 // See <mach-o/nlist.h>.
115 enum SymbolTypeType {
116 STT_Undefined = 0x00,
117 STT_Absolute = 0x02,
118 STT_Section = 0x0e
119 };
120
121 enum SymbolTypeFlags {
122 // If any of these bits are set, then the entry is a stab entry number (see
123 // <mach-o/stab.h>. Otherwise the other masks apply.
124 STF_StabsEntryMask = 0xe0,
125
126 STF_TypeMask = 0x0e,
127 STF_External = 0x01,
128 STF_PrivateExtern = 0x10
129 };
130
131 /// IndirectSymbolFlags - Flags for encoding special values in the indirect
132 /// symbol entry.
133 enum IndirectSymbolFlags {
134 ISF_Local = 0x80000000,
135 ISF_Absolute = 0x40000000
136 };
137
138 /// RelocationFlags - Special flags for addresses.
139 enum RelocationFlags {
140 RF_Scattered = 0x80000000
141 };
142
143 enum RelocationInfoType {
144 RIT_Vanilla = 0,
145 RIT_Pair = 1,
146 RIT_Difference = 2,
147 RIT_PreboundLazyPointer = 3,
148 RIT_LocalDifference = 4
149 };
150
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000151 /// X86_64 uses its own relocation types.
152 enum RelocationInfoTypeX86_64 {
153 RIT_X86_64_Unsigned = 0,
154 RIT_X86_64_Signed = 1,
155 RIT_X86_64_Branch = 2,
156 RIT_X86_64_GOTLoad = 3,
157 RIT_X86_64_GOT = 4,
158 RIT_X86_64_Subtractor = 5,
159 RIT_X86_64_Signed1 = 6,
160 RIT_X86_64_Signed2 = 7,
161 RIT_X86_64_Signed4 = 8
162 };
163
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000164 /// MachSymbolData - Helper struct for containing some precomputed information
165 /// on symbols.
166 struct MachSymbolData {
167 MCSymbolData *SymbolData;
168 uint64_t StringIndex;
169 uint8_t SectionIndex;
170
171 // Support lexicographic sorting.
172 bool operator<(const MachSymbolData &RHS) const {
173 const std::string &Name = SymbolData->getSymbol().getName();
174 return Name < RHS.SymbolData->getSymbol().getName();
175 }
176 };
177
178 /// @name Relocation Data
179 /// @{
180
181 struct MachRelocationEntry {
182 uint32_t Word0;
183 uint32_t Word1;
184 };
185
186 llvm::DenseMap<const MCSectionData*,
187 std::vector<MachRelocationEntry> > Relocations;
188
189 /// @}
190 /// @name Symbol Table Data
191 /// @{
192
193 SmallString<256> StringTable;
194 std::vector<MachSymbolData> LocalSymbolData;
195 std::vector<MachSymbolData> ExternalSymbolData;
196 std::vector<MachSymbolData> UndefinedSymbolData;
197
198 /// @}
199
200 MachObjectWriter *Writer;
201
202 raw_ostream &OS;
203
204 unsigned Is64Bit : 1;
205
206public:
207 MachObjectWriterImpl(MachObjectWriter *_Writer, bool _Is64Bit)
208 : Writer(_Writer), OS(Writer->getStream()), Is64Bit(_Is64Bit) {
209 }
210
211 void Write8(uint8_t Value) { Writer->Write8(Value); }
212 void Write16(uint16_t Value) { Writer->Write16(Value); }
213 void Write32(uint32_t Value) { Writer->Write32(Value); }
214 void Write64(uint64_t Value) { Writer->Write64(Value); }
215 void WriteZeros(unsigned N) { Writer->WriteZeros(N); }
216 void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
217 Writer->WriteBytes(Str, ZeroFillSize);
218 }
219
220 void WriteHeader(unsigned NumLoadCommands, unsigned LoadCommandsSize,
221 bool SubsectionsViaSymbols) {
222 uint32_t Flags = 0;
223
224 if (SubsectionsViaSymbols)
225 Flags |= HF_SubsectionsViaSymbols;
226
227 // struct mach_header (28 bytes) or
228 // struct mach_header_64 (32 bytes)
229
230 uint64_t Start = OS.tell();
231 (void) Start;
232
233 Write32(Is64Bit ? Header_Magic64 : Header_Magic32);
234
235 // FIXME: Support cputype.
236 Write32(Is64Bit ? MachO::CPUTypeX86_64 : MachO::CPUTypeI386);
237 // FIXME: Support cpusubtype.
238 Write32(MachO::CPUSubType_I386_ALL);
239 Write32(HFT_Object);
240 Write32(NumLoadCommands); // Object files have a single load command, the
241 // segment.
242 Write32(LoadCommandsSize);
243 Write32(Flags);
244 if (Is64Bit)
245 Write32(0); // reserved
246
247 assert(OS.tell() - Start == Is64Bit ? Header64Size : Header32Size);
248 }
249
250 /// WriteSegmentLoadCommand - Write a segment load command.
251 ///
252 /// \arg NumSections - The number of sections in this segment.
253 /// \arg SectionDataSize - The total size of the sections.
254 void WriteSegmentLoadCommand(unsigned NumSections,
255 uint64_t VMSize,
256 uint64_t SectionDataStartOffset,
257 uint64_t SectionDataSize) {
258 // struct segment_command (56 bytes) or
259 // struct segment_command_64 (72 bytes)
260
261 uint64_t Start = OS.tell();
262 (void) Start;
263
264 unsigned SegmentLoadCommandSize = Is64Bit ? SegmentLoadCommand64Size :
265 SegmentLoadCommand32Size;
266 Write32(Is64Bit ? LCT_Segment64 : LCT_Segment);
267 Write32(SegmentLoadCommandSize +
268 NumSections * (Is64Bit ? Section64Size : Section32Size));
269
270 WriteBytes("", 16);
271 if (Is64Bit) {
272 Write64(0); // vmaddr
273 Write64(VMSize); // vmsize
274 Write64(SectionDataStartOffset); // file offset
275 Write64(SectionDataSize); // file size
276 } else {
277 Write32(0); // vmaddr
278 Write32(VMSize); // vmsize
279 Write32(SectionDataStartOffset); // file offset
280 Write32(SectionDataSize); // file size
281 }
282 Write32(0x7); // maxprot
283 Write32(0x7); // initprot
284 Write32(NumSections);
285 Write32(0); // flags
286
287 assert(OS.tell() - Start == SegmentLoadCommandSize);
288 }
289
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000290 void WriteSection(const MCAssembler &Asm, const MCAsmLayout &Layout,
291 const MCSectionData &SD, uint64_t FileOffset,
292 uint64_t RelocationsStart, unsigned NumRelocations) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000293 uint64_t SectionSize = Layout.getSectionSize(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000294
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000295 // The offset is unused for virtual sections.
296 if (Asm.getBackend().isVirtualSection(SD.getSection())) {
Daniel Dunbarb026d642010-03-25 07:10:05 +0000297 assert(Layout.getSectionFileSize(&SD) == 0 && "Invalid file size!");
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000298 FileOffset = 0;
299 }
300
301 // struct section (68 bytes) or
302 // struct section_64 (80 bytes)
303
304 uint64_t Start = OS.tell();
305 (void) Start;
306
307 // FIXME: cast<> support!
308 const MCSectionMachO &Section =
309 static_cast<const MCSectionMachO&>(SD.getSection());
310 WriteBytes(Section.getSectionName(), 16);
311 WriteBytes(Section.getSegmentName(), 16);
312 if (Is64Bit) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000313 Write64(Layout.getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000314 Write64(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000315 } else {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000316 Write32(Layout.getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000317 Write32(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000318 }
319 Write32(FileOffset);
320
321 unsigned Flags = Section.getTypeAndAttributes();
322 if (SD.hasInstructions())
323 Flags |= MCSectionMachO::S_ATTR_SOME_INSTRUCTIONS;
324
325 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
326 Write32(Log2_32(SD.getAlignment()));
327 Write32(NumRelocations ? RelocationsStart : 0);
328 Write32(NumRelocations);
329 Write32(Flags);
330 Write32(0); // reserved1
331 Write32(Section.getStubSize()); // reserved2
332 if (Is64Bit)
333 Write32(0); // reserved3
334
335 assert(OS.tell() - Start == Is64Bit ? Section64Size : Section32Size);
336 }
337
338 void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
339 uint32_t StringTableOffset,
340 uint32_t StringTableSize) {
341 // struct symtab_command (24 bytes)
342
343 uint64_t Start = OS.tell();
344 (void) Start;
345
346 Write32(LCT_Symtab);
347 Write32(SymtabLoadCommandSize);
348 Write32(SymbolOffset);
349 Write32(NumSymbols);
350 Write32(StringTableOffset);
351 Write32(StringTableSize);
352
353 assert(OS.tell() - Start == SymtabLoadCommandSize);
354 }
355
356 void WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
357 uint32_t NumLocalSymbols,
358 uint32_t FirstExternalSymbol,
359 uint32_t NumExternalSymbols,
360 uint32_t FirstUndefinedSymbol,
361 uint32_t NumUndefinedSymbols,
362 uint32_t IndirectSymbolOffset,
363 uint32_t NumIndirectSymbols) {
364 // struct dysymtab_command (80 bytes)
365
366 uint64_t Start = OS.tell();
367 (void) Start;
368
369 Write32(LCT_Dysymtab);
370 Write32(DysymtabLoadCommandSize);
371 Write32(FirstLocalSymbol);
372 Write32(NumLocalSymbols);
373 Write32(FirstExternalSymbol);
374 Write32(NumExternalSymbols);
375 Write32(FirstUndefinedSymbol);
376 Write32(NumUndefinedSymbols);
377 Write32(0); // tocoff
378 Write32(0); // ntoc
379 Write32(0); // modtaboff
380 Write32(0); // nmodtab
381 Write32(0); // extrefsymoff
382 Write32(0); // nextrefsyms
383 Write32(IndirectSymbolOffset);
384 Write32(NumIndirectSymbols);
385 Write32(0); // extreloff
386 Write32(0); // nextrel
387 Write32(0); // locreloff
388 Write32(0); // nlocrel
389
390 assert(OS.tell() - Start == DysymtabLoadCommandSize);
391 }
392
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000393 void WriteNlist(MachSymbolData &MSD, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000394 MCSymbolData &Data = *MSD.SymbolData;
395 const MCSymbol &Symbol = Data.getSymbol();
396 uint8_t Type = 0;
397 uint16_t Flags = Data.getFlags();
398 uint32_t Address = 0;
399
400 // Set the N_TYPE bits. See <mach-o/nlist.h>.
401 //
402 // FIXME: Are the prebound or indirect fields possible here?
403 if (Symbol.isUndefined())
404 Type = STT_Undefined;
405 else if (Symbol.isAbsolute())
406 Type = STT_Absolute;
407 else
408 Type = STT_Section;
409
410 // FIXME: Set STAB bits.
411
412 if (Data.isPrivateExtern())
413 Type |= STF_PrivateExtern;
414
415 // Set external bit.
416 if (Data.isExternal() || Symbol.isUndefined())
417 Type |= STF_External;
418
419 // Compute the symbol address.
420 if (Symbol.isDefined()) {
421 if (Symbol.isAbsolute()) {
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000422 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000423 } else {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000424 Address = Layout.getSymbolAddress(&Data);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000425 }
426 } else if (Data.isCommon()) {
427 // Common symbols are encoded with the size in the address
428 // field, and their alignment in the flags.
429 Address = Data.getCommonSize();
430
431 // Common alignment is packed into the 'desc' bits.
432 if (unsigned Align = Data.getCommonAlignment()) {
433 unsigned Log2Size = Log2_32(Align);
434 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
435 if (Log2Size > 15)
Chris Lattner75361b62010-04-07 22:58:41 +0000436 report_fatal_error("invalid 'common' alignment '" +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000437 Twine(Align) + "'");
438 // FIXME: Keep this mask with the SymbolFlags enumeration.
439 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
440 }
441 }
442
443 // struct nlist (12 bytes)
444
445 Write32(MSD.StringIndex);
446 Write8(Type);
447 Write8(MSD.SectionIndex);
448
449 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
450 // value.
451 Write16(Flags);
452 if (Is64Bit)
453 Write64(Address);
454 else
455 Write32(Address);
456 }
457
Daniel Dunbar35b06572010-03-22 23:16:43 +0000458 // FIXME: We really need to improve the relocation validation. Basically, we
459 // want to implement a separate computation which evaluates the relocation
460 // entry as the linker would, and verifies that the resultant fixup value is
461 // exactly what the encoder wanted. This will catch several classes of
462 // problems:
463 //
464 // - Relocation entry bugs, the two algorithms are unlikely to have the same
465 // exact bug.
466 //
467 // - Relaxation issues, where we forget to relax something.
468 //
469 // - Input errors, where something cannot be correctly encoded. 'as' allows
470 // these through in many cases.
471
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000472 void RecordX86_64Relocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000473 const MCFragment *Fragment,
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000474 const MCAsmFixup &Fixup, MCValue Target,
475 uint64_t &FixedValue) {
476 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
477 unsigned IsRIPRel = isFixupKindRIPRel(Fixup.Kind);
478 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
479
480 // See <reloc.h>.
Daniel Dunbar640e9482010-05-11 23:53:07 +0000481 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000482 int64_t Value = 0;
483 unsigned Index = 0;
484 unsigned IsExtern = 0;
485 unsigned Type = 0;
486
487 Value = Target.getConstant();
488
489 if (IsPCRel) {
490 // Compensate for the relocation offset, Darwin x86_64 relocations only
491 // have the addend and appear to have attempted to define it to be the
492 // actual expression addend without the PCrel bias. However, instructions
493 // with data following the relocation are not accomodated for (see comment
494 // below regarding SIGNED{1,2,4}), so it isn't exactly that either.
Benjamin Kramer454c4ce2010-04-08 15:25:57 +0000495 Value += 1LL << Log2Size;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000496 }
497
498 if (Target.isAbsolute()) { // constant
499 // SymbolNum of 0 indicates the absolute section.
500 Type = RIT_X86_64_Unsigned;
501 Index = 0;
502
503 // FIXME: I believe this is broken, I don't think the linker can
504 // understand it. I think it would require a local relocation, but I'm not
505 // sure if that would work either. The official way to get an absolute
506 // PCrel relocation is to use an absolute symbol (which we don't support
507 // yet).
508 if (IsPCRel) {
509 IsExtern = 1;
510 Type = RIT_X86_64_Branch;
511 }
512 } else if (Target.getSymB()) { // A - B + constant
513 const MCSymbol *A = &Target.getSymA()->getSymbol();
514 MCSymbolData &A_SD = Asm.getSymbolData(*A);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000515 const MCSymbolData *A_Base = Asm.getAtom(Layout, &A_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000516
517 const MCSymbol *B = &Target.getSymB()->getSymbol();
518 MCSymbolData &B_SD = Asm.getSymbolData(*B);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000519 const MCSymbolData *B_Base = Asm.getAtom(Layout, &B_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000520
521 // Neither symbol can be modified.
522 if (Target.getSymA()->getKind() != MCSymbolRefExpr::VK_None ||
523 Target.getSymB()->getKind() != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000524 report_fatal_error("unsupported relocation of modified symbol");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000525
526 // We don't support PCrel relocations of differences. Darwin 'as' doesn't
527 // implement most of these correctly.
528 if (IsPCRel)
Chris Lattner75361b62010-04-07 22:58:41 +0000529 report_fatal_error("unsupported pc-relative relocation of difference");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000530
531 // We don't currently support any situation where one or both of the
532 // symbols would require a local relocation. This is almost certainly
533 // unused and may not be possible to encode correctly.
534 if (!A_Base || !B_Base)
Chris Lattner75361b62010-04-07 22:58:41 +0000535 report_fatal_error("unsupported local relocations in difference");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000536
537 // Darwin 'as' doesn't emit correct relocations for this (it ends up with
538 // a single SIGNED relocation); reject it for now.
539 if (A_Base == B_Base)
Chris Lattner75361b62010-04-07 22:58:41 +0000540 report_fatal_error("unsupported relocation with identical base");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000541
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000542 Value += Layout.getSymbolAddress(&A_SD) - Layout.getSymbolAddress(A_Base);
543 Value -= Layout.getSymbolAddress(&B_SD) - Layout.getSymbolAddress(B_Base);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000544
545 Index = A_Base->getIndex();
546 IsExtern = 1;
547 Type = RIT_X86_64_Unsigned;
548
549 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000550 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000551 MRE.Word1 = ((Index << 0) |
552 (IsPCRel << 24) |
553 (Log2Size << 25) |
554 (IsExtern << 27) |
555 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000556 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000557
558 Index = B_Base->getIndex();
559 IsExtern = 1;
560 Type = RIT_X86_64_Subtractor;
561 } else {
562 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
563 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000564 const MCSymbolData *Base = Asm.getAtom(Layout, &SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000565
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000566 // Relocations inside debug sections always use local relocations when
567 // possible. This seems to be done because the debugger doesn't fully
568 // understand x86_64 relocation entries, and expects to find values that
569 // have already been fixed up.
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000570 if (Symbol->isInSection()) {
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000571 const MCSectionMachO &Section = static_cast<const MCSectionMachO&>(
572 Fragment->getParent()->getSection());
573 if (Section.hasAttribute(MCSectionMachO::S_ATTR_DEBUG))
574 Base = 0;
575 }
576
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000577 // x86_64 almost always uses external relocations, except when there is no
578 // symbol to use as a base address (a local symbol with no preceeding
579 // non-local symbol).
580 if (Base) {
581 Index = Base->getIndex();
582 IsExtern = 1;
583
584 // Add the local offset, if needed.
585 if (Base != &SD)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000586 Value += Layout.getSymbolAddress(&SD) - Layout.getSymbolAddress(Base);
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000587 } else if (Symbol->isInSection()) {
Daniel Dunbar8fb04032010-03-25 08:08:54 +0000588 // The index is the section ordinal (1-based).
589 Index = SD.getFragment()->getParent()->getOrdinal() + 1;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000590 IsExtern = 0;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000591 Value += Layout.getSymbolAddress(&SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000592
593 if (IsPCRel)
Daniel Dunbar640e9482010-05-11 23:53:07 +0000594 Value -= FixupOffset + (1 << Log2Size);
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000595 } else {
596 report_fatal_error("unsupported relocation of undefined symbol '" +
597 Symbol->getName() + "'");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000598 }
599
600 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
601 if (IsPCRel) {
602 if (IsRIPRel) {
603 if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
604 // x86_64 distinguishes movq foo@GOTPCREL so that the linker can
605 // rewrite the movq to an leaq at link time if the symbol ends up in
606 // the same linkage unit.
607 if (unsigned(Fixup.Kind) == X86::reloc_riprel_4byte_movq_load)
608 Type = RIT_X86_64_GOTLoad;
609 else
610 Type = RIT_X86_64_GOT;
611 } else if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000612 report_fatal_error("unsupported symbol modifier in relocation");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000613 else
614 Type = RIT_X86_64_Signed;
615 } else {
616 if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000617 report_fatal_error("unsupported symbol modifier in branch "
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000618 "relocation");
619
620 Type = RIT_X86_64_Branch;
621 }
622
623 // The Darwin x86_64 relocation format has a problem where it cannot
624 // encode an address (L<foo> + <constant>) which is outside the atom
625 // containing L<foo>. Generally, this shouldn't occur but it does happen
626 // when we have a RIPrel instruction with data following the relocation
627 // entry (e.g., movb $012, L0(%rip)). Even with the PCrel adjustment
628 // Darwin x86_64 uses, the offset is still negative and the linker has
629 // no way to recognize this.
630 //
631 // To work around this, Darwin uses several special relocation types to
632 // indicate the offsets. However, the specification or implementation of
633 // these seems to also be incomplete; they should adjust the addend as
634 // well based on the actual encoded instruction (the additional bias),
635 // but instead appear to just look at the final offset.
636 if (IsRIPRel) {
Benjamin Kramer454c4ce2010-04-08 15:25:57 +0000637 switch (-(Target.getConstant() + (1LL << Log2Size))) {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000638 case 1: Type = RIT_X86_64_Signed1; break;
639 case 2: Type = RIT_X86_64_Signed2; break;
640 case 4: Type = RIT_X86_64_Signed4; break;
641 }
642 }
643 } else {
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000644 if (Modifier == MCSymbolRefExpr::VK_GOT) {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000645 Type = RIT_X86_64_GOT;
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000646 } else if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
647 // GOTPCREL is allowed as a modifier on non-PCrel instructions, in
648 // which case all we do is set the PCrel bit in the relocation entry;
649 // this is used with exception handling, for example. The source is
650 // required to include any necessary offset directly.
651 Type = RIT_X86_64_GOT;
652 IsPCRel = 1;
653 } else if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000654 report_fatal_error("unsupported symbol modifier in relocation");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000655 else
656 Type = RIT_X86_64_Unsigned;
657 }
658 }
659
660 // x86_64 always writes custom values into the fixups.
661 FixedValue = Value;
662
663 // struct relocation_info (8 bytes)
664 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000665 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000666 MRE.Word1 = ((Index << 0) |
667 (IsPCRel << 24) |
668 (Log2Size << 25) |
669 (IsExtern << 27) |
670 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000671 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000672 }
673
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000674 void RecordScatteredRelocation(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000675 const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000676 const MCFragment *Fragment,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000677 const MCAsmFixup &Fixup, MCValue Target,
678 uint64_t &FixedValue) {
Daniel Dunbar640e9482010-05-11 23:53:07 +0000679 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000680 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
681 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
682 unsigned Type = RIT_Vanilla;
683
684 // See <reloc.h>.
685 const MCSymbol *A = &Target.getSymA()->getSymbol();
686 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
687
688 if (!A_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000689 report_fatal_error("symbol '" + A->getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000690 "' can not be undefined in a subtraction expression");
691
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000692 uint32_t Value = Layout.getSymbolAddress(A_SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000693 uint32_t Value2 = 0;
694
695 if (const MCSymbolRefExpr *B = Target.getSymB()) {
696 MCSymbolData *B_SD = &Asm.getSymbolData(B->getSymbol());
697
698 if (!B_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000699 report_fatal_error("symbol '" + B->getSymbol().getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000700 "' can not be undefined in a subtraction expression");
701
702 // Select the appropriate difference relocation type.
703 //
704 // Note that there is no longer any semantic difference between these two
705 // relocation types from the linkers point of view, this is done solely
706 // for pedantic compatibility with 'as'.
707 Type = A_SD->isExternal() ? RIT_Difference : RIT_LocalDifference;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000708 Value2 = Layout.getSymbolAddress(B_SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000709 }
710
711 // Relocations are written out in reverse order, so the PAIR comes first.
712 if (Type == RIT_Difference || Type == RIT_LocalDifference) {
713 MachRelocationEntry MRE;
714 MRE.Word0 = ((0 << 0) |
715 (RIT_Pair << 24) |
716 (Log2Size << 28) |
717 (IsPCRel << 30) |
718 RF_Scattered);
719 MRE.Word1 = Value2;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000720 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000721 }
722
723 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000724 MRE.Word0 = ((FixupOffset << 0) |
725 (Type << 24) |
726 (Log2Size << 28) |
727 (IsPCRel << 30) |
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000728 RF_Scattered);
729 MRE.Word1 = Value;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000730 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000731 }
732
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000733 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
734 const MCFragment *Fragment, const MCAsmFixup &Fixup,
735 MCValue Target, uint64_t &FixedValue) {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000736 if (Is64Bit) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000737 RecordX86_64Relocation(Asm, Layout, Fragment, Fixup, Target, FixedValue);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000738 return;
739 }
740
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000741 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
742 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
743
744 // If this is a difference or a defined symbol plus an offset, then we need
745 // a scattered relocation entry.
Daniel Dunbara8251fa2010-05-10 23:15:20 +0000746 // Differences always require scattered relocations.
747 if (Target.getSymB())
748 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
749 Target, FixedValue);
750
751 // Get the symbol data, if any.
752 MCSymbolData *SD = 0;
753 if (Target.getSymA())
754 SD = &Asm.getSymbolData(Target.getSymA()->getSymbol());
755
756 // If this is an internal relocation with an offset, it also needs a
757 // scattered relocation entry.
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000758 uint32_t Offset = Target.getConstant();
759 if (IsPCRel)
760 Offset += 1 << Log2Size;
Daniel Dunbara8251fa2010-05-10 23:15:20 +0000761 if (Offset && SD && !doesSymbolRequireExternRelocation(SD))
762 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
763 Target, FixedValue);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000764
765 // See <reloc.h>.
Daniel Dunbar640e9482010-05-11 23:53:07 +0000766 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000767 uint32_t Value = 0;
768 unsigned Index = 0;
769 unsigned IsExtern = 0;
770 unsigned Type = 0;
771
772 if (Target.isAbsolute()) { // constant
773 // SymbolNum of 0 indicates the absolute section.
774 //
775 // FIXME: Currently, these are never generated (see code below). I cannot
776 // find a case where they are actually emitted.
777 Type = RIT_Vanilla;
778 Value = 0;
779 } else {
Daniel Dunbare9460ec2010-05-10 23:15:13 +0000780 // Check whether we need an external or internal relocation.
781 if (doesSymbolRequireExternRelocation(SD)) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000782 IsExtern = 1;
783 Index = SD->getIndex();
Daniel Dunbare9460ec2010-05-10 23:15:13 +0000784 // For external relocations, make sure to offset the fixup value to
785 // compensate for the addend of the symbol address, if it was
786 // undefined. This occurs with weak definitions, for example.
787 if (!SD->Symbol->isUndefined())
Kevin Enderbya6eeb6e2010-05-07 21:44:23 +0000788 FixedValue -= Layout.getSymbolAddress(SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000789 Value = 0;
790 } else {
Daniel Dunbar8fb04032010-03-25 08:08:54 +0000791 // The index is the section ordinal (1-based).
792 Index = SD->getFragment()->getParent()->getOrdinal() + 1;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000793 Value = Layout.getSymbolAddress(SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000794 }
795
796 Type = RIT_Vanilla;
797 }
798
799 // struct relocation_info (8 bytes)
800 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000801 MRE.Word0 = FixupOffset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000802 MRE.Word1 = ((Index << 0) |
803 (IsPCRel << 24) |
804 (Log2Size << 25) |
805 (IsExtern << 27) |
806 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000807 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000808 }
809
810 void BindIndirectSymbols(MCAssembler &Asm) {
811 // This is the point where 'as' creates actual symbols for indirect symbols
812 // (in the following two passes). It would be easier for us to do this
813 // sooner when we see the attribute, but that makes getting the order in the
814 // symbol table much more complicated than it is worth.
815 //
816 // FIXME: Revisit this when the dust settles.
817
818 // Bind non lazy symbol pointers first.
819 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
820 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
821 // FIXME: cast<> support!
822 const MCSectionMachO &Section =
823 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
824
825 if (Section.getType() != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
826 continue;
827
828 Asm.getOrCreateSymbolData(*it->Symbol);
829 }
830
831 // Then lazy symbol pointers and symbol stubs.
832 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
833 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
834 // FIXME: cast<> support!
835 const MCSectionMachO &Section =
836 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
837
838 if (Section.getType() != MCSectionMachO::S_LAZY_SYMBOL_POINTERS &&
839 Section.getType() != MCSectionMachO::S_SYMBOL_STUBS)
840 continue;
841
842 // Set the symbol type to undefined lazy, but only on construction.
843 //
844 // FIXME: Do not hardcode.
845 bool Created;
846 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
847 if (Created)
848 Entry.setFlags(Entry.getFlags() | 0x0001);
849 }
850 }
851
852 /// ComputeSymbolTable - Compute the symbol table data
853 ///
854 /// \param StringTable [out] - The string table data.
855 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
856 /// string table.
857 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
858 std::vector<MachSymbolData> &LocalSymbolData,
859 std::vector<MachSymbolData> &ExternalSymbolData,
860 std::vector<MachSymbolData> &UndefinedSymbolData) {
861 // Build section lookup table.
862 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
863 unsigned Index = 1;
864 for (MCAssembler::iterator it = Asm.begin(),
865 ie = Asm.end(); it != ie; ++it, ++Index)
866 SectionIndexMap[&it->getSection()] = Index;
867 assert(Index <= 256 && "Too many sections!");
868
869 // Index 0 is always the empty string.
870 StringMap<uint64_t> StringIndexMap;
871 StringTable += '\x00';
872
873 // Build the symbol arrays and the string table, but only for non-local
874 // symbols.
875 //
876 // The particular order that we collect the symbols and create the string
877 // table, then sort the symbols is chosen to match 'as'. Even though it
878 // doesn't matter for correctness, this is important for letting us diff .o
879 // files.
880 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
881 ie = Asm.symbol_end(); it != ie; ++it) {
882 const MCSymbol &Symbol = it->getSymbol();
883
884 // Ignore non-linker visible symbols.
885 if (!Asm.isSymbolLinkerVisible(it))
886 continue;
887
888 if (!it->isExternal() && !Symbol.isUndefined())
889 continue;
890
891 uint64_t &Entry = StringIndexMap[Symbol.getName()];
892 if (!Entry) {
893 Entry = StringTable.size();
894 StringTable += Symbol.getName();
895 StringTable += '\x00';
896 }
897
898 MachSymbolData MSD;
899 MSD.SymbolData = it;
900 MSD.StringIndex = Entry;
901
902 if (Symbol.isUndefined()) {
903 MSD.SectionIndex = 0;
904 UndefinedSymbolData.push_back(MSD);
905 } else if (Symbol.isAbsolute()) {
906 MSD.SectionIndex = 0;
907 ExternalSymbolData.push_back(MSD);
908 } else {
909 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
910 assert(MSD.SectionIndex && "Invalid section index!");
911 ExternalSymbolData.push_back(MSD);
912 }
913 }
914
915 // Now add the data for local symbols.
916 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
917 ie = Asm.symbol_end(); it != ie; ++it) {
918 const MCSymbol &Symbol = it->getSymbol();
919
920 // Ignore non-linker visible symbols.
921 if (!Asm.isSymbolLinkerVisible(it))
922 continue;
923
924 if (it->isExternal() || Symbol.isUndefined())
925 continue;
926
927 uint64_t &Entry = StringIndexMap[Symbol.getName()];
928 if (!Entry) {
929 Entry = StringTable.size();
930 StringTable += Symbol.getName();
931 StringTable += '\x00';
932 }
933
934 MachSymbolData MSD;
935 MSD.SymbolData = it;
936 MSD.StringIndex = Entry;
937
938 if (Symbol.isAbsolute()) {
939 MSD.SectionIndex = 0;
940 LocalSymbolData.push_back(MSD);
941 } else {
942 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
943 assert(MSD.SectionIndex && "Invalid section index!");
944 LocalSymbolData.push_back(MSD);
945 }
946 }
947
948 // External and undefined symbols are required to be in lexicographic order.
949 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
950 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
951
952 // Set the symbol indices.
953 Index = 0;
954 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
955 LocalSymbolData[i].SymbolData->setIndex(Index++);
956 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
957 ExternalSymbolData[i].SymbolData->setIndex(Index++);
958 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
959 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
960
961 // The string table is padded to a multiple of 4.
962 while (StringTable.size() % 4)
963 StringTable += '\x00';
964 }
965
Daniel Dunbar873decb2010-03-20 01:58:40 +0000966 void ExecutePostLayoutBinding(MCAssembler &Asm) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000967 // Create symbol data for any indirect symbols.
968 BindIndirectSymbols(Asm);
969
970 // Compute symbol table information and bind symbol indices.
971 ComputeSymbolTable(Asm, StringTable, LocalSymbolData, ExternalSymbolData,
972 UndefinedSymbolData);
973 }
974
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000975 void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000976 unsigned NumSections = Asm.size();
977
978 // The section data starts after the header, the segment load command (and
979 // section headers) and the symbol table.
980 unsigned NumLoadCommands = 1;
981 uint64_t LoadCommandsSize = Is64Bit ?
982 SegmentLoadCommand64Size + NumSections * Section64Size :
983 SegmentLoadCommand32Size + NumSections * Section32Size;
984
985 // Add the symbol table load command sizes, if used.
986 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
987 UndefinedSymbolData.size();
988 if (NumSymbols) {
989 NumLoadCommands += 2;
990 LoadCommandsSize += SymtabLoadCommandSize + DysymtabLoadCommandSize;
991 }
992
993 // Compute the total size of the section data, as well as its file size and
994 // vm size.
995 uint64_t SectionDataStart = (Is64Bit ? Header64Size : Header32Size)
996 + LoadCommandsSize;
997 uint64_t SectionDataSize = 0;
998 uint64_t SectionDataFileSize = 0;
999 uint64_t VMSize = 0;
1000 for (MCAssembler::const_iterator it = Asm.begin(),
1001 ie = Asm.end(); it != ie; ++it) {
1002 const MCSectionData &SD = *it;
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001003 uint64_t Address = Layout.getSectionAddress(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +00001004 uint64_t Size = Layout.getSectionSize(&SD);
1005 uint64_t FileSize = Layout.getSectionFileSize(&SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001006
Daniel Dunbar5d428512010-03-25 02:00:07 +00001007 VMSize = std::max(VMSize, Address + Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001008
1009 if (Asm.getBackend().isVirtualSection(SD.getSection()))
1010 continue;
1011
Daniel Dunbar5d428512010-03-25 02:00:07 +00001012 SectionDataSize = std::max(SectionDataSize, Address + Size);
1013 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001014 }
1015
1016 // The section data is padded to 4 bytes.
1017 //
1018 // FIXME: Is this machine dependent?
1019 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
1020 SectionDataFileSize += SectionDataPadding;
1021
1022 // Write the prolog, starting with the header and load command...
1023 WriteHeader(NumLoadCommands, LoadCommandsSize,
1024 Asm.getSubsectionsViaSymbols());
1025 WriteSegmentLoadCommand(NumSections, VMSize,
1026 SectionDataStart, SectionDataSize);
1027
1028 // ... and then the section headers.
1029 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
1030 for (MCAssembler::const_iterator it = Asm.begin(),
1031 ie = Asm.end(); it != ie; ++it) {
1032 std::vector<MachRelocationEntry> &Relocs = Relocations[it];
1033 unsigned NumRelocs = Relocs.size();
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001034 uint64_t SectionStart = SectionDataStart + Layout.getSectionAddress(it);
1035 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001036 RelocTableEnd += NumRelocs * RelocationInfoSize;
1037 }
1038
1039 // Write the symbol table load command, if used.
1040 if (NumSymbols) {
1041 unsigned FirstLocalSymbol = 0;
1042 unsigned NumLocalSymbols = LocalSymbolData.size();
1043 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
1044 unsigned NumExternalSymbols = ExternalSymbolData.size();
1045 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
1046 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
1047 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
1048 unsigned NumSymTabSymbols =
1049 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
1050 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
1051 uint64_t IndirectSymbolOffset = 0;
1052
1053 // If used, the indirect symbols are written after the section data.
1054 if (NumIndirectSymbols)
1055 IndirectSymbolOffset = RelocTableEnd;
1056
1057 // The symbol table is written after the indirect symbol data.
1058 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
1059
1060 // The string table is written after symbol table.
1061 uint64_t StringTableOffset =
1062 SymbolTableOffset + NumSymTabSymbols * (Is64Bit ? Nlist64Size :
1063 Nlist32Size);
1064 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
1065 StringTableOffset, StringTable.size());
1066
1067 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
1068 FirstExternalSymbol, NumExternalSymbols,
1069 FirstUndefinedSymbol, NumUndefinedSymbols,
1070 IndirectSymbolOffset, NumIndirectSymbols);
1071 }
1072
1073 // Write the actual section data.
1074 for (MCAssembler::const_iterator it = Asm.begin(),
1075 ie = Asm.end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +00001076 Asm.WriteSectionData(it, Layout, Writer);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001077
1078 // Write the extra padding.
1079 WriteZeros(SectionDataPadding);
1080
1081 // Write the relocation entries.
1082 for (MCAssembler::const_iterator it = Asm.begin(),
1083 ie = Asm.end(); it != ie; ++it) {
1084 // Write the section relocation entries, in reverse order to match 'as'
1085 // (approximately, the exact algorithm is more complicated than this).
1086 std::vector<MachRelocationEntry> &Relocs = Relocations[it];
1087 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1088 Write32(Relocs[e - i - 1].Word0);
1089 Write32(Relocs[e - i - 1].Word1);
1090 }
1091 }
1092
1093 // Write the symbol table data, if used.
1094 if (NumSymbols) {
1095 // Write the indirect symbol entries.
1096 for (MCAssembler::const_indirect_symbol_iterator
1097 it = Asm.indirect_symbol_begin(),
1098 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
1099 // Indirect symbols in the non lazy symbol pointer section have some
1100 // special handling.
1101 const MCSectionMachO &Section =
1102 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
1103 if (Section.getType() == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
1104 // If this symbol is defined and internal, mark it as such.
1105 if (it->Symbol->isDefined() &&
1106 !Asm.getSymbolData(*it->Symbol).isExternal()) {
1107 uint32_t Flags = ISF_Local;
1108 if (it->Symbol->isAbsolute())
1109 Flags |= ISF_Absolute;
1110 Write32(Flags);
1111 continue;
1112 }
1113 }
1114
1115 Write32(Asm.getSymbolData(*it->Symbol).getIndex());
1116 }
1117
1118 // FIXME: Check that offsets match computed ones.
1119
1120 // Write the symbol table entries.
1121 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001122 WriteNlist(LocalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001123 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001124 WriteNlist(ExternalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001125 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001126 WriteNlist(UndefinedSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001127
1128 // Write the string table.
1129 OS << StringTable.str();
1130 }
1131 }
1132};
1133
1134}
1135
1136MachObjectWriter::MachObjectWriter(raw_ostream &OS,
1137 bool Is64Bit,
1138 bool IsLittleEndian)
1139 : MCObjectWriter(OS, IsLittleEndian)
1140{
1141 Impl = new MachObjectWriterImpl(this, Is64Bit);
1142}
1143
1144MachObjectWriter::~MachObjectWriter() {
1145 delete (MachObjectWriterImpl*) Impl;
1146}
1147
1148void MachObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
1149 ((MachObjectWriterImpl*) Impl)->ExecutePostLayoutBinding(Asm);
1150}
1151
1152void MachObjectWriter::RecordRelocation(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001153 const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +00001154 const MCFragment *Fragment,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001155 const MCAsmFixup &Fixup, MCValue Target,
1156 uint64_t &FixedValue) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001157 ((MachObjectWriterImpl*) Impl)->RecordRelocation(Asm, Layout, Fragment, Fixup,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001158 Target, FixedValue);
1159}
1160
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001161void MachObjectWriter::WriteObject(const MCAssembler &Asm,
1162 const MCAsmLayout &Layout) {
1163 ((MachObjectWriterImpl*) Impl)->WriteObject(Asm, Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001164}