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