blob: 7d6ed41b5b4da306b12131603bbdfbd37ca1ed61 [file] [log] [blame]
Daniel Dunbar79e0e5a2010-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
Daniel Dunbar8888a962010-12-16 16:09:19 +000010#include "llvm/MC/MCMachObjectWriter.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000011#include "llvm/ADT/StringMap.h"
12#include "llvm/ADT/Twine.h"
Evan Cheng5928e692011-07-25 23:24:55 +000013#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar7c969552010-03-24 03:43:40 +000014#include "llvm/MC/MCAsmLayout.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/MC/MCAssembler.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000016#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000017#include "llvm/MC/MCFixupKindInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/MC/MCMachOSymbolFlags.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000019#include "llvm/MC/MCObjectWriter.h"
20#include "llvm/MC/MCSectionMachO.h"
21#include "llvm/MC/MCSymbol.h"
22#include "llvm/MC/MCValue.h"
Jim Grosbach4b63d2a2012-05-18 19:12:01 +000023#include "llvm/Support/Debug.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000024#include "llvm/Support/ErrorHandling.h"
Charles Davis8bdfafd2013-09-01 04:28:48 +000025#include "llvm/Support/MachO.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000026#include "llvm/Support/raw_ostream.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000027#include <vector>
28using namespace llvm;
29
Chandler Carruthe96dd892014-04-21 22:55:11 +000030#define DEBUG_TYPE "mc"
31
Pedro Artigasb95c53e2012-12-14 18:52:11 +000032void MachObjectWriter::reset() {
33 Relocations.clear();
34 IndirectSymBase.clear();
35 StringTable.clear();
36 LocalSymbolData.clear();
37 ExternalSymbolData.clear();
38 UndefinedSymbolData.clear();
39 MCObjectWriter::reset();
40}
41
Jim Grosbach28fcafb2011-06-24 23:44:37 +000042bool MachObjectWriter::
43doesSymbolRequireExternRelocation(const MCSymbolData *SD) {
Daniel Dunbar7de31062010-05-10 23:15:13 +000044 // Undefined symbols are always extern.
Benjamin Kramer3e67db92014-10-11 15:07:21 +000045 if (SD->getSymbol().isUndefined())
Daniel Dunbar7de31062010-05-10 23:15:13 +000046 return true;
47
48 // References to weak definitions require external relocation entries; the
49 // definition may not always be the one in the same object file.
50 if (SD->getFlags() & SF_WeakDefinition)
51 return true;
52
53 // Otherwise, we can use an internal relocation.
54 return false;
55}
56
Jim Grosbach28fcafb2011-06-24 23:44:37 +000057bool MachObjectWriter::
58MachSymbolData::operator<(const MachSymbolData &RHS) const {
59 return SymbolData->getSymbol().getName() <
60 RHS.SymbolData->getSymbol().getName();
61}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000062
Jim Grosbach28fcafb2011-06-24 23:44:37 +000063bool MachObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
64 const MCFixupKindInfo &FKI = Asm.getBackend().getFixupKindInfo(
65 (MCFixupKind) Kind);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000066
Jim Grosbach28fcafb2011-06-24 23:44:37 +000067 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
68}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000069
Jim Grosbach28fcafb2011-06-24 23:44:37 +000070uint64_t MachObjectWriter::getFragmentAddress(const MCFragment *Fragment,
71 const MCAsmLayout &Layout) const {
72 return getSectionAddress(Fragment->getParent()) +
73 Layout.getFragmentOffset(Fragment);
74}
Bill Wendlingeb872e02011-06-22 21:07:27 +000075
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000076uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S,
Bill Wendlingeb872e02011-06-22 21:07:27 +000077 const MCAsmLayout &Layout) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +000078 // If this is a variable, then recursively evaluate now.
79 if (S.isVariable()) {
Jim Grosbachd96ef192012-09-13 23:11:25 +000080 if (const MCConstantExpr *C =
81 dyn_cast<const MCConstantExpr>(S.getVariableValue()))
82 return C->getValue();
83
84
Bill Wendlingeb872e02011-06-22 21:07:27 +000085 MCValue Target;
Joerg Sonnenberger752b91b2014-08-10 11:35:12 +000086 if (!S.getVariableValue()->EvaluateAsRelocatable(Target, &Layout, nullptr))
Bill Wendlingeb872e02011-06-22 21:07:27 +000087 report_fatal_error("unable to evaluate offset for variable '" +
88 S.getName() + "'");
89
90 // Verify that any used symbols are defined.
91 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
92 report_fatal_error("unable to evaluate offset to undefined symbol '" +
93 Target.getSymA()->getSymbol().getName() + "'");
94 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
95 report_fatal_error("unable to evaluate offset to undefined symbol '" +
96 Target.getSymB()->getSymbol().getName() + "'");
97
98 uint64_t Address = Target.getConstant();
99 if (Target.getSymA())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000100 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000101 if (Target.getSymB())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000102 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000103 return Address;
104 }
105
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000106 return getSectionAddress(S.getData().getFragment()->getParent()) +
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000107 Layout.getSymbolOffset(S);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000108}
109
110uint64_t MachObjectWriter::getPaddingSize(const MCSectionData *SD,
111 const MCAsmLayout &Layout) const {
112 uint64_t EndAddr = getSectionAddress(SD) + Layout.getSectionAddressSize(SD);
113 unsigned Next = SD->getLayoutOrder() + 1;
114 if (Next >= Layout.getSectionOrder().size())
115 return 0;
116
117 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next];
118 if (NextSD.getSection().isVirtualSection())
119 return 0;
120 return OffsetToAlignment(EndAddr, NextSD.getAlignment());
121}
122
123void MachObjectWriter::WriteHeader(unsigned NumLoadCommands,
124 unsigned LoadCommandsSize,
125 bool SubsectionsViaSymbols) {
126 uint32_t Flags = 0;
127
128 if (SubsectionsViaSymbols)
Charles Davis8bdfafd2013-09-01 04:28:48 +0000129 Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000130
131 // struct mach_header (28 bytes) or
132 // struct mach_header_64 (32 bytes)
133
134 uint64_t Start = OS.tell();
135 (void) Start;
136
Charles Davis8bdfafd2013-09-01 04:28:48 +0000137 Write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000138
139 Write32(TargetObjectWriter->getCPUType());
140 Write32(TargetObjectWriter->getCPUSubtype());
141
Charles Davis8bdfafd2013-09-01 04:28:48 +0000142 Write32(MachO::MH_OBJECT);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000143 Write32(NumLoadCommands);
144 Write32(LoadCommandsSize);
145 Write32(Flags);
146 if (is64Bit())
147 Write32(0); // reserved
148
149 assert(OS.tell() - Start ==
Charles Davis8bdfafd2013-09-01 04:28:48 +0000150 (is64Bit()?sizeof(MachO::mach_header_64): sizeof(MachO::mach_header)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000151}
152
153/// WriteSegmentLoadCommand - Write a segment load command.
154///
Dmitri Gribenko5485acd2012-09-14 14:57:36 +0000155/// \param NumSections The number of sections in this segment.
156/// \param SectionDataSize The total size of the sections.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000157void MachObjectWriter::WriteSegmentLoadCommand(unsigned NumSections,
158 uint64_t VMSize,
159 uint64_t SectionDataStartOffset,
160 uint64_t SectionDataSize) {
161 // struct segment_command (56 bytes) or
162 // struct segment_command_64 (72 bytes)
163
164 uint64_t Start = OS.tell();
165 (void) Start;
166
167 unsigned SegmentLoadCommandSize =
Charles Davis8bdfafd2013-09-01 04:28:48 +0000168 is64Bit() ? sizeof(MachO::segment_command_64):
169 sizeof(MachO::segment_command);
170 Write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000171 Write32(SegmentLoadCommandSize +
Charles Davis8bdfafd2013-09-01 04:28:48 +0000172 NumSections * (is64Bit() ? sizeof(MachO::section_64) :
173 sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000174
175 WriteBytes("", 16);
176 if (is64Bit()) {
177 Write64(0); // vmaddr
178 Write64(VMSize); // vmsize
179 Write64(SectionDataStartOffset); // file offset
180 Write64(SectionDataSize); // file size
181 } else {
182 Write32(0); // vmaddr
183 Write32(VMSize); // vmsize
184 Write32(SectionDataStartOffset); // file offset
185 Write32(SectionDataSize); // file size
186 }
Nick Kledzikfe6813f2013-09-04 23:53:44 +0000187 // maxprot
188 Write32(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE);
189 // initprot
190 Write32(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000191 Write32(NumSections);
192 Write32(0); // flags
193
194 assert(OS.tell() - Start == SegmentLoadCommandSize);
195}
196
197void MachObjectWriter::WriteSection(const MCAssembler &Asm,
198 const MCAsmLayout &Layout,
199 const MCSectionData &SD,
200 uint64_t FileOffset,
201 uint64_t RelocationsStart,
202 unsigned NumRelocations) {
203 uint64_t SectionSize = Layout.getSectionAddressSize(&SD);
204
205 // The offset is unused for virtual sections.
206 if (SD.getSection().isVirtualSection()) {
207 assert(Layout.getSectionFileSize(&SD) == 0 && "Invalid file size!");
208 FileOffset = 0;
209 }
210
211 // struct section (68 bytes) or
212 // struct section_64 (80 bytes)
213
214 uint64_t Start = OS.tell();
215 (void) Start;
216
217 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
218 WriteBytes(Section.getSectionName(), 16);
219 WriteBytes(Section.getSegmentName(), 16);
220 if (is64Bit()) {
221 Write64(getSectionAddress(&SD)); // address
222 Write64(SectionSize); // size
223 } else {
224 Write32(getSectionAddress(&SD)); // address
225 Write32(SectionSize); // size
226 }
227 Write32(FileOffset);
228
229 unsigned Flags = Section.getTypeAndAttributes();
230 if (SD.hasInstructions())
David Majnemer7b583052014-03-07 07:36:05 +0000231 Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000232
233 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
234 Write32(Log2_32(SD.getAlignment()));
235 Write32(NumRelocations ? RelocationsStart : 0);
236 Write32(NumRelocations);
237 Write32(Flags);
238 Write32(IndirectSymBase.lookup(&SD)); // reserved1
239 Write32(Section.getStubSize()); // reserved2
240 if (is64Bit())
241 Write32(0); // reserved3
242
Charles Davis8bdfafd2013-09-01 04:28:48 +0000243 assert(OS.tell() - Start == (is64Bit() ? sizeof(MachO::section_64) :
244 sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000245}
246
247void MachObjectWriter::WriteSymtabLoadCommand(uint32_t SymbolOffset,
248 uint32_t NumSymbols,
249 uint32_t StringTableOffset,
250 uint32_t StringTableSize) {
251 // struct symtab_command (24 bytes)
252
253 uint64_t Start = OS.tell();
254 (void) Start;
255
Charles Davis8bdfafd2013-09-01 04:28:48 +0000256 Write32(MachO::LC_SYMTAB);
257 Write32(sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000258 Write32(SymbolOffset);
259 Write32(NumSymbols);
260 Write32(StringTableOffset);
261 Write32(StringTableSize);
262
Charles Davis8bdfafd2013-09-01 04:28:48 +0000263 assert(OS.tell() - Start == sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000264}
265
266void MachObjectWriter::WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
267 uint32_t NumLocalSymbols,
268 uint32_t FirstExternalSymbol,
269 uint32_t NumExternalSymbols,
270 uint32_t FirstUndefinedSymbol,
271 uint32_t NumUndefinedSymbols,
272 uint32_t IndirectSymbolOffset,
273 uint32_t NumIndirectSymbols) {
274 // struct dysymtab_command (80 bytes)
275
276 uint64_t Start = OS.tell();
277 (void) Start;
278
Charles Davis8bdfafd2013-09-01 04:28:48 +0000279 Write32(MachO::LC_DYSYMTAB);
280 Write32(sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000281 Write32(FirstLocalSymbol);
282 Write32(NumLocalSymbols);
283 Write32(FirstExternalSymbol);
284 Write32(NumExternalSymbols);
285 Write32(FirstUndefinedSymbol);
286 Write32(NumUndefinedSymbols);
287 Write32(0); // tocoff
288 Write32(0); // ntoc
289 Write32(0); // modtaboff
290 Write32(0); // nmodtab
291 Write32(0); // extrefsymoff
292 Write32(0); // nextrefsyms
293 Write32(IndirectSymbolOffset);
294 Write32(NumIndirectSymbols);
295 Write32(0); // extreloff
296 Write32(0); // nextrel
297 Write32(0); // locreloff
298 Write32(0); // nlocrel
299
Charles Davis8bdfafd2013-09-01 04:28:48 +0000300 assert(OS.tell() - Start == sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000301}
302
Tim Northovereaef0742014-05-30 13:22:59 +0000303MachObjectWriter::MachSymbolData *
304MachObjectWriter::findSymbolData(const MCSymbol &Sym) {
305 for (auto &Entry : LocalSymbolData)
306 if (&Entry.SymbolData->getSymbol() == &Sym)
307 return &Entry;
308
309 for (auto &Entry : ExternalSymbolData)
310 if (&Entry.SymbolData->getSymbol() == &Sym)
311 return &Entry;
312
313 for (auto &Entry : UndefinedSymbolData)
314 if (&Entry.SymbolData->getSymbol() == &Sym)
315 return &Entry;
316
317 return nullptr;
318}
319
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000320const MCSymbol &MachObjectWriter::findAliasedSymbol(const MCSymbol &Sym) const {
321 const MCSymbol *S = &Sym;
322 while (S->isVariable()) {
323 const MCExpr *Value = S->getVariableValue();
324 const auto *Ref = dyn_cast<MCSymbolRefExpr>(Value);
325 if (!Ref)
326 return *S;
327 S = &Ref->getSymbol();
328 }
329 return *S;
330}
331
Bill Wendling21162212011-06-23 00:09:43 +0000332void MachObjectWriter::WriteNlist(MachSymbolData &MSD,
333 const MCAsmLayout &Layout) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000334 MCSymbolData &Data = *MSD.SymbolData;
Tim Northovereaef0742014-05-30 13:22:59 +0000335 const MCSymbol *Symbol = &Data.getSymbol();
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000336 const MCSymbol *AliasedSymbol = &findAliasedSymbol(*Symbol);
Tim Northovereaef0742014-05-30 13:22:59 +0000337 uint8_t SectionIndex = MSD.SectionIndex;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000338 uint8_t Type = 0;
339 uint16_t Flags = Data.getFlags();
Jim Grosbacha3171602011-08-09 22:12:37 +0000340 uint64_t Address = 0;
Tim Northovereaef0742014-05-30 13:22:59 +0000341 bool IsAlias = Symbol != AliasedSymbol;
342
343 MachSymbolData *AliaseeInfo;
344 if (IsAlias) {
345 AliaseeInfo = findSymbolData(*AliasedSymbol);
346 if (AliaseeInfo)
347 SectionIndex = AliaseeInfo->SectionIndex;
348 Symbol = AliasedSymbol;
349 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000350
351 // Set the N_TYPE bits. See <mach-o/nlist.h>.
352 //
353 // FIXME: Are the prebound or indirect fields possible here?
Tim Northovereaef0742014-05-30 13:22:59 +0000354 if (IsAlias && Symbol->isUndefined())
355 Type = MachO::N_INDR;
356 else if (Symbol->isUndefined())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000357 Type = MachO::N_UNDF;
Tim Northovereaef0742014-05-30 13:22:59 +0000358 else if (Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000359 Type = MachO::N_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000360 else
Charles Davis8bdfafd2013-09-01 04:28:48 +0000361 Type = MachO::N_SECT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000362
363 // FIXME: Set STAB bits.
364
365 if (Data.isPrivateExtern())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000366 Type |= MachO::N_PEXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000367
368 // Set external bit.
Tim Northovereaef0742014-05-30 13:22:59 +0000369 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined()))
Charles Davis8bdfafd2013-09-01 04:28:48 +0000370 Type |= MachO::N_EXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000371
372 // Compute the symbol address.
Tim Northovereaef0742014-05-30 13:22:59 +0000373 if (IsAlias && Symbol->isUndefined())
374 Address = AliaseeInfo->StringIndex;
375 else if (Symbol->isDefined())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000376 // FIXME: Should Data.getSymbol() always be *Symbol? It doesn't look like
377 // that's true.
378 Address = getSymbolAddress(Data.getSymbol(), Layout);
Tim Northovereaef0742014-05-30 13:22:59 +0000379 else if (Data.isCommon()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000380 // Common symbols are encoded with the size in the address
381 // field, and their alignment in the flags.
382 Address = Data.getCommonSize();
383
384 // Common alignment is packed into the 'desc' bits.
385 if (unsigned Align = Data.getCommonAlignment()) {
386 unsigned Log2Size = Log2_32(Align);
387 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
388 if (Log2Size > 15)
389 report_fatal_error("invalid 'common' alignment '" +
Tim Northovereaef0742014-05-30 13:22:59 +0000390 Twine(Align) + "' for '" + Symbol->getName() + "'",
Jim Grosbachaff6a0c2013-09-24 23:56:31 +0000391 false);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000392 // FIXME: Keep this mask with the SymbolFlags enumeration.
393 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
394 }
395 }
396
Tim Northovereaef0742014-05-30 13:22:59 +0000397 if (Layout.getAssembler().isThumbFunc(Symbol))
Rafael Espindolab60c8292014-04-29 12:46:50 +0000398 Flags |= SF_ThumbFunc;
399
Bill Wendlingeb872e02011-06-22 21:07:27 +0000400 // struct nlist (12 bytes)
401
402 Write32(MSD.StringIndex);
403 Write8(Type);
Tim Northovereaef0742014-05-30 13:22:59 +0000404 Write8(SectionIndex);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000405
406 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
407 // value.
408 Write16(Flags);
409 if (is64Bit())
410 Write64(Address);
411 else
412 Write32(Address);
413}
414
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000415void MachObjectWriter::WriteLinkeditLoadCommand(uint32_t Type,
416 uint32_t DataOffset,
417 uint32_t DataSize) {
418 uint64_t Start = OS.tell();
419 (void) Start;
420
421 Write32(Type);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000422 Write32(sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000423 Write32(DataOffset);
424 Write32(DataSize);
425
Charles Davis8bdfafd2013-09-01 04:28:48 +0000426 assert(OS.tell() - Start == sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000427}
428
Daniel Dunbareec0f322013-01-18 01:26:07 +0000429static unsigned ComputeLinkerOptionsLoadCommandSize(
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000430 const std::vector<std::string> &Options, bool is64Bit)
Daniel Dunbareec0f322013-01-18 01:26:07 +0000431{
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000432 unsigned Size = sizeof(MachO::linker_option_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000433 for (unsigned i = 0, e = Options.size(); i != e; ++i)
434 Size += Options[i].size() + 1;
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000435 return RoundUpToAlignment(Size, is64Bit ? 8 : 4);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000436}
437
438void MachObjectWriter::WriteLinkerOptionsLoadCommand(
439 const std::vector<std::string> &Options)
440{
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000441 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit());
Daniel Dunbareec0f322013-01-18 01:26:07 +0000442 uint64_t Start = OS.tell();
443 (void) Start;
444
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000445 Write32(MachO::LC_LINKER_OPTION);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000446 Write32(Size);
447 Write32(Options.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000448 uint64_t BytesWritten = sizeof(MachO::linker_option_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000449 for (unsigned i = 0, e = Options.size(); i != e; ++i) {
450 // Write each string, including the null byte.
451 const std::string &Option = Options[i];
452 WriteBytes(Option.c_str(), Option.size() + 1);
453 BytesWritten += Option.size() + 1;
454 }
455
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000456 // Pad to a multiple of the pointer size.
457 WriteBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4));
Daniel Dunbareec0f322013-01-18 01:26:07 +0000458
459 assert(OS.tell() - Start == Size);
460}
461
Rafael Espindola26585542015-01-19 21:11:14 +0000462void MachObjectWriter::RecordRelocation(MCAssembler &Asm,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000463 const MCAsmLayout &Layout,
464 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000465 const MCFixup &Fixup, MCValue Target,
466 bool &IsPCRel, uint64_t &FixedValue) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000467 TargetObjectWriter->RecordRelocation(this, Asm, Layout, Fragment, Fixup,
468 Target, FixedValue);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000469}
470
471void MachObjectWriter::BindIndirectSymbols(MCAssembler &Asm) {
472 // This is the point where 'as' creates actual symbols for indirect symbols
473 // (in the following two passes). It would be easier for us to do this sooner
474 // when we see the attribute, but that makes getting the order in the symbol
475 // table much more complicated than it is worth.
476 //
477 // FIXME: Revisit this when the dust settles.
478
Kevin Enderby3aeada22013-08-28 17:50:59 +0000479 // Report errors for use of .indirect_symbol not in a symbol pointer section
480 // or stub section.
481 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
482 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
483 const MCSectionMachO &Section =
484 cast<MCSectionMachO>(it->SectionData->getSection());
485
David Majnemer7b583052014-03-07 07:36:05 +0000486 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
487 Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
488 Section.getType() != MachO::S_SYMBOL_STUBS) {
Kevin Enderby3aeada22013-08-28 17:50:59 +0000489 MCSymbol &Symbol = *it->Symbol;
490 report_fatal_error("indirect symbol '" + Symbol.getName() +
491 "' not in a symbol pointer or stub section");
492 }
493 }
494
Alp Tokerf907b892013-12-05 05:44:44 +0000495 // Bind non-lazy symbol pointers first.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000496 unsigned IndirectIndex = 0;
497 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
498 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
499 const MCSectionMachO &Section =
500 cast<MCSectionMachO>(it->SectionData->getSection());
501
David Majnemer7b583052014-03-07 07:36:05 +0000502 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000503 continue;
504
505 // Initialize the section indirect symbol base, if necessary.
Benjamin Kramerf29db272012-08-22 15:37:57 +0000506 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000507
508 Asm.getOrCreateSymbolData(*it->Symbol);
509 }
510
511 // Then lazy symbol pointers and symbol stubs.
512 IndirectIndex = 0;
513 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
514 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
515 const MCSectionMachO &Section =
516 cast<MCSectionMachO>(it->SectionData->getSection());
517
David Majnemer7b583052014-03-07 07:36:05 +0000518 if (Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
519 Section.getType() != MachO::S_SYMBOL_STUBS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000520 continue;
521
522 // Initialize the section indirect symbol base, if necessary.
Benjamin Kramerf29db272012-08-22 15:37:57 +0000523 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000524
525 // Set the symbol type to undefined lazy, but only on construction.
526 //
527 // FIXME: Do not hardcode.
528 bool Created;
529 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
530 if (Created)
531 Entry.setFlags(Entry.getFlags() | 0x0001);
532 }
533}
534
535/// ComputeSymbolTable - Compute the symbol table data
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000536void MachObjectWriter::ComputeSymbolTable(
537 MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData,
538 std::vector<MachSymbolData> &ExternalSymbolData,
539 std::vector<MachSymbolData> &UndefinedSymbolData) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000540 // Build section lookup table.
541 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
542 unsigned Index = 1;
543 for (MCAssembler::iterator it = Asm.begin(),
544 ie = Asm.end(); it != ie; ++it, ++Index)
545 SectionIndexMap[&it->getSection()] = Index;
546 assert(Index <= 256 && "Too many sections!");
547
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000548 // Build the string table.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000549 for (const MCSymbol &Symbol : Asm.symbols()) {
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000550 if (!Asm.isSymbolLinkerVisible(Symbol))
551 continue;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000552
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000553 StringTable.add(Symbol.getName());
554 }
555 StringTable.finalize(StringTableBuilder::MachO);
556
557 // Build the symbol arrays but only for non-local symbols.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000558 //
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000559 // The particular order that we collect and then sort the symbols is chosen to
560 // match 'as'. Even though it doesn't matter for correctness, this is
561 // important for letting us diff .o files.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000562 for (const MCSymbol &Symbol : Asm.symbols()) {
563 MCSymbolData &SD = Symbol.getData();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000564
565 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000566 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000567 continue;
568
David Blaikie583a31c2014-04-18 18:24:25 +0000569 if (!SD.isExternal() && !Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000570 continue;
571
Bill Wendlingeb872e02011-06-22 21:07:27 +0000572 MachSymbolData MSD;
David Blaikie583a31c2014-04-18 18:24:25 +0000573 MSD.SymbolData = &SD;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000574 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000575
576 if (Symbol.isUndefined()) {
577 MSD.SectionIndex = 0;
578 UndefinedSymbolData.push_back(MSD);
579 } else if (Symbol.isAbsolute()) {
580 MSD.SectionIndex = 0;
581 ExternalSymbolData.push_back(MSD);
582 } else {
583 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
584 assert(MSD.SectionIndex && "Invalid section index!");
585 ExternalSymbolData.push_back(MSD);
586 }
587 }
588
589 // Now add the data for local symbols.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000590 for (const MCSymbol &Symbol : Asm.symbols()) {
591 MCSymbolData &SD = Symbol.getData();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000592
593 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000594 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000595 continue;
596
David Blaikie583a31c2014-04-18 18:24:25 +0000597 if (SD.isExternal() || Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000598 continue;
599
Bill Wendlingeb872e02011-06-22 21:07:27 +0000600 MachSymbolData MSD;
David Blaikie583a31c2014-04-18 18:24:25 +0000601 MSD.SymbolData = &SD;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000602 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000603
604 if (Symbol.isAbsolute()) {
605 MSD.SectionIndex = 0;
606 LocalSymbolData.push_back(MSD);
607 } else {
608 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
609 assert(MSD.SectionIndex && "Invalid section index!");
610 LocalSymbolData.push_back(MSD);
611 }
612 }
613
614 // External and undefined symbols are required to be in lexicographic order.
615 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
616 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
617
618 // Set the symbol indices.
619 Index = 0;
620 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
621 LocalSymbolData[i].SymbolData->setIndex(Index++);
622 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
623 ExternalSymbolData[i].SymbolData->setIndex(Index++);
624 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
625 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindola26585542015-01-19 21:11:14 +0000626
627 for (const MCSectionData &SD : Asm) {
628 std::vector<RelAndSymbol> &Relocs = Relocations[&SD];
629 for (RelAndSymbol &Rel : Relocs) {
630 if (!Rel.Sym)
631 continue;
632
633 // Set the Index and the IsExtern bit.
Duncan P. N. Exon Smith6e23e5a2015-05-16 01:14:19 +0000634 unsigned Index = Rel.Sym->getData().getIndex();
Rafael Espindola26585542015-01-19 21:11:14 +0000635 assert(isInt<24>(Index));
636 if (IsLittleEndian)
Justin Bognerd4e08a02015-05-14 23:54:49 +0000637 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
Rafael Espindola26585542015-01-19 21:11:14 +0000638 else
639 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
640 }
641 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000642}
643
644void MachObjectWriter::computeSectionAddresses(const MCAssembler &Asm,
645 const MCAsmLayout &Layout) {
646 uint64_t StartAddress = 0;
647 const SmallVectorImpl<MCSectionData*> &Order = Layout.getSectionOrder();
648 for (int i = 0, n = Order.size(); i != n ; ++i) {
649 const MCSectionData *SD = Order[i];
650 StartAddress = RoundUpToAlignment(StartAddress, SD->getAlignment());
651 SectionAddress[SD] = StartAddress;
652 StartAddress += Layout.getSectionAddressSize(SD);
653
654 // Explicitly pad the section to match the alignment requirements of the
655 // following one. This is for 'gas' compatibility, it shouldn't
656 /// strictly be necessary.
657 StartAddress += getPaddingSize(SD, Layout);
658 }
659}
660
Bill Wendling21162212011-06-23 00:09:43 +0000661void MachObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
662 const MCAsmLayout &Layout) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000663 computeSectionAddresses(Asm, Layout);
664
665 // Create symbol data for any indirect symbols.
666 BindIndirectSymbols(Asm);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000667}
668
Rafael Espindola35d61892015-04-17 21:15:17 +0000669bool MachObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000670 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +0000671 bool InSet, bool IsPCRel) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000672 if (InSet)
673 return true;
674
675 // The effective address is
676 // addr(atom(A)) + offset(A)
677 // - addr(atom(B)) - offset(B)
678 // and the offsets are not relocatable, so the fixup is fully resolved when
679 // addr(atom(A)) - addr(atom(B)) == 0.
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000680 const MCSymbol &SA = findAliasedSymbol(SymA);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000681 const MCSection &SecA = SA.getSection();
682 const MCSection &SecB = FB.getParent()->getSection();
683
684 if (IsPCRel) {
685 // The simple (Darwin, except on x86_64) way of dealing with this was to
686 // assume that any reference to a temporary symbol *must* be a temporary
687 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
688 // relocation to a temporary symbol (in the same section) is fully
689 // resolved. This also works in conjunction with absolutized .set, which
690 // requires the compiler to use .set to absolutize the differences between
691 // symbols which the compiler knows to be assembly time constants, so we
692 // don't need to worry about considering symbol differences fully resolved.
Jim Grosbachd6ae4ba2011-12-07 19:46:59 +0000693 //
694 // If the file isn't using sub-sections-via-symbols, we can make the
695 // same assumptions about any symbol that we normally make about
696 // assembler locals.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000697
Rafael Espindolaa063bdd2014-03-11 21:22:57 +0000698 bool hasReliableSymbolDifference = isX86_64();
699 if (!hasReliableSymbolDifference) {
Jim Grosbach40455072012-01-17 22:14:39 +0000700 if (!SA.isInSection() || &SecA != &SecB ||
Jim Grosbachd4dbd092012-01-18 21:54:12 +0000701 (!SA.isTemporary() &&
Jim Grosbach35bc8f92012-01-24 21:45:25 +0000702 FB.getAtom() != Asm.getSymbolData(SA).getFragment()->getAtom() &&
703 Asm.getSubsectionsViaSymbols()))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000704 return false;
705 return true;
706 }
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000707 // For Darwin x86_64, there is one special case when the reference IsPCRel.
708 // If the fragment with the reference does not have a base symbol but meets
709 // the simple way of dealing with this, in that it is a temporary symbol in
710 // the same atom then it is assumed to be fully resolved. This is needed so
Eric Christopher460be992011-09-08 22:17:40 +0000711 // a relocation entry is not created and so the static linker does not
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000712 // mess up the reference later.
713 else if(!FB.getAtom() &&
714 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
715 return true;
716 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000717 } else {
718 if (!TargetObjectWriter->useAggressiveSymbolFolding())
719 return false;
720 }
721
Rafael Espindolabfd0f012014-11-04 22:10:33 +0000722 // If they are not in the same section, we can't compute the diff.
723 if (&SecA != &SecB)
724 return false;
725
Benjamin Kramer91ea5112011-08-12 01:51:29 +0000726 const MCFragment *FA = Asm.getSymbolData(SA).getFragment();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000727
Benjamin Kramer91ea5112011-08-12 01:51:29 +0000728 // Bail if the symbol has no fragment.
729 if (!FA)
730 return false;
731
Bill Wendlingeb872e02011-06-22 21:07:27 +0000732 // If the atoms are the same, they are guaranteed to have the same address.
Duncan P. N. Exon Smith09bfa582015-05-16 00:48:58 +0000733 if (FA->getAtom() == FB.getAtom())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000734 return true;
735
736 // Otherwise, we can't prove this is fully resolved.
737 return false;
738}
739
Eric Christopher460be992011-09-08 22:17:40 +0000740void MachObjectWriter::WriteObject(MCAssembler &Asm,
Jim Grosbach46be3012011-12-06 00:13:09 +0000741 const MCAsmLayout &Layout) {
Rafael Espindola26585542015-01-19 21:11:14 +0000742 // Compute symbol table information and bind symbol indices.
743 ComputeSymbolTable(Asm, LocalSymbolData, ExternalSymbolData,
744 UndefinedSymbolData);
745
Bill Wendlingeb872e02011-06-22 21:07:27 +0000746 unsigned NumSections = Asm.size();
Jim Grosbach448334a2014-03-18 22:09:05 +0000747 const MCAssembler::VersionMinInfoType &VersionInfo =
748 Layout.getAssembler().getVersionMinInfo();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000749
750 // The section data starts after the header, the segment load command (and
751 // section headers) and the symbol table.
752 unsigned NumLoadCommands = 1;
753 uint64_t LoadCommandsSize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +0000754 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64):
755 sizeof(MachO::segment_command) + NumSections * sizeof(MachO::section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000756
Jim Grosbach448334a2014-03-18 22:09:05 +0000757 // Add the deployment target version info load command size, if used.
758 if (VersionInfo.Major != 0) {
759 ++NumLoadCommands;
760 LoadCommandsSize += sizeof(MachO::version_min_command);
761 }
762
Daniel Dunbareec0f322013-01-18 01:26:07 +0000763 // Add the data-in-code load command size, if used.
764 unsigned NumDataRegions = Asm.getDataRegions().size();
765 if (NumDataRegions) {
766 ++NumLoadCommands;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000767 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000768 }
769
Tim Northover53d32512014-03-29 07:34:53 +0000770 // Add the loh load command size, if used.
771 uint64_t LOHRawSize = Asm.getLOHContainer().getEmitSize(*this, Layout);
772 uint64_t LOHSize = RoundUpToAlignment(LOHRawSize, is64Bit() ? 8 : 4);
773 if (LOHSize) {
774 ++NumLoadCommands;
775 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
776 }
777
Bill Wendlingeb872e02011-06-22 21:07:27 +0000778 // Add the symbol table load command sizes, if used.
779 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
780 UndefinedSymbolData.size();
781 if (NumSymbols) {
782 NumLoadCommands += 2;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000783 LoadCommandsSize += (sizeof(MachO::symtab_command) +
784 sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000785 }
786
Daniel Dunbareec0f322013-01-18 01:26:07 +0000787 // Add the linker option load commands sizes.
788 const std::vector<std::vector<std::string> > &LinkerOptions =
789 Asm.getLinkerOptions();
790 for (unsigned i = 0, e = LinkerOptions.size(); i != e; ++i) {
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000791 ++NumLoadCommands;
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000792 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(LinkerOptions[i],
793 is64Bit());
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000794 }
Daniel Dunbareec0f322013-01-18 01:26:07 +0000795
Bill Wendlingeb872e02011-06-22 21:07:27 +0000796 // Compute the total size of the section data, as well as its file size and vm
797 // size.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000798 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) :
799 sizeof(MachO::mach_header)) + LoadCommandsSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000800 uint64_t SectionDataSize = 0;
801 uint64_t SectionDataFileSize = 0;
802 uint64_t VMSize = 0;
803 for (MCAssembler::const_iterator it = Asm.begin(),
804 ie = Asm.end(); it != ie; ++it) {
805 const MCSectionData &SD = *it;
806 uint64_t Address = getSectionAddress(&SD);
807 uint64_t Size = Layout.getSectionAddressSize(&SD);
808 uint64_t FileSize = Layout.getSectionFileSize(&SD);
809 FileSize += getPaddingSize(&SD, Layout);
810
811 VMSize = std::max(VMSize, Address + Size);
812
813 if (SD.getSection().isVirtualSection())
814 continue;
815
816 SectionDataSize = std::max(SectionDataSize, Address + Size);
817 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
818 }
819
820 // The section data is padded to 4 bytes.
821 //
822 // FIXME: Is this machine dependent?
823 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
824 SectionDataFileSize += SectionDataPadding;
825
826 // Write the prolog, starting with the header and load command...
827 WriteHeader(NumLoadCommands, LoadCommandsSize,
828 Asm.getSubsectionsViaSymbols());
829 WriteSegmentLoadCommand(NumSections, VMSize,
830 SectionDataStart, SectionDataSize);
831
832 // ... and then the section headers.
833 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
834 for (MCAssembler::const_iterator it = Asm.begin(),
835 ie = Asm.end(); it != ie; ++it) {
Rafael Espindola26585542015-01-19 21:11:14 +0000836 std::vector<RelAndSymbol> &Relocs = Relocations[it];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000837 unsigned NumRelocs = Relocs.size();
838 uint64_t SectionStart = SectionDataStart + getSectionAddress(it);
839 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000840 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000841 }
842
Jim Grosbach448334a2014-03-18 22:09:05 +0000843 // Write out the deployment target information, if it's available.
844 if (VersionInfo.Major != 0) {
845 assert(VersionInfo.Update < 256 && "unencodable update target version");
846 assert(VersionInfo.Minor < 256 && "unencodable minor target version");
847 assert(VersionInfo.Major < 65536 && "unencodable major target version");
848 uint32_t EncodedVersion = VersionInfo.Update | (VersionInfo.Minor << 8) |
849 (VersionInfo.Major << 16);
850 Write32(VersionInfo.Kind == MCVM_OSXVersionMin ? MachO::LC_VERSION_MIN_MACOSX :
851 MachO::LC_VERSION_MIN_IPHONEOS);
852 Write32(sizeof(MachO::version_min_command));
853 Write32(EncodedVersion);
854 Write32(0); // reserved.
855 }
856
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000857 // Write the data-in-code load command, if used.
858 uint64_t DataInCodeTableEnd = RelocTableEnd + NumDataRegions * 8;
859 if (NumDataRegions) {
860 uint64_t DataRegionsOffset = RelocTableEnd;
861 uint64_t DataRegionsSize = NumDataRegions * 8;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000862 WriteLinkeditLoadCommand(MachO::LC_DATA_IN_CODE, DataRegionsOffset,
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000863 DataRegionsSize);
864 }
865
Tim Northover53d32512014-03-29 07:34:53 +0000866 // Write the loh load command, if used.
867 uint64_t LOHTableEnd = DataInCodeTableEnd + LOHSize;
868 if (LOHSize)
869 WriteLinkeditLoadCommand(MachO::LC_LINKER_OPTIMIZATION_HINT,
870 DataInCodeTableEnd, LOHSize);
871
Bill Wendlingeb872e02011-06-22 21:07:27 +0000872 // Write the symbol table load command, if used.
873 if (NumSymbols) {
874 unsigned FirstLocalSymbol = 0;
875 unsigned NumLocalSymbols = LocalSymbolData.size();
876 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
877 unsigned NumExternalSymbols = ExternalSymbolData.size();
878 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
879 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
880 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
881 unsigned NumSymTabSymbols =
882 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
883 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
884 uint64_t IndirectSymbolOffset = 0;
885
886 // If used, the indirect symbols are written after the section data.
887 if (NumIndirectSymbols)
Tim Northover53d32512014-03-29 07:34:53 +0000888 IndirectSymbolOffset = LOHTableEnd;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000889
890 // The symbol table is written after the indirect symbol data.
Tim Northover53d32512014-03-29 07:34:53 +0000891 uint64_t SymbolTableOffset = LOHTableEnd + IndirectSymbolSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000892
893 // The string table is written after symbol table.
894 uint64_t StringTableOffset =
Charles Davis8bdfafd2013-09-01 04:28:48 +0000895 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ?
896 sizeof(MachO::nlist_64) :
897 sizeof(MachO::nlist));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000898 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000899 StringTableOffset, StringTable.data().size());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000900
901 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
902 FirstExternalSymbol, NumExternalSymbols,
903 FirstUndefinedSymbol, NumUndefinedSymbols,
904 IndirectSymbolOffset, NumIndirectSymbols);
905 }
906
Daniel Dunbareec0f322013-01-18 01:26:07 +0000907 // Write the linker options load commands.
908 for (unsigned i = 0, e = LinkerOptions.size(); i != e; ++i) {
909 WriteLinkerOptionsLoadCommand(LinkerOptions[i]);
910 }
911
Bill Wendlingeb872e02011-06-22 21:07:27 +0000912 // Write the actual section data.
913 for (MCAssembler::const_iterator it = Asm.begin(),
914 ie = Asm.end(); it != ie; ++it) {
Jim Grosbach18e2fe42011-12-06 00:03:48 +0000915 Asm.writeSectionData(it, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000916
917 uint64_t Pad = getPaddingSize(it, Layout);
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000918 WriteZeros(Pad);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000919 }
920
921 // Write the extra padding.
922 WriteZeros(SectionDataPadding);
923
924 // Write the relocation entries.
925 for (MCAssembler::const_iterator it = Asm.begin(),
926 ie = Asm.end(); it != ie; ++it) {
927 // Write the section relocation entries, in reverse order to match 'as'
928 // (approximately, the exact algorithm is more complicated than this).
Rafael Espindola26585542015-01-19 21:11:14 +0000929 std::vector<RelAndSymbol> &Relocs = Relocations[it];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000930 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola26585542015-01-19 21:11:14 +0000931 Write32(Relocs[e - i - 1].MRE.r_word0);
932 Write32(Relocs[e - i - 1].MRE.r_word1);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000933 }
934 }
935
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000936 // Write out the data-in-code region payload, if there is one.
937 for (MCAssembler::const_data_region_iterator
938 it = Asm.data_region_begin(), ie = Asm.data_region_end();
939 it != ie; ++it) {
940 const DataRegionData *Data = &(*it);
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000941 uint64_t Start = getSymbolAddress(*Data->Start, Layout);
942 uint64_t End = getSymbolAddress(*Data->End, Layout);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000943 DEBUG(dbgs() << "data in code region-- kind: " << Data->Kind
944 << " start: " << Start << "(" << Data->Start->getName() << ")"
945 << " end: " << End << "(" << Data->End->getName() << ")"
946 << " size: " << End - Start
947 << "\n");
948 Write32(Start);
949 Write16(End - Start);
950 Write16(Data->Kind);
951 }
952
Tim Northover53d32512014-03-29 07:34:53 +0000953 // Write out the loh commands, if there is one.
954 if (LOHSize) {
955#ifndef NDEBUG
956 unsigned Start = OS.tell();
957#endif
958 Asm.getLOHContainer().Emit(*this, Layout);
959 // Pad to a multiple of the pointer size.
960 WriteBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4));
961 assert(OS.tell() - Start == LOHSize);
962 }
963
Bill Wendlingeb872e02011-06-22 21:07:27 +0000964 // Write the symbol table data, if used.
965 if (NumSymbols) {
966 // Write the indirect symbol entries.
967 for (MCAssembler::const_indirect_symbol_iterator
968 it = Asm.indirect_symbol_begin(),
969 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
Alp Tokerf907b892013-12-05 05:44:44 +0000970 // Indirect symbols in the non-lazy symbol pointer section have some
Bill Wendlingeb872e02011-06-22 21:07:27 +0000971 // special handling.
972 const MCSectionMachO &Section =
973 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
David Majnemer7b583052014-03-07 07:36:05 +0000974 if (Section.getType() == MachO::S_NON_LAZY_SYMBOL_POINTERS) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000975 // If this symbol is defined and internal, mark it as such.
976 if (it->Symbol->isDefined() &&
977 !Asm.getSymbolData(*it->Symbol).isExternal()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000978 uint32_t Flags = MachO::INDIRECT_SYMBOL_LOCAL;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000979 if (it->Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000980 Flags |= MachO::INDIRECT_SYMBOL_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000981 Write32(Flags);
982 continue;
983 }
984 }
985
986 Write32(Asm.getSymbolData(*it->Symbol).getIndex());
987 }
988
989 // FIXME: Check that offsets match computed ones.
990
991 // Write the symbol table entries.
992 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
993 WriteNlist(LocalSymbolData[i], Layout);
994 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
995 WriteNlist(ExternalSymbolData[i], Layout);
996 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
997 WriteNlist(UndefinedSymbolData[i], Layout);
998
999 // Write the string table.
Hans Wennborg1b1a3992014-10-06 17:05:19 +00001000 OS << StringTable.data();
Bill Wendlingeb872e02011-06-22 21:07:27 +00001001 }
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +00001002}
1003
Daniel Dunbar8888a962010-12-16 16:09:19 +00001004MCObjectWriter *llvm::createMachObjectWriter(MCMachObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001005 raw_pwrite_stream &OS,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001006 bool IsLittleEndian) {
Daniel Dunbar03fcccb2010-12-16 17:21:02 +00001007 return new MachObjectWriter(MOTW, OS, IsLittleEndian);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +00001008}