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