blob: 17023d82d6277d921655f2e6d3180c1830d925e9 [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"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000018#include "llvm/MC/MCObjectWriter.h"
19#include "llvm/MC/MCSectionMachO.h"
Pete Cooper916f79e2015-06-08 17:17:28 +000020#include "llvm/MC/MCSymbolMachO.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000021#include "llvm/MC/MCValue.h"
Jim Grosbach4b63d2a2012-05-18 19:12:01 +000022#include "llvm/Support/Debug.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000023#include "llvm/Support/ErrorHandling.h"
Charles Davis8bdfafd2013-09-01 04:28:48 +000024#include "llvm/Support/MachO.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000025#include "llvm/Support/raw_ostream.h"
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000026#include <vector>
27using namespace llvm;
28
Chandler Carruthe96dd892014-04-21 22:55:11 +000029#define DEBUG_TYPE "mc"
30
Pedro Artigasb95c53e2012-12-14 18:52:11 +000031void MachObjectWriter::reset() {
32 Relocations.clear();
33 IndirectSymBase.clear();
34 StringTable.clear();
35 LocalSymbolData.clear();
36 ExternalSymbolData.clear();
37 UndefinedSymbolData.clear();
38 MCObjectWriter::reset();
39}
40
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000041bool MachObjectWriter::doesSymbolRequireExternRelocation(const MCSymbol &S) {
Daniel Dunbar7de31062010-05-10 23:15:13 +000042 // Undefined symbols are always extern.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000043 if (S.isUndefined())
Daniel Dunbar7de31062010-05-10 23:15:13 +000044 return true;
45
46 // References to weak definitions require external relocation entries; the
47 // definition may not always be the one in the same object file.
Pete Cooper916f79e2015-06-08 17:17:28 +000048 if (cast<MCSymbolMachO>(S).isWeakDefinition())
Daniel Dunbar7de31062010-05-10 23:15:13 +000049 return true;
50
51 // Otherwise, we can use an internal relocation.
52 return false;
53}
54
Jim Grosbach28fcafb2011-06-24 23:44:37 +000055bool MachObjectWriter::
56MachSymbolData::operator<(const MachSymbolData &RHS) const {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000057 return Symbol->getName() < RHS.Symbol->getName();
Jim Grosbach28fcafb2011-06-24 23:44:37 +000058}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000059
Jim Grosbach28fcafb2011-06-24 23:44:37 +000060bool MachObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
61 const MCFixupKindInfo &FKI = Asm.getBackend().getFixupKindInfo(
62 (MCFixupKind) Kind);
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000063
Jim Grosbach28fcafb2011-06-24 23:44:37 +000064 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
65}
Daniel Dunbar79e0e5a2010-03-19 10:43:15 +000066
Jim Grosbach28fcafb2011-06-24 23:44:37 +000067uint64_t MachObjectWriter::getFragmentAddress(const MCFragment *Fragment,
68 const MCAsmLayout &Layout) const {
Rafael Espindola079027e2015-05-26 00:52:18 +000069 return getSectionAddress(Fragment->getParent()) +
Rafael Espindola7549f872015-05-26 00:36:57 +000070 Layout.getFragmentOffset(Fragment);
Jim Grosbach28fcafb2011-06-24 23:44:37 +000071}
Bill Wendlingeb872e02011-06-22 21:07:27 +000072
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000073uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S,
Bill Wendlingeb872e02011-06-22 21:07:27 +000074 const MCAsmLayout &Layout) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +000075 // If this is a variable, then recursively evaluate now.
76 if (S.isVariable()) {
Jim Grosbachd96ef192012-09-13 23:11:25 +000077 if (const MCConstantExpr *C =
78 dyn_cast<const MCConstantExpr>(S.getVariableValue()))
79 return C->getValue();
80
Bill Wendlingeb872e02011-06-22 21:07:27 +000081 MCValue Target;
Jim Grosbach13760bd2015-05-30 01:25:56 +000082 if (!S.getVariableValue()->evaluateAsRelocatable(Target, &Layout, nullptr))
Bill Wendlingeb872e02011-06-22 21:07:27 +000083 report_fatal_error("unable to evaluate offset for variable '" +
84 S.getName() + "'");
85
86 // Verify that any used symbols are defined.
87 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined())
88 report_fatal_error("unable to evaluate offset to undefined symbol '" +
89 Target.getSymA()->getSymbol().getName() + "'");
90 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined())
91 report_fatal_error("unable to evaluate offset to undefined symbol '" +
92 Target.getSymB()->getSymbol().getName() + "'");
93
94 uint64_t Address = Target.getConstant();
95 if (Target.getSymA())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000096 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +000097 if (Target.getSymB())
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +000098 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +000099 return Address;
100 }
101
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000102 return getSectionAddress(S.getFragment()->getParent()) +
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000103 Layout.getSymbolOffset(S);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000104}
105
Rafael Espindola61e724a2015-05-26 01:15:30 +0000106uint64_t MachObjectWriter::getPaddingSize(const MCSection *Sec,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000107 const MCAsmLayout &Layout) const {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000108 uint64_t EndAddr = getSectionAddress(Sec) + Layout.getSectionAddressSize(Sec);
Rafael Espindola61e724a2015-05-26 01:15:30 +0000109 unsigned Next = Sec->getLayoutOrder() + 1;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000110 if (Next >= Layout.getSectionOrder().size())
111 return 0;
112
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000113 const MCSection &NextSec = *Layout.getSectionOrder()[Next];
114 if (NextSec.isVirtualSection())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000115 return 0;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000116 return OffsetToAlignment(EndAddr, NextSec.getAlignment());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000117}
118
Frederic Riss75c0c702015-08-26 05:09:46 +0000119void MachObjectWriter::writeHeader(MachO::HeaderFileType Type,
120 unsigned NumLoadCommands,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000121 unsigned LoadCommandsSize,
122 bool SubsectionsViaSymbols) {
123 uint32_t Flags = 0;
124
125 if (SubsectionsViaSymbols)
Charles Davis8bdfafd2013-09-01 04:28:48 +0000126 Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000127
128 // struct mach_header (28 bytes) or
129 // struct mach_header_64 (32 bytes)
130
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000131 uint64_t Start = getStream().tell();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000132 (void) Start;
133
Jim Grosbach36e60e92015-06-04 22:24:41 +0000134 write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000135
Jim Grosbach36e60e92015-06-04 22:24:41 +0000136 write32(TargetObjectWriter->getCPUType());
137 write32(TargetObjectWriter->getCPUSubtype());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000138
Frederic Riss75c0c702015-08-26 05:09:46 +0000139 write32(Type);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000140 write32(NumLoadCommands);
141 write32(LoadCommandsSize);
142 write32(Flags);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000143 if (is64Bit())
Jim Grosbach36e60e92015-06-04 22:24:41 +0000144 write32(0); // reserved
Bill Wendlingeb872e02011-06-22 21:07:27 +0000145
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000146 assert(
147 getStream().tell() - Start ==
148 (is64Bit() ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000149}
150
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000151/// writeSegmentLoadCommand - Write a segment load command.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000152///
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.
Frederic Riss75c0c702015-08-26 05:09:46 +0000155void MachObjectWriter::writeSegmentLoadCommand(
156 StringRef Name, unsigned NumSections, uint64_t VMAddr, uint64_t VMSize,
157 uint64_t SectionDataStartOffset, uint64_t SectionDataSize, uint32_t MaxProt,
158 uint32_t InitProt) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000159 // struct segment_command (56 bytes) or
160 // struct segment_command_64 (72 bytes)
161
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000162 uint64_t Start = getStream().tell();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000163 (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);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000168 write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT);
169 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
Frederic Riss75c0c702015-08-26 05:09:46 +0000173 assert(Name.size() <= 16);
174 writeBytes(Name, 16);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000175 if (is64Bit()) {
Frederic Riss75c0c702015-08-26 05:09:46 +0000176 write64(VMAddr); // vmaddr
Jim Grosbach36e60e92015-06-04 22:24:41 +0000177 write64(VMSize); // vmsize
178 write64(SectionDataStartOffset); // file offset
179 write64(SectionDataSize); // file size
Bill Wendlingeb872e02011-06-22 21:07:27 +0000180 } else {
Frederic Riss75c0c702015-08-26 05:09:46 +0000181 write32(VMAddr); // vmaddr
Jim Grosbach36e60e92015-06-04 22:24:41 +0000182 write32(VMSize); // vmsize
183 write32(SectionDataStartOffset); // file offset
184 write32(SectionDataSize); // file size
Bill Wendlingeb872e02011-06-22 21:07:27 +0000185 }
Nick Kledzikfe6813f2013-09-04 23:53:44 +0000186 // maxprot
Frederic Riss75c0c702015-08-26 05:09:46 +0000187 write32(MaxProt);
Nick Kledzikfe6813f2013-09-04 23:53:44 +0000188 // initprot
Frederic Riss75c0c702015-08-26 05:09:46 +0000189 write32(InitProt);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000190 write32(NumSections);
191 write32(0); // flags
Bill Wendlingeb872e02011-06-22 21:07:27 +0000192
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000193 assert(getStream().tell() - Start == SegmentLoadCommandSize);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000194}
195
Frederic Riss75c0c702015-08-26 05:09:46 +0000196void MachObjectWriter::writeSection(const MCAsmLayout &Layout,
197 const MCSection &Sec, uint64_t VMAddr,
198 uint64_t FileOffset, unsigned Flags,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000199 uint64_t RelocationsStart,
200 unsigned NumRelocations) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000201 uint64_t SectionSize = Layout.getSectionAddressSize(&Sec);
Rafael Espindola61e724a2015-05-26 01:15:30 +0000202 const MCSectionMachO &Section = cast<MCSectionMachO>(Sec);
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()) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000206 assert(Layout.getSectionFileSize(&Sec) == 0 && "Invalid file size!");
Bill Wendlingeb872e02011-06-22 21:07:27 +0000207 FileOffset = 0;
208 }
209
210 // struct section (68 bytes) or
211 // struct section_64 (80 bytes)
212
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000213 uint64_t Start = getStream().tell();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000214 (void) Start;
215
Jim Grosbach36e60e92015-06-04 22:24:41 +0000216 writeBytes(Section.getSectionName(), 16);
217 writeBytes(Section.getSegmentName(), 16);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000218 if (is64Bit()) {
Frederic Riss75c0c702015-08-26 05:09:46 +0000219 write64(VMAddr); // address
Jim Grosbach36e60e92015-06-04 22:24:41 +0000220 write64(SectionSize); // size
Bill Wendlingeb872e02011-06-22 21:07:27 +0000221 } else {
Frederic Riss75c0c702015-08-26 05:09:46 +0000222 write32(VMAddr); // address
Jim Grosbach36e60e92015-06-04 22:24:41 +0000223 write32(SectionSize); // size
Bill Wendlingeb872e02011-06-22 21:07:27 +0000224 }
Jim Grosbach36e60e92015-06-04 22:24:41 +0000225 write32(FileOffset);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000226
Rafael Espindola967d6a62015-05-21 21:02:35 +0000227 assert(isPowerOf2_32(Section.getAlignment()) && "Invalid alignment!");
Jim Grosbach36e60e92015-06-04 22:24:41 +0000228 write32(Log2_32(Section.getAlignment()));
229 write32(NumRelocations ? RelocationsStart : 0);
230 write32(NumRelocations);
231 write32(Flags);
232 write32(IndirectSymBase.lookup(&Sec)); // reserved1
233 write32(Section.getStubSize()); // reserved2
Bill Wendlingeb872e02011-06-22 21:07:27 +0000234 if (is64Bit())
Jim Grosbach36e60e92015-06-04 22:24:41 +0000235 write32(0); // reserved3
Bill Wendlingeb872e02011-06-22 21:07:27 +0000236
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000237 assert(getStream().tell() - Start ==
238 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section)));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000239}
240
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000241void MachObjectWriter::writeSymtabLoadCommand(uint32_t SymbolOffset,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000242 uint32_t NumSymbols,
243 uint32_t StringTableOffset,
244 uint32_t StringTableSize) {
245 // struct symtab_command (24 bytes)
246
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000247 uint64_t Start = getStream().tell();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000248 (void) Start;
249
Jim Grosbach36e60e92015-06-04 22:24:41 +0000250 write32(MachO::LC_SYMTAB);
251 write32(sizeof(MachO::symtab_command));
252 write32(SymbolOffset);
253 write32(NumSymbols);
254 write32(StringTableOffset);
255 write32(StringTableSize);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000256
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000257 assert(getStream().tell() - Start == sizeof(MachO::symtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000258}
259
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000260void MachObjectWriter::writeDysymtabLoadCommand(uint32_t FirstLocalSymbol,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000261 uint32_t NumLocalSymbols,
262 uint32_t FirstExternalSymbol,
263 uint32_t NumExternalSymbols,
264 uint32_t FirstUndefinedSymbol,
265 uint32_t NumUndefinedSymbols,
266 uint32_t IndirectSymbolOffset,
267 uint32_t NumIndirectSymbols) {
268 // struct dysymtab_command (80 bytes)
269
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000270 uint64_t Start = getStream().tell();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000271 (void) Start;
272
Jim Grosbach36e60e92015-06-04 22:24:41 +0000273 write32(MachO::LC_DYSYMTAB);
274 write32(sizeof(MachO::dysymtab_command));
275 write32(FirstLocalSymbol);
276 write32(NumLocalSymbols);
277 write32(FirstExternalSymbol);
278 write32(NumExternalSymbols);
279 write32(FirstUndefinedSymbol);
280 write32(NumUndefinedSymbols);
281 write32(0); // tocoff
282 write32(0); // ntoc
283 write32(0); // modtaboff
284 write32(0); // nmodtab
285 write32(0); // extrefsymoff
286 write32(0); // nextrefsyms
287 write32(IndirectSymbolOffset);
288 write32(NumIndirectSymbols);
289 write32(0); // extreloff
290 write32(0); // nextrel
291 write32(0); // locreloff
292 write32(0); // nlocrel
Bill Wendlingeb872e02011-06-22 21:07:27 +0000293
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000294 assert(getStream().tell() - Start == sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000295}
296
Tim Northovereaef0742014-05-30 13:22:59 +0000297MachObjectWriter::MachSymbolData *
298MachObjectWriter::findSymbolData(const MCSymbol &Sym) {
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000299 for (auto *SymbolData :
300 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
301 for (MachSymbolData &Entry : *SymbolData)
302 if (Entry.Symbol == &Sym)
303 return &Entry;
Tim Northovereaef0742014-05-30 13:22:59 +0000304
305 return nullptr;
306}
307
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000308const MCSymbol &MachObjectWriter::findAliasedSymbol(const MCSymbol &Sym) const {
309 const MCSymbol *S = &Sym;
310 while (S->isVariable()) {
311 const MCExpr *Value = S->getVariableValue();
312 const auto *Ref = dyn_cast<MCSymbolRefExpr>(Value);
313 if (!Ref)
314 return *S;
315 S = &Ref->getSymbol();
316 }
317 return *S;
318}
319
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000320void MachObjectWriter::writeNlist(MachSymbolData &MSD,
Bill Wendling21162212011-06-23 00:09:43 +0000321 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000322 const MCSymbol *Symbol = MSD.Symbol;
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000323 const MCSymbol &Data = *Symbol;
Rafael Espindola7f4e07b2015-04-17 12:28:43 +0000324 const MCSymbol *AliasedSymbol = &findAliasedSymbol(*Symbol);
Tim Northovereaef0742014-05-30 13:22:59 +0000325 uint8_t SectionIndex = MSD.SectionIndex;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000326 uint8_t Type = 0;
Jim Grosbacha3171602011-08-09 22:12:37 +0000327 uint64_t Address = 0;
Tim Northovereaef0742014-05-30 13:22:59 +0000328 bool IsAlias = Symbol != AliasedSymbol;
329
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000330 const MCSymbol &OrigSymbol = *Symbol;
Tim Northovereaef0742014-05-30 13:22:59 +0000331 MachSymbolData *AliaseeInfo;
332 if (IsAlias) {
333 AliaseeInfo = findSymbolData(*AliasedSymbol);
334 if (AliaseeInfo)
335 SectionIndex = AliaseeInfo->SectionIndex;
336 Symbol = AliasedSymbol;
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000337 // FIXME: Should this update Data as well? Do we need OrigSymbol at all?
Tim Northovereaef0742014-05-30 13:22:59 +0000338 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000339
340 // Set the N_TYPE bits. See <mach-o/nlist.h>.
341 //
342 // FIXME: Are the prebound or indirect fields possible here?
Tim Northovereaef0742014-05-30 13:22:59 +0000343 if (IsAlias && Symbol->isUndefined())
344 Type = MachO::N_INDR;
345 else if (Symbol->isUndefined())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000346 Type = MachO::N_UNDF;
Tim Northovereaef0742014-05-30 13:22:59 +0000347 else if (Symbol->isAbsolute())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000348 Type = MachO::N_ABS;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000349 else
Charles Davis8bdfafd2013-09-01 04:28:48 +0000350 Type = MachO::N_SECT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000351
352 // FIXME: Set STAB bits.
353
354 if (Data.isPrivateExtern())
Charles Davis8bdfafd2013-09-01 04:28:48 +0000355 Type |= MachO::N_PEXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000356
357 // Set external bit.
Tim Northovereaef0742014-05-30 13:22:59 +0000358 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined()))
Charles Davis8bdfafd2013-09-01 04:28:48 +0000359 Type |= MachO::N_EXT;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000360
361 // Compute the symbol address.
Tim Northovereaef0742014-05-30 13:22:59 +0000362 if (IsAlias && Symbol->isUndefined())
363 Address = AliaseeInfo->StringIndex;
364 else if (Symbol->isDefined())
Duncan P. N. Exon Smith24f47752015-05-21 00:39:24 +0000365 Address = getSymbolAddress(OrigSymbol, Layout);
Rafael Espindola14672502015-05-29 17:48:04 +0000366 else if (Symbol->isCommon()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000367 // Common symbols are encoded with the size in the address
368 // field, and their alignment in the flags.
Rafael Espindola14672502015-05-29 17:48:04 +0000369 Address = Symbol->getCommonSize();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000370 }
371
372 // struct nlist (12 bytes)
373
Jim Grosbach36e60e92015-06-04 22:24:41 +0000374 write32(MSD.StringIndex);
375 write8(Type);
376 write8(SectionIndex);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000377
378 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
379 // value.
Pete Cooper916f79e2015-06-08 17:17:28 +0000380 write16(cast<MCSymbolMachO>(Symbol)->getEncodedFlags());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000381 if (is64Bit())
Jim Grosbach36e60e92015-06-04 22:24:41 +0000382 write64(Address);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000383 else
Jim Grosbach36e60e92015-06-04 22:24:41 +0000384 write32(Address);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000385}
386
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000387void MachObjectWriter::writeLinkeditLoadCommand(uint32_t Type,
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000388 uint32_t DataOffset,
389 uint32_t DataSize) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000390 uint64_t Start = getStream().tell();
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000391 (void) Start;
392
Jim Grosbach36e60e92015-06-04 22:24:41 +0000393 write32(Type);
394 write32(sizeof(MachO::linkedit_data_command));
395 write32(DataOffset);
396 write32(DataSize);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000397
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000398 assert(getStream().tell() - Start == sizeof(MachO::linkedit_data_command));
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000399}
400
Daniel Dunbareec0f322013-01-18 01:26:07 +0000401static unsigned ComputeLinkerOptionsLoadCommandSize(
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000402 const std::vector<std::string> &Options, bool is64Bit)
Daniel Dunbareec0f322013-01-18 01:26:07 +0000403{
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000404 unsigned Size = sizeof(MachO::linker_option_command);
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000405 for (const std::string &Option : Options)
406 Size += Option.size() + 1;
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000407 return RoundUpToAlignment(Size, is64Bit ? 8 : 4);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000408}
409
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000410void MachObjectWriter::writeLinkerOptionsLoadCommand(
Daniel Dunbareec0f322013-01-18 01:26:07 +0000411 const std::vector<std::string> &Options)
412{
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000413 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit());
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000414 uint64_t Start = getStream().tell();
Daniel Dunbareec0f322013-01-18 01:26:07 +0000415 (void) Start;
416
Jim Grosbach36e60e92015-06-04 22:24:41 +0000417 write32(MachO::LC_LINKER_OPTION);
418 write32(Size);
419 write32(Options.size());
Kevin Enderbyd0b6b7f2014-12-18 00:53:40 +0000420 uint64_t BytesWritten = sizeof(MachO::linker_option_command);
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000421 for (const std::string &Option : Options) {
Daniel Dunbareec0f322013-01-18 01:26:07 +0000422 // Write each string, including the null byte.
Jim Grosbach36e60e92015-06-04 22:24:41 +0000423 writeBytes(Option.c_str(), Option.size() + 1);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000424 BytesWritten += Option.size() + 1;
425 }
426
Daniel Dunbar34ea79f2013-01-22 03:42:49 +0000427 // Pad to a multiple of the pointer size.
Jim Grosbach36e60e92015-06-04 22:24:41 +0000428 writeBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4));
Daniel Dunbareec0f322013-01-18 01:26:07 +0000429
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000430 assert(getStream().tell() - Start == Size);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000431}
432
Jim Grosbach36e60e92015-06-04 22:24:41 +0000433void MachObjectWriter::recordRelocation(MCAssembler &Asm,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000434 const MCAsmLayout &Layout,
435 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000436 const MCFixup &Fixup, MCValue Target,
437 bool &IsPCRel, uint64_t &FixedValue) {
Jim Grosbach36e60e92015-06-04 22:24:41 +0000438 TargetObjectWriter->recordRelocation(this, Asm, Layout, Fragment, Fixup,
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000439 Target, FixedValue);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000440}
441
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000442void MachObjectWriter::bindIndirectSymbols(MCAssembler &Asm) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000443 // This is the point where 'as' creates actual symbols for indirect symbols
444 // (in the following two passes). It would be easier for us to do this sooner
445 // when we see the attribute, but that makes getting the order in the symbol
446 // table much more complicated than it is worth.
447 //
448 // FIXME: Revisit this when the dust settles.
449
Kevin Enderby3aeada22013-08-28 17:50:59 +0000450 // Report errors for use of .indirect_symbol not in a symbol pointer section
451 // or stub section.
452 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
453 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000454 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Kevin Enderby3aeada22013-08-28 17:50:59 +0000455
David Majnemer7b583052014-03-07 07:36:05 +0000456 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
457 Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
458 Section.getType() != MachO::S_SYMBOL_STUBS) {
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +0000459 MCSymbol &Symbol = *it->Symbol;
460 report_fatal_error("indirect symbol '" + Symbol.getName() +
461 "' not in a symbol pointer or stub section");
Kevin Enderby3aeada22013-08-28 17:50:59 +0000462 }
463 }
464
Alp Tokerf907b892013-12-05 05:44:44 +0000465 // Bind non-lazy symbol pointers first.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000466 unsigned IndirectIndex = 0;
467 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
468 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000469 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000470
David Majnemer7b583052014-03-07 07:36:05 +0000471 if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000472 continue;
473
474 // Initialize the section indirect symbol base, if necessary.
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000475 IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000476
Rafael Espindolab5d316b2015-05-29 20:21:02 +0000477 Asm.registerSymbol(*it->Symbol);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000478 }
479
480 // Then lazy symbol pointers and symbol stubs.
481 IndirectIndex = 0;
482 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
483 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000484 const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000485
David Majnemer7b583052014-03-07 07:36:05 +0000486 if (Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS &&
487 Section.getType() != MachO::S_SYMBOL_STUBS)
Bill Wendlingeb872e02011-06-22 21:07:27 +0000488 continue;
489
490 // Initialize the section indirect symbol base, if necessary.
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000491 IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000492
493 // Set the symbol type to undefined lazy, but only on construction.
494 //
495 // FIXME: Do not hardcode.
496 bool Created;
Rafael Espindolab5d316b2015-05-29 20:21:02 +0000497 Asm.registerSymbol(*it->Symbol, &Created);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000498 if (Created)
Pete Cooper916f79e2015-06-08 17:17:28 +0000499 cast<MCSymbolMachO>(it->Symbol)->setReferenceTypeUndefinedLazy(true);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000500 }
501}
502
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000503/// computeSymbolTable - Compute the symbol table data
504void MachObjectWriter::computeSymbolTable(
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000505 MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData,
506 std::vector<MachSymbolData> &ExternalSymbolData,
507 std::vector<MachSymbolData> &UndefinedSymbolData) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000508 // Build section lookup table.
509 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
510 unsigned Index = 1;
511 for (MCAssembler::iterator it = Asm.begin(),
512 ie = Asm.end(); it != ie; ++it, ++Index)
Rafael Espindolaa554c052015-05-25 23:14:17 +0000513 SectionIndexMap[&*it] = Index;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000514 assert(Index <= 256 && "Too many sections!");
515
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000516 // Build the string table.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000517 for (const MCSymbol &Symbol : Asm.symbols()) {
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000518 if (!Asm.isSymbolLinkerVisible(Symbol))
519 continue;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000520
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000521 StringTable.add(Symbol.getName());
522 }
Rafael Espindola21956e42015-10-23 21:48:05 +0000523 StringTable.finalize();
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000524
525 // Build the symbol arrays but only for non-local symbols.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000526 //
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000527 // The particular order that we collect and then sort the symbols is chosen to
528 // match 'as'. Even though it doesn't matter for correctness, this is
529 // important for letting us diff .o files.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000530 for (const MCSymbol &Symbol : Asm.symbols()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000531 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000532 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000533 continue;
534
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000535 if (!Symbol.isExternal() && !Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000536 continue;
537
Bill Wendlingeb872e02011-06-22 21:07:27 +0000538 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000539 MSD.Symbol = &Symbol;
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000540 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000541
542 if (Symbol.isUndefined()) {
543 MSD.SectionIndex = 0;
544 UndefinedSymbolData.push_back(MSD);
545 } else if (Symbol.isAbsolute()) {
546 MSD.SectionIndex = 0;
547 ExternalSymbolData.push_back(MSD);
548 } else {
549 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
550 assert(MSD.SectionIndex && "Invalid section index!");
551 ExternalSymbolData.push_back(MSD);
552 }
553 }
554
555 // Now add the data for local symbols.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000556 for (const MCSymbol &Symbol : Asm.symbols()) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000557 // Ignore non-linker visible symbols.
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000558 if (!Asm.isSymbolLinkerVisible(Symbol))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000559 continue;
560
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000561 if (Symbol.isExternal() || Symbol.isUndefined())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000562 continue;
563
Bill Wendlingeb872e02011-06-22 21:07:27 +0000564 MachSymbolData MSD;
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000565 MSD.Symbol = &Symbol;
Daniel Jasper41de8022015-06-23 11:31:32 +0000566 MSD.StringIndex = StringTable.getOffset(Symbol.getName());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000567
568 if (Symbol.isAbsolute()) {
569 MSD.SectionIndex = 0;
570 LocalSymbolData.push_back(MSD);
571 } else {
572 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
573 assert(MSD.SectionIndex && "Invalid section index!");
574 LocalSymbolData.push_back(MSD);
575 }
576 }
577
578 // External and undefined symbols are required to be in lexicographic order.
579 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
580 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
581
582 // Set the symbol indices.
583 Index = 0;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000584 for (auto *SymbolData :
585 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
586 for (MachSymbolData &Entry : *SymbolData)
587 Entry.Symbol->setIndex(Index++);
Rafael Espindola26585542015-01-19 21:11:14 +0000588
Rafael Espindolaa554c052015-05-25 23:14:17 +0000589 for (const MCSection &Section : Asm) {
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000590 for (RelAndSymbol &Rel : Relocations[&Section]) {
Rafael Espindola26585542015-01-19 21:11:14 +0000591 if (!Rel.Sym)
592 continue;
593
594 // Set the Index and the IsExtern bit.
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000595 unsigned Index = Rel.Sym->getIndex();
Rafael Espindola26585542015-01-19 21:11:14 +0000596 assert(isInt<24>(Index));
597 if (IsLittleEndian)
Justin Bognerd4e08a02015-05-14 23:54:49 +0000598 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
Rafael Espindola26585542015-01-19 21:11:14 +0000599 else
600 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
601 }
602 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000603}
604
605void MachObjectWriter::computeSectionAddresses(const MCAssembler &Asm,
606 const MCAsmLayout &Layout) {
607 uint64_t StartAddress = 0;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000608 for (const MCSection *Sec : Layout.getSectionOrder()) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000609 StartAddress = RoundUpToAlignment(StartAddress, Sec->getAlignment());
610 SectionAddress[Sec] = StartAddress;
611 StartAddress += Layout.getSectionAddressSize(Sec);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000612
613 // Explicitly pad the section to match the alignment requirements of the
614 // following one. This is for 'gas' compatibility, it shouldn't
615 /// strictly be necessary.
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000616 StartAddress += getPaddingSize(Sec, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000617 }
618}
619
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000620void MachObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Bill Wendling21162212011-06-23 00:09:43 +0000621 const MCAsmLayout &Layout) {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000622 computeSectionAddresses(Asm, Layout);
623
624 // Create symbol data for any indirect symbols.
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000625 bindIndirectSymbols(Asm);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000626}
627
Jim Grosbach36e60e92015-06-04 22:24:41 +0000628bool MachObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindolae3a20f52015-10-05 12:07:05 +0000629 const MCAssembler &Asm, const MCSymbol &A, const MCSymbol &B,
630 bool InSet) const {
631 // FIXME: We don't handle things like
632 // foo = .
633 // creating atoms.
634 if (A.isVariable() || B.isVariable())
635 return false;
636 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, A, B,
637 InSet);
638}
639
640bool MachObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000641 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +0000642 bool InSet, bool IsPCRel) const {
Bill Wendlingeb872e02011-06-22 21:07:27 +0000643 if (InSet)
644 return true;
645
646 // The effective address is
647 // addr(atom(A)) + offset(A)
648 // - addr(atom(B)) - offset(B)
649 // and the offsets are not relocatable, so the fixup is fully resolved when
650 // addr(atom(A)) - addr(atom(B)) == 0.
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000651 const MCSymbol &SA = findAliasedSymbol(SymA);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000652 const MCSection &SecA = SA.getSection();
Rafael Espindola7549f872015-05-26 00:36:57 +0000653 const MCSection &SecB = *FB.getParent();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000654
655 if (IsPCRel) {
656 // The simple (Darwin, except on x86_64) way of dealing with this was to
657 // assume that any reference to a temporary symbol *must* be a temporary
658 // symbol in the same atom, unless the sections differ. Therefore, any PCrel
659 // relocation to a temporary symbol (in the same section) is fully
660 // resolved. This also works in conjunction with absolutized .set, which
661 // requires the compiler to use .set to absolutize the differences between
662 // symbols which the compiler knows to be assembly time constants, so we
663 // don't need to worry about considering symbol differences fully resolved.
Jim Grosbachd6ae4ba2011-12-07 19:46:59 +0000664 //
665 // If the file isn't using sub-sections-via-symbols, we can make the
666 // same assumptions about any symbol that we normally make about
667 // assembler locals.
Bill Wendlingeb872e02011-06-22 21:07:27 +0000668
Rafael Espindolaa063bdd2014-03-11 21:22:57 +0000669 bool hasReliableSymbolDifference = isX86_64();
670 if (!hasReliableSymbolDifference) {
Jim Grosbach40455072012-01-17 22:14:39 +0000671 if (!SA.isInSection() || &SecA != &SecB ||
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000672 (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() &&
Jim Grosbach35bc8f92012-01-24 21:45:25 +0000673 Asm.getSubsectionsViaSymbols()))
Bill Wendlingeb872e02011-06-22 21:07:27 +0000674 return false;
675 return true;
676 }
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000677 // For Darwin x86_64, there is one special case when the reference IsPCRel.
678 // If the fragment with the reference does not have a base symbol but meets
679 // the simple way of dealing with this, in that it is a temporary symbol in
680 // the same atom then it is assumed to be fully resolved. This is needed so
Eric Christopher460be992011-09-08 22:17:40 +0000681 // a relocation entry is not created and so the static linker does not
Kevin Enderby7b46bb82011-09-08 20:53:44 +0000682 // mess up the reference later.
683 else if(!FB.getAtom() &&
684 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
685 return true;
686 }
Bill Wendlingeb872e02011-06-22 21:07:27 +0000687 }
688
Rafael Espindolabfd0f012014-11-04 22:10:33 +0000689 // If they are not in the same section, we can't compute the diff.
690 if (&SecA != &SecB)
691 return false;
692
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000693 const MCFragment *FA = SA.getFragment();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000694
Benjamin Kramer91ea5112011-08-12 01:51:29 +0000695 // Bail if the symbol has no fragment.
696 if (!FA)
697 return false;
698
Bill Wendlingeb872e02011-06-22 21:07:27 +0000699 // If the atoms are the same, they are guaranteed to have the same address.
Duncan P. N. Exon Smith09bfa582015-05-16 00:48:58 +0000700 if (FA->getAtom() == FB.getAtom())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000701 return true;
702
703 // Otherwise, we can't prove this is fully resolved.
704 return false;
705}
706
Jim Grosbach36e60e92015-06-04 22:24:41 +0000707void MachObjectWriter::writeObject(MCAssembler &Asm,
Jim Grosbach46be3012011-12-06 00:13:09 +0000708 const MCAsmLayout &Layout) {
Rafael Espindola26585542015-01-19 21:11:14 +0000709 // Compute symbol table information and bind symbol indices.
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000710 computeSymbolTable(Asm, LocalSymbolData, ExternalSymbolData,
Rafael Espindola26585542015-01-19 21:11:14 +0000711 UndefinedSymbolData);
712
Bill Wendlingeb872e02011-06-22 21:07:27 +0000713 unsigned NumSections = Asm.size();
Jim Grosbach448334a2014-03-18 22:09:05 +0000714 const MCAssembler::VersionMinInfoType &VersionInfo =
715 Layout.getAssembler().getVersionMinInfo();
Bill Wendlingeb872e02011-06-22 21:07:27 +0000716
717 // The section data starts after the header, the segment load command (and
718 // section headers) and the symbol table.
719 unsigned NumLoadCommands = 1;
720 uint64_t LoadCommandsSize = is64Bit() ?
Charles Davis8bdfafd2013-09-01 04:28:48 +0000721 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64):
722 sizeof(MachO::segment_command) + NumSections * sizeof(MachO::section);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000723
Jim Grosbach448334a2014-03-18 22:09:05 +0000724 // Add the deployment target version info load command size, if used.
725 if (VersionInfo.Major != 0) {
726 ++NumLoadCommands;
727 LoadCommandsSize += sizeof(MachO::version_min_command);
728 }
729
Daniel Dunbareec0f322013-01-18 01:26:07 +0000730 // Add the data-in-code load command size, if used.
731 unsigned NumDataRegions = Asm.getDataRegions().size();
732 if (NumDataRegions) {
733 ++NumLoadCommands;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000734 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
Daniel Dunbareec0f322013-01-18 01:26:07 +0000735 }
736
Tim Northover53d32512014-03-29 07:34:53 +0000737 // Add the loh load command size, if used.
738 uint64_t LOHRawSize = Asm.getLOHContainer().getEmitSize(*this, Layout);
739 uint64_t LOHSize = RoundUpToAlignment(LOHRawSize, is64Bit() ? 8 : 4);
740 if (LOHSize) {
741 ++NumLoadCommands;
742 LoadCommandsSize += sizeof(MachO::linkedit_data_command);
743 }
744
Bill Wendlingeb872e02011-06-22 21:07:27 +0000745 // Add the symbol table load command sizes, if used.
746 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
747 UndefinedSymbolData.size();
748 if (NumSymbols) {
749 NumLoadCommands += 2;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000750 LoadCommandsSize += (sizeof(MachO::symtab_command) +
751 sizeof(MachO::dysymtab_command));
Bill Wendlingeb872e02011-06-22 21:07:27 +0000752 }
753
Daniel Dunbareec0f322013-01-18 01:26:07 +0000754 // Add the linker option load commands sizes.
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000755 for (const auto &Option : Asm.getLinkerOptions()) {
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000756 ++NumLoadCommands;
Benjamin Kramer1ec70d82015-06-04 21:17:27 +0000757 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit());
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000758 }
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000759
Bill Wendlingeb872e02011-06-22 21:07:27 +0000760 // Compute the total size of the section data, as well as its file size and vm
761 // size.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000762 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) :
763 sizeof(MachO::mach_header)) + LoadCommandsSize;
Bill Wendlingeb872e02011-06-22 21:07:27 +0000764 uint64_t SectionDataSize = 0;
765 uint64_t SectionDataFileSize = 0;
766 uint64_t VMSize = 0;
Rafael Espindola63702e22015-06-01 01:30:01 +0000767 for (const MCSection &Sec : Asm) {
Rafael Espindola5a1e80b2015-05-26 02:00:36 +0000768 uint64_t Address = getSectionAddress(&Sec);
769 uint64_t Size = Layout.getSectionAddressSize(&Sec);
770 uint64_t FileSize = Layout.getSectionFileSize(&Sec);
771 FileSize += getPaddingSize(&Sec, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000772
773 VMSize = std::max(VMSize, Address + Size);
774
Rafael Espindola63702e22015-06-01 01:30:01 +0000775 if (Sec.isVirtualSection())
Bill Wendlingeb872e02011-06-22 21:07:27 +0000776 continue;
777
778 SectionDataSize = std::max(SectionDataSize, Address + Size);
779 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
780 }
781
782 // The section data is padded to 4 bytes.
783 //
784 // FIXME: Is this machine dependent?
785 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
786 SectionDataFileSize += SectionDataPadding;
787
788 // Write the prolog, starting with the header and load command...
Frederic Riss75c0c702015-08-26 05:09:46 +0000789 writeHeader(MachO::MH_OBJECT, NumLoadCommands, LoadCommandsSize,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000790 Asm.getSubsectionsViaSymbols());
Frederic Riss75c0c702015-08-26 05:09:46 +0000791 uint32_t Prot =
792 MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE;
793 writeSegmentLoadCommand("", NumSections, 0, VMSize, SectionDataStart,
794 SectionDataSize, Prot, Prot);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000795
796 // ... and then the section headers.
797 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
Frederic Riss75c0c702015-08-26 05:09:46 +0000798 for (const MCSection &Section : Asm) {
799 const auto &Sec = cast<MCSectionMachO>(Section);
Rafael Espindola63702e22015-06-01 01:30:01 +0000800 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
Bill Wendlingeb872e02011-06-22 21:07:27 +0000801 unsigned NumRelocs = Relocs.size();
Rafael Espindola63702e22015-06-01 01:30:01 +0000802 uint64_t SectionStart = SectionDataStart + getSectionAddress(&Sec);
Frederic Riss75c0c702015-08-26 05:09:46 +0000803 unsigned Flags = Sec.getTypeAndAttributes();
804 if (Sec.hasInstructions())
805 Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS;
806 writeSection(Layout, Sec, getSectionAddress(&Sec), SectionStart, Flags,
807 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);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000818 write32(VersionInfo.Kind == MCVM_OSXVersionMin ? MachO::LC_VERSION_MIN_MACOSX :
Jim Grosbach448334a2014-03-18 22:09:05 +0000819 MachO::LC_VERSION_MIN_IPHONEOS);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000820 write32(sizeof(MachO::version_min_command));
821 write32(EncodedVersion);
822 write32(0); // reserved.
Jim Grosbach448334a2014-03-18 22:09:05 +0000823 }
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;
Jim Grosbach56ed0bb2015-06-04 23:25:54 +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)
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000837 writeLinkeditLoadCommand(MachO::LC_LINKER_OPTIMIZATION_HINT,
Tim Northover53d32512014-03-29 07:34:53 +0000838 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));
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000866 writeSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
Hans Wennborg1b1a3992014-10-06 17:05:19 +0000867 StringTableOffset, StringTable.data().size());
Bill Wendlingeb872e02011-06-22 21:07:27 +0000868
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000869 writeDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
Bill Wendlingeb872e02011-06-22 21:07:27 +0000870 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())
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000877 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())) {
Jim Grosbach36e60e92015-06-04 22:24:41 +0000896 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");
Jim Grosbach36e60e92015-06-04 22:24:41 +0000913 write32(Start);
914 write16(End - Start);
915 write16(Data->Kind);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000916 }
917
Tim Northover53d32512014-03-29 07:34:53 +0000918 // Write out the loh commands, if there is one.
919 if (LOHSize) {
920#ifndef NDEBUG
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000921 unsigned Start = getStream().tell();
Tim Northover53d32512014-03-29 07:34:53 +0000922#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.
Jim Grosbach36e60e92015-06-04 22:24:41 +0000925 writeBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4));
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000926 assert(getStream().tell() - Start == LOHSize);
Tim Northover53d32512014-03-29 07:34:53 +0000927 }
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;
Jim Grosbach36e60e92015-06-04 22:24:41 +0000945 write32(Flags);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000946 continue;
947 }
948 }
949
Jim Grosbach36e60e92015-06-04 22:24:41 +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)
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000959 writeNlist(Entry, Layout);
Bill Wendlingeb872e02011-06-22 21:07:27 +0000960
961 // Write the string table.
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000962 getStream() << 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}