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