blob: b0f60e3d0701b13b79c386e2749ab04c27d0b375 [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.
Rafael Espindola2229d332015-05-29 19:07:51 +000049 if (S.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 {
Rafael Espindola079027e2015-05-26 00:52:18 +000070 return getSectionAddress(Fragment->getParent()) +
Rafael Espindola7549f872015-05-26 00:36:57 +000071 Layout.getFragmentOffset(Fragment);
Jim Grosbach28fcafb2011-06-24 23:44:37 +000072}
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;
Jim Grosbach13760bd2015-05-30 01:25:56 +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
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000104 return getSectionAddress(S.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
Rafael Espindola61e724a2015-05-26 01:15:30 +0000108uint64_t MachObjectWriter::getPaddingSize(const MCSection *Sec,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000109 const MCAsmLayout &Layout) const {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000110 uint64_t EndAddr = getSectionAddress(Sec) + Layout.getSectionAddressSize(Sec);
Rafael Espindola61e724a2015-05-26 01:15:30 +0000111 unsigned Next = Sec->getLayoutOrder() + 1;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000112 if (Next >= Layout.getSectionOrder().size())
113 return 0;
114
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000115 const MCSection &NextSec = *Layout.getSectionOrder()[Next];
116 if (NextSec.isVirtualSection())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000117 return 0;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000118 return OffsetToAlignment(EndAddr, NextSec.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,
Rafael Espindola61e724a2015-05-26 01:15:30 +0000197 const MCSection &Sec, uint64_t FileOffset,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000198 uint64_t RelocationsStart,
199 unsigned NumRelocations) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000200 uint64_t SectionSize = Layout.getSectionAddressSize(&Sec);
Rafael Espindola61e724a2015-05-26 01:15:30 +0000201 const MCSectionMachO &Section = cast<MCSectionMachO>(Sec);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000202
203 // The offset is unused for virtual sections.
Rafael Espindola967d6a62015-05-21 21:02:35 +0000204 if (Section.isVirtualSection()) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000205 assert(Layout.getSectionFileSize(&Sec) == 0 && "Invalid file size!");
Bill Wendlingeb872e02011-06-22 21:07:27 +0000206 FileOffset = 0;
207 }
208
209 // struct section (68 bytes) or
210 // struct section_64 (80 bytes)
211
212 uint64_t Start = OS.tell();
213 (void) Start;
214
Bill Wendlingeb872e02011-06-22 21:07:27 +0000215 WriteBytes(Section.getSectionName(), 16);
216 WriteBytes(Section.getSegmentName(), 16);
217 if (is64Bit()) {
Rafael Espindolaaad34d92015-05-27 14:33:39 +0000218 Write64(getSectionAddress(&Sec)); // address
Bill Wendlingeb872e02011-06-22 21:07:27 +0000219 Write64(SectionSize); // size
220 } else {
Rafael Espindolaaad34d92015-05-27 14:33:39 +0000221 Write32(getSectionAddress(&Sec)); // address
Bill Wendlingeb872e02011-06-22 21:07:27 +0000222 Write32(SectionSize); // size
223 }
224 Write32(FileOffset);
225
226 unsigned Flags = Section.getTypeAndAttributes();
Rafael Espindolacd625182015-05-25 18:34:26 +0000227 if (Section.hasInstructions())
David Majnemer7b583052014-03-07 07:36:05 +0000228 Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000229
Rafael Espindola967d6a62015-05-21 21:02:35 +0000230 assert(isPowerOf2_32(Section.getAlignment()) && "Invalid alignment!");
231 Write32(Log2_32(Section.getAlignment()));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000232 Write32(NumRelocations ? RelocationsStart : 0);
233 Write32(NumRelocations);
234 Write32(Flags);
Rafael Espindolaaad34d92015-05-27 14:33:39 +0000235 Write32(IndirectSymBase.lookup(&Sec)); // reserved1
Bill Wendlingeb872e02011-06-22 21:07:27 +0000236 Write32(Section.getStubSize()); // reserved2
237 if (is64Bit())
238 Write32(0); // reserved3
239
Charles Davis8bdfafd2013-09-01 04:28:48 +0000240 assert(OS.tell() - Start == (is64Bit() ? sizeof(MachO::section_64) :
241 sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000242}
243
244void MachObjectWriter::WriteSymtabLoadCommand(uint32_t SymbolOffset,
245 uint32_t NumSymbols,
246 uint32_t StringTableOffset,
247 uint32_t StringTableSize) {
248 // struct symtab_command (24 bytes)
249
250 uint64_t Start = OS.tell();
251 (void) Start;
252
Charles Davis8bdfafd2013-09-01 04:28:48 +0000253 Write32(MachO::LC_SYMTAB);
254 Write32(sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000255 Write32(SymbolOffset);
256 Write32(NumSymbols);
257 Write32(StringTableOffset);
258 Write32(StringTableSize);
259
Charles Davis8bdfafd2013-09-01 04:28:48 +0000260 assert(OS.tell() - Start == sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000261}
262
263void MachObjectWriter::WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
264 uint32_t NumLocalSymbols,
265 uint32_t FirstExternalSymbol,
266 uint32_t NumExternalSymbols,
267 uint32_t FirstUndefinedSymbol,
268 uint32_t NumUndefinedSymbols,
269 uint32_t IndirectSymbolOffset,
270 uint32_t NumIndirectSymbols) {
271 // struct dysymtab_command (80 bytes)
272
273 uint64_t Start = OS.tell();
274 (void) Start;
275
Charles Davis8bdfafd2013-09-01 04:28:48 +0000276 Write32(MachO::LC_DYSYMTAB);
277 Write32(sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000278 Write32(FirstLocalSymbol);
279 Write32(NumLocalSymbols);
280 Write32(FirstExternalSymbol);
281 Write32(NumExternalSymbols);
282 Write32(FirstUndefinedSymbol);
283 Write32(NumUndefinedSymbols);
284 Write32(0); // tocoff
285 Write32(0); // ntoc
286 Write32(0); // modtaboff
287 Write32(0); // nmodtab
288 Write32(0); // extrefsymoff
289 Write32(0); // nextrefsyms
290 Write32(IndirectSymbolOffset);
291 Write32(NumIndirectSymbols);
292 Write32(0); // extreloff
293 Write32(0); // nextrel
294 Write32(0); // locreloff
295 Write32(0); // nlocrel
296
Charles Davis8bdfafd2013-09-01 04:28:48 +0000297 assert(OS.tell() - Start == sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000298}
299
Tim Northovereaef0742014-05-30 13:22:59 +0000300MachObjectWriter::MachSymbolData *
301MachObjectWriter::findSymbolData(const MCSymbol &Sym) {
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000302 for (auto *SymbolData :
303 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
304 for (MachSymbolData &Entry : *SymbolData)
305 if (Entry.Symbol == &Sym)
306 return &Entry;
Tim Northovereaef0742014-05-30 13:22:59 +0000307
308 return nullptr;
309}
310
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000311const MCSymbol &MachObjectWriter::findAliasedSymbol(const MCSymbol &Sym) const {
312 const MCSymbol *S = &Sym;
313 while (S->isVariable()) {
314 const MCExpr *Value = S->getVariableValue();
315 const auto *Ref = dyn_cast<MCSymbolRefExpr>(Value);
316 if (!Ref)
317 return *S;
318 S = &Ref->getSymbol();
319 }
320 return *S;
321}
322
Bill Wendling21162212011-06-23 00:09:43 +0000323void MachObjectWriter::WriteNlist(MachSymbolData &MSD,
324 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000325 const MCSymbol *Symbol = MSD.Symbol;
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000326 const MCSymbol &Data = *Symbol;
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000327 const MCSymbol *AliasedSymbol = &findAliasedSymbol(*Symbol);
Tim Northovereaef0742014-05-30 13:22:59 +0000328 uint8_t SectionIndex = MSD.SectionIndex;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000329 uint8_t Type = 0;
Rafael Espindola2229d332015-05-29 19:07:51 +0000330 uint16_t Flags = Symbol->getFlags();
Jim Grosbacha3171602011-08-09 22:12:37 +0000331 uint64_t Address = 0;
Tim Northovereaef0742014-05-30 13:22:59 +0000332 bool IsAlias = Symbol != AliasedSymbol;
333
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000334 const MCSymbol &OrigSymbol = *Symbol;
Tim Northovereaef0742014-05-30 13:22:59 +0000335 MachSymbolData *AliaseeInfo;
336 if (IsAlias) {
337 AliaseeInfo = findSymbolData(*AliasedSymbol);
338 if (AliaseeInfo)
339 SectionIndex = AliaseeInfo->SectionIndex;
340 Symbol = AliasedSymbol;
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000341 // FIXME: Should this update Data as well? Do we need OrigSymbol at all?
Tim Northovereaef0742014-05-30 13:22:59 +0000342 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000343
344 // Set the N_TYPE bits. See <mach-o/nlist.h>.
345 //
346 // FIXME: Are the prebound or indirect fields possible here?
Tim Northovereaef0742014-05-30 13:22:59 +0000347 if (IsAlias && Symbol->isUndefined())
348 Type = MachO::N_INDR;
349 else if (Symbol->isUndefined())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000350 Type = MachO::N_UNDF;
Tim Northovereaef0742014-05-30 13:22:59 +0000351 else if (Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000352 Type = MachO::N_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000353 else
Charles Davis8bdfafd2013-09-01 04:28:48 +0000354 Type = MachO::N_SECT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000355
356 // FIXME: Set STAB bits.
357
358 if (Data.isPrivateExtern())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000359 Type |= MachO::N_PEXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000360
361 // Set external bit.
Tim Northovereaef0742014-05-30 13:22:59 +0000362 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined()))
Charles Davis8bdfafd2013-09-01 04:28:48 +0000363 Type |= MachO::N_EXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000364
365 // Compute the symbol address.
Tim Northovereaef0742014-05-30 13:22:59 +0000366 if (IsAlias && Symbol->isUndefined())
367 Address = AliaseeInfo->StringIndex;
368 else if (Symbol->isDefined())
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000369 Address = getSymbolAddress(OrigSymbol, Layout);
Rafael Espindola14672502015-05-29 17:48:04 +0000370 else if (Symbol->isCommon()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000371 // Common symbols are encoded with the size in the address
372 // field, and their alignment in the flags.
Rafael Espindola14672502015-05-29 17:48:04 +0000373 Address = Symbol->getCommonSize();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000374
375 // Common alignment is packed into the 'desc' bits.
Rafael Espindola14672502015-05-29 17:48:04 +0000376 if (unsigned Align = Symbol->getCommonAlignment()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000377 unsigned Log2Size = Log2_32(Align);
378 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
379 if (Log2Size > 15)
380 report_fatal_error("invalid 'common' alignment '" +
Tim Northovereaef0742014-05-30 13:22:59 +0000381 Twine(Align) + "' for '" + Symbol->getName() + "'",
Jim Grosbachaff6a0c2013-09-24 23:56:31 +0000382 false);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000383 // FIXME: Keep this mask with the SymbolFlags enumeration.
384 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
385 }
386 }
387
Tim Northovereaef0742014-05-30 13:22:59 +0000388 if (Layout.getAssembler().isThumbFunc(Symbol))
Rafael Espindolab60c8292014-04-29 12:46:50 +0000389 Flags |= SF_ThumbFunc;
390
Bill Wendlingeb872e02011-06-22 21:07:27 +0000391 // struct nlist (12 bytes)
392
393 Write32(MSD.StringIndex);
394 Write8(Type);
Tim Northovereaef0742014-05-30 13:22:59 +0000395 Write8(SectionIndex);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000396
397 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
398 // value.
399 Write16(Flags);
400 if (is64Bit())
401 Write64(Address);
402 else
403 Write32(Address);
404}
405
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000406void MachObjectWriter::WriteLinkeditLoadCommand(uint32_t Type,
407 uint32_t DataOffset,
408 uint32_t DataSize) {
409 uint64_t Start = OS.tell();
410 (void) Start;
411
412 Write32(Type);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000413 Write32(sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000414 Write32(DataOffset);
415 Write32(DataSize);
416
Charles Davis8bdfafd2013-09-01 04:28:48 +0000417 assert(OS.tell() - Start == sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000418}
419
Daniel Dunbareec0f322013-01-18 01:26:07 +0000420static unsigned ComputeLinkerOptionsLoadCommandSize(
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000421 const std::vector<std::string> &Options, bool is64Bit)
Daniel Dunbareec0f322013-01-18 01:26:07 +0000422{
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000423 unsigned Size = sizeof(MachO::linker_option_command);
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000424 for (const std::string &Option : Options)
425 Size += Option.size() + 1;
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000426 return RoundUpToAlignment(Size, is64Bit ? 8 : 4);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000427}
428
429void MachObjectWriter::WriteLinkerOptionsLoadCommand(
430 const std::vector<std::string> &Options)
431{
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000432 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit());
Daniel Dunbareec0f322013-01-18 01:26:07 +0000433 uint64_t Start = OS.tell();
434 (void) Start;
435
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000436 Write32(MachO::LC_LINKER_OPTION);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000437 Write32(Size);
438 Write32(Options.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000439 uint64_t BytesWritten = sizeof(MachO::linker_option_command);
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000440 for (const std::string &Option : Options) {
Daniel Dunbareec0f322013-01-18 01:26:07 +0000441 // Write each string, including the null byte.
Daniel Dunbareec0f322013-01-18 01:26:07 +0000442 WriteBytes(Option.c_str(), Option.size() + 1);
443 BytesWritten += Option.size() + 1;
444 }
445
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000446 // Pad to a multiple of the pointer size.
447 WriteBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4));
Daniel Dunbareec0f322013-01-18 01:26:07 +0000448
449 assert(OS.tell() - Start == Size);
450}
451
Rafael Espindola26585542015-01-19 21:11:14 +0000452void MachObjectWriter::RecordRelocation(MCAssembler &Asm,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000453 const MCAsmLayout &Layout,
454 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000455 const MCFixup &Fixup, MCValue Target,
456 bool &IsPCRel, uint64_t &FixedValue) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000457 TargetObjectWriter->RecordRelocation(this, Asm, Layout, Fragment, Fixup,
458 Target, FixedValue);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000459}
460
461void MachObjectWriter::BindIndirectSymbols(MCAssembler &Asm) {
462 // This is the point where 'as' creates actual symbols for indirect symbols
463 // (in the following two passes). It would be easier for us to do this sooner
464 // when we see the attribute, but that makes getting the order in the symbol
465 // table much more complicated than it is worth.
466 //
467 // FIXME: Revisit this when the dust settles.
468
Kevin Enderby3aeada22013-08-28 17:50:59 +0000469 // Report errors for use of .indirect_symbol not in a symbol pointer section
470 // or stub section.
471 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
472 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000473 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Kevin Enderby3aeada22013-08-28 17:50:59 +0000474
David Majnemer7b583052014-03-07 07:36:05 +0000475 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
476 Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
477 Section.getType() != MachO::S_SYMBOL_STUBS) {
Kevin Enderby3aeada22013-08-28 17:50:59 +0000478 MCSymbol &Symbol = *it->Symbol;
479 report_fatal_error("indirect symbol '" + Symbol.getName() +
480 "' not in a symbol pointer or stub section");
481 }
482 }
483
Alp Tokerf907b892013-12-05 05:44:44 +0000484 // Bind non-lazy symbol pointers first.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000485 unsigned IndirectIndex = 0;
486 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
487 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000488 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000489
David Majnemer7b583052014-03-07 07:36:05 +0000490 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000491 continue;
492
493 // Initialize the section indirect symbol base, if necessary.
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000494 IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000495
Rafael Espindolab5d316b2015-05-29 20:21:02 +0000496 Asm.registerSymbol(*it->Symbol);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000497 }
498
499 // Then lazy symbol pointers and symbol stubs.
500 IndirectIndex = 0;
501 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
502 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000503 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000504
David Majnemer7b583052014-03-07 07:36:05 +0000505 if (Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
506 Section.getType() != MachO::S_SYMBOL_STUBS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000507 continue;
508
509 // Initialize the section indirect symbol base, if necessary.
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000510 IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000511
512 // Set the symbol type to undefined lazy, but only on construction.
513 //
514 // FIXME: Do not hardcode.
515 bool Created;
Rafael Espindolab5d316b2015-05-29 20:21:02 +0000516 Asm.registerSymbol(*it->Symbol, &Created);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000517 if (Created)
Rafael Espindola2229d332015-05-29 19:07:51 +0000518 it->Symbol->setFlags(it->Symbol->getFlags() | 0x0001);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000519 }
520}
521
522/// ComputeSymbolTable - Compute the symbol table data
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000523void MachObjectWriter::ComputeSymbolTable(
524 MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData,
525 std::vector<MachSymbolData> &ExternalSymbolData,
526 std::vector<MachSymbolData> &UndefinedSymbolData) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000527 // Build section lookup table.
528 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
529 unsigned Index = 1;
530 for (MCAssembler::iterator it = Asm.begin(),
531 ie = Asm.end(); it != ie; ++it, ++Index)
Rafael Espindolaa554c052015-05-25 23:14:17 +0000532 SectionIndexMap[&*it] = Index;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000533 assert(Index <= 256 && "Too many sections!");
534
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000535 // Build the string table.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000536 for (const MCSymbol &Symbol : Asm.symbols()) {
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000537 if (!Asm.isSymbolLinkerVisible(Symbol))
538 continue;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000539
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000540 StringTable.add(Symbol.getName());
541 }
542 StringTable.finalize(StringTableBuilder::MachO);
543
544 // Build the symbol arrays but only for non-local symbols.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000545 //
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000546 // The particular order that we collect and then sort the symbols is chosen to
547 // match 'as'. Even though it doesn't matter for correctness, this is
548 // important for letting us diff .o files.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000549 for (const MCSymbol &Symbol : Asm.symbols()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000550 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000551 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000552 continue;
553
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000554 if (!Symbol.isExternal() && !Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000555 continue;
556
Bill Wendlingeb872e02011-06-22 21:07:27 +0000557 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000558 MSD.Symbol = &Symbol;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000559 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000560
561 if (Symbol.isUndefined()) {
562 MSD.SectionIndex = 0;
563 UndefinedSymbolData.push_back(MSD);
564 } else if (Symbol.isAbsolute()) {
565 MSD.SectionIndex = 0;
566 ExternalSymbolData.push_back(MSD);
567 } else {
568 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
569 assert(MSD.SectionIndex && "Invalid section index!");
570 ExternalSymbolData.push_back(MSD);
571 }
572 }
573
574 // Now add the data for local symbols.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000575 for (const MCSymbol &Symbol : Asm.symbols()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000576 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000577 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000578 continue;
579
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000580 if (Symbol.isExternal() || Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000581 continue;
582
Bill Wendlingeb872e02011-06-22 21:07:27 +0000583 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000584 MSD.Symbol = &Symbol;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000585 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000586
587 if (Symbol.isAbsolute()) {
588 MSD.SectionIndex = 0;
589 LocalSymbolData.push_back(MSD);
590 } else {
591 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
592 assert(MSD.SectionIndex && "Invalid section index!");
593 LocalSymbolData.push_back(MSD);
594 }
595 }
596
597 // External and undefined symbols are required to be in lexicographic order.
598 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
599 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
600
601 // Set the symbol indices.
602 Index = 0;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000603 for (auto *SymbolData :
604 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
605 for (MachSymbolData &Entry : *SymbolData)
606 Entry.Symbol->setIndex(Index++);
Rafael Espindola26585542015-01-19 21:11:14 +0000607
Rafael Espindolaa554c052015-05-25 23:14:17 +0000608 for (const MCSection &Section : Asm) {
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000609 for (RelAndSymbol &Rel : Relocations[&Section]) {
Rafael Espindola26585542015-01-19 21:11:14 +0000610 if (!Rel.Sym)
611 continue;
612
613 // Set the Index and the IsExtern bit.
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000614 unsigned Index = Rel.Sym->getIndex();
Rafael Espindola26585542015-01-19 21:11:14 +0000615 assert(isInt<24>(Index));
616 if (IsLittleEndian)
Justin Bognerd4e08a02015-05-14 23:54:49 +0000617 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
Rafael Espindola26585542015-01-19 21:11:14 +0000618 else
619 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
620 }
621 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000622}
623
624void MachObjectWriter::computeSectionAddresses(const MCAssembler &Asm,
625 const MCAsmLayout &Layout) {
626 uint64_t StartAddress = 0;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000627 for (const MCSection *Sec : Layout.getSectionOrder()) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000628 StartAddress = RoundUpToAlignment(StartAddress, Sec->getAlignment());
629 SectionAddress[Sec] = StartAddress;
630 StartAddress += Layout.getSectionAddressSize(Sec);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000631
632 // Explicitly pad the section to match the alignment requirements of the
633 // following one. This is for 'gas' compatibility, it shouldn't
634 /// strictly be necessary.
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000635 StartAddress += getPaddingSize(Sec, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000636 }
637}
638
Bill Wendling21162212011-06-23 00:09:43 +0000639void MachObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
640 const MCAsmLayout &Layout) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000641 computeSectionAddresses(Asm, Layout);
642
643 // Create symbol data for any indirect symbols.
644 BindIndirectSymbols(Asm);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000645}
646
Rafael Espindola35d61892015-04-17 21:15:17 +0000647bool MachObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000648 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +0000649 bool InSet, bool IsPCRel) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000650 if (InSet)
651 return true;
652
653 // The effective address is
654 // addr(atom(A)) + offset(A)
655 // - addr(atom(B)) - offset(B)
656 // and the offsets are not relocatable, so the fixup is fully resolved when
657 // addr(atom(A)) - addr(atom(B)) == 0.
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000658 const MCSymbol &SA = findAliasedSymbol(SymA);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000659 const MCSection &SecA = SA.getSection();
Rafael Espindola7549f872015-05-26 00:36:57 +0000660 const MCSection &SecB = *FB.getParent();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000661
662 if (IsPCRel) {
663 // The simple (Darwin, except on x86_64) way of dealing with this was to
664 // assume that any reference to a temporary symbol *must* be a temporary
665 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
666 // relocation to a temporary symbol (in the same section) is fully
667 // resolved. This also works in conjunction with absolutized .set, which
668 // requires the compiler to use .set to absolutize the differences between
669 // symbols which the compiler knows to be assembly time constants, so we
670 // don't need to worry about considering symbol differences fully resolved.
Jim Grosbachd6ae4ba2011-12-07 19:46:59 +0000671 //
672 // If the file isn't using sub-sections-via-symbols, we can make the
673 // same assumptions about any symbol that we normally make about
674 // assembler locals.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000675
Rafael Espindolaa063bdd2014-03-11 21:22:57 +0000676 bool hasReliableSymbolDifference = isX86_64();
677 if (!hasReliableSymbolDifference) {
Jim Grosbach40455072012-01-17 22:14:39 +0000678 if (!SA.isInSection() || &SecA != &SecB ||
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000679 (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() &&
Jim Grosbach35bc8f92012-01-24 21:45:25 +0000680 Asm.getSubsectionsViaSymbols()))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000681 return false;
682 return true;
683 }
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000684 // For Darwin x86_64, there is one special case when the reference IsPCRel.
685 // If the fragment with the reference does not have a base symbol but meets
686 // the simple way of dealing with this, in that it is a temporary symbol in
687 // the same atom then it is assumed to be fully resolved. This is needed so
Eric Christopher460be992011-09-08 22:17:40 +0000688 // a relocation entry is not created and so the static linker does not
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000689 // mess up the reference later.
690 else if(!FB.getAtom() &&
691 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
692 return true;
693 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000694 }
695
Rafael Espindolabfd0f012014-11-04 22:10:33 +0000696 // If they are not in the same section, we can't compute the diff.
697 if (&SecA != &SecB)
698 return false;
699
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000700 const MCFragment *FA = SA.getFragment();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000701
Benjamin Kramer91ea5112011-08-12 01:51:29 +0000702 // Bail if the symbol has no fragment.
703 if (!FA)
704 return false;
705
Bill Wendlingeb872e02011-06-22 21:07:27 +0000706 // If the atoms are the same, they are guaranteed to have the same address.
Duncan P. N. Exon Smith09bfa582015-05-16 00:48:58 +0000707 if (FA->getAtom() == FB.getAtom())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000708 return true;
709
710 // Otherwise, we can't prove this is fully resolved.
711 return false;
712}
713
Eric Christopher460be992011-09-08 22:17:40 +0000714void MachObjectWriter::WriteObject(MCAssembler &Asm,
Jim Grosbach46be3012011-12-06 00:13:09 +0000715 const MCAsmLayout &Layout) {
Rafael Espindola26585542015-01-19 21:11:14 +0000716 // Compute symbol table information and bind symbol indices.
717 ComputeSymbolTable(Asm, LocalSymbolData, ExternalSymbolData,
718 UndefinedSymbolData);
719
Bill Wendlingeb872e02011-06-22 21:07:27 +0000720 unsigned NumSections = Asm.size();
Jim Grosbach448334a2014-03-18 22:09:05 +0000721 const MCAssembler::VersionMinInfoType &VersionInfo =
722 Layout.getAssembler().getVersionMinInfo();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000723
724 // The section data starts after the header, the segment load command (and
725 // section headers) and the symbol table.
726 unsigned NumLoadCommands = 1;
727 uint64_t LoadCommandsSize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +0000728 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64):
729 sizeof(MachO::segment_command) + NumSections * sizeof(MachO::section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000730
Jim Grosbach448334a2014-03-18 22:09:05 +0000731 // Add the deployment target version info load command size, if used.
732 if (VersionInfo.Major != 0) {
733 ++NumLoadCommands;
734 LoadCommandsSize += sizeof(MachO::version_min_command);
735 }
736
Daniel Dunbareec0f322013-01-18 01:26:07 +0000737 // Add the data-in-code load command size, if used.
738 unsigned NumDataRegions = Asm.getDataRegions().size();
739 if (NumDataRegions) {
740 ++NumLoadCommands;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000741 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000742 }
743
Tim Northover53d32512014-03-29 07:34:53 +0000744 // Add the loh load command size, if used.
745 uint64_t LOHRawSize = Asm.getLOHContainer().getEmitSize(*this, Layout);
746 uint64_t LOHSize = RoundUpToAlignment(LOHRawSize, is64Bit() ? 8 : 4);
747 if (LOHSize) {
748 ++NumLoadCommands;
749 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
750 }
751
Bill Wendlingeb872e02011-06-22 21:07:27 +0000752 // Add the symbol table load command sizes, if used.
753 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
754 UndefinedSymbolData.size();
755 if (NumSymbols) {
756 NumLoadCommands += 2;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000757 LoadCommandsSize += (sizeof(MachO::symtab_command) +
758 sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000759 }
760
Daniel Dunbareec0f322013-01-18 01:26:07 +0000761 // Add the linker option load commands sizes.
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000762 for (const auto &Option : Asm.getLinkerOptions()) {
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000763 ++NumLoadCommands;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000764 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit());
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000765 }
Daniel Dunbareec0f322013-01-18 01:26:07 +0000766
Bill Wendlingeb872e02011-06-22 21:07:27 +0000767 // Compute the total size of the section data, as well as its file size and vm
768 // size.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000769 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) :
770 sizeof(MachO::mach_header)) + LoadCommandsSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000771 uint64_t SectionDataSize = 0;
772 uint64_t SectionDataFileSize = 0;
773 uint64_t VMSize = 0;
Rafael Espindola63702e22015-06-01 01:30:01 +0000774 for (const MCSection &Sec : Asm) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000775 uint64_t Address = getSectionAddress(&Sec);
776 uint64_t Size = Layout.getSectionAddressSize(&Sec);
777 uint64_t FileSize = Layout.getSectionFileSize(&Sec);
778 FileSize += getPaddingSize(&Sec, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000779
780 VMSize = std::max(VMSize, Address + Size);
781
Rafael Espindola63702e22015-06-01 01:30:01 +0000782 if (Sec.isVirtualSection())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000783 continue;
784
785 SectionDataSize = std::max(SectionDataSize, Address + Size);
786 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
787 }
788
789 // The section data is padded to 4 bytes.
790 //
791 // FIXME: Is this machine dependent?
792 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
793 SectionDataFileSize += SectionDataPadding;
794
795 // Write the prolog, starting with the header and load command...
796 WriteHeader(NumLoadCommands, LoadCommandsSize,
797 Asm.getSubsectionsViaSymbols());
798 WriteSegmentLoadCommand(NumSections, VMSize,
799 SectionDataStart, SectionDataSize);
800
801 // ... and then the section headers.
802 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
Rafael Espindola63702e22015-06-01 01:30:01 +0000803 for (const MCSection &Sec : Asm) {
804 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000805 unsigned NumRelocs = Relocs.size();
Rafael Espindola63702e22015-06-01 01:30:01 +0000806 uint64_t SectionStart = SectionDataStart + getSectionAddress(&Sec);
807 WriteSection(Asm, Layout, Sec, SectionStart, RelocTableEnd, NumRelocs);
Charles Davis8bdfafd2013-09-01 04:28:48 +0000808 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000809 }
810
Jim Grosbach448334a2014-03-18 22:09:05 +0000811 // Write out the deployment target information, if it's available.
812 if (VersionInfo.Major != 0) {
813 assert(VersionInfo.Update < 256 && "unencodable update target version");
814 assert(VersionInfo.Minor < 256 && "unencodable minor target version");
815 assert(VersionInfo.Major < 65536 && "unencodable major target version");
816 uint32_t EncodedVersion = VersionInfo.Update | (VersionInfo.Minor << 8) |
817 (VersionInfo.Major << 16);
818 Write32(VersionInfo.Kind == MCVM_OSXVersionMin ? MachO::LC_VERSION_MIN_MACOSX :
819 MachO::LC_VERSION_MIN_IPHONEOS);
820 Write32(sizeof(MachO::version_min_command));
821 Write32(EncodedVersion);
822 Write32(0); // reserved.
823 }
824
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000825 // Write the data-in-code load command, if used.
826 uint64_t DataInCodeTableEnd = RelocTableEnd + NumDataRegions * 8;
827 if (NumDataRegions) {
828 uint64_t DataRegionsOffset = RelocTableEnd;
829 uint64_t DataRegionsSize = NumDataRegions * 8;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000830 WriteLinkeditLoadCommand(MachO::LC_DATA_IN_CODE, DataRegionsOffset,
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000831 DataRegionsSize);
832 }
833
Tim Northover53d32512014-03-29 07:34:53 +0000834 // Write the loh load command, if used.
835 uint64_t LOHTableEnd = DataInCodeTableEnd + LOHSize;
836 if (LOHSize)
837 WriteLinkeditLoadCommand(MachO::LC_LINKER_OPTIMIZATION_HINT,
838 DataInCodeTableEnd, LOHSize);
839
Bill Wendlingeb872e02011-06-22 21:07:27 +0000840 // Write the symbol table load command, if used.
841 if (NumSymbols) {
842 unsigned FirstLocalSymbol = 0;
843 unsigned NumLocalSymbols = LocalSymbolData.size();
844 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
845 unsigned NumExternalSymbols = ExternalSymbolData.size();
846 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
847 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
848 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
849 unsigned NumSymTabSymbols =
850 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
851 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
852 uint64_t IndirectSymbolOffset = 0;
853
854 // If used, the indirect symbols are written after the section data.
855 if (NumIndirectSymbols)
Tim Northover53d32512014-03-29 07:34:53 +0000856 IndirectSymbolOffset = LOHTableEnd;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000857
858 // The symbol table is written after the indirect symbol data.
Tim Northover53d32512014-03-29 07:34:53 +0000859 uint64_t SymbolTableOffset = LOHTableEnd + IndirectSymbolSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000860
861 // The string table is written after symbol table.
862 uint64_t StringTableOffset =
Charles Davis8bdfafd2013-09-01 04:28:48 +0000863 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ?
864 sizeof(MachO::nlist_64) :
865 sizeof(MachO::nlist));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000866 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000867 StringTableOffset, StringTable.data().size());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000868
869 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
870 FirstExternalSymbol, NumExternalSymbols,
871 FirstUndefinedSymbol, NumUndefinedSymbols,
872 IndirectSymbolOffset, NumIndirectSymbols);
873 }
874
Daniel Dunbareec0f322013-01-18 01:26:07 +0000875 // Write the linker options load commands.
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000876 for (const auto &Option : Asm.getLinkerOptions())
877 WriteLinkerOptionsLoadCommand(Option);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000878
Bill Wendlingeb872e02011-06-22 21:07:27 +0000879 // Write the actual section data.
Rafael Espindola63702e22015-06-01 01:30:01 +0000880 for (const MCSection &Sec : Asm) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000881 Asm.writeSectionData(&Sec, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000882
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000883 uint64_t Pad = getPaddingSize(&Sec, Layout);
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000884 WriteZeros(Pad);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000885 }
886
887 // Write the extra padding.
888 WriteZeros(SectionDataPadding);
889
890 // Write the relocation entries.
Rafael Espindola63702e22015-06-01 01:30:01 +0000891 for (const MCSection &Sec : Asm) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000892 // Write the section relocation entries, in reverse order to match 'as'
893 // (approximately, the exact algorithm is more complicated than this).
Rafael Espindola63702e22015-06-01 01:30:01 +0000894 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000895 for (const RelAndSymbol &Rel : make_range(Relocs.rbegin(), Relocs.rend())) {
896 Write32(Rel.MRE.r_word0);
897 Write32(Rel.MRE.r_word1);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000898 }
899 }
900
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000901 // Write out the data-in-code region payload, if there is one.
902 for (MCAssembler::const_data_region_iterator
903 it = Asm.data_region_begin(), ie = Asm.data_region_end();
904 it != ie; ++it) {
905 const DataRegionData *Data = &(*it);
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000906 uint64_t Start = getSymbolAddress(*Data->Start, Layout);
907 uint64_t End = getSymbolAddress(*Data->End, Layout);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000908 DEBUG(dbgs() << "data in code region-- kind: " << Data->Kind
909 << " start: " << Start << "(" << Data->Start->getName() << ")"
910 << " end: " << End << "(" << Data->End->getName() << ")"
911 << " size: " << End - Start
912 << "\n");
913 Write32(Start);
914 Write16(End - Start);
915 Write16(Data->Kind);
916 }
917
Tim Northover53d32512014-03-29 07:34:53 +0000918 // Write out the loh commands, if there is one.
919 if (LOHSize) {
920#ifndef NDEBUG
921 unsigned Start = OS.tell();
922#endif
Jim Grosbach249af2a2015-06-01 23:55:06 +0000923 Asm.getLOHContainer().emit(*this, Layout);
Tim Northover53d32512014-03-29 07:34:53 +0000924 // Pad to a multiple of the pointer size.
925 WriteBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4));
926 assert(OS.tell() - Start == LOHSize);
927 }
928
Bill Wendlingeb872e02011-06-22 21:07:27 +0000929 // Write the symbol table data, if used.
930 if (NumSymbols) {
931 // Write the indirect symbol entries.
932 for (MCAssembler::const_indirect_symbol_iterator
933 it = Asm.indirect_symbol_begin(),
934 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
Alp Tokerf907b892013-12-05 05:44:44 +0000935 // Indirect symbols in the non-lazy symbol pointer section have some
Bill Wendlingeb872e02011-06-22 21:07:27 +0000936 // special handling.
937 const MCSectionMachO &Section =
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000938 static_cast<const MCSectionMachO &>(*it->Section);
David Majnemer7b583052014-03-07 07:36:05 +0000939 if (Section.getType() == MachO::S_NON_LAZY_SYMBOL_POINTERS) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000940 // If this symbol is defined and internal, mark it as such.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000941 if (it->Symbol->isDefined() && !it->Symbol->isExternal()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000942 uint32_t Flags = MachO::INDIRECT_SYMBOL_LOCAL;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000943 if (it->Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000944 Flags |= MachO::INDIRECT_SYMBOL_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000945 Write32(Flags);
946 continue;
947 }
948 }
949
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000950 Write32(it->Symbol->getIndex());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000951 }
952
953 // FIXME: Check that offsets match computed ones.
954
955 // Write the symbol table entries.
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000956 for (auto *SymbolData :
957 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
958 for (MachSymbolData &Entry : *SymbolData)
959 WriteNlist(Entry, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000960
961 // Write the string table.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000962 OS << StringTable.data();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000963 }
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +0000964}
965
Daniel Dunbar8888a962010-12-16 16:09:19 +0000966MCObjectWriter *llvm::createMachObjectWriter(MCMachObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000967 raw_pwrite_stream &OS,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000968 bool IsLittleEndian) {
Daniel Dunbar03fcccb2010-12-16 17:21:02 +0000969 return new MachObjectWriter(MOTW, OS, IsLittleEndian);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +0000970}