blob: 240aa4da07635441a133994d979845fa69c27d9a [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
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000042bool MachObjectWriter::doesSymbolRequireExternRelocation(const MCSymbol &S) {
Daniel Dunbar7de31062010-05-10 23:15:13 +000043 // Undefined symbols are always extern.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000044 if (S.isUndefined())
Daniel Dunbar7de31062010-05-10 23:15:13 +000045 return true;
46
47 // References to weak definitions require external relocation entries; the
48 // definition may not always be the one in the same object file.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000049 if (S.getData().getFlags() & SF_WeakDefinition)
Daniel Dunbar7de31062010-05-10 23:15:13 +000050 return true;
51
52 // Otherwise, we can use an internal relocation.
53 return false;
54}
55
Jim Grosbach28fcafb2011-06-24 23:44:37 +000056bool MachObjectWriter::
57MachSymbolData::operator<(const MachSymbolData &RHS) const {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000058 return Symbol->getName() < RHS.Symbol->getName();
Jim Grosbach28fcafb2011-06-24 23:44:37 +000059}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000060
Jim Grosbach28fcafb2011-06-24 23:44:37 +000061bool MachObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
62 const MCFixupKindInfo &FKI = Asm.getBackend().getFixupKindInfo(
63 (MCFixupKind) Kind);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000064
Jim Grosbach28fcafb2011-06-24 23:44:37 +000065 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
66}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000067
Jim Grosbach28fcafb2011-06-24 23:44:37 +000068uint64_t MachObjectWriter::getFragmentAddress(const MCFragment *Fragment,
69 const MCAsmLayout &Layout) const {
70 return getSectionAddress(Fragment->getParent()) +
71 Layout.getFragmentOffset(Fragment);
72}
Bill Wendlingeb872e02011-06-22 21:07:27 +000073
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000074uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S,
Bill Wendlingeb872e02011-06-22 21:07:27 +000075 const MCAsmLayout &Layout) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +000076 // If this is a variable, then recursively evaluate now.
77 if (S.isVariable()) {
Jim Grosbachd96ef192012-09-13 23:11:25 +000078 if (const MCConstantExpr *C =
79 dyn_cast<const MCConstantExpr>(S.getVariableValue()))
80 return C->getValue();
81
82
Bill Wendlingeb872e02011-06-22 21:07:27 +000083 MCValue Target;
Joerg Sonnenberger752b91b2014-08-10 11:35:12 +000084 if (!S.getVariableValue()->EvaluateAsRelocatable(Target, &Layout, nullptr))
Bill Wendlingeb872e02011-06-22 21:07:27 +000085 report_fatal_error("unable to evaluate offset for variable '" +
86 S.getName() + "'");
87
88 // Verify that any used symbols are defined.
89 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
90 report_fatal_error("unable to evaluate offset to undefined symbol '" +
91 Target.getSymA()->getSymbol().getName() + "'");
92 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
93 report_fatal_error("unable to evaluate offset to undefined symbol '" +
94 Target.getSymB()->getSymbol().getName() + "'");
95
96 uint64_t Address = Target.getConstant();
97 if (Target.getSymA())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000098 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +000099 if (Target.getSymB())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000100 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000101 return Address;
102 }
103
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000104 return getSectionAddress(S.getData().getFragment()->getParent()) +
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000105 Layout.getSymbolOffset(S);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000106}
107
108uint64_t MachObjectWriter::getPaddingSize(const MCSectionData *SD,
109 const MCAsmLayout &Layout) const {
110 uint64_t EndAddr = getSectionAddress(SD) + Layout.getSectionAddressSize(SD);
Rafael Espindolab2ac19e2015-05-25 14:25:28 +0000111 unsigned Next = SD->getSection().getLayoutOrder() + 1;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000112 if (Next >= Layout.getSectionOrder().size())
113 return 0;
114
115 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next];
116 if (NextSD.getSection().isVirtualSection())
117 return 0;
Rafael Espindola967d6a62015-05-21 21:02:35 +0000118 return OffsetToAlignment(EndAddr, NextSD.getSection().getAlignment());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000119}
120
121void MachObjectWriter::WriteHeader(unsigned NumLoadCommands,
122 unsigned LoadCommandsSize,
123 bool SubsectionsViaSymbols) {
124 uint32_t Flags = 0;
125
126 if (SubsectionsViaSymbols)
Charles Davis8bdfafd2013-09-01 04:28:48 +0000127 Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000128
129 // struct mach_header (28 bytes) or
130 // struct mach_header_64 (32 bytes)
131
132 uint64_t Start = OS.tell();
133 (void) Start;
134
Charles Davis8bdfafd2013-09-01 04:28:48 +0000135 Write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000136
137 Write32(TargetObjectWriter->getCPUType());
138 Write32(TargetObjectWriter->getCPUSubtype());
139
Charles Davis8bdfafd2013-09-01 04:28:48 +0000140 Write32(MachO::MH_OBJECT);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000141 Write32(NumLoadCommands);
142 Write32(LoadCommandsSize);
143 Write32(Flags);
144 if (is64Bit())
145 Write32(0); // reserved
146
147 assert(OS.tell() - Start ==
Charles Davis8bdfafd2013-09-01 04:28:48 +0000148 (is64Bit()?sizeof(MachO::mach_header_64): sizeof(MachO::mach_header)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000149}
150
151/// WriteSegmentLoadCommand - Write a segment load command.
152///
Dmitri Gribenko5485acd2012-09-14 14:57:36 +0000153/// \param NumSections The number of sections in this segment.
154/// \param SectionDataSize The total size of the sections.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000155void MachObjectWriter::WriteSegmentLoadCommand(unsigned NumSections,
156 uint64_t VMSize,
157 uint64_t SectionDataStartOffset,
158 uint64_t SectionDataSize) {
159 // struct segment_command (56 bytes) or
160 // struct segment_command_64 (72 bytes)
161
162 uint64_t Start = OS.tell();
163 (void) Start;
164
165 unsigned SegmentLoadCommandSize =
Charles Davis8bdfafd2013-09-01 04:28:48 +0000166 is64Bit() ? sizeof(MachO::segment_command_64):
167 sizeof(MachO::segment_command);
168 Write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000169 Write32(SegmentLoadCommandSize +
Charles Davis8bdfafd2013-09-01 04:28:48 +0000170 NumSections * (is64Bit() ? sizeof(MachO::section_64) :
171 sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000172
173 WriteBytes("", 16);
174 if (is64Bit()) {
175 Write64(0); // vmaddr
176 Write64(VMSize); // vmsize
177 Write64(SectionDataStartOffset); // file offset
178 Write64(SectionDataSize); // file size
179 } else {
180 Write32(0); // vmaddr
181 Write32(VMSize); // vmsize
182 Write32(SectionDataStartOffset); // file offset
183 Write32(SectionDataSize); // file size
184 }
Nick Kledzikfe6813f2013-09-04 23:53:44 +0000185 // maxprot
186 Write32(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE);
187 // initprot
188 Write32(MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000189 Write32(NumSections);
190 Write32(0); // flags
191
192 assert(OS.tell() - Start == SegmentLoadCommandSize);
193}
194
195void MachObjectWriter::WriteSection(const MCAssembler &Asm,
196 const MCAsmLayout &Layout,
197 const MCSectionData &SD,
198 uint64_t FileOffset,
199 uint64_t RelocationsStart,
200 unsigned NumRelocations) {
201 uint64_t SectionSize = Layout.getSectionAddressSize(&SD);
Rafael Espindola967d6a62015-05-21 21:02:35 +0000202 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000203
204 // The offset is unused for virtual sections.
Rafael Espindola967d6a62015-05-21 21:02:35 +0000205 if (Section.isVirtualSection()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000206 assert(Layout.getSectionFileSize(&SD) == 0 && "Invalid file size!");
207 FileOffset = 0;
208 }
209
210 // struct section (68 bytes) or
211 // struct section_64 (80 bytes)
212
213 uint64_t Start = OS.tell();
214 (void) Start;
215
Bill Wendlingeb872e02011-06-22 21:07:27 +0000216 WriteBytes(Section.getSectionName(), 16);
217 WriteBytes(Section.getSegmentName(), 16);
218 if (is64Bit()) {
219 Write64(getSectionAddress(&SD)); // address
220 Write64(SectionSize); // size
221 } else {
222 Write32(getSectionAddress(&SD)); // address
223 Write32(SectionSize); // size
224 }
225 Write32(FileOffset);
226
227 unsigned Flags = Section.getTypeAndAttributes();
Rafael Espindolacd625182015-05-25 18:34:26 +0000228 if (Section.hasInstructions())
David Majnemer7b583052014-03-07 07:36:05 +0000229 Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000230
Rafael Espindola967d6a62015-05-21 21:02:35 +0000231 assert(isPowerOf2_32(Section.getAlignment()) && "Invalid alignment!");
232 Write32(Log2_32(Section.getAlignment()));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000233 Write32(NumRelocations ? RelocationsStart : 0);
234 Write32(NumRelocations);
235 Write32(Flags);
236 Write32(IndirectSymBase.lookup(&SD)); // reserved1
237 Write32(Section.getStubSize()); // reserved2
238 if (is64Bit())
239 Write32(0); // reserved3
240
Charles Davis8bdfafd2013-09-01 04:28:48 +0000241 assert(OS.tell() - Start == (is64Bit() ? sizeof(MachO::section_64) :
242 sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000243}
244
245void MachObjectWriter::WriteSymtabLoadCommand(uint32_t SymbolOffset,
246 uint32_t NumSymbols,
247 uint32_t StringTableOffset,
248 uint32_t StringTableSize) {
249 // struct symtab_command (24 bytes)
250
251 uint64_t Start = OS.tell();
252 (void) Start;
253
Charles Davis8bdfafd2013-09-01 04:28:48 +0000254 Write32(MachO::LC_SYMTAB);
255 Write32(sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000256 Write32(SymbolOffset);
257 Write32(NumSymbols);
258 Write32(StringTableOffset);
259 Write32(StringTableSize);
260
Charles Davis8bdfafd2013-09-01 04:28:48 +0000261 assert(OS.tell() - Start == sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000262}
263
264void MachObjectWriter::WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
265 uint32_t NumLocalSymbols,
266 uint32_t FirstExternalSymbol,
267 uint32_t NumExternalSymbols,
268 uint32_t FirstUndefinedSymbol,
269 uint32_t NumUndefinedSymbols,
270 uint32_t IndirectSymbolOffset,
271 uint32_t NumIndirectSymbols) {
272 // struct dysymtab_command (80 bytes)
273
274 uint64_t Start = OS.tell();
275 (void) Start;
276
Charles Davis8bdfafd2013-09-01 04:28:48 +0000277 Write32(MachO::LC_DYSYMTAB);
278 Write32(sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000279 Write32(FirstLocalSymbol);
280 Write32(NumLocalSymbols);
281 Write32(FirstExternalSymbol);
282 Write32(NumExternalSymbols);
283 Write32(FirstUndefinedSymbol);
284 Write32(NumUndefinedSymbols);
285 Write32(0); // tocoff
286 Write32(0); // ntoc
287 Write32(0); // modtaboff
288 Write32(0); // nmodtab
289 Write32(0); // extrefsymoff
290 Write32(0); // nextrefsyms
291 Write32(IndirectSymbolOffset);
292 Write32(NumIndirectSymbols);
293 Write32(0); // extreloff
294 Write32(0); // nextrel
295 Write32(0); // locreloff
296 Write32(0); // nlocrel
297
Charles Davis8bdfafd2013-09-01 04:28:48 +0000298 assert(OS.tell() - Start == sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000299}
300
Tim Northovereaef0742014-05-30 13:22:59 +0000301MachObjectWriter::MachSymbolData *
302MachObjectWriter::findSymbolData(const MCSymbol &Sym) {
303 for (auto &Entry : LocalSymbolData)
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000304 if (Entry.Symbol == &Sym)
Tim Northovereaef0742014-05-30 13:22:59 +0000305 return &Entry;
306
307 for (auto &Entry : ExternalSymbolData)
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000308 if (Entry.Symbol == &Sym)
Tim Northovereaef0742014-05-30 13:22:59 +0000309 return &Entry;
310
311 for (auto &Entry : UndefinedSymbolData)
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000312 if (Entry.Symbol == &Sym)
Tim Northovereaef0742014-05-30 13:22:59 +0000313 return &Entry;
314
315 return nullptr;
316}
317
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000318const MCSymbol &MachObjectWriter::findAliasedSymbol(const MCSymbol &Sym) const {
319 const MCSymbol *S = &Sym;
320 while (S->isVariable()) {
321 const MCExpr *Value = S->getVariableValue();
322 const auto *Ref = dyn_cast<MCSymbolRefExpr>(Value);
323 if (!Ref)
324 return *S;
325 S = &Ref->getSymbol();
326 }
327 return *S;
328}
329
Bill Wendling21162212011-06-23 00:09:43 +0000330void MachObjectWriter::WriteNlist(MachSymbolData &MSD,
331 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000332 const MCSymbol *Symbol = MSD.Symbol;
333 MCSymbolData &Data = Symbol->getData();
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000334 const MCSymbol *AliasedSymbol = &findAliasedSymbol(*Symbol);
Tim Northovereaef0742014-05-30 13:22:59 +0000335 uint8_t SectionIndex = MSD.SectionIndex;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000336 uint8_t Type = 0;
337 uint16_t Flags = Data.getFlags();
Jim Grosbacha3171602011-08-09 22:12:37 +0000338 uint64_t Address = 0;
Tim Northovereaef0742014-05-30 13:22:59 +0000339 bool IsAlias = Symbol != AliasedSymbol;
340
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000341 const MCSymbol &OrigSymbol = *Symbol;
Tim Northovereaef0742014-05-30 13:22:59 +0000342 MachSymbolData *AliaseeInfo;
343 if (IsAlias) {
344 AliaseeInfo = findSymbolData(*AliasedSymbol);
345 if (AliaseeInfo)
346 SectionIndex = AliaseeInfo->SectionIndex;
347 Symbol = AliasedSymbol;
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000348 // FIXME: Should this update Data as well? Do we need OrigSymbol at all?
Tim Northovereaef0742014-05-30 13:22:59 +0000349 }
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 Smith24f47752015-05-21 00:39:24 +0000376 Address = getSymbolAddress(OrigSymbol, Layout);
Tim Northovereaef0742014-05-30 13:22:59 +0000377 else if (Data.isCommon()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000378 // Common symbols are encoded with the size in the address
379 // field, and their alignment in the flags.
380 Address = Data.getCommonSize();
381
382 // Common alignment is packed into the 'desc' bits.
383 if (unsigned Align = Data.getCommonAlignment()) {
384 unsigned Log2Size = Log2_32(Align);
385 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
386 if (Log2Size > 15)
387 report_fatal_error("invalid 'common' alignment '" +
Tim Northovereaef0742014-05-30 13:22:59 +0000388 Twine(Align) + "' for '" + Symbol->getName() + "'",
Jim Grosbachaff6a0c2013-09-24 23:56:31 +0000389 false);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000390 // FIXME: Keep this mask with the SymbolFlags enumeration.
391 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
392 }
393 }
394
Tim Northovereaef0742014-05-30 13:22:59 +0000395 if (Layout.getAssembler().isThumbFunc(Symbol))
Rafael Espindolab60c8292014-04-29 12:46:50 +0000396 Flags |= SF_ThumbFunc;
397
Bill Wendlingeb872e02011-06-22 21:07:27 +0000398 // struct nlist (12 bytes)
399
400 Write32(MSD.StringIndex);
401 Write8(Type);
Tim Northovereaef0742014-05-30 13:22:59 +0000402 Write8(SectionIndex);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000403
404 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
405 // value.
406 Write16(Flags);
407 if (is64Bit())
408 Write64(Address);
409 else
410 Write32(Address);
411}
412
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000413void MachObjectWriter::WriteLinkeditLoadCommand(uint32_t Type,
414 uint32_t DataOffset,
415 uint32_t DataSize) {
416 uint64_t Start = OS.tell();
417 (void) Start;
418
419 Write32(Type);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000420 Write32(sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000421 Write32(DataOffset);
422 Write32(DataSize);
423
Charles Davis8bdfafd2013-09-01 04:28:48 +0000424 assert(OS.tell() - Start == sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000425}
426
Daniel Dunbareec0f322013-01-18 01:26:07 +0000427static unsigned ComputeLinkerOptionsLoadCommandSize(
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000428 const std::vector<std::string> &Options, bool is64Bit)
Daniel Dunbareec0f322013-01-18 01:26:07 +0000429{
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000430 unsigned Size = sizeof(MachO::linker_option_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000431 for (unsigned i = 0, e = Options.size(); i != e; ++i)
432 Size += Options[i].size() + 1;
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000433 return RoundUpToAlignment(Size, is64Bit ? 8 : 4);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000434}
435
436void MachObjectWriter::WriteLinkerOptionsLoadCommand(
437 const std::vector<std::string> &Options)
438{
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000439 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit());
Daniel Dunbareec0f322013-01-18 01:26:07 +0000440 uint64_t Start = OS.tell();
441 (void) Start;
442
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000443 Write32(MachO::LC_LINKER_OPTION);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000444 Write32(Size);
445 Write32(Options.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000446 uint64_t BytesWritten = sizeof(MachO::linker_option_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000447 for (unsigned i = 0, e = Options.size(); i != e; ++i) {
448 // Write each string, including the null byte.
449 const std::string &Option = Options[i];
450 WriteBytes(Option.c_str(), Option.size() + 1);
451 BytesWritten += Option.size() + 1;
452 }
453
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000454 // Pad to a multiple of the pointer size.
455 WriteBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4));
Daniel Dunbareec0f322013-01-18 01:26:07 +0000456
457 assert(OS.tell() - Start == Size);
458}
459
Rafael Espindola26585542015-01-19 21:11:14 +0000460void MachObjectWriter::RecordRelocation(MCAssembler &Asm,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000461 const MCAsmLayout &Layout,
462 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000463 const MCFixup &Fixup, MCValue Target,
464 bool &IsPCRel, uint64_t &FixedValue) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000465 TargetObjectWriter->RecordRelocation(this, Asm, Layout, Fragment, Fixup,
466 Target, FixedValue);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000467}
468
469void MachObjectWriter::BindIndirectSymbols(MCAssembler &Asm) {
470 // This is the point where 'as' creates actual symbols for indirect symbols
471 // (in the following two passes). It would be easier for us to do this sooner
472 // when we see the attribute, but that makes getting the order in the symbol
473 // table much more complicated than it is worth.
474 //
475 // FIXME: Revisit this when the dust settles.
476
Kevin Enderby3aeada22013-08-28 17:50:59 +0000477 // Report errors for use of .indirect_symbol not in a symbol pointer section
478 // or stub section.
479 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
480 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
481 const MCSectionMachO &Section =
482 cast<MCSectionMachO>(it->SectionData->getSection());
483
David Majnemer7b583052014-03-07 07:36:05 +0000484 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
485 Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
486 Section.getType() != MachO::S_SYMBOL_STUBS) {
Kevin Enderby3aeada22013-08-28 17:50:59 +0000487 MCSymbol &Symbol = *it->Symbol;
488 report_fatal_error("indirect symbol '" + Symbol.getName() +
489 "' not in a symbol pointer or stub section");
490 }
491 }
492
Alp Tokerf907b892013-12-05 05:44:44 +0000493 // Bind non-lazy symbol pointers first.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000494 unsigned IndirectIndex = 0;
495 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
496 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
497 const MCSectionMachO &Section =
498 cast<MCSectionMachO>(it->SectionData->getSection());
499
David Majnemer7b583052014-03-07 07:36:05 +0000500 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000501 continue;
502
503 // Initialize the section indirect symbol base, if necessary.
Benjamin Kramerf29db272012-08-22 15:37:57 +0000504 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000505
506 Asm.getOrCreateSymbolData(*it->Symbol);
507 }
508
509 // Then lazy symbol pointers and symbol stubs.
510 IndirectIndex = 0;
511 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
512 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
513 const MCSectionMachO &Section =
514 cast<MCSectionMachO>(it->SectionData->getSection());
515
David Majnemer7b583052014-03-07 07:36:05 +0000516 if (Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
517 Section.getType() != MachO::S_SYMBOL_STUBS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000518 continue;
519
520 // Initialize the section indirect symbol base, if necessary.
Benjamin Kramerf29db272012-08-22 15:37:57 +0000521 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000522
523 // Set the symbol type to undefined lazy, but only on construction.
524 //
525 // FIXME: Do not hardcode.
526 bool Created;
527 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
528 if (Created)
529 Entry.setFlags(Entry.getFlags() | 0x0001);
530 }
531}
532
533/// ComputeSymbolTable - Compute the symbol table data
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000534void MachObjectWriter::ComputeSymbolTable(
535 MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData,
536 std::vector<MachSymbolData> &ExternalSymbolData,
537 std::vector<MachSymbolData> &UndefinedSymbolData) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000538 // Build section lookup table.
539 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
540 unsigned Index = 1;
541 for (MCAssembler::iterator it = Asm.begin(),
542 ie = Asm.end(); it != ie; ++it, ++Index)
Rafael Espindolaa554c052015-05-25 23:14:17 +0000543 SectionIndexMap[&*it] = Index;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000544 assert(Index <= 256 && "Too many sections!");
545
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000546 // Build the string table.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000547 for (const MCSymbol &Symbol : Asm.symbols()) {
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000548 if (!Asm.isSymbolLinkerVisible(Symbol))
549 continue;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000550
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000551 StringTable.add(Symbol.getName());
552 }
553 StringTable.finalize(StringTableBuilder::MachO);
554
555 // Build the symbol arrays but only for non-local symbols.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000556 //
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000557 // The particular order that we collect and then sort the symbols is chosen to
558 // match 'as'. Even though it doesn't matter for correctness, this is
559 // important for letting us diff .o files.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000560 for (const MCSymbol &Symbol : Asm.symbols()) {
561 MCSymbolData &SD = Symbol.getData();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000562
563 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000564 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000565 continue;
566
David Blaikie583a31c2014-04-18 18:24:25 +0000567 if (!SD.isExternal() && !Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000568 continue;
569
Bill Wendlingeb872e02011-06-22 21:07:27 +0000570 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000571 MSD.Symbol = &Symbol;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000572 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000573
574 if (Symbol.isUndefined()) {
575 MSD.SectionIndex = 0;
576 UndefinedSymbolData.push_back(MSD);
577 } else if (Symbol.isAbsolute()) {
578 MSD.SectionIndex = 0;
579 ExternalSymbolData.push_back(MSD);
580 } else {
581 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
582 assert(MSD.SectionIndex && "Invalid section index!");
583 ExternalSymbolData.push_back(MSD);
584 }
585 }
586
587 // Now add the data for local symbols.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000588 for (const MCSymbol &Symbol : Asm.symbols()) {
589 MCSymbolData &SD = Symbol.getData();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000590
591 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000592 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000593 continue;
594
David Blaikie583a31c2014-04-18 18:24:25 +0000595 if (SD.isExternal() || Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000596 continue;
597
Bill Wendlingeb872e02011-06-22 21:07:27 +0000598 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000599 MSD.Symbol = &Symbol;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000600 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000601
602 if (Symbol.isAbsolute()) {
603 MSD.SectionIndex = 0;
604 LocalSymbolData.push_back(MSD);
605 } else {
606 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
607 assert(MSD.SectionIndex && "Invalid section index!");
608 LocalSymbolData.push_back(MSD);
609 }
610 }
611
612 // External and undefined symbols are required to be in lexicographic order.
613 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
614 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
615
616 // Set the symbol indices.
617 Index = 0;
618 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000619 LocalSymbolData[i].Symbol->setIndex(Index++);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000620 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000621 ExternalSymbolData[i].Symbol->setIndex(Index++);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000622 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000623 UndefinedSymbolData[i].Symbol->setIndex(Index++);
Rafael Espindola26585542015-01-19 21:11:14 +0000624
Rafael Espindolaa554c052015-05-25 23:14:17 +0000625 for (const MCSection &Section : Asm) {
626 const MCSectionData &SD = Section.getSectionData();
Rafael Espindola26585542015-01-19 21:11:14 +0000627 std::vector<RelAndSymbol> &Relocs = Relocations[&SD];
628 for (RelAndSymbol &Rel : Relocs) {
629 if (!Rel.Sym)
630 continue;
631
632 // Set the Index and the IsExtern bit.
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000633 unsigned Index = Rel.Sym->getIndex();
Rafael Espindola26585542015-01-19 21:11:14 +0000634 assert(isInt<24>(Index));
635 if (IsLittleEndian)
Justin Bognerd4e08a02015-05-14 23:54:49 +0000636 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
Rafael Espindola26585542015-01-19 21:11:14 +0000637 else
638 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
639 }
640 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000641}
642
643void MachObjectWriter::computeSectionAddresses(const MCAssembler &Asm,
644 const MCAsmLayout &Layout) {
645 uint64_t StartAddress = 0;
646 const SmallVectorImpl<MCSectionData*> &Order = Layout.getSectionOrder();
647 for (int i = 0, n = Order.size(); i != n ; ++i) {
648 const MCSectionData *SD = Order[i];
Rafael Espindola967d6a62015-05-21 21:02:35 +0000649 StartAddress =
650 RoundUpToAlignment(StartAddress, SD->getSection().getAlignment());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000651 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) {
Rafael Espindolaa554c052015-05-25 23:14:17 +0000805 const MCSectionData &SD = it->getSectionData();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000806 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 Espindolaa554c052015-05-25 23:14:17 +0000836 const MCSectionData &SD = it->getSectionData();
837 std::vector<RelAndSymbol> &Relocs = Relocations[&SD];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000838 unsigned NumRelocs = Relocs.size();
Rafael Espindolaa554c052015-05-25 23:14:17 +0000839 uint64_t SectionStart = SectionDataStart + getSectionAddress(&SD);
840 WriteSection(Asm, Layout, SD, SectionStart, RelocTableEnd, NumRelocs);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000841 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000842 }
843
Jim Grosbach448334a2014-03-18 22:09:05 +0000844 // Write out the deployment target information, if it's available.
845 if (VersionInfo.Major != 0) {
846 assert(VersionInfo.Update < 256 && "unencodable update target version");
847 assert(VersionInfo.Minor < 256 && "unencodable minor target version");
848 assert(VersionInfo.Major < 65536 && "unencodable major target version");
849 uint32_t EncodedVersion = VersionInfo.Update | (VersionInfo.Minor << 8) |
850 (VersionInfo.Major << 16);
851 Write32(VersionInfo.Kind == MCVM_OSXVersionMin ? MachO::LC_VERSION_MIN_MACOSX :
852 MachO::LC_VERSION_MIN_IPHONEOS);
853 Write32(sizeof(MachO::version_min_command));
854 Write32(EncodedVersion);
855 Write32(0); // reserved.
856 }
857
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000858 // Write the data-in-code load command, if used.
859 uint64_t DataInCodeTableEnd = RelocTableEnd + NumDataRegions * 8;
860 if (NumDataRegions) {
861 uint64_t DataRegionsOffset = RelocTableEnd;
862 uint64_t DataRegionsSize = NumDataRegions * 8;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000863 WriteLinkeditLoadCommand(MachO::LC_DATA_IN_CODE, DataRegionsOffset,
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000864 DataRegionsSize);
865 }
866
Tim Northover53d32512014-03-29 07:34:53 +0000867 // Write the loh load command, if used.
868 uint64_t LOHTableEnd = DataInCodeTableEnd + LOHSize;
869 if (LOHSize)
870 WriteLinkeditLoadCommand(MachO::LC_LINKER_OPTIMIZATION_HINT,
871 DataInCodeTableEnd, LOHSize);
872
Bill Wendlingeb872e02011-06-22 21:07:27 +0000873 // Write the symbol table load command, if used.
874 if (NumSymbols) {
875 unsigned FirstLocalSymbol = 0;
876 unsigned NumLocalSymbols = LocalSymbolData.size();
877 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
878 unsigned NumExternalSymbols = ExternalSymbolData.size();
879 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
880 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
881 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
882 unsigned NumSymTabSymbols =
883 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
884 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
885 uint64_t IndirectSymbolOffset = 0;
886
887 // If used, the indirect symbols are written after the section data.
888 if (NumIndirectSymbols)
Tim Northover53d32512014-03-29 07:34:53 +0000889 IndirectSymbolOffset = LOHTableEnd;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000890
891 // The symbol table is written after the indirect symbol data.
Tim Northover53d32512014-03-29 07:34:53 +0000892 uint64_t SymbolTableOffset = LOHTableEnd + IndirectSymbolSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000893
894 // The string table is written after symbol table.
895 uint64_t StringTableOffset =
Charles Davis8bdfafd2013-09-01 04:28:48 +0000896 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ?
897 sizeof(MachO::nlist_64) :
898 sizeof(MachO::nlist));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000899 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000900 StringTableOffset, StringTable.data().size());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000901
902 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
903 FirstExternalSymbol, NumExternalSymbols,
904 FirstUndefinedSymbol, NumUndefinedSymbols,
905 IndirectSymbolOffset, NumIndirectSymbols);
906 }
907
Daniel Dunbareec0f322013-01-18 01:26:07 +0000908 // Write the linker options load commands.
909 for (unsigned i = 0, e = LinkerOptions.size(); i != e; ++i) {
910 WriteLinkerOptionsLoadCommand(LinkerOptions[i]);
911 }
912
Bill Wendlingeb872e02011-06-22 21:07:27 +0000913 // Write the actual section data.
914 for (MCAssembler::const_iterator it = Asm.begin(),
915 ie = Asm.end(); it != ie; ++it) {
Rafael Espindolaa554c052015-05-25 23:14:17 +0000916 const MCSectionData &SD = it->getSectionData();
917 Asm.writeSectionData(&SD, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000918
Rafael Espindolaa554c052015-05-25 23:14:17 +0000919 uint64_t Pad = getPaddingSize(&SD, Layout);
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000920 WriteZeros(Pad);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000921 }
922
923 // Write the extra padding.
924 WriteZeros(SectionDataPadding);
925
926 // Write the relocation entries.
927 for (MCAssembler::const_iterator it = Asm.begin(),
928 ie = Asm.end(); it != ie; ++it) {
929 // Write the section relocation entries, in reverse order to match 'as'
930 // (approximately, the exact algorithm is more complicated than this).
Rafael Espindolaa554c052015-05-25 23:14:17 +0000931 std::vector<RelAndSymbol> &Relocs = Relocations[&it->getSectionData()];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000932 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola26585542015-01-19 21:11:14 +0000933 Write32(Relocs[e - i - 1].MRE.r_word0);
934 Write32(Relocs[e - i - 1].MRE.r_word1);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000935 }
936 }
937
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000938 // Write out the data-in-code region payload, if there is one.
939 for (MCAssembler::const_data_region_iterator
940 it = Asm.data_region_begin(), ie = Asm.data_region_end();
941 it != ie; ++it) {
942 const DataRegionData *Data = &(*it);
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000943 uint64_t Start = getSymbolAddress(*Data->Start, Layout);
944 uint64_t End = getSymbolAddress(*Data->End, Layout);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000945 DEBUG(dbgs() << "data in code region-- kind: " << Data->Kind
946 << " start: " << Start << "(" << Data->Start->getName() << ")"
947 << " end: " << End << "(" << Data->End->getName() << ")"
948 << " size: " << End - Start
949 << "\n");
950 Write32(Start);
951 Write16(End - Start);
952 Write16(Data->Kind);
953 }
954
Tim Northover53d32512014-03-29 07:34:53 +0000955 // Write out the loh commands, if there is one.
956 if (LOHSize) {
957#ifndef NDEBUG
958 unsigned Start = OS.tell();
959#endif
960 Asm.getLOHContainer().Emit(*this, Layout);
961 // Pad to a multiple of the pointer size.
962 WriteBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4));
963 assert(OS.tell() - Start == LOHSize);
964 }
965
Bill Wendlingeb872e02011-06-22 21:07:27 +0000966 // Write the symbol table data, if used.
967 if (NumSymbols) {
968 // Write the indirect symbol entries.
969 for (MCAssembler::const_indirect_symbol_iterator
970 it = Asm.indirect_symbol_begin(),
971 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
Alp Tokerf907b892013-12-05 05:44:44 +0000972 // Indirect symbols in the non-lazy symbol pointer section have some
Bill Wendlingeb872e02011-06-22 21:07:27 +0000973 // special handling.
974 const MCSectionMachO &Section =
975 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
David Majnemer7b583052014-03-07 07:36:05 +0000976 if (Section.getType() == MachO::S_NON_LAZY_SYMBOL_POINTERS) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000977 // If this symbol is defined and internal, mark it as such.
978 if (it->Symbol->isDefined() &&
979 !Asm.getSymbolData(*it->Symbol).isExternal()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000980 uint32_t Flags = MachO::INDIRECT_SYMBOL_LOCAL;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000981 if (it->Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000982 Flags |= MachO::INDIRECT_SYMBOL_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000983 Write32(Flags);
984 continue;
985 }
986 }
987
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000988 Write32(it->Symbol->getIndex());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000989 }
990
991 // FIXME: Check that offsets match computed ones.
992
993 // Write the symbol table entries.
994 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
995 WriteNlist(LocalSymbolData[i], Layout);
996 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
997 WriteNlist(ExternalSymbolData[i], Layout);
998 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
999 WriteNlist(UndefinedSymbolData[i], Layout);
1000
1001 // Write the string table.
Hans Wennborg1b1a3992014-10-06 17:05:19 +00001002 OS << StringTable.data();
Bill Wendlingeb872e02011-06-22 21:07:27 +00001003 }
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +00001004}
1005
Daniel Dunbar8888a962010-12-16 16:09:19 +00001006MCObjectWriter *llvm::createMachObjectWriter(MCMachObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001007 raw_pwrite_stream &OS,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001008 bool IsLittleEndian) {
Daniel Dunbar03fcccb2010-12-16 17:21:02 +00001009 return new MachObjectWriter(MOTW, OS, IsLittleEndian);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +00001010}