Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 1 | //===- 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 Dunbar | 8888a96 | 2010-12-16 16:09:19 +0000 | [diff] [blame] | 10 | #include "llvm/MC/MCMachObjectWriter.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/StringMap.h" |
| 12 | #include "llvm/ADT/Twine.h" |
Evan Cheng | 5928e69 | 2011-07-25 23:24:55 +0000 | [diff] [blame] | 13 | #include "llvm/MC/MCAsmBackend.h" |
Daniel Dunbar | 7c96955 | 2010-03-24 03:43:40 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCAsmLayout.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCAssembler.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCExpr.h" |
Craig Topper | 6e80c28 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCFixupKindInfo.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCObjectWriter.h" |
| 19 | #include "llvm/MC/MCSectionMachO.h" |
Pete Cooper | 916f79e | 2015-06-08 17:17:28 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCSymbolMachO.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCValue.h" |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MachO.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 25 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 26 | #include <vector> |
| 27 | using namespace llvm; |
| 28 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 29 | #define DEBUG_TYPE "mc" |
| 30 | |
Pedro Artigas | b95c53e | 2012-12-14 18:52:11 +0000 | [diff] [blame] | 31 | void 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 Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 41 | bool MachObjectWriter::doesSymbolRequireExternRelocation(const MCSymbol &S) { |
Daniel Dunbar | 7de3106 | 2010-05-10 23:15:13 +0000 | [diff] [blame] | 42 | // Undefined symbols are always extern. |
Duncan P. N. Exon Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 43 | if (S.isUndefined()) |
Daniel Dunbar | 7de3106 | 2010-05-10 23:15:13 +0000 | [diff] [blame] | 44 | 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 Cooper | 916f79e | 2015-06-08 17:17:28 +0000 | [diff] [blame] | 48 | if (cast<MCSymbolMachO>(S).isWeakDefinition()) |
Daniel Dunbar | 7de3106 | 2010-05-10 23:15:13 +0000 | [diff] [blame] | 49 | return true; |
| 50 | |
| 51 | // Otherwise, we can use an internal relocation. |
| 52 | return false; |
| 53 | } |
| 54 | |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 55 | bool MachObjectWriter:: |
| 56 | MachSymbolData::operator<(const MachSymbolData &RHS) const { |
Duncan P. N. Exon Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 57 | return Symbol->getName() < RHS.Symbol->getName(); |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 58 | } |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 59 | |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 60 | bool MachObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) { |
| 61 | const MCFixupKindInfo &FKI = Asm.getBackend().getFixupKindInfo( |
| 62 | (MCFixupKind) Kind); |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 63 | |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 64 | return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel; |
| 65 | } |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 66 | |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 67 | uint64_t MachObjectWriter::getFragmentAddress(const MCFragment *Fragment, |
| 68 | const MCAsmLayout &Layout) const { |
Rafael Espindola | 079027e | 2015-05-26 00:52:18 +0000 | [diff] [blame] | 69 | return getSectionAddress(Fragment->getParent()) + |
Rafael Espindola | 7549f87 | 2015-05-26 00:36:57 +0000 | [diff] [blame] | 70 | Layout.getFragmentOffset(Fragment); |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 71 | } |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 72 | |
Duncan P. N. Exon Smith | 99d8a8e | 2015-05-20 00:02:39 +0000 | [diff] [blame] | 73 | uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 74 | const MCAsmLayout &Layout) const { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 75 | // If this is a variable, then recursively evaluate now. |
| 76 | if (S.isVariable()) { |
Jim Grosbach | d96ef19 | 2012-09-13 23:11:25 +0000 | [diff] [blame] | 77 | if (const MCConstantExpr *C = |
| 78 | dyn_cast<const MCConstantExpr>(S.getVariableValue())) |
| 79 | return C->getValue(); |
| 80 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 81 | MCValue Target; |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 82 | if (!S.getVariableValue()->evaluateAsRelocatable(Target, &Layout, nullptr)) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 83 | 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 Smith | 99d8a8e | 2015-05-20 00:02:39 +0000 | [diff] [blame] | 96 | Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 97 | if (Target.getSymB()) |
Duncan P. N. Exon Smith | 99d8a8e | 2015-05-20 00:02:39 +0000 | [diff] [blame] | 98 | Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 99 | return Address; |
| 100 | } |
| 101 | |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 102 | return getSectionAddress(S.getFragment()->getParent()) + |
Duncan P. N. Exon Smith | 2a40483 | 2015-05-19 23:53:20 +0000 | [diff] [blame] | 103 | Layout.getSymbolOffset(S); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Rafael Espindola | 61e724a | 2015-05-26 01:15:30 +0000 | [diff] [blame] | 106 | uint64_t MachObjectWriter::getPaddingSize(const MCSection *Sec, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 107 | const MCAsmLayout &Layout) const { |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 108 | uint64_t EndAddr = getSectionAddress(Sec) + Layout.getSectionAddressSize(Sec); |
Rafael Espindola | 61e724a | 2015-05-26 01:15:30 +0000 | [diff] [blame] | 109 | unsigned Next = Sec->getLayoutOrder() + 1; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 110 | if (Next >= Layout.getSectionOrder().size()) |
| 111 | return 0; |
| 112 | |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 113 | const MCSection &NextSec = *Layout.getSectionOrder()[Next]; |
| 114 | if (NextSec.isVirtualSection()) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 115 | return 0; |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 116 | return OffsetToAlignment(EndAddr, NextSec.getAlignment()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 119 | void MachObjectWriter::writeHeader(MachO::HeaderFileType Type, |
| 120 | unsigned NumLoadCommands, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 121 | unsigned LoadCommandsSize, |
| 122 | bool SubsectionsViaSymbols) { |
| 123 | uint32_t Flags = 0; |
| 124 | |
| 125 | if (SubsectionsViaSymbols) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 126 | Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 127 | |
| 128 | // struct mach_header (28 bytes) or |
| 129 | // struct mach_header_64 (32 bytes) |
| 130 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 131 | uint64_t Start = getStream().tell(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 132 | (void) Start; |
| 133 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 134 | write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 135 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 136 | write32(TargetObjectWriter->getCPUType()); |
| 137 | write32(TargetObjectWriter->getCPUSubtype()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 138 | |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 139 | write32(Type); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 140 | write32(NumLoadCommands); |
| 141 | write32(LoadCommandsSize); |
| 142 | write32(Flags); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 143 | if (is64Bit()) |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 144 | write32(0); // reserved |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 145 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 146 | assert( |
| 147 | getStream().tell() - Start == |
| 148 | (is64Bit() ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header))); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 151 | /// writeSegmentLoadCommand - Write a segment load command. |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 152 | /// |
Dmitri Gribenko | 5485acd | 2012-09-14 14:57:36 +0000 | [diff] [blame] | 153 | /// \param NumSections The number of sections in this segment. |
| 154 | /// \param SectionDataSize The total size of the sections. |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 155 | void 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 Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 159 | // struct segment_command (56 bytes) or |
| 160 | // struct segment_command_64 (72 bytes) |
| 161 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 162 | uint64_t Start = getStream().tell(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 163 | (void) Start; |
| 164 | |
| 165 | unsigned SegmentLoadCommandSize = |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 166 | is64Bit() ? sizeof(MachO::segment_command_64): |
| 167 | sizeof(MachO::segment_command); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 168 | write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); |
| 169 | write32(SegmentLoadCommandSize + |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 170 | NumSections * (is64Bit() ? sizeof(MachO::section_64) : |
| 171 | sizeof(MachO::section))); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 172 | |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 173 | assert(Name.size() <= 16); |
| 174 | writeBytes(Name, 16); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 175 | if (is64Bit()) { |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 176 | write64(VMAddr); // vmaddr |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 177 | write64(VMSize); // vmsize |
| 178 | write64(SectionDataStartOffset); // file offset |
| 179 | write64(SectionDataSize); // file size |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 180 | } else { |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 181 | write32(VMAddr); // vmaddr |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 182 | write32(VMSize); // vmsize |
| 183 | write32(SectionDataStartOffset); // file offset |
| 184 | write32(SectionDataSize); // file size |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 185 | } |
Nick Kledzik | fe6813f | 2013-09-04 23:53:44 +0000 | [diff] [blame] | 186 | // maxprot |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 187 | write32(MaxProt); |
Nick Kledzik | fe6813f | 2013-09-04 23:53:44 +0000 | [diff] [blame] | 188 | // initprot |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 189 | write32(InitProt); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 190 | write32(NumSections); |
| 191 | write32(0); // flags |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 192 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 193 | assert(getStream().tell() - Start == SegmentLoadCommandSize); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 196 | void MachObjectWriter::writeSection(const MCAsmLayout &Layout, |
| 197 | const MCSection &Sec, uint64_t VMAddr, |
| 198 | uint64_t FileOffset, unsigned Flags, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 199 | uint64_t RelocationsStart, |
| 200 | unsigned NumRelocations) { |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 201 | uint64_t SectionSize = Layout.getSectionAddressSize(&Sec); |
Rafael Espindola | 61e724a | 2015-05-26 01:15:30 +0000 | [diff] [blame] | 202 | const MCSectionMachO &Section = cast<MCSectionMachO>(Sec); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 203 | |
| 204 | // The offset is unused for virtual sections. |
Rafael Espindola | 967d6a6 | 2015-05-21 21:02:35 +0000 | [diff] [blame] | 205 | if (Section.isVirtualSection()) { |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 206 | assert(Layout.getSectionFileSize(&Sec) == 0 && "Invalid file size!"); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 207 | FileOffset = 0; |
| 208 | } |
| 209 | |
| 210 | // struct section (68 bytes) or |
| 211 | // struct section_64 (80 bytes) |
| 212 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 213 | uint64_t Start = getStream().tell(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 214 | (void) Start; |
| 215 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 216 | writeBytes(Section.getSectionName(), 16); |
| 217 | writeBytes(Section.getSegmentName(), 16); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 218 | if (is64Bit()) { |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 219 | write64(VMAddr); // address |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 220 | write64(SectionSize); // size |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 221 | } else { |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 222 | write32(VMAddr); // address |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 223 | write32(SectionSize); // size |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 224 | } |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 225 | write32(FileOffset); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 226 | |
Rafael Espindola | 967d6a6 | 2015-05-21 21:02:35 +0000 | [diff] [blame] | 227 | assert(isPowerOf2_32(Section.getAlignment()) && "Invalid alignment!"); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 228 | 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 Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 234 | if (is64Bit()) |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 235 | write32(0); // reserved3 |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 236 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 237 | assert(getStream().tell() - Start == |
| 238 | (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 241 | void MachObjectWriter::writeSymtabLoadCommand(uint32_t SymbolOffset, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 242 | uint32_t NumSymbols, |
| 243 | uint32_t StringTableOffset, |
| 244 | uint32_t StringTableSize) { |
| 245 | // struct symtab_command (24 bytes) |
| 246 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 247 | uint64_t Start = getStream().tell(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 248 | (void) Start; |
| 249 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 250 | write32(MachO::LC_SYMTAB); |
| 251 | write32(sizeof(MachO::symtab_command)); |
| 252 | write32(SymbolOffset); |
| 253 | write32(NumSymbols); |
| 254 | write32(StringTableOffset); |
| 255 | write32(StringTableSize); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 256 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 257 | assert(getStream().tell() - Start == sizeof(MachO::symtab_command)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 260 | void MachObjectWriter::writeDysymtabLoadCommand(uint32_t FirstLocalSymbol, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 261 | 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 Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 270 | uint64_t Start = getStream().tell(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 271 | (void) Start; |
| 272 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 273 | 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 Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 293 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 294 | assert(getStream().tell() - Start == sizeof(MachO::dysymtab_command)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 297 | MachObjectWriter::MachSymbolData * |
| 298 | MachObjectWriter::findSymbolData(const MCSymbol &Sym) { |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 299 | for (auto *SymbolData : |
| 300 | {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData}) |
| 301 | for (MachSymbolData &Entry : *SymbolData) |
| 302 | if (Entry.Symbol == &Sym) |
| 303 | return &Entry; |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 304 | |
| 305 | return nullptr; |
| 306 | } |
| 307 | |
Rafael Espindola | 7f4e07b | 2015-04-17 12:28:43 +0000 | [diff] [blame] | 308 | const 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 Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 320 | void MachObjectWriter::writeNlist(MachSymbolData &MSD, |
Bill Wendling | 2116221 | 2011-06-23 00:09:43 +0000 | [diff] [blame] | 321 | const MCAsmLayout &Layout) { |
Duncan P. N. Exon Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 322 | const MCSymbol *Symbol = MSD.Symbol; |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 323 | const MCSymbol &Data = *Symbol; |
Rafael Espindola | 7f4e07b | 2015-04-17 12:28:43 +0000 | [diff] [blame] | 324 | const MCSymbol *AliasedSymbol = &findAliasedSymbol(*Symbol); |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 325 | uint8_t SectionIndex = MSD.SectionIndex; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 326 | uint8_t Type = 0; |
Jim Grosbach | a317160 | 2011-08-09 22:12:37 +0000 | [diff] [blame] | 327 | uint64_t Address = 0; |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 328 | bool IsAlias = Symbol != AliasedSymbol; |
| 329 | |
Duncan P. N. Exon Smith | 24f4775 | 2015-05-21 00:39:24 +0000 | [diff] [blame] | 330 | const MCSymbol &OrigSymbol = *Symbol; |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 331 | MachSymbolData *AliaseeInfo; |
| 332 | if (IsAlias) { |
| 333 | AliaseeInfo = findSymbolData(*AliasedSymbol); |
| 334 | if (AliaseeInfo) |
| 335 | SectionIndex = AliaseeInfo->SectionIndex; |
| 336 | Symbol = AliasedSymbol; |
Lang Hames | 1b640e0 | 2016-03-15 01:43:05 +0000 | [diff] [blame] | 337 | // FIXME: Should this update Data as well? |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 338 | } |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 339 | |
| 340 | // Set the N_TYPE bits. See <mach-o/nlist.h>. |
| 341 | // |
| 342 | // FIXME: Are the prebound or indirect fields possible here? |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 343 | if (IsAlias && Symbol->isUndefined()) |
| 344 | Type = MachO::N_INDR; |
| 345 | else if (Symbol->isUndefined()) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 346 | Type = MachO::N_UNDF; |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 347 | else if (Symbol->isAbsolute()) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 348 | Type = MachO::N_ABS; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 349 | else |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 350 | Type = MachO::N_SECT; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 351 | |
| 352 | // FIXME: Set STAB bits. |
| 353 | |
| 354 | if (Data.isPrivateExtern()) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 355 | Type |= MachO::N_PEXT; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 356 | |
| 357 | // Set external bit. |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 358 | if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 359 | Type |= MachO::N_EXT; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 360 | |
| 361 | // Compute the symbol address. |
Tim Northover | eaef074 | 2014-05-30 13:22:59 +0000 | [diff] [blame] | 362 | if (IsAlias && Symbol->isUndefined()) |
| 363 | Address = AliaseeInfo->StringIndex; |
| 364 | else if (Symbol->isDefined()) |
Duncan P. N. Exon Smith | 24f4775 | 2015-05-21 00:39:24 +0000 | [diff] [blame] | 365 | Address = getSymbolAddress(OrigSymbol, Layout); |
Rafael Espindola | 1467250 | 2015-05-29 17:48:04 +0000 | [diff] [blame] | 366 | else if (Symbol->isCommon()) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 367 | // Common symbols are encoded with the size in the address |
| 368 | // field, and their alignment in the flags. |
Rafael Espindola | 1467250 | 2015-05-29 17:48:04 +0000 | [diff] [blame] | 369 | Address = Symbol->getCommonSize(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | // struct nlist (12 bytes) |
| 373 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 374 | write32(MSD.StringIndex); |
| 375 | write8(Type); |
| 376 | write8(SectionIndex); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 377 | |
| 378 | // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc' |
| 379 | // value. |
Lang Hames | 1b640e0 | 2016-03-15 01:43:05 +0000 | [diff] [blame] | 380 | bool EncodeAsAltEntry = |
| 381 | IsAlias && cast<MCSymbolMachO>(OrigSymbol).isAltEntry(); |
| 382 | write16(cast<MCSymbolMachO>(Symbol)->getEncodedFlags(EncodeAsAltEntry)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 383 | if (is64Bit()) |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 384 | write64(Address); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 385 | else |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 386 | write32(Address); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 389 | void MachObjectWriter::writeLinkeditLoadCommand(uint32_t Type, |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 390 | uint32_t DataOffset, |
| 391 | uint32_t DataSize) { |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 392 | uint64_t Start = getStream().tell(); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 393 | (void) Start; |
| 394 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 395 | write32(Type); |
| 396 | write32(sizeof(MachO::linkedit_data_command)); |
| 397 | write32(DataOffset); |
| 398 | write32(DataSize); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 399 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 400 | assert(getStream().tell() - Start == sizeof(MachO::linkedit_data_command)); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 403 | static unsigned ComputeLinkerOptionsLoadCommandSize( |
Daniel Dunbar | 34ea79f | 2013-01-22 03:42:49 +0000 | [diff] [blame] | 404 | const std::vector<std::string> &Options, bool is64Bit) |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 405 | { |
Kevin Enderby | d0b6b7f | 2014-12-18 00:53:40 +0000 | [diff] [blame] | 406 | unsigned Size = sizeof(MachO::linker_option_command); |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 407 | for (const std::string &Option : Options) |
| 408 | Size += Option.size() + 1; |
Rui Ueyama | da00f2f | 2016-01-14 21:06:47 +0000 | [diff] [blame] | 409 | return alignTo(Size, is64Bit ? 8 : 4); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 412 | void MachObjectWriter::writeLinkerOptionsLoadCommand( |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 413 | const std::vector<std::string> &Options) |
| 414 | { |
Daniel Dunbar | 34ea79f | 2013-01-22 03:42:49 +0000 | [diff] [blame] | 415 | unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 416 | uint64_t Start = getStream().tell(); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 417 | (void) Start; |
| 418 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 419 | write32(MachO::LC_LINKER_OPTION); |
| 420 | write32(Size); |
| 421 | write32(Options.size()); |
Kevin Enderby | d0b6b7f | 2014-12-18 00:53:40 +0000 | [diff] [blame] | 422 | uint64_t BytesWritten = sizeof(MachO::linker_option_command); |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 423 | for (const std::string &Option : Options) { |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 424 | // Write each string, including the null byte. |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 425 | writeBytes(Option.c_str(), Option.size() + 1); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 426 | BytesWritten += Option.size() + 1; |
| 427 | } |
| 428 | |
Daniel Dunbar | 34ea79f | 2013-01-22 03:42:49 +0000 | [diff] [blame] | 429 | // Pad to a multiple of the pointer size. |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 430 | writeBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4)); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 431 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 432 | assert(getStream().tell() - Start == Size); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 435 | void MachObjectWriter::recordRelocation(MCAssembler &Asm, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 436 | const MCAsmLayout &Layout, |
| 437 | const MCFragment *Fragment, |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 438 | const MCFixup &Fixup, MCValue Target, |
| 439 | bool &IsPCRel, uint64_t &FixedValue) { |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 440 | TargetObjectWriter->recordRelocation(this, Asm, Layout, Fragment, Fixup, |
Jim Grosbach | 28fcafb | 2011-06-24 23:44:37 +0000 | [diff] [blame] | 441 | Target, FixedValue); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 442 | } |
| 443 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 444 | void MachObjectWriter::bindIndirectSymbols(MCAssembler &Asm) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 445 | // This is the point where 'as' creates actual symbols for indirect symbols |
| 446 | // (in the following two passes). It would be easier for us to do this sooner |
| 447 | // when we see the attribute, but that makes getting the order in the symbol |
| 448 | // table much more complicated than it is worth. |
| 449 | // |
| 450 | // FIXME: Revisit this when the dust settles. |
| 451 | |
Kevin Enderby | 3aeada2 | 2013-08-28 17:50:59 +0000 | [diff] [blame] | 452 | // Report errors for use of .indirect_symbol not in a symbol pointer section |
| 453 | // or stub section. |
| 454 | for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(), |
| 455 | ie = Asm.indirect_symbol_end(); it != ie; ++it) { |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 456 | const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section); |
Kevin Enderby | 3aeada2 | 2013-08-28 17:50:59 +0000 | [diff] [blame] | 457 | |
David Majnemer | 7b58305 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 458 | if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS && |
| 459 | Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS && |
Tim Northover | 5c3140f | 2016-04-25 21:12:04 +0000 | [diff] [blame] | 460 | Section.getType() != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && |
David Majnemer | 7b58305 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 461 | Section.getType() != MachO::S_SYMBOL_STUBS) { |
NAKAMURA Takumi | 0a7d0ad | 2015-09-22 11:15:07 +0000 | [diff] [blame] | 462 | MCSymbol &Symbol = *it->Symbol; |
| 463 | report_fatal_error("indirect symbol '" + Symbol.getName() + |
| 464 | "' not in a symbol pointer or stub section"); |
Kevin Enderby | 3aeada2 | 2013-08-28 17:50:59 +0000 | [diff] [blame] | 465 | } |
| 466 | } |
| 467 | |
Alp Toker | f907b89 | 2013-12-05 05:44:44 +0000 | [diff] [blame] | 468 | // Bind non-lazy symbol pointers first. |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 469 | unsigned IndirectIndex = 0; |
| 470 | for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(), |
| 471 | ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) { |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 472 | const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 473 | |
Tim Northover | 4397837 | 2016-04-26 18:29:16 +0000 | [diff] [blame] | 474 | if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS && |
| 475 | Section.getType() != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 476 | continue; |
| 477 | |
| 478 | // Initialize the section indirect symbol base, if necessary. |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 479 | IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 480 | |
Rafael Espindola | b5d316b | 2015-05-29 20:21:02 +0000 | [diff] [blame] | 481 | Asm.registerSymbol(*it->Symbol); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | // Then lazy symbol pointers and symbol stubs. |
| 485 | IndirectIndex = 0; |
| 486 | for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(), |
| 487 | ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) { |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 488 | const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 489 | |
David Majnemer | 7b58305 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 490 | if (Section.getType() != MachO::S_LAZY_SYMBOL_POINTERS && |
| 491 | Section.getType() != MachO::S_SYMBOL_STUBS) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 492 | continue; |
| 493 | |
| 494 | // Initialize the section indirect symbol base, if necessary. |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 495 | IndirectSymBase.insert(std::make_pair(it->Section, IndirectIndex)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 496 | |
| 497 | // Set the symbol type to undefined lazy, but only on construction. |
| 498 | // |
| 499 | // FIXME: Do not hardcode. |
| 500 | bool Created; |
Rafael Espindola | b5d316b | 2015-05-29 20:21:02 +0000 | [diff] [blame] | 501 | Asm.registerSymbol(*it->Symbol, &Created); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 502 | if (Created) |
Pete Cooper | 916f79e | 2015-06-08 17:17:28 +0000 | [diff] [blame] | 503 | cast<MCSymbolMachO>(it->Symbol)->setReferenceTypeUndefinedLazy(true); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 504 | } |
| 505 | } |
| 506 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 507 | /// computeSymbolTable - Compute the symbol table data |
| 508 | void MachObjectWriter::computeSymbolTable( |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 509 | MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData, |
| 510 | std::vector<MachSymbolData> &ExternalSymbolData, |
| 511 | std::vector<MachSymbolData> &UndefinedSymbolData) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 512 | // Build section lookup table. |
| 513 | DenseMap<const MCSection*, uint8_t> SectionIndexMap; |
| 514 | unsigned Index = 1; |
| 515 | for (MCAssembler::iterator it = Asm.begin(), |
| 516 | ie = Asm.end(); it != ie; ++it, ++Index) |
Rafael Espindola | a554c05 | 2015-05-25 23:14:17 +0000 | [diff] [blame] | 517 | SectionIndexMap[&*it] = Index; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 518 | assert(Index <= 256 && "Too many sections!"); |
| 519 | |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 520 | // Build the string table. |
Duncan P. N. Exon Smith | f48de1c | 2015-05-16 00:35:24 +0000 | [diff] [blame] | 521 | for (const MCSymbol &Symbol : Asm.symbols()) { |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 522 | if (!Asm.isSymbolLinkerVisible(Symbol)) |
| 523 | continue; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 524 | |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 525 | StringTable.add(Symbol.getName()); |
| 526 | } |
Rafael Espindola | 21956e4 | 2015-10-23 21:48:05 +0000 | [diff] [blame] | 527 | StringTable.finalize(); |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 528 | |
| 529 | // Build the symbol arrays but only for non-local symbols. |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 530 | // |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 531 | // The particular order that we collect and then sort the symbols is chosen to |
| 532 | // match 'as'. Even though it doesn't matter for correctness, this is |
| 533 | // important for letting us diff .o files. |
Duncan P. N. Exon Smith | f48de1c | 2015-05-16 00:35:24 +0000 | [diff] [blame] | 534 | for (const MCSymbol &Symbol : Asm.symbols()) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 535 | // Ignore non-linker visible symbols. |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 536 | if (!Asm.isSymbolLinkerVisible(Symbol)) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 537 | continue; |
| 538 | |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 539 | if (!Symbol.isExternal() && !Symbol.isUndefined()) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 540 | continue; |
| 541 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 542 | MachSymbolData MSD; |
Duncan P. N. Exon Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 543 | MSD.Symbol = &Symbol; |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 544 | MSD.StringIndex = StringTable.getOffset(Symbol.getName()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 545 | |
| 546 | if (Symbol.isUndefined()) { |
| 547 | MSD.SectionIndex = 0; |
| 548 | UndefinedSymbolData.push_back(MSD); |
| 549 | } else if (Symbol.isAbsolute()) { |
| 550 | MSD.SectionIndex = 0; |
| 551 | ExternalSymbolData.push_back(MSD); |
| 552 | } else { |
| 553 | MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); |
| 554 | assert(MSD.SectionIndex && "Invalid section index!"); |
| 555 | ExternalSymbolData.push_back(MSD); |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | // Now add the data for local symbols. |
Duncan P. N. Exon Smith | f48de1c | 2015-05-16 00:35:24 +0000 | [diff] [blame] | 560 | for (const MCSymbol &Symbol : Asm.symbols()) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 561 | // Ignore non-linker visible symbols. |
Hans Wennborg | 1b1a399 | 2014-10-06 17:05:19 +0000 | [diff] [blame] | 562 | if (!Asm.isSymbolLinkerVisible(Symbol)) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 563 | continue; |
| 564 | |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 565 | if (Symbol.isExternal() || Symbol.isUndefined()) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 566 | continue; |
| 567 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 568 | MachSymbolData MSD; |
Duncan P. N. Exon Smith | 08b8726 | 2015-05-20 15:16:14 +0000 | [diff] [blame] | 569 | MSD.Symbol = &Symbol; |
Daniel Jasper | 41de802 | 2015-06-23 11:31:32 +0000 | [diff] [blame] | 570 | MSD.StringIndex = StringTable.getOffset(Symbol.getName()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 571 | |
| 572 | if (Symbol.isAbsolute()) { |
| 573 | MSD.SectionIndex = 0; |
| 574 | LocalSymbolData.push_back(MSD); |
| 575 | } else { |
| 576 | MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); |
| 577 | assert(MSD.SectionIndex && "Invalid section index!"); |
| 578 | LocalSymbolData.push_back(MSD); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | // External and undefined symbols are required to be in lexicographic order. |
| 583 | std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end()); |
| 584 | std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end()); |
| 585 | |
| 586 | // Set the symbol indices. |
| 587 | Index = 0; |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 588 | for (auto *SymbolData : |
| 589 | {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData}) |
| 590 | for (MachSymbolData &Entry : *SymbolData) |
| 591 | Entry.Symbol->setIndex(Index++); |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 592 | |
Rafael Espindola | a554c05 | 2015-05-25 23:14:17 +0000 | [diff] [blame] | 593 | for (const MCSection &Section : Asm) { |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 594 | for (RelAndSymbol &Rel : Relocations[&Section]) { |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 595 | if (!Rel.Sym) |
| 596 | continue; |
| 597 | |
| 598 | // Set the Index and the IsExtern bit. |
Duncan P. N. Exon Smith | 1247bbd | 2015-05-22 05:54:01 +0000 | [diff] [blame] | 599 | unsigned Index = Rel.Sym->getIndex(); |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 600 | assert(isInt<24>(Index)); |
| 601 | if (IsLittleEndian) |
Justin Bogner | d4e08a0 | 2015-05-14 23:54:49 +0000 | [diff] [blame] | 602 | Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27); |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 603 | else |
| 604 | Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4); |
| 605 | } |
| 606 | } |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | void MachObjectWriter::computeSectionAddresses(const MCAssembler &Asm, |
| 610 | const MCAsmLayout &Layout) { |
| 611 | uint64_t StartAddress = 0; |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 612 | for (const MCSection *Sec : Layout.getSectionOrder()) { |
Rui Ueyama | da00f2f | 2016-01-14 21:06:47 +0000 | [diff] [blame] | 613 | StartAddress = alignTo(StartAddress, Sec->getAlignment()); |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 614 | SectionAddress[Sec] = StartAddress; |
| 615 | StartAddress += Layout.getSectionAddressSize(Sec); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 616 | |
| 617 | // Explicitly pad the section to match the alignment requirements of the |
| 618 | // following one. This is for 'gas' compatibility, it shouldn't |
| 619 | /// strictly be necessary. |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 620 | StartAddress += getPaddingSize(Sec, Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 621 | } |
| 622 | } |
| 623 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 624 | void MachObjectWriter::executePostLayoutBinding(MCAssembler &Asm, |
Bill Wendling | 2116221 | 2011-06-23 00:09:43 +0000 | [diff] [blame] | 625 | const MCAsmLayout &Layout) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 626 | computeSectionAddresses(Asm, Layout); |
| 627 | |
| 628 | // Create symbol data for any indirect symbols. |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 629 | bindIndirectSymbols(Asm); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 632 | bool MachObjectWriter::isSymbolRefDifferenceFullyResolvedImpl( |
Rafael Espindola | e3a20f5 | 2015-10-05 12:07:05 +0000 | [diff] [blame] | 633 | const MCAssembler &Asm, const MCSymbol &A, const MCSymbol &B, |
| 634 | bool InSet) const { |
| 635 | // FIXME: We don't handle things like |
| 636 | // foo = . |
| 637 | // creating atoms. |
| 638 | if (A.isVariable() || B.isVariable()) |
| 639 | return false; |
| 640 | return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, A, B, |
| 641 | InSet); |
| 642 | } |
| 643 | |
| 644 | bool MachObjectWriter::isSymbolRefDifferenceFullyResolvedImpl( |
Duncan P. N. Exon Smith | d81ba53 | 2015-05-16 01:01:55 +0000 | [diff] [blame] | 645 | const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, |
Rafael Espindola | 35d6189 | 2015-04-17 21:15:17 +0000 | [diff] [blame] | 646 | bool InSet, bool IsPCRel) const { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 647 | if (InSet) |
| 648 | return true; |
| 649 | |
| 650 | // The effective address is |
| 651 | // addr(atom(A)) + offset(A) |
| 652 | // - addr(atom(B)) - offset(B) |
| 653 | // and the offsets are not relocatable, so the fixup is fully resolved when |
| 654 | // addr(atom(A)) - addr(atom(B)) == 0. |
Duncan P. N. Exon Smith | d81ba53 | 2015-05-16 01:01:55 +0000 | [diff] [blame] | 655 | const MCSymbol &SA = findAliasedSymbol(SymA); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 656 | const MCSection &SecA = SA.getSection(); |
Rafael Espindola | 7549f87 | 2015-05-26 00:36:57 +0000 | [diff] [blame] | 657 | const MCSection &SecB = *FB.getParent(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 658 | |
| 659 | if (IsPCRel) { |
| 660 | // The simple (Darwin, except on x86_64) way of dealing with this was to |
| 661 | // assume that any reference to a temporary symbol *must* be a temporary |
| 662 | // symbol in the same atom, unless the sections differ. Therefore, any PCrel |
| 663 | // relocation to a temporary symbol (in the same section) is fully |
| 664 | // resolved. This also works in conjunction with absolutized .set, which |
| 665 | // requires the compiler to use .set to absolutize the differences between |
| 666 | // symbols which the compiler knows to be assembly time constants, so we |
| 667 | // don't need to worry about considering symbol differences fully resolved. |
Jim Grosbach | d6ae4ba | 2011-12-07 19:46:59 +0000 | [diff] [blame] | 668 | // |
| 669 | // If the file isn't using sub-sections-via-symbols, we can make the |
| 670 | // same assumptions about any symbol that we normally make about |
| 671 | // assembler locals. |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 672 | |
Rafael Espindola | a063bdd | 2014-03-11 21:22:57 +0000 | [diff] [blame] | 673 | bool hasReliableSymbolDifference = isX86_64(); |
| 674 | if (!hasReliableSymbolDifference) { |
Jim Grosbach | 4045507 | 2012-01-17 22:14:39 +0000 | [diff] [blame] | 675 | if (!SA.isInSection() || &SecA != &SecB || |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 676 | (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() && |
Jim Grosbach | 35bc8f9 | 2012-01-24 21:45:25 +0000 | [diff] [blame] | 677 | Asm.getSubsectionsViaSymbols())) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 678 | return false; |
| 679 | return true; |
| 680 | } |
Kevin Enderby | 7b46bb8 | 2011-09-08 20:53:44 +0000 | [diff] [blame] | 681 | // For Darwin x86_64, there is one special case when the reference IsPCRel. |
| 682 | // If the fragment with the reference does not have a base symbol but meets |
| 683 | // the simple way of dealing with this, in that it is a temporary symbol in |
| 684 | // the same atom then it is assumed to be fully resolved. This is needed so |
Eric Christopher | 460be99 | 2011-09-08 22:17:40 +0000 | [diff] [blame] | 685 | // a relocation entry is not created and so the static linker does not |
Kevin Enderby | 7b46bb8 | 2011-09-08 20:53:44 +0000 | [diff] [blame] | 686 | // mess up the reference later. |
| 687 | else if(!FB.getAtom() && |
| 688 | SA.isTemporary() && SA.isInSection() && &SecA == &SecB){ |
| 689 | return true; |
| 690 | } |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 691 | } |
| 692 | |
Rafael Espindola | bfd0f01 | 2014-11-04 22:10:33 +0000 | [diff] [blame] | 693 | // If they are not in the same section, we can't compute the diff. |
| 694 | if (&SecA != &SecB) |
| 695 | return false; |
| 696 | |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 697 | const MCFragment *FA = SA.getFragment(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 698 | |
Benjamin Kramer | 91ea511 | 2011-08-12 01:51:29 +0000 | [diff] [blame] | 699 | // Bail if the symbol has no fragment. |
| 700 | if (!FA) |
| 701 | return false; |
| 702 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 703 | // If the atoms are the same, they are guaranteed to have the same address. |
Duncan P. N. Exon Smith | 09bfa58 | 2015-05-16 00:48:58 +0000 | [diff] [blame] | 704 | if (FA->getAtom() == FB.getAtom()) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 705 | return true; |
| 706 | |
| 707 | // Otherwise, we can't prove this is fully resolved. |
| 708 | return false; |
| 709 | } |
| 710 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 711 | void MachObjectWriter::writeObject(MCAssembler &Asm, |
Jim Grosbach | 46be301 | 2011-12-06 00:13:09 +0000 | [diff] [blame] | 712 | const MCAsmLayout &Layout) { |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 713 | // Compute symbol table information and bind symbol indices. |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 714 | computeSymbolTable(Asm, LocalSymbolData, ExternalSymbolData, |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 715 | UndefinedSymbolData); |
| 716 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 717 | unsigned NumSections = Asm.size(); |
Jim Grosbach | 448334a | 2014-03-18 22:09:05 +0000 | [diff] [blame] | 718 | const MCAssembler::VersionMinInfoType &VersionInfo = |
| 719 | Layout.getAssembler().getVersionMinInfo(); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 720 | |
| 721 | // The section data starts after the header, the segment load command (and |
| 722 | // section headers) and the symbol table. |
| 723 | unsigned NumLoadCommands = 1; |
| 724 | uint64_t LoadCommandsSize = is64Bit() ? |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 725 | sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): |
| 726 | sizeof(MachO::segment_command) + NumSections * sizeof(MachO::section); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 727 | |
Jim Grosbach | 448334a | 2014-03-18 22:09:05 +0000 | [diff] [blame] | 728 | // Add the deployment target version info load command size, if used. |
| 729 | if (VersionInfo.Major != 0) { |
| 730 | ++NumLoadCommands; |
| 731 | LoadCommandsSize += sizeof(MachO::version_min_command); |
| 732 | } |
| 733 | |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 734 | // Add the data-in-code load command size, if used. |
| 735 | unsigned NumDataRegions = Asm.getDataRegions().size(); |
| 736 | if (NumDataRegions) { |
| 737 | ++NumLoadCommands; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 738 | LoadCommandsSize += sizeof(MachO::linkedit_data_command); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 739 | } |
| 740 | |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 741 | // Add the loh load command size, if used. |
| 742 | uint64_t LOHRawSize = Asm.getLOHContainer().getEmitSize(*this, Layout); |
Rui Ueyama | da00f2f | 2016-01-14 21:06:47 +0000 | [diff] [blame] | 743 | uint64_t LOHSize = alignTo(LOHRawSize, is64Bit() ? 8 : 4); |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 744 | if (LOHSize) { |
| 745 | ++NumLoadCommands; |
| 746 | LoadCommandsSize += sizeof(MachO::linkedit_data_command); |
| 747 | } |
| 748 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 749 | // Add the symbol table load command sizes, if used. |
| 750 | unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() + |
| 751 | UndefinedSymbolData.size(); |
| 752 | if (NumSymbols) { |
| 753 | NumLoadCommands += 2; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 754 | LoadCommandsSize += (sizeof(MachO::symtab_command) + |
| 755 | sizeof(MachO::dysymtab_command)); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 756 | } |
| 757 | |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 758 | // Add the linker option load commands sizes. |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 759 | for (const auto &Option : Asm.getLinkerOptions()) { |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 760 | ++NumLoadCommands; |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 761 | LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit()); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 762 | } |
NAKAMURA Takumi | a9cb538 | 2015-09-22 11:14:39 +0000 | [diff] [blame] | 763 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 764 | // Compute the total size of the section data, as well as its file size and vm |
| 765 | // size. |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 766 | uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) : |
| 767 | sizeof(MachO::mach_header)) + LoadCommandsSize; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 768 | uint64_t SectionDataSize = 0; |
| 769 | uint64_t SectionDataFileSize = 0; |
| 770 | uint64_t VMSize = 0; |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 771 | for (const MCSection &Sec : Asm) { |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 772 | uint64_t Address = getSectionAddress(&Sec); |
| 773 | uint64_t Size = Layout.getSectionAddressSize(&Sec); |
| 774 | uint64_t FileSize = Layout.getSectionFileSize(&Sec); |
| 775 | FileSize += getPaddingSize(&Sec, Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 776 | |
| 777 | VMSize = std::max(VMSize, Address + Size); |
| 778 | |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 779 | if (Sec.isVirtualSection()) |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 780 | continue; |
| 781 | |
| 782 | SectionDataSize = std::max(SectionDataSize, Address + Size); |
| 783 | SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize); |
| 784 | } |
| 785 | |
| 786 | // The section data is padded to 4 bytes. |
| 787 | // |
| 788 | // FIXME: Is this machine dependent? |
| 789 | unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4); |
| 790 | SectionDataFileSize += SectionDataPadding; |
| 791 | |
| 792 | // Write the prolog, starting with the header and load command... |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 793 | writeHeader(MachO::MH_OBJECT, NumLoadCommands, LoadCommandsSize, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 794 | Asm.getSubsectionsViaSymbols()); |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 795 | uint32_t Prot = |
| 796 | MachO::VM_PROT_READ | MachO::VM_PROT_WRITE | MachO::VM_PROT_EXECUTE; |
| 797 | writeSegmentLoadCommand("", NumSections, 0, VMSize, SectionDataStart, |
| 798 | SectionDataSize, Prot, Prot); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 799 | |
| 800 | // ... and then the section headers. |
| 801 | uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize; |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 802 | for (const MCSection &Section : Asm) { |
| 803 | const auto &Sec = cast<MCSectionMachO>(Section); |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 804 | std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 805 | unsigned NumRelocs = Relocs.size(); |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 806 | uint64_t SectionStart = SectionDataStart + getSectionAddress(&Sec); |
Frederic Riss | 75c0c70 | 2015-08-26 05:09:46 +0000 | [diff] [blame] | 807 | unsigned Flags = Sec.getTypeAndAttributes(); |
| 808 | if (Sec.hasInstructions()) |
| 809 | Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS; |
| 810 | writeSection(Layout, Sec, getSectionAddress(&Sec), SectionStart, Flags, |
| 811 | RelocTableEnd, NumRelocs); |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 812 | RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 813 | } |
| 814 | |
Jim Grosbach | 448334a | 2014-03-18 22:09:05 +0000 | [diff] [blame] | 815 | // Write out the deployment target information, if it's available. |
| 816 | if (VersionInfo.Major != 0) { |
| 817 | assert(VersionInfo.Update < 256 && "unencodable update target version"); |
| 818 | assert(VersionInfo.Minor < 256 && "unencodable minor target version"); |
| 819 | assert(VersionInfo.Major < 65536 && "unencodable major target version"); |
| 820 | uint32_t EncodedVersion = VersionInfo.Update | (VersionInfo.Minor << 8) | |
| 821 | (VersionInfo.Major << 16); |
Tim Northover | 2d4d161 | 2015-10-28 22:36:05 +0000 | [diff] [blame] | 822 | MachO::LoadCommandType LCType; |
| 823 | switch (VersionInfo.Kind) { |
| 824 | case MCVM_OSXVersionMin: |
| 825 | LCType = MachO::LC_VERSION_MIN_MACOSX; |
| 826 | break; |
| 827 | case MCVM_IOSVersionMin: |
| 828 | LCType = MachO::LC_VERSION_MIN_IPHONEOS; |
| 829 | break; |
| 830 | case MCVM_TvOSVersionMin: |
| 831 | LCType = MachO::LC_VERSION_MIN_TVOS; |
| 832 | break; |
| 833 | case MCVM_WatchOSVersionMin: |
| 834 | LCType = MachO::LC_VERSION_MIN_WATCHOS; |
| 835 | break; |
| 836 | } |
| 837 | write32(LCType); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 838 | write32(sizeof(MachO::version_min_command)); |
| 839 | write32(EncodedVersion); |
| 840 | write32(0); // reserved. |
Jim Grosbach | 448334a | 2014-03-18 22:09:05 +0000 | [diff] [blame] | 841 | } |
| 842 | |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 843 | // Write the data-in-code load command, if used. |
| 844 | uint64_t DataInCodeTableEnd = RelocTableEnd + NumDataRegions * 8; |
| 845 | if (NumDataRegions) { |
| 846 | uint64_t DataRegionsOffset = RelocTableEnd; |
| 847 | uint64_t DataRegionsSize = NumDataRegions * 8; |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 848 | writeLinkeditLoadCommand(MachO::LC_DATA_IN_CODE, DataRegionsOffset, |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 849 | DataRegionsSize); |
| 850 | } |
| 851 | |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 852 | // Write the loh load command, if used. |
| 853 | uint64_t LOHTableEnd = DataInCodeTableEnd + LOHSize; |
| 854 | if (LOHSize) |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 855 | writeLinkeditLoadCommand(MachO::LC_LINKER_OPTIMIZATION_HINT, |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 856 | DataInCodeTableEnd, LOHSize); |
| 857 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 858 | // Write the symbol table load command, if used. |
| 859 | if (NumSymbols) { |
| 860 | unsigned FirstLocalSymbol = 0; |
| 861 | unsigned NumLocalSymbols = LocalSymbolData.size(); |
| 862 | unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols; |
| 863 | unsigned NumExternalSymbols = ExternalSymbolData.size(); |
| 864 | unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols; |
| 865 | unsigned NumUndefinedSymbols = UndefinedSymbolData.size(); |
| 866 | unsigned NumIndirectSymbols = Asm.indirect_symbol_size(); |
| 867 | unsigned NumSymTabSymbols = |
| 868 | NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols; |
| 869 | uint64_t IndirectSymbolSize = NumIndirectSymbols * 4; |
| 870 | uint64_t IndirectSymbolOffset = 0; |
| 871 | |
| 872 | // If used, the indirect symbols are written after the section data. |
| 873 | if (NumIndirectSymbols) |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 874 | IndirectSymbolOffset = LOHTableEnd; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 875 | |
| 876 | // The symbol table is written after the indirect symbol data. |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 877 | uint64_t SymbolTableOffset = LOHTableEnd + IndirectSymbolSize; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 878 | |
| 879 | // The string table is written after symbol table. |
| 880 | uint64_t StringTableOffset = |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 881 | SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? |
| 882 | sizeof(MachO::nlist_64) : |
| 883 | sizeof(MachO::nlist)); |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 884 | writeSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols, |
Rafael Espindola | 39751af | 2016-10-04 22:43:25 +0000 | [diff] [blame^] | 885 | StringTableOffset, StringTable.getSize()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 886 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 887 | writeDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols, |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 888 | FirstExternalSymbol, NumExternalSymbols, |
| 889 | FirstUndefinedSymbol, NumUndefinedSymbols, |
| 890 | IndirectSymbolOffset, NumIndirectSymbols); |
| 891 | } |
| 892 | |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 893 | // Write the linker options load commands. |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 894 | for (const auto &Option : Asm.getLinkerOptions()) |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 895 | writeLinkerOptionsLoadCommand(Option); |
Daniel Dunbar | eec0f32 | 2013-01-18 01:26:07 +0000 | [diff] [blame] | 896 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 897 | // Write the actual section data. |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 898 | for (const MCSection &Sec : Asm) { |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 899 | Asm.writeSectionData(&Sec, Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 900 | |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 901 | uint64_t Pad = getPaddingSize(&Sec, Layout); |
Benjamin Kramer | 97fbdd5 | 2015-04-17 11:12:43 +0000 | [diff] [blame] | 902 | WriteZeros(Pad); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | // Write the extra padding. |
| 906 | WriteZeros(SectionDataPadding); |
| 907 | |
| 908 | // Write the relocation entries. |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 909 | for (const MCSection &Sec : Asm) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 910 | // Write the section relocation entries, in reverse order to match 'as' |
| 911 | // (approximately, the exact algorithm is more complicated than this). |
Rafael Espindola | 63702e2 | 2015-06-01 01:30:01 +0000 | [diff] [blame] | 912 | std::vector<RelAndSymbol> &Relocs = Relocations[&Sec]; |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 913 | for (const RelAndSymbol &Rel : make_range(Relocs.rbegin(), Relocs.rend())) { |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 914 | write32(Rel.MRE.r_word0); |
| 915 | write32(Rel.MRE.r_word1); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 916 | } |
| 917 | } |
| 918 | |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 919 | // Write out the data-in-code region payload, if there is one. |
| 920 | for (MCAssembler::const_data_region_iterator |
| 921 | it = Asm.data_region_begin(), ie = Asm.data_region_end(); |
| 922 | it != ie; ++it) { |
| 923 | const DataRegionData *Data = &(*it); |
Duncan P. N. Exon Smith | 99d8a8e | 2015-05-20 00:02:39 +0000 | [diff] [blame] | 924 | uint64_t Start = getSymbolAddress(*Data->Start, Layout); |
| 925 | uint64_t End = getSymbolAddress(*Data->End, Layout); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 926 | DEBUG(dbgs() << "data in code region-- kind: " << Data->Kind |
| 927 | << " start: " << Start << "(" << Data->Start->getName() << ")" |
| 928 | << " end: " << End << "(" << Data->End->getName() << ")" |
| 929 | << " size: " << End - Start |
| 930 | << "\n"); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 931 | write32(Start); |
| 932 | write16(End - Start); |
| 933 | write16(Data->Kind); |
Jim Grosbach | 4b63d2a | 2012-05-18 19:12:01 +0000 | [diff] [blame] | 934 | } |
| 935 | |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 936 | // Write out the loh commands, if there is one. |
| 937 | if (LOHSize) { |
| 938 | #ifndef NDEBUG |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 939 | unsigned Start = getStream().tell(); |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 940 | #endif |
Jim Grosbach | 249af2a | 2015-06-01 23:55:06 +0000 | [diff] [blame] | 941 | Asm.getLOHContainer().emit(*this, Layout); |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 942 | // Pad to a multiple of the pointer size. |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 943 | writeBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4)); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 944 | assert(getStream().tell() - Start == LOHSize); |
Tim Northover | 53d3251 | 2014-03-29 07:34:53 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 947 | // Write the symbol table data, if used. |
| 948 | if (NumSymbols) { |
| 949 | // Write the indirect symbol entries. |
| 950 | for (MCAssembler::const_indirect_symbol_iterator |
| 951 | it = Asm.indirect_symbol_begin(), |
| 952 | ie = Asm.indirect_symbol_end(); it != ie; ++it) { |
Alp Toker | f907b89 | 2013-12-05 05:44:44 +0000 | [diff] [blame] | 953 | // Indirect symbols in the non-lazy symbol pointer section have some |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 954 | // special handling. |
| 955 | const MCSectionMachO &Section = |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 956 | static_cast<const MCSectionMachO &>(*it->Section); |
David Majnemer | 7b58305 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 957 | if (Section.getType() == MachO::S_NON_LAZY_SYMBOL_POINTERS) { |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 958 | // If this symbol is defined and internal, mark it as such. |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 959 | if (it->Symbol->isDefined() && !it->Symbol->isExternal()) { |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 960 | uint32_t Flags = MachO::INDIRECT_SYMBOL_LOCAL; |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 961 | if (it->Symbol->isAbsolute()) |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 962 | Flags |= MachO::INDIRECT_SYMBOL_ABS; |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 963 | write32(Flags); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 964 | continue; |
| 965 | } |
| 966 | } |
| 967 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 968 | write32(it->Symbol->getIndex()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | // FIXME: Check that offsets match computed ones. |
| 972 | |
| 973 | // Write the symbol table entries. |
Benjamin Kramer | 1ec70d8 | 2015-06-04 21:17:27 +0000 | [diff] [blame] | 974 | for (auto *SymbolData : |
| 975 | {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData}) |
| 976 | for (MachSymbolData &Entry : *SymbolData) |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 977 | writeNlist(Entry, Layout); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 978 | |
| 979 | // Write the string table. |
Rafael Espindola | 39751af | 2016-10-04 22:43:25 +0000 | [diff] [blame^] | 980 | StringTable.write(getStream()); |
Bill Wendling | eb872e0 | 2011-06-22 21:07:27 +0000 | [diff] [blame] | 981 | } |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 982 | } |
| 983 | |
Daniel Dunbar | 8888a96 | 2010-12-16 16:09:19 +0000 | [diff] [blame] | 984 | MCObjectWriter *llvm::createMachObjectWriter(MCMachObjectTargetWriter *MOTW, |
Rafael Espindola | 5560a4c | 2015-04-14 22:14:34 +0000 | [diff] [blame] | 985 | raw_pwrite_stream &OS, |
Daniel Dunbar | fe0c28f | 2010-11-13 07:33:40 +0000 | [diff] [blame] | 986 | bool IsLittleEndian) { |
Daniel Dunbar | 03fcccb | 2010-12-16 17:21:02 +0000 | [diff] [blame] | 987 | return new MachObjectWriter(MOTW, OS, IsLittleEndian); |
Daniel Dunbar | 79e0e5a | 2010-03-19 10:43:15 +0000 | [diff] [blame] | 988 | } |