blob: fc742e4aa5c13f03343ce7402dd2c5ea83845cda [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,
Eric Christopher96ac5152010-05-26 00:02:12 +0000148 RIT_LocalDifference = 4,
149 RIT_TLV = 5
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000150 };
151
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000152 /// X86_64 uses its own relocation types.
153 enum RelocationInfoTypeX86_64 {
154 RIT_X86_64_Unsigned = 0,
155 RIT_X86_64_Signed = 1,
156 RIT_X86_64_Branch = 2,
157 RIT_X86_64_GOTLoad = 3,
158 RIT_X86_64_GOT = 4,
159 RIT_X86_64_Subtractor = 5,
160 RIT_X86_64_Signed1 = 6,
161 RIT_X86_64_Signed2 = 7,
Eric Christopher96ac5152010-05-26 00:02:12 +0000162 RIT_X86_64_Signed4 = 8,
163 RIT_X86_64_TLV = 9
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000164 };
165
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000166 /// MachSymbolData - Helper struct for containing some precomputed information
167 /// on symbols.
168 struct MachSymbolData {
169 MCSymbolData *SymbolData;
170 uint64_t StringIndex;
171 uint8_t SectionIndex;
172
173 // Support lexicographic sorting.
174 bool operator<(const MachSymbolData &RHS) const {
Benjamin Kramerc37791e2010-05-20 14:14:22 +0000175 return SymbolData->getSymbol().getName() <
176 RHS.SymbolData->getSymbol().getName();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000177 }
178 };
179
180 /// @name Relocation Data
181 /// @{
182
183 struct MachRelocationEntry {
184 uint32_t Word0;
185 uint32_t Word1;
186 };
187
188 llvm::DenseMap<const MCSectionData*,
189 std::vector<MachRelocationEntry> > Relocations;
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000190 llvm::DenseMap<const MCSectionData*, unsigned> IndirectSymBase;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000191
192 /// @}
193 /// @name Symbol Table Data
194 /// @{
195
196 SmallString<256> StringTable;
197 std::vector<MachSymbolData> LocalSymbolData;
198 std::vector<MachSymbolData> ExternalSymbolData;
199 std::vector<MachSymbolData> UndefinedSymbolData;
200
201 /// @}
202
203 MachObjectWriter *Writer;
204
205 raw_ostream &OS;
206
207 unsigned Is64Bit : 1;
208
209public:
210 MachObjectWriterImpl(MachObjectWriter *_Writer, bool _Is64Bit)
211 : Writer(_Writer), OS(Writer->getStream()), Is64Bit(_Is64Bit) {
212 }
213
214 void Write8(uint8_t Value) { Writer->Write8(Value); }
215 void Write16(uint16_t Value) { Writer->Write16(Value); }
216 void Write32(uint32_t Value) { Writer->Write32(Value); }
217 void Write64(uint64_t Value) { Writer->Write64(Value); }
218 void WriteZeros(unsigned N) { Writer->WriteZeros(N); }
219 void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
220 Writer->WriteBytes(Str, ZeroFillSize);
221 }
222
223 void WriteHeader(unsigned NumLoadCommands, unsigned LoadCommandsSize,
224 bool SubsectionsViaSymbols) {
225 uint32_t Flags = 0;
226
227 if (SubsectionsViaSymbols)
228 Flags |= HF_SubsectionsViaSymbols;
229
230 // struct mach_header (28 bytes) or
231 // struct mach_header_64 (32 bytes)
232
233 uint64_t Start = OS.tell();
234 (void) Start;
235
236 Write32(Is64Bit ? Header_Magic64 : Header_Magic32);
237
238 // FIXME: Support cputype.
239 Write32(Is64Bit ? MachO::CPUTypeX86_64 : MachO::CPUTypeI386);
240 // FIXME: Support cpusubtype.
241 Write32(MachO::CPUSubType_I386_ALL);
242 Write32(HFT_Object);
243 Write32(NumLoadCommands); // Object files have a single load command, the
244 // segment.
245 Write32(LoadCommandsSize);
246 Write32(Flags);
247 if (Is64Bit)
248 Write32(0); // reserved
249
250 assert(OS.tell() - Start == Is64Bit ? Header64Size : Header32Size);
251 }
252
253 /// WriteSegmentLoadCommand - Write a segment load command.
254 ///
255 /// \arg NumSections - The number of sections in this segment.
256 /// \arg SectionDataSize - The total size of the sections.
257 void WriteSegmentLoadCommand(unsigned NumSections,
258 uint64_t VMSize,
259 uint64_t SectionDataStartOffset,
260 uint64_t SectionDataSize) {
261 // struct segment_command (56 bytes) or
262 // struct segment_command_64 (72 bytes)
263
264 uint64_t Start = OS.tell();
265 (void) Start;
266
267 unsigned SegmentLoadCommandSize = Is64Bit ? SegmentLoadCommand64Size :
268 SegmentLoadCommand32Size;
269 Write32(Is64Bit ? LCT_Segment64 : LCT_Segment);
270 Write32(SegmentLoadCommandSize +
271 NumSections * (Is64Bit ? Section64Size : Section32Size));
272
273 WriteBytes("", 16);
274 if (Is64Bit) {
275 Write64(0); // vmaddr
276 Write64(VMSize); // vmsize
277 Write64(SectionDataStartOffset); // file offset
278 Write64(SectionDataSize); // file size
279 } else {
280 Write32(0); // vmaddr
281 Write32(VMSize); // vmsize
282 Write32(SectionDataStartOffset); // file offset
283 Write32(SectionDataSize); // file size
284 }
285 Write32(0x7); // maxprot
286 Write32(0x7); // initprot
287 Write32(NumSections);
288 Write32(0); // flags
289
290 assert(OS.tell() - Start == SegmentLoadCommandSize);
291 }
292
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000293 void WriteSection(const MCAssembler &Asm, const MCAsmLayout &Layout,
294 const MCSectionData &SD, uint64_t FileOffset,
295 uint64_t RelocationsStart, unsigned NumRelocations) {
Daniel Dunbar5d428512010-03-25 02:00:07 +0000296 uint64_t SectionSize = Layout.getSectionSize(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000297
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000298 // The offset is unused for virtual sections.
299 if (Asm.getBackend().isVirtualSection(SD.getSection())) {
Daniel Dunbarb026d642010-03-25 07:10:05 +0000300 assert(Layout.getSectionFileSize(&SD) == 0 && "Invalid file size!");
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000301 FileOffset = 0;
302 }
303
304 // struct section (68 bytes) or
305 // struct section_64 (80 bytes)
306
307 uint64_t Start = OS.tell();
308 (void) Start;
309
Daniel Dunbar56279f42010-05-18 17:28:20 +0000310 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000311 WriteBytes(Section.getSectionName(), 16);
312 WriteBytes(Section.getSegmentName(), 16);
313 if (Is64Bit) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000314 Write64(Layout.getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000315 Write64(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000316 } else {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000317 Write32(Layout.getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000318 Write32(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000319 }
320 Write32(FileOffset);
321
322 unsigned Flags = Section.getTypeAndAttributes();
323 if (SD.hasInstructions())
324 Flags |= MCSectionMachO::S_ATTR_SOME_INSTRUCTIONS;
325
326 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
327 Write32(Log2_32(SD.getAlignment()));
328 Write32(NumRelocations ? RelocationsStart : 0);
329 Write32(NumRelocations);
330 Write32(Flags);
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000331 Write32(IndirectSymBase.lookup(&SD)); // reserved1
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000332 Write32(Section.getStubSize()); // reserved2
333 if (Is64Bit)
334 Write32(0); // reserved3
335
336 assert(OS.tell() - Start == Is64Bit ? Section64Size : Section32Size);
337 }
338
339 void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
340 uint32_t StringTableOffset,
341 uint32_t StringTableSize) {
342 // struct symtab_command (24 bytes)
343
344 uint64_t Start = OS.tell();
345 (void) Start;
346
347 Write32(LCT_Symtab);
348 Write32(SymtabLoadCommandSize);
349 Write32(SymbolOffset);
350 Write32(NumSymbols);
351 Write32(StringTableOffset);
352 Write32(StringTableSize);
353
354 assert(OS.tell() - Start == SymtabLoadCommandSize);
355 }
356
357 void WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
358 uint32_t NumLocalSymbols,
359 uint32_t FirstExternalSymbol,
360 uint32_t NumExternalSymbols,
361 uint32_t FirstUndefinedSymbol,
362 uint32_t NumUndefinedSymbols,
363 uint32_t IndirectSymbolOffset,
364 uint32_t NumIndirectSymbols) {
365 // struct dysymtab_command (80 bytes)
366
367 uint64_t Start = OS.tell();
368 (void) Start;
369
370 Write32(LCT_Dysymtab);
371 Write32(DysymtabLoadCommandSize);
372 Write32(FirstLocalSymbol);
373 Write32(NumLocalSymbols);
374 Write32(FirstExternalSymbol);
375 Write32(NumExternalSymbols);
376 Write32(FirstUndefinedSymbol);
377 Write32(NumUndefinedSymbols);
378 Write32(0); // tocoff
379 Write32(0); // ntoc
380 Write32(0); // modtaboff
381 Write32(0); // nmodtab
382 Write32(0); // extrefsymoff
383 Write32(0); // nextrefsyms
384 Write32(IndirectSymbolOffset);
385 Write32(NumIndirectSymbols);
386 Write32(0); // extreloff
387 Write32(0); // nextrel
388 Write32(0); // locreloff
389 Write32(0); // nlocrel
390
391 assert(OS.tell() - Start == DysymtabLoadCommandSize);
392 }
393
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000394 void WriteNlist(MachSymbolData &MSD, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000395 MCSymbolData &Data = *MSD.SymbolData;
396 const MCSymbol &Symbol = Data.getSymbol();
397 uint8_t Type = 0;
398 uint16_t Flags = Data.getFlags();
399 uint32_t Address = 0;
400
401 // Set the N_TYPE bits. See <mach-o/nlist.h>.
402 //
403 // FIXME: Are the prebound or indirect fields possible here?
404 if (Symbol.isUndefined())
405 Type = STT_Undefined;
406 else if (Symbol.isAbsolute())
407 Type = STT_Absolute;
408 else
409 Type = STT_Section;
410
411 // FIXME: Set STAB bits.
412
413 if (Data.isPrivateExtern())
414 Type |= STF_PrivateExtern;
415
416 // Set external bit.
417 if (Data.isExternal() || Symbol.isUndefined())
418 Type |= STF_External;
419
420 // Compute the symbol address.
421 if (Symbol.isDefined()) {
422 if (Symbol.isAbsolute()) {
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000423 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000424 } else {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000425 Address = Layout.getSymbolAddress(&Data);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000426 }
427 } else if (Data.isCommon()) {
428 // Common symbols are encoded with the size in the address
429 // field, and their alignment in the flags.
430 Address = Data.getCommonSize();
431
432 // Common alignment is packed into the 'desc' bits.
433 if (unsigned Align = Data.getCommonAlignment()) {
434 unsigned Log2Size = Log2_32(Align);
435 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
436 if (Log2Size > 15)
Chris Lattner75361b62010-04-07 22:58:41 +0000437 report_fatal_error("invalid 'common' alignment '" +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000438 Twine(Align) + "'");
439 // FIXME: Keep this mask with the SymbolFlags enumeration.
440 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
441 }
442 }
443
444 // struct nlist (12 bytes)
445
446 Write32(MSD.StringIndex);
447 Write8(Type);
448 Write8(MSD.SectionIndex);
449
450 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
451 // value.
452 Write16(Flags);
453 if (Is64Bit)
454 Write64(Address);
455 else
456 Write32(Address);
457 }
458
Daniel Dunbar35b06572010-03-22 23:16:43 +0000459 // FIXME: We really need to improve the relocation validation. Basically, we
460 // want to implement a separate computation which evaluates the relocation
461 // entry as the linker would, and verifies that the resultant fixup value is
462 // exactly what the encoder wanted. This will catch several classes of
463 // problems:
464 //
465 // - Relocation entry bugs, the two algorithms are unlikely to have the same
466 // exact bug.
467 //
468 // - Relaxation issues, where we forget to relax something.
469 //
470 // - Input errors, where something cannot be correctly encoded. 'as' allows
471 // these through in many cases.
472
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000473 void RecordX86_64Relocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000474 const MCFragment *Fragment,
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000475 const MCAsmFixup &Fixup, MCValue Target,
476 uint64_t &FixedValue) {
477 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
478 unsigned IsRIPRel = isFixupKindRIPRel(Fixup.Kind);
479 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
480
481 // See <reloc.h>.
Daniel Dunbar640e9482010-05-11 23:53:07 +0000482 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbardb4c7e62010-05-11 23:53:11 +0000483 uint32_t FixupAddress = Layout.getFragmentAddress(Fragment) + Fixup.Offset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000484 int64_t Value = 0;
485 unsigned Index = 0;
486 unsigned IsExtern = 0;
487 unsigned Type = 0;
488
489 Value = Target.getConstant();
490
491 if (IsPCRel) {
492 // Compensate for the relocation offset, Darwin x86_64 relocations only
493 // have the addend and appear to have attempted to define it to be the
494 // actual expression addend without the PCrel bias. However, instructions
495 // with data following the relocation are not accomodated for (see comment
496 // below regarding SIGNED{1,2,4}), so it isn't exactly that either.
Benjamin Kramer454c4ce2010-04-08 15:25:57 +0000497 Value += 1LL << Log2Size;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000498 }
499
500 if (Target.isAbsolute()) { // constant
501 // SymbolNum of 0 indicates the absolute section.
502 Type = RIT_X86_64_Unsigned;
503 Index = 0;
504
505 // FIXME: I believe this is broken, I don't think the linker can
506 // understand it. I think it would require a local relocation, but I'm not
507 // sure if that would work either. The official way to get an absolute
508 // PCrel relocation is to use an absolute symbol (which we don't support
509 // yet).
510 if (IsPCRel) {
511 IsExtern = 1;
512 Type = RIT_X86_64_Branch;
513 }
514 } else if (Target.getSymB()) { // A - B + constant
515 const MCSymbol *A = &Target.getSymA()->getSymbol();
516 MCSymbolData &A_SD = Asm.getSymbolData(*A);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000517 const MCSymbolData *A_Base = Asm.getAtom(Layout, &A_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000518
519 const MCSymbol *B = &Target.getSymB()->getSymbol();
520 MCSymbolData &B_SD = Asm.getSymbolData(*B);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000521 const MCSymbolData *B_Base = Asm.getAtom(Layout, &B_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000522
523 // Neither symbol can be modified.
524 if (Target.getSymA()->getKind() != MCSymbolRefExpr::VK_None ||
525 Target.getSymB()->getKind() != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000526 report_fatal_error("unsupported relocation of modified symbol");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000527
528 // We don't support PCrel relocations of differences. Darwin 'as' doesn't
529 // implement most of these correctly.
530 if (IsPCRel)
Chris Lattner75361b62010-04-07 22:58:41 +0000531 report_fatal_error("unsupported pc-relative relocation of difference");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000532
533 // We don't currently support any situation where one or both of the
534 // symbols would require a local relocation. This is almost certainly
535 // unused and may not be possible to encode correctly.
536 if (!A_Base || !B_Base)
Chris Lattner75361b62010-04-07 22:58:41 +0000537 report_fatal_error("unsupported local relocations in difference");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000538
539 // Darwin 'as' doesn't emit correct relocations for this (it ends up with
540 // a single SIGNED relocation); reject it for now.
541 if (A_Base == B_Base)
Chris Lattner75361b62010-04-07 22:58:41 +0000542 report_fatal_error("unsupported relocation with identical base");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000543
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000544 Value += Layout.getSymbolAddress(&A_SD) - Layout.getSymbolAddress(A_Base);
545 Value -= Layout.getSymbolAddress(&B_SD) - Layout.getSymbolAddress(B_Base);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000546
547 Index = A_Base->getIndex();
548 IsExtern = 1;
549 Type = RIT_X86_64_Unsigned;
550
551 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000552 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000553 MRE.Word1 = ((Index << 0) |
554 (IsPCRel << 24) |
555 (Log2Size << 25) |
556 (IsExtern << 27) |
557 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000558 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000559
560 Index = B_Base->getIndex();
561 IsExtern = 1;
562 Type = RIT_X86_64_Subtractor;
563 } else {
564 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
565 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000566 const MCSymbolData *Base = Asm.getAtom(Layout, &SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000567
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000568 // Relocations inside debug sections always use local relocations when
569 // possible. This seems to be done because the debugger doesn't fully
570 // understand x86_64 relocation entries, and expects to find values that
571 // have already been fixed up.
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000572 if (Symbol->isInSection()) {
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000573 const MCSectionMachO &Section = static_cast<const MCSectionMachO&>(
574 Fragment->getParent()->getSection());
575 if (Section.hasAttribute(MCSectionMachO::S_ATTR_DEBUG))
576 Base = 0;
577 }
578
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000579 // x86_64 almost always uses external relocations, except when there is no
580 // symbol to use as a base address (a local symbol with no preceeding
581 // non-local symbol).
582 if (Base) {
583 Index = Base->getIndex();
584 IsExtern = 1;
585
586 // Add the local offset, if needed.
587 if (Base != &SD)
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000588 Value += Layout.getSymbolAddress(&SD) - Layout.getSymbolAddress(Base);
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000589 } else if (Symbol->isInSection()) {
Daniel Dunbar8fb04032010-03-25 08:08:54 +0000590 // The index is the section ordinal (1-based).
591 Index = SD.getFragment()->getParent()->getOrdinal() + 1;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000592 IsExtern = 0;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000593 Value += Layout.getSymbolAddress(&SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000594
595 if (IsPCRel)
Daniel Dunbardb4c7e62010-05-11 23:53:11 +0000596 Value -= FixupAddress + (1 << Log2Size);
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000597 } else {
598 report_fatal_error("unsupported relocation of undefined symbol '" +
599 Symbol->getName() + "'");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000600 }
601
602 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
603 if (IsPCRel) {
604 if (IsRIPRel) {
605 if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
606 // x86_64 distinguishes movq foo@GOTPCREL so that the linker can
607 // rewrite the movq to an leaq at link time if the symbol ends up in
608 // the same linkage unit.
609 if (unsigned(Fixup.Kind) == X86::reloc_riprel_4byte_movq_load)
610 Type = RIT_X86_64_GOTLoad;
611 else
612 Type = RIT_X86_64_GOT;
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000613 } else if (Modifier != MCSymbolRefExpr::VK_None) {
Chris Lattner75361b62010-04-07 22:58:41 +0000614 report_fatal_error("unsupported symbol modifier in relocation");
Eric Christopher96ac5152010-05-26 00:02:12 +0000615 } else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
616 Type = RIT_X86_64_TLV;
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000617 } else {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000618 Type = RIT_X86_64_Signed;
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000619
620 // The Darwin x86_64 relocation format has a problem where it cannot
621 // encode an address (L<foo> + <constant>) which is outside the atom
622 // containing L<foo>. Generally, this shouldn't occur but it does
623 // happen when we have a RIPrel instruction with data following the
624 // relocation entry (e.g., movb $012, L0(%rip)). Even with the PCrel
625 // adjustment Darwin x86_64 uses, the offset is still negative and
626 // the linker has no way to recognize this.
627 //
628 // To work around this, Darwin uses several special relocation types
629 // to indicate the offsets. However, the specification or
630 // implementation of these seems to also be incomplete; they should
631 // adjust the addend as well based on the actual encoded instruction
632 // (the additional bias), but instead appear to just look at the
633 // final offset.
634 switch (-(Target.getConstant() + (1LL << Log2Size))) {
635 case 1: Type = RIT_X86_64_Signed1; break;
636 case 2: Type = RIT_X86_64_Signed2; break;
637 case 4: Type = RIT_X86_64_Signed4; break;
638 }
639 }
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000640 } else {
641 if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000642 report_fatal_error("unsupported symbol modifier in branch "
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000643 "relocation");
644
645 Type = RIT_X86_64_Branch;
646 }
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000647 } else {
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000648 if (Modifier == MCSymbolRefExpr::VK_GOT) {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000649 Type = RIT_X86_64_GOT;
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000650 } else if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
651 // GOTPCREL is allowed as a modifier on non-PCrel instructions, in
652 // which case all we do is set the PCrel bit in the relocation entry;
653 // this is used with exception handling, for example. The source is
654 // required to include any necessary offset directly.
655 Type = RIT_X86_64_GOT;
656 IsPCRel = 1;
Eric Christopher96ac5152010-05-26 00:02:12 +0000657 } else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
658 report_fatal_error("TLVP symbol modifier should have been rip-rel");
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000659 } else if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000660 report_fatal_error("unsupported symbol modifier in relocation");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000661 else
662 Type = RIT_X86_64_Unsigned;
663 }
664 }
665
666 // x86_64 always writes custom values into the fixups.
667 FixedValue = Value;
668
669 // struct relocation_info (8 bytes)
670 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000671 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000672 MRE.Word1 = ((Index << 0) |
673 (IsPCRel << 24) |
674 (Log2Size << 25) |
675 (IsExtern << 27) |
676 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000677 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000678 }
679
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000680 void RecordScatteredRelocation(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000681 const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000682 const MCFragment *Fragment,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000683 const MCAsmFixup &Fixup, MCValue Target,
684 uint64_t &FixedValue) {
Daniel Dunbar640e9482010-05-11 23:53:07 +0000685 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000686 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
687 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
688 unsigned Type = RIT_Vanilla;
689
690 // See <reloc.h>.
691 const MCSymbol *A = &Target.getSymA()->getSymbol();
692 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
693
694 if (!A_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000695 report_fatal_error("symbol '" + A->getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000696 "' can not be undefined in a subtraction expression");
697
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000698 uint32_t Value = Layout.getSymbolAddress(A_SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000699 uint32_t Value2 = 0;
700
701 if (const MCSymbolRefExpr *B = Target.getSymB()) {
702 MCSymbolData *B_SD = &Asm.getSymbolData(B->getSymbol());
703
704 if (!B_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000705 report_fatal_error("symbol '" + B->getSymbol().getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000706 "' can not be undefined in a subtraction expression");
707
708 // Select the appropriate difference relocation type.
709 //
710 // Note that there is no longer any semantic difference between these two
711 // relocation types from the linkers point of view, this is done solely
712 // for pedantic compatibility with 'as'.
713 Type = A_SD->isExternal() ? RIT_Difference : RIT_LocalDifference;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000714 Value2 = Layout.getSymbolAddress(B_SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000715 }
716
717 // Relocations are written out in reverse order, so the PAIR comes first.
718 if (Type == RIT_Difference || Type == RIT_LocalDifference) {
719 MachRelocationEntry MRE;
720 MRE.Word0 = ((0 << 0) |
721 (RIT_Pair << 24) |
722 (Log2Size << 28) |
723 (IsPCRel << 30) |
724 RF_Scattered);
725 MRE.Word1 = Value2;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000726 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000727 }
728
729 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000730 MRE.Word0 = ((FixupOffset << 0) |
731 (Type << 24) |
732 (Log2Size << 28) |
733 (IsPCRel << 30) |
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000734 RF_Scattered);
735 MRE.Word1 = Value;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000736 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000737 }
738
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000739 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
740 const MCFragment *Fragment, const MCAsmFixup &Fixup,
741 MCValue Target, uint64_t &FixedValue) {
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000742 if (Is64Bit) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000743 RecordX86_64Relocation(Asm, Layout, Fragment, Fixup, Target, FixedValue);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000744 return;
745 }
746
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000747 unsigned IsPCRel = isFixupKindPCRel(Fixup.Kind);
748 unsigned Log2Size = getFixupKindLog2Size(Fixup.Kind);
749
750 // If this is a difference or a defined symbol plus an offset, then we need
751 // a scattered relocation entry.
Daniel Dunbara8251fa2010-05-10 23:15:20 +0000752 // Differences always require scattered relocations.
753 if (Target.getSymB())
754 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
755 Target, FixedValue);
756
757 // Get the symbol data, if any.
758 MCSymbolData *SD = 0;
759 if (Target.getSymA())
760 SD = &Asm.getSymbolData(Target.getSymA()->getSymbol());
761
762 // If this is an internal relocation with an offset, it also needs a
763 // scattered relocation entry.
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000764 uint32_t Offset = Target.getConstant();
765 if (IsPCRel)
766 Offset += 1 << Log2Size;
Daniel Dunbara8251fa2010-05-10 23:15:20 +0000767 if (Offset && SD && !doesSymbolRequireExternRelocation(SD))
768 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
769 Target, FixedValue);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000770
771 // See <reloc.h>.
Daniel Dunbar640e9482010-05-11 23:53:07 +0000772 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.Offset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000773 uint32_t Value = 0;
774 unsigned Index = 0;
775 unsigned IsExtern = 0;
776 unsigned Type = 0;
777
778 if (Target.isAbsolute()) { // constant
779 // SymbolNum of 0 indicates the absolute section.
780 //
781 // FIXME: Currently, these are never generated (see code below). I cannot
782 // find a case where they are actually emitted.
783 Type = RIT_Vanilla;
784 Value = 0;
785 } else {
Daniel Dunbare9460ec2010-05-10 23:15:13 +0000786 // Check whether we need an external or internal relocation.
787 if (doesSymbolRequireExternRelocation(SD)) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000788 IsExtern = 1;
789 Index = SD->getIndex();
Daniel Dunbare9460ec2010-05-10 23:15:13 +0000790 // For external relocations, make sure to offset the fixup value to
791 // compensate for the addend of the symbol address, if it was
792 // undefined. This occurs with weak definitions, for example.
793 if (!SD->Symbol->isUndefined())
Kevin Enderbya6eeb6e2010-05-07 21:44:23 +0000794 FixedValue -= Layout.getSymbolAddress(SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000795 Value = 0;
796 } else {
Daniel Dunbar8fb04032010-03-25 08:08:54 +0000797 // The index is the section ordinal (1-based).
798 Index = SD->getFragment()->getParent()->getOrdinal() + 1;
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000799 Value = Layout.getSymbolAddress(SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000800 }
801
802 Type = RIT_Vanilla;
803 }
804
805 // struct relocation_info (8 bytes)
806 MachRelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000807 MRE.Word0 = FixupOffset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000808 MRE.Word1 = ((Index << 0) |
809 (IsPCRel << 24) |
810 (Log2Size << 25) |
811 (IsExtern << 27) |
812 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000813 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000814 }
815
816 void BindIndirectSymbols(MCAssembler &Asm) {
817 // This is the point where 'as' creates actual symbols for indirect symbols
818 // (in the following two passes). It would be easier for us to do this
819 // sooner when we see the attribute, but that makes getting the order in the
820 // symbol table much more complicated than it is worth.
821 //
822 // FIXME: Revisit this when the dust settles.
823
824 // Bind non lazy symbol pointers first.
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000825 unsigned IndirectIndex = 0;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000826 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000827 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000828 const MCSectionMachO &Section =
Daniel Dunbar56279f42010-05-18 17:28:20 +0000829 cast<MCSectionMachO>(it->SectionData->getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000830
831 if (Section.getType() != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
832 continue;
833
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000834 // Initialize the section indirect symbol base, if necessary.
835 if (!IndirectSymBase.count(it->SectionData))
836 IndirectSymBase[it->SectionData] = IndirectIndex;
837
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000838 Asm.getOrCreateSymbolData(*it->Symbol);
839 }
840
841 // Then lazy symbol pointers and symbol stubs.
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000842 IndirectIndex = 0;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000843 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000844 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000845 const MCSectionMachO &Section =
Daniel Dunbar56279f42010-05-18 17:28:20 +0000846 cast<MCSectionMachO>(it->SectionData->getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000847
848 if (Section.getType() != MCSectionMachO::S_LAZY_SYMBOL_POINTERS &&
849 Section.getType() != MCSectionMachO::S_SYMBOL_STUBS)
850 continue;
851
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000852 // Initialize the section indirect symbol base, if necessary.
853 if (!IndirectSymBase.count(it->SectionData))
854 IndirectSymBase[it->SectionData] = IndirectIndex;
855
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000856 // Set the symbol type to undefined lazy, but only on construction.
857 //
858 // FIXME: Do not hardcode.
859 bool Created;
860 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
861 if (Created)
862 Entry.setFlags(Entry.getFlags() | 0x0001);
863 }
864 }
865
866 /// ComputeSymbolTable - Compute the symbol table data
867 ///
868 /// \param StringTable [out] - The string table data.
869 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
870 /// string table.
871 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
872 std::vector<MachSymbolData> &LocalSymbolData,
873 std::vector<MachSymbolData> &ExternalSymbolData,
874 std::vector<MachSymbolData> &UndefinedSymbolData) {
875 // Build section lookup table.
876 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
877 unsigned Index = 1;
878 for (MCAssembler::iterator it = Asm.begin(),
879 ie = Asm.end(); it != ie; ++it, ++Index)
880 SectionIndexMap[&it->getSection()] = Index;
881 assert(Index <= 256 && "Too many sections!");
882
883 // Index 0 is always the empty string.
884 StringMap<uint64_t> StringIndexMap;
885 StringTable += '\x00';
886
887 // Build the symbol arrays and the string table, but only for non-local
888 // symbols.
889 //
890 // The particular order that we collect the symbols and create the string
891 // table, then sort the symbols is chosen to match 'as'. Even though it
892 // doesn't matter for correctness, this is important for letting us diff .o
893 // files.
894 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
895 ie = Asm.symbol_end(); it != ie; ++it) {
896 const MCSymbol &Symbol = it->getSymbol();
897
898 // Ignore non-linker visible symbols.
899 if (!Asm.isSymbolLinkerVisible(it))
900 continue;
901
902 if (!it->isExternal() && !Symbol.isUndefined())
903 continue;
904
905 uint64_t &Entry = StringIndexMap[Symbol.getName()];
906 if (!Entry) {
907 Entry = StringTable.size();
908 StringTable += Symbol.getName();
909 StringTable += '\x00';
910 }
911
912 MachSymbolData MSD;
913 MSD.SymbolData = it;
914 MSD.StringIndex = Entry;
915
916 if (Symbol.isUndefined()) {
917 MSD.SectionIndex = 0;
918 UndefinedSymbolData.push_back(MSD);
919 } else if (Symbol.isAbsolute()) {
920 MSD.SectionIndex = 0;
921 ExternalSymbolData.push_back(MSD);
922 } else {
923 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
924 assert(MSD.SectionIndex && "Invalid section index!");
925 ExternalSymbolData.push_back(MSD);
926 }
927 }
928
929 // Now add the data for local symbols.
930 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
931 ie = Asm.symbol_end(); it != ie; ++it) {
932 const MCSymbol &Symbol = it->getSymbol();
933
934 // Ignore non-linker visible symbols.
935 if (!Asm.isSymbolLinkerVisible(it))
936 continue;
937
938 if (it->isExternal() || Symbol.isUndefined())
939 continue;
940
941 uint64_t &Entry = StringIndexMap[Symbol.getName()];
942 if (!Entry) {
943 Entry = StringTable.size();
944 StringTable += Symbol.getName();
945 StringTable += '\x00';
946 }
947
948 MachSymbolData MSD;
949 MSD.SymbolData = it;
950 MSD.StringIndex = Entry;
951
952 if (Symbol.isAbsolute()) {
953 MSD.SectionIndex = 0;
954 LocalSymbolData.push_back(MSD);
955 } else {
956 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
957 assert(MSD.SectionIndex && "Invalid section index!");
958 LocalSymbolData.push_back(MSD);
959 }
960 }
961
962 // External and undefined symbols are required to be in lexicographic order.
963 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
964 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
965
966 // Set the symbol indices.
967 Index = 0;
968 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
969 LocalSymbolData[i].SymbolData->setIndex(Index++);
970 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
971 ExternalSymbolData[i].SymbolData->setIndex(Index++);
972 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
973 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
974
975 // The string table is padded to a multiple of 4.
976 while (StringTable.size() % 4)
977 StringTable += '\x00';
978 }
979
Daniel Dunbar873decb2010-03-20 01:58:40 +0000980 void ExecutePostLayoutBinding(MCAssembler &Asm) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000981 // Create symbol data for any indirect symbols.
982 BindIndirectSymbols(Asm);
983
984 // Compute symbol table information and bind symbol indices.
985 ComputeSymbolTable(Asm, StringTable, LocalSymbolData, ExternalSymbolData,
986 UndefinedSymbolData);
987 }
988
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000989 void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000990 unsigned NumSections = Asm.size();
991
992 // The section data starts after the header, the segment load command (and
993 // section headers) and the symbol table.
994 unsigned NumLoadCommands = 1;
995 uint64_t LoadCommandsSize = Is64Bit ?
996 SegmentLoadCommand64Size + NumSections * Section64Size :
997 SegmentLoadCommand32Size + NumSections * Section32Size;
998
999 // Add the symbol table load command sizes, if used.
1000 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
1001 UndefinedSymbolData.size();
1002 if (NumSymbols) {
1003 NumLoadCommands += 2;
1004 LoadCommandsSize += SymtabLoadCommandSize + DysymtabLoadCommandSize;
1005 }
1006
1007 // Compute the total size of the section data, as well as its file size and
1008 // vm size.
1009 uint64_t SectionDataStart = (Is64Bit ? Header64Size : Header32Size)
1010 + LoadCommandsSize;
1011 uint64_t SectionDataSize = 0;
1012 uint64_t SectionDataFileSize = 0;
1013 uint64_t VMSize = 0;
1014 for (MCAssembler::const_iterator it = Asm.begin(),
1015 ie = Asm.end(); it != ie; ++it) {
1016 const MCSectionData &SD = *it;
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001017 uint64_t Address = Layout.getSectionAddress(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +00001018 uint64_t Size = Layout.getSectionSize(&SD);
1019 uint64_t FileSize = Layout.getSectionFileSize(&SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001020
Daniel Dunbar5d428512010-03-25 02:00:07 +00001021 VMSize = std::max(VMSize, Address + Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001022
1023 if (Asm.getBackend().isVirtualSection(SD.getSection()))
1024 continue;
1025
Daniel Dunbar5d428512010-03-25 02:00:07 +00001026 SectionDataSize = std::max(SectionDataSize, Address + Size);
1027 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001028 }
1029
1030 // The section data is padded to 4 bytes.
1031 //
1032 // FIXME: Is this machine dependent?
1033 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
1034 SectionDataFileSize += SectionDataPadding;
1035
1036 // Write the prolog, starting with the header and load command...
1037 WriteHeader(NumLoadCommands, LoadCommandsSize,
1038 Asm.getSubsectionsViaSymbols());
1039 WriteSegmentLoadCommand(NumSections, VMSize,
1040 SectionDataStart, SectionDataSize);
1041
1042 // ... and then the section headers.
1043 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
1044 for (MCAssembler::const_iterator it = Asm.begin(),
1045 ie = Asm.end(); it != ie; ++it) {
1046 std::vector<MachRelocationEntry> &Relocs = Relocations[it];
1047 unsigned NumRelocs = Relocs.size();
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001048 uint64_t SectionStart = SectionDataStart + Layout.getSectionAddress(it);
1049 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001050 RelocTableEnd += NumRelocs * RelocationInfoSize;
1051 }
1052
1053 // Write the symbol table load command, if used.
1054 if (NumSymbols) {
1055 unsigned FirstLocalSymbol = 0;
1056 unsigned NumLocalSymbols = LocalSymbolData.size();
1057 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
1058 unsigned NumExternalSymbols = ExternalSymbolData.size();
1059 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
1060 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
1061 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
1062 unsigned NumSymTabSymbols =
1063 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
1064 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
1065 uint64_t IndirectSymbolOffset = 0;
1066
1067 // If used, the indirect symbols are written after the section data.
1068 if (NumIndirectSymbols)
1069 IndirectSymbolOffset = RelocTableEnd;
1070
1071 // The symbol table is written after the indirect symbol data.
1072 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
1073
1074 // The string table is written after symbol table.
1075 uint64_t StringTableOffset =
1076 SymbolTableOffset + NumSymTabSymbols * (Is64Bit ? Nlist64Size :
1077 Nlist32Size);
1078 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
1079 StringTableOffset, StringTable.size());
1080
1081 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
1082 FirstExternalSymbol, NumExternalSymbols,
1083 FirstUndefinedSymbol, NumUndefinedSymbols,
1084 IndirectSymbolOffset, NumIndirectSymbols);
1085 }
1086
1087 // Write the actual section data.
1088 for (MCAssembler::const_iterator it = Asm.begin(),
1089 ie = Asm.end(); it != ie; ++it)
Daniel Dunbar432cd5f2010-03-25 02:00:02 +00001090 Asm.WriteSectionData(it, Layout, Writer);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001091
1092 // Write the extra padding.
1093 WriteZeros(SectionDataPadding);
1094
1095 // Write the relocation entries.
1096 for (MCAssembler::const_iterator it = Asm.begin(),
1097 ie = Asm.end(); it != ie; ++it) {
1098 // Write the section relocation entries, in reverse order to match 'as'
1099 // (approximately, the exact algorithm is more complicated than this).
1100 std::vector<MachRelocationEntry> &Relocs = Relocations[it];
1101 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1102 Write32(Relocs[e - i - 1].Word0);
1103 Write32(Relocs[e - i - 1].Word1);
1104 }
1105 }
1106
1107 // Write the symbol table data, if used.
1108 if (NumSymbols) {
1109 // Write the indirect symbol entries.
1110 for (MCAssembler::const_indirect_symbol_iterator
1111 it = Asm.indirect_symbol_begin(),
1112 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
1113 // Indirect symbols in the non lazy symbol pointer section have some
1114 // special handling.
1115 const MCSectionMachO &Section =
1116 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
1117 if (Section.getType() == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
1118 // If this symbol is defined and internal, mark it as such.
1119 if (it->Symbol->isDefined() &&
1120 !Asm.getSymbolData(*it->Symbol).isExternal()) {
1121 uint32_t Flags = ISF_Local;
1122 if (it->Symbol->isAbsolute())
1123 Flags |= ISF_Absolute;
1124 Write32(Flags);
1125 continue;
1126 }
1127 }
1128
1129 Write32(Asm.getSymbolData(*it->Symbol).getIndex());
1130 }
1131
1132 // FIXME: Check that offsets match computed ones.
1133
1134 // Write the symbol table entries.
1135 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001136 WriteNlist(LocalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001137 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001138 WriteNlist(ExternalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001139 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001140 WriteNlist(UndefinedSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001141
1142 // Write the string table.
1143 OS << StringTable.str();
1144 }
1145 }
1146};
1147
1148}
1149
1150MachObjectWriter::MachObjectWriter(raw_ostream &OS,
1151 bool Is64Bit,
1152 bool IsLittleEndian)
1153 : MCObjectWriter(OS, IsLittleEndian)
1154{
1155 Impl = new MachObjectWriterImpl(this, Is64Bit);
1156}
1157
1158MachObjectWriter::~MachObjectWriter() {
1159 delete (MachObjectWriterImpl*) Impl;
1160}
1161
1162void MachObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
1163 ((MachObjectWriterImpl*) Impl)->ExecutePostLayoutBinding(Asm);
1164}
1165
1166void MachObjectWriter::RecordRelocation(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001167 const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +00001168 const MCFragment *Fragment,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001169 const MCAsmFixup &Fixup, MCValue Target,
1170 uint64_t &FixedValue) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001171 ((MachObjectWriterImpl*) Impl)->RecordRelocation(Asm, Layout, Fragment, Fixup,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001172 Target, FixedValue);
1173}
1174
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001175void MachObjectWriter::WriteObject(const MCAssembler &Asm,
1176 const MCAsmLayout &Layout) {
1177 ((MachObjectWriterImpl*) Impl)->WriteObject(Asm, Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001178}