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