Nick Lewycky | 4288f9e | 2013-03-09 09:32:16 +0000 | [diff] [blame] | 1 | //===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===// |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 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 | // |
| 10 | // This file implements ELF object file writer information. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCELFObjectWriter.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/STLExtras.h" |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallPtrSet.h" |
| 17 | #include "llvm/ADT/SmallString.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringMap.h" |
Evan Cheng | 5928e69 | 2011-07-25 23:24:55 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCAsmBackend.h" |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCAsmInfo.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCAsmLayout.h" |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCAssembler.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCContext.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCExpr.h" |
Craig Topper | 6e80c28 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCFixupKindInfo.h" |
| 26 | #include "llvm/MC/MCObjectWriter.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 27 | #include "llvm/MC/MCSectionELF.h" |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCSymbolELF.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 29 | #include "llvm/MC/MCValue.h" |
Rafael Espindola | 97de474 | 2014-07-03 02:01:39 +0000 | [diff] [blame] | 30 | #include "llvm/MC/StringTableBuilder.h" |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Compression.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Debug.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 33 | #include "llvm/Support/ELF.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Endian.h" |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame^] | 35 | #include "llvm/Support/Error.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ErrorHandling.h" |
Rafael Espindola | fc063e8 | 2015-10-22 18:32:06 +0000 | [diff] [blame] | 37 | #include "llvm/Support/StringSaver.h" |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 38 | #include <vector> |
Eugene Zelenko | ecefe5a | 2016-02-02 18:20:45 +0000 | [diff] [blame] | 39 | |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 40 | using namespace llvm; |
| 41 | |
Jason W Kim | c09e726 | 2011-05-11 22:53:06 +0000 | [diff] [blame] | 42 | #undef DEBUG_TYPE |
| 43 | #define DEBUG_TYPE "reloc-info" |
| 44 | |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 45 | namespace { |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 46 | typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy; |
| 47 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 48 | class ELFObjectWriter; |
| 49 | |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 50 | class SymbolTableWriter { |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 51 | ELFObjectWriter &EWriter; |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 52 | bool Is64Bit; |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 53 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 54 | // indexes we are going to write to .symtab_shndx. |
| 55 | std::vector<uint32_t> ShndxIndexes; |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 56 | |
| 57 | // The numbel of symbols written so far. |
| 58 | unsigned NumWritten; |
| 59 | |
| 60 | void createSymtabShndx(); |
| 61 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 62 | template <typename T> void write(T Value); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 63 | |
| 64 | public: |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 65 | SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 66 | |
| 67 | void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size, |
| 68 | uint8_t other, uint32_t shndx, bool Reserved); |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 69 | |
| 70 | ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; } |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 73 | class ELFObjectWriter : public MCObjectWriter { |
David Blaikie | a0fa262 | 2016-04-12 21:45:53 +0000 | [diff] [blame] | 74 | static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout); |
| 75 | static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol, |
| 76 | bool Used, bool Renamed); |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 77 | |
David Blaikie | a0fa262 | 2016-04-12 21:45:53 +0000 | [diff] [blame] | 78 | /// Helper struct for containing some precomputed information on symbols. |
| 79 | struct ELFSymbolData { |
| 80 | const MCSymbolELF *Symbol; |
| 81 | uint32_t SectionIndex; |
| 82 | StringRef Name; |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 83 | |
David Blaikie | a0fa262 | 2016-04-12 21:45:53 +0000 | [diff] [blame] | 84 | // Support lexicographic sorting. |
| 85 | bool operator<(const ELFSymbolData &RHS) const { |
| 86 | unsigned LHSType = Symbol->getType(); |
| 87 | unsigned RHSType = RHS.Symbol->getType(); |
| 88 | if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION) |
| 89 | return false; |
| 90 | if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION) |
| 91 | return true; |
| 92 | if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION) |
| 93 | return SectionIndex < RHS.SectionIndex; |
| 94 | return Name < RHS.Name; |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 95 | } |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 96 | }; |
David Blaikie | a0fa262 | 2016-04-12 21:45:53 +0000 | [diff] [blame] | 97 | |
| 98 | /// The target specific ELF writer instance. |
| 99 | std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter; |
| 100 | |
| 101 | DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames; |
| 102 | |
| 103 | llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> |
| 104 | Relocations; |
| 105 | |
| 106 | /// @} |
| 107 | /// @name Symbol Table Data |
| 108 | /// @{ |
| 109 | |
| 110 | BumpPtrAllocator Alloc; |
| 111 | StringSaver VersionSymSaver{Alloc}; |
| 112 | StringTableBuilder StrTabBuilder{StringTableBuilder::ELF}; |
| 113 | |
| 114 | /// @} |
| 115 | |
| 116 | // This holds the symbol table index of the last local symbol. |
| 117 | unsigned LastLocalSymbolIndex; |
| 118 | // This holds the .strtab section index. |
| 119 | unsigned StringTableIndex; |
| 120 | // This holds the .symtab section index. |
| 121 | unsigned SymbolTableIndex; |
| 122 | |
| 123 | // Sections in the order they are to be output in the section table. |
| 124 | std::vector<const MCSectionELF *> SectionTable; |
| 125 | unsigned addToSectionTable(const MCSectionELF *Sec); |
| 126 | |
| 127 | // TargetObjectWriter wrappers. |
| 128 | bool is64Bit() const { return TargetObjectWriter->is64Bit(); } |
| 129 | bool hasRelocationAddend() const { |
| 130 | return TargetObjectWriter->hasRelocationAddend(); |
| 131 | } |
| 132 | unsigned getRelocType(MCContext &Ctx, const MCValue &Target, |
| 133 | const MCFixup &Fixup, bool IsPCRel) const { |
| 134 | return TargetObjectWriter->getRelocType(Ctx, Target, Fixup, IsPCRel); |
| 135 | } |
| 136 | |
| 137 | void align(unsigned Alignment); |
| 138 | |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 139 | bool maybeWriteCompression(uint64_t Size, |
| 140 | SmallVectorImpl<char> &CompressedContents, |
| 141 | bool ZLibStyle, unsigned Alignment); |
| 142 | |
David Blaikie | a0fa262 | 2016-04-12 21:45:53 +0000 | [diff] [blame] | 143 | public: |
| 144 | ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS, |
| 145 | bool IsLittleEndian) |
| 146 | : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {} |
| 147 | |
| 148 | void reset() override { |
| 149 | Renames.clear(); |
| 150 | Relocations.clear(); |
| 151 | StrTabBuilder.clear(); |
| 152 | SectionTable.clear(); |
| 153 | MCObjectWriter::reset(); |
| 154 | } |
| 155 | |
| 156 | ~ELFObjectWriter() override; |
| 157 | |
| 158 | void WriteWord(uint64_t W) { |
| 159 | if (is64Bit()) |
| 160 | write64(W); |
| 161 | else |
| 162 | write32(W); |
| 163 | } |
| 164 | |
| 165 | template <typename T> void write(T Val) { |
| 166 | if (IsLittleEndian) |
| 167 | support::endian::Writer<support::little>(getStream()).write(Val); |
| 168 | else |
| 169 | support::endian::Writer<support::big>(getStream()).write(Val); |
| 170 | } |
| 171 | |
| 172 | void writeHeader(const MCAssembler &Asm); |
| 173 | |
| 174 | void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex, |
| 175 | ELFSymbolData &MSD, const MCAsmLayout &Layout); |
| 176 | |
| 177 | // Start and end offset of each section |
| 178 | typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>> |
| 179 | SectionOffsetsTy; |
| 180 | |
| 181 | bool shouldRelocateWithSymbol(const MCAssembler &Asm, |
| 182 | const MCSymbolRefExpr *RefA, |
| 183 | const MCSymbol *Sym, uint64_t C, |
| 184 | unsigned Type) const; |
| 185 | |
| 186 | void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout, |
| 187 | const MCFragment *Fragment, const MCFixup &Fixup, |
| 188 | MCValue Target, bool &IsPCRel, |
| 189 | uint64_t &FixedValue) override; |
| 190 | |
| 191 | // Map from a signature symbol to the group section index |
| 192 | typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy; |
| 193 | |
| 194 | /// Compute the symbol table data |
| 195 | /// |
| 196 | /// \param Asm - The assembler. |
| 197 | /// \param SectionIndexMap - Maps a section to its index. |
| 198 | /// \param RevGroupMap - Maps a signature symbol to the group section. |
| 199 | void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, |
| 200 | const SectionIndexMapTy &SectionIndexMap, |
| 201 | const RevGroupMapTy &RevGroupMap, |
| 202 | SectionOffsetsTy &SectionOffsets); |
| 203 | |
| 204 | MCSectionELF *createRelocationSection(MCContext &Ctx, |
| 205 | const MCSectionELF &Sec); |
| 206 | |
| 207 | const MCSectionELF *createStringTable(MCContext &Ctx); |
| 208 | |
| 209 | void executePostLayoutBinding(MCAssembler &Asm, |
| 210 | const MCAsmLayout &Layout) override; |
| 211 | |
| 212 | void writeSectionHeader(const MCAsmLayout &Layout, |
| 213 | const SectionIndexMapTy &SectionIndexMap, |
| 214 | const SectionOffsetsTy &SectionOffsets); |
| 215 | |
| 216 | void writeSectionData(const MCAssembler &Asm, MCSection &Sec, |
| 217 | const MCAsmLayout &Layout); |
| 218 | |
| 219 | void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags, |
| 220 | uint64_t Address, uint64_t Offset, uint64_t Size, |
| 221 | uint32_t Link, uint32_t Info, uint64_t Alignment, |
| 222 | uint64_t EntrySize); |
| 223 | |
| 224 | void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec); |
| 225 | |
| 226 | bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm, |
| 227 | const MCSymbol &SymA, |
| 228 | const MCFragment &FB, bool InSet, |
| 229 | bool IsPCRel) const override; |
| 230 | |
| 231 | bool isWeak(const MCSymbol &Sym) const override; |
| 232 | |
| 233 | void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override; |
| 234 | void writeSection(const SectionIndexMapTy &SectionIndexMap, |
| 235 | uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size, |
| 236 | const MCSectionELF &Section); |
| 237 | }; |
Eugene Zelenko | ecefe5a | 2016-02-02 18:20:45 +0000 | [diff] [blame] | 238 | } // end anonymous namespace |
Rafael Espindola | 29abd97 | 2011-12-22 03:38:00 +0000 | [diff] [blame] | 239 | |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 240 | void ELFObjectWriter::align(unsigned Alignment) { |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 241 | uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment); |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 242 | WriteZeros(Padding); |
| 243 | } |
| 244 | |
Rafael Espindola | 08850b3 | 2015-05-25 21:56:55 +0000 | [diff] [blame] | 245 | unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) { |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 246 | SectionTable.push_back(Sec); |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 247 | StrTabBuilder.add(Sec->getSectionName()); |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 248 | return SectionTable.size(); |
| 249 | } |
| 250 | |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 251 | void SymbolTableWriter::createSymtabShndx() { |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 252 | if (!ShndxIndexes.empty()) |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 253 | return; |
| 254 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 255 | ShndxIndexes.resize(NumWritten); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 258 | template <typename T> void SymbolTableWriter::write(T Value) { |
| 259 | EWriter.write(Value); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 262 | SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit) |
| 263 | : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {} |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 264 | |
| 265 | void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value, |
| 266 | uint64_t size, uint8_t other, |
| 267 | uint32_t shndx, bool Reserved) { |
| 268 | bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved; |
| 269 | |
| 270 | if (LargeIndex) |
| 271 | createSymtabShndx(); |
| 272 | |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 273 | if (!ShndxIndexes.empty()) { |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 274 | if (LargeIndex) |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 275 | ShndxIndexes.push_back(shndx); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 276 | else |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 277 | ShndxIndexes.push_back(0); |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx; |
| 281 | |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 282 | if (Is64Bit) { |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 283 | write(name); // st_name |
| 284 | write(info); // st_info |
| 285 | write(other); // st_other |
| 286 | write(Index); // st_shndx |
| 287 | write(value); // st_value |
| 288 | write(size); // st_size |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 289 | } else { |
Rafael Espindola | 91fd277 | 2015-04-29 21:09:32 +0000 | [diff] [blame] | 290 | write(name); // st_name |
| 291 | write(uint32_t(value)); // st_value |
| 292 | write(uint32_t(size)); // st_size |
| 293 | write(info); // st_info |
| 294 | write(other); // st_other |
| 295 | write(Index); // st_shndx |
Rafael Espindola | 10be083 | 2014-03-25 23:44:25 +0000 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | ++NumWritten; |
| 299 | } |
| 300 | |
Jason W Kim | 96f4c01 | 2010-11-15 16:18:39 +0000 | [diff] [blame] | 301 | ELFObjectWriter::~ELFObjectWriter() |
| 302 | {} |
| 303 | |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 304 | // Emit the ELF header. |
Rafael Espindola | 8c7829b | 2015-04-29 20:39:37 +0000 | [diff] [blame] | 305 | void ELFObjectWriter::writeHeader(const MCAssembler &Asm) { |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 306 | // ELF Header |
| 307 | // ---------- |
| 308 | // |
| 309 | // Note |
| 310 | // ---- |
| 311 | // emitWord method behaves differently for ELF32 and ELF64, writing |
| 312 | // 4 bytes in the former and 8 in the latter. |
| 313 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 314 | writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3] |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 315 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 316 | write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS] |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 317 | |
| 318 | // e_ident[EI_DATA] |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 319 | write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 320 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 321 | write8(ELF::EV_CURRENT); // e_ident[EI_VERSION] |
Roman Divacky | 3b727f5 | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 322 | // e_ident[EI_OSABI] |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 323 | write8(TargetObjectWriter->getOSABI()); |
| 324 | write8(0); // e_ident[EI_ABIVERSION] |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 325 | |
| 326 | WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD); |
| 327 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 328 | write16(ELF::ET_REL); // e_type |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 329 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 330 | write16(TargetObjectWriter->getEMachine()); // e_machine = target |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 331 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 332 | write32(ELF::EV_CURRENT); // e_version |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 333 | WriteWord(0); // e_entry, no entry point in .o file |
| 334 | WriteWord(0); // e_phoff, no program header for .o |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 335 | WriteWord(0); // e_shoff = sec hdr table off in bytes |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 336 | |
Jason W Kim | 4761fba | 2011-02-04 21:41:11 +0000 | [diff] [blame] | 337 | // e_flags = whatever the target wants |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 338 | write32(Asm.getELFHeaderEFlags()); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 339 | |
| 340 | // e_ehsize = ELF header size |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 341 | write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr)); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 342 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 343 | write16(0); // e_phentsize = prog header entry size |
| 344 | write16(0); // e_phnum = # prog header entries = 0 |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 345 | |
| 346 | // e_shentsize = Section header entry size |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 347 | write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr)); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 348 | |
| 349 | // e_shnum = # of section header ents |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 350 | write16(0); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 351 | |
| 352 | // e_shstrndx = Section # of '.shstrtab' |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 353 | assert(StringTableIndex < ELF::SHN_LORESERVE); |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 354 | write16(StringTableIndex); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 357 | uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym, |
Jan Sjödin | 30a52de | 2011-02-28 21:45:04 +0000 | [diff] [blame] | 358 | const MCAsmLayout &Layout) { |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 359 | if (Sym.isCommon() && Sym.isExternal()) |
Rafael Espindola | 1467250 | 2015-05-29 17:48:04 +0000 | [diff] [blame] | 360 | return Sym.getCommonAlignment(); |
Rafael Espindola | 9735f4f | 2010-09-27 21:23:02 +0000 | [diff] [blame] | 361 | |
Rafael Espindola | fee224f | 2014-04-30 21:51:13 +0000 | [diff] [blame] | 362 | uint64_t Res; |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 363 | if (!Layout.getSymbolOffset(Sym, Res)) |
Rafael Espindola | 553e5eb | 2014-04-30 16:59:35 +0000 | [diff] [blame] | 364 | return 0; |
| 365 | |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 366 | if (Layout.getAssembler().isThumbFunc(&Sym)) |
Rafael Espindola | 66f96fe | 2014-03-21 22:00:29 +0000 | [diff] [blame] | 367 | Res |= 1; |
Rafael Espindola | 9735f4f | 2010-09-27 21:23:02 +0000 | [diff] [blame] | 368 | |
Rafael Espindola | 66f96fe | 2014-03-21 22:00:29 +0000 | [diff] [blame] | 369 | return Res; |
Rafael Espindola | 9735f4f | 2010-09-27 21:23:02 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Jim Grosbach | 56ed0bb | 2015-06-04 23:25:54 +0000 | [diff] [blame] | 372 | void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm, |
Rafael Espindola | 93e3cf0 | 2010-12-07 00:27:36 +0000 | [diff] [blame] | 373 | const MCAsmLayout &Layout) { |
Evgeniy Stepanov | a023f79 | 2016-03-28 20:36:28 +0000 | [diff] [blame] | 374 | // Section symbols are used as definitions for undefined symbols with matching |
| 375 | // names. If there are multiple sections with the same name, the first one is |
| 376 | // used. |
| 377 | for (const MCSection &Sec : Asm) { |
| 378 | const MCSymbol *Begin = Sec.getBeginSymbol(); |
| 379 | if (!Begin) |
| 380 | continue; |
| 381 | |
| 382 | const MCSymbol *Alias = Asm.getContext().lookupSymbol(Begin->getName()); |
| 383 | if (!Alias || !Alias->isUndefined()) |
| 384 | continue; |
| 385 | |
| 386 | Renames.insert( |
| 387 | std::make_pair(cast<MCSymbolELF>(Alias), cast<MCSymbolELF>(Begin))); |
| 388 | } |
| 389 | |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 390 | // The presence of symbol versions causes undefined symbols and |
| 391 | // versions declared with @@@ to be renamed. |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 392 | for (const MCSymbol &A : Asm.symbols()) { |
| 393 | const auto &Alias = cast<MCSymbolELF>(A); |
Rafael Espindola | 6cd76e6 | 2010-10-28 18:33:03 +0000 | [diff] [blame] | 394 | // Not an alias. |
Rafael Espindola | 6efaf11 | 2014-04-28 17:05:36 +0000 | [diff] [blame] | 395 | if (!Alias.isVariable()) |
Rafael Espindola | 6cd76e6 | 2010-10-28 18:33:03 +0000 | [diff] [blame] | 396 | continue; |
Rafael Espindola | 6efaf11 | 2014-04-28 17:05:36 +0000 | [diff] [blame] | 397 | auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue()); |
| 398 | if (!Ref) |
| 399 | continue; |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 400 | const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol()); |
Rafael Espindola | 6cd76e6 | 2010-10-28 18:33:03 +0000 | [diff] [blame] | 401 | |
Benjamin Kramer | 1480727 | 2010-10-27 19:53:52 +0000 | [diff] [blame] | 402 | StringRef AliasName = Alias.getName(); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 403 | size_t Pos = AliasName.find('@'); |
| 404 | if (Pos == StringRef::npos) |
| 405 | continue; |
| 406 | |
Rafael Espindola | 6cd76e6 | 2010-10-28 18:33:03 +0000 | [diff] [blame] | 407 | // Aliases defined with .symvar copy the binding from the symbol they alias. |
| 408 | // This is the first place we are able to copy this information. |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 409 | Alias.setExternal(Symbol.isExternal()); |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 410 | Alias.setBinding(Symbol.getBinding()); |
Rafael Espindola | 6cd76e6 | 2010-10-28 18:33:03 +0000 | [diff] [blame] | 411 | |
Benjamin Kramer | 1480727 | 2010-10-27 19:53:52 +0000 | [diff] [blame] | 412 | StringRef Rest = AliasName.substr(Pos); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 413 | if (!Symbol.isUndefined() && !Rest.startswith("@@@")) |
| 414 | continue; |
| 415 | |
Rafael Espindola | 26496e6 | 2010-10-27 17:56:18 +0000 | [diff] [blame] | 416 | // FIXME: produce a better error message. |
| 417 | if (Symbol.isUndefined() && Rest.startswith("@@") && |
| 418 | !Rest.startswith("@@@")) |
| 419 | report_fatal_error("A @@ version cannot be undefined"); |
| 420 | |
Benjamin Kramer | 1480727 | 2010-10-27 19:53:52 +0000 | [diff] [blame] | 421 | Renames.insert(std::make_pair(&Symbol, &Alias)); |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | |
Roman Divacky | 5a1c549 | 2014-01-07 20:17:03 +0000 | [diff] [blame] | 425 | static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) { |
| 426 | uint8_t Type = newType; |
| 427 | |
| 428 | // Propagation rules: |
| 429 | // IFUNC > FUNC > OBJECT > NOTYPE |
| 430 | // TLS_OBJECT > OBJECT > NOTYPE |
| 431 | // |
| 432 | // dont let the new type degrade the old type |
| 433 | switch (origType) { |
| 434 | default: |
| 435 | break; |
| 436 | case ELF::STT_GNU_IFUNC: |
| 437 | if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT || |
| 438 | Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS) |
| 439 | Type = ELF::STT_GNU_IFUNC; |
| 440 | break; |
| 441 | case ELF::STT_FUNC: |
| 442 | if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE || |
| 443 | Type == ELF::STT_TLS) |
| 444 | Type = ELF::STT_FUNC; |
| 445 | break; |
| 446 | case ELF::STT_OBJECT: |
| 447 | if (Type == ELF::STT_NOTYPE) |
| 448 | Type = ELF::STT_OBJECT; |
| 449 | break; |
| 450 | case ELF::STT_TLS: |
| 451 | if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE || |
| 452 | Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC) |
| 453 | Type = ELF::STT_TLS; |
| 454 | break; |
| 455 | } |
| 456 | |
| 457 | return Type; |
| 458 | } |
| 459 | |
Rafael Espindola | e48421f | 2015-05-28 20:25:29 +0000 | [diff] [blame] | 460 | void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer, |
| 461 | uint32_t StringIndex, ELFSymbolData &MSD, |
Daniel Dunbar | fe0c28f | 2010-11-13 07:33:40 +0000 | [diff] [blame] | 462 | const MCAsmLayout &Layout) { |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 463 | const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol); |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 464 | const MCSymbolELF *Base = |
| 465 | cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol)); |
Rafael Espindola | 85a8491 | 2014-03-26 00:16:43 +0000 | [diff] [blame] | 466 | |
| 467 | // This has to be in sync with when computeSymbolTable uses SHN_ABS or |
| 468 | // SHN_COMMON. |
Rafael Espindola | 4d37b2a | 2015-05-29 21:45:01 +0000 | [diff] [blame] | 469 | bool IsReserved = !Base || Symbol.isCommon(); |
Rafael Espindola | 3fe87a1 | 2010-10-31 00:16:26 +0000 | [diff] [blame] | 470 | |
Jack Carter | 2f8d9d9 | 2013-02-19 21:57:35 +0000 | [diff] [blame] | 471 | // Binding and Type share the same byte as upper and lower nibbles |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 472 | uint8_t Binding = Symbol.getBinding(); |
| 473 | uint8_t Type = Symbol.getType(); |
Rafael Espindola | a6e3a59 | 2014-03-23 03:33:20 +0000 | [diff] [blame] | 474 | if (Base) { |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 475 | Type = mergeTypeForSet(Type, Base->getType()); |
Rafael Espindola | a6e3a59 | 2014-03-23 03:33:20 +0000 | [diff] [blame] | 476 | } |
Rafael Espindola | f8794ff | 2015-06-04 00:47:43 +0000 | [diff] [blame] | 477 | uint8_t Info = (Binding << 4) | Type; |
Jack Carter | 2f8d9d9 | 2013-02-19 21:57:35 +0000 | [diff] [blame] | 478 | |
Joerg Sonnenberger | fc18473 | 2013-10-29 01:06:17 +0000 | [diff] [blame] | 479 | // Other and Visibility share the same byte with Visibility using the lower |
Jack Carter | 2f8d9d9 | 2013-02-19 21:57:35 +0000 | [diff] [blame] | 480 | // 2 bits |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 481 | uint8_t Visibility = Symbol.getVisibility(); |
Rafael Espindola | 8c006ee | 2015-06-04 05:59:23 +0000 | [diff] [blame] | 482 | uint8_t Other = Symbol.getOther() | Visibility; |
Rafael Espindola | 5f2d6a5 | 2010-10-06 21:02:29 +0000 | [diff] [blame] | 483 | |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 484 | uint64_t Value = SymbolValue(*MSD.Symbol, Layout); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 485 | uint64_t Size = 0; |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 486 | |
Rafael Espindola | 7c23cba | 2015-05-29 17:24:52 +0000 | [diff] [blame] | 487 | const MCExpr *ESize = MSD.Symbol->getSize(); |
Rafael Espindola | a041ef1 | 2014-03-27 00:28:24 +0000 | [diff] [blame] | 488 | if (!ESize && Base) |
Rafael Espindola | 7c23cba | 2015-05-29 17:24:52 +0000 | [diff] [blame] | 489 | ESize = Base->getSize(); |
Rafael Espindola | f0591c1 | 2010-09-21 00:24:38 +0000 | [diff] [blame] | 490 | |
Rafael Espindola | 73c0ae7 | 2010-12-22 16:03:00 +0000 | [diff] [blame] | 491 | if (ESize) { |
| 492 | int64_t Res; |
Rafael Espindola | 94a88d7 | 2015-04-06 15:27:57 +0000 | [diff] [blame] | 493 | if (!ESize->evaluateKnownAbsolute(Res, Layout)) |
Rafael Espindola | 73c0ae7 | 2010-12-22 16:03:00 +0000 | [diff] [blame] | 494 | report_fatal_error("Size expression must be absolute."); |
| 495 | Size = Res; |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | // Write out the symbol table entry |
Rafael Espindola | e48421f | 2015-05-28 20:25:29 +0000 | [diff] [blame] | 499 | Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex, |
| 500 | IsReserved); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 503 | // It is always valid to create a relocation with a symbol. It is preferable |
| 504 | // to use a relocation with a section if that is possible. Using the section |
| 505 | // allows us to omit some local symbols from the symbol table. |
Rafael Espindola | b60c829 | 2014-04-29 12:46:50 +0000 | [diff] [blame] | 506 | bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm, |
| 507 | const MCSymbolRefExpr *RefA, |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 508 | const MCSymbol *S, uint64_t C, |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 509 | unsigned Type) const { |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 510 | const auto *Sym = cast_or_null<MCSymbolELF>(S); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 511 | // A PCRel relocation to an absolute value has no symbol (or section). We |
| 512 | // represent that with a relocation to a null section. |
| 513 | if (!RefA) |
| 514 | return false; |
Rafael Espindola | 240028d | 2010-11-14 23:53:26 +0000 | [diff] [blame] | 515 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 516 | MCSymbolRefExpr::VariantKind Kind = RefA->getKind(); |
| 517 | switch (Kind) { |
| 518 | default: |
| 519 | break; |
| 520 | // The .odp creation emits a relocation against the symbol ".TOC." which |
| 521 | // create a R_PPC64_TOC relocation. However the relocation symbol name |
| 522 | // in final object creation should be NULL, since the symbol does not |
| 523 | // really exist, it is just the reference to TOC base for the current |
| 524 | // object file. Since the symbol is undefined, returning false results |
| 525 | // in a relocation with a null section which is the desired result. |
| 526 | case MCSymbolRefExpr::VK_PPC_TOCBASE: |
| 527 | return false; |
| 528 | |
| 529 | // These VariantKind cause the relocation to refer to something other than |
| 530 | // the symbol itself, like a linker generated table. Since the address of |
| 531 | // symbol is not relevant, we cannot replace the symbol with the |
| 532 | // section and patch the difference in the addend. |
| 533 | case MCSymbolRefExpr::VK_GOT: |
| 534 | case MCSymbolRefExpr::VK_PLT: |
| 535 | case MCSymbolRefExpr::VK_GOTPCREL: |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 536 | case MCSymbolRefExpr::VK_PPC_GOT_LO: |
| 537 | case MCSymbolRefExpr::VK_PPC_GOT_HI: |
| 538 | case MCSymbolRefExpr::VK_PPC_GOT_HA: |
| 539 | return true; |
Rafael Espindola | 240028d | 2010-11-14 23:53:26 +0000 | [diff] [blame] | 540 | } |
Rafael Espindola | 240028d | 2010-11-14 23:53:26 +0000 | [diff] [blame] | 541 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 542 | // An undefined symbol is not in any section, so the relocation has to point |
| 543 | // to the symbol itself. |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 544 | assert(Sym && "Expected a symbol"); |
| 545 | if (Sym->isUndefined()) |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 546 | return true; |
| 547 | |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 548 | unsigned Binding = Sym->getBinding(); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 549 | switch(Binding) { |
| 550 | default: |
| 551 | llvm_unreachable("Invalid Binding"); |
| 552 | case ELF::STB_LOCAL: |
| 553 | break; |
| 554 | case ELF::STB_WEAK: |
| 555 | // If the symbol is weak, it might be overridden by a symbol in another |
| 556 | // file. The relocation has to point to the symbol so that the linker |
| 557 | // can update it. |
| 558 | return true; |
| 559 | case ELF::STB_GLOBAL: |
| 560 | // Global ELF symbols can be preempted by the dynamic linker. The relocation |
| 561 | // has to point to the symbol for a reason analogous to the STB_WEAK case. |
| 562 | return true; |
Rafael Espindola | 8c3039b | 2010-11-15 16:33:49 +0000 | [diff] [blame] | 563 | } |
Rafael Espindola | 75d65b9 | 2010-09-25 05:42:19 +0000 | [diff] [blame] | 564 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 565 | // If a relocation points to a mergeable section, we have to be careful. |
| 566 | // If the offset is zero, a relocation with the section will encode the |
| 567 | // same information. With a non-zero offset, the situation is different. |
| 568 | // For example, a relocation can point 42 bytes past the end of a string. |
| 569 | // If we change such a relocation to use the section, the linker would think |
| 570 | // that it pointed to another string and subtracting 42 at runtime will |
| 571 | // produce the wrong value. |
Saleem Abdulrasool | 9b106ea | 2016-11-22 04:32:54 +0000 | [diff] [blame] | 572 | if (Sym->isInSection()) { |
| 573 | auto &Sec = cast<MCSectionELF>(Sym->getSection()); |
| 574 | unsigned Flags = Sec.getFlags(); |
| 575 | if (Flags & ELF::SHF_MERGE) { |
| 576 | if (C != 0) |
| 577 | return true; |
Rafael Espindola | b1b4978 | 2014-04-02 12:15:20 +0000 | [diff] [blame] | 578 | |
Saleem Abdulrasool | 9b106ea | 2016-11-22 04:32:54 +0000 | [diff] [blame] | 579 | // It looks like gold has a bug (http://sourceware.org/PR16794) and can |
| 580 | // only handle section relocations to mergeable sections if using RELA. |
| 581 | if (!hasRelocationAddend()) |
| 582 | return true; |
| 583 | } |
| 584 | |
| 585 | // Most TLS relocations use a got, so they need the symbol. Even those that |
| 586 | // are just an offset (@tpoff), require a symbol in gold versions before |
| 587 | // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed |
| 588 | // http://sourceware.org/PR16773. |
| 589 | if (Flags & ELF::SHF_TLS) |
Rafael Espindola | b1b4978 | 2014-04-02 12:15:20 +0000 | [diff] [blame] | 590 | return true; |
Rafael Espindola | 9f75d5d | 2010-11-24 21:57:39 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Rafael Espindola | 9ef8441 | 2014-04-11 19:18:01 +0000 | [diff] [blame] | 593 | // If the symbol is a thumb function the final relocation must set the lowest |
| 594 | // bit. With a symbol that is done by just having the symbol have that bit |
| 595 | // set, so we would lose the bit if we relocated with the section. |
| 596 | // FIXME: We could use the section but add the bit to the relocation value. |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 597 | if (Asm.isThumbFunc(Sym)) |
Rafael Espindola | 9ef8441 | 2014-04-11 19:18:01 +0000 | [diff] [blame] | 598 | return true; |
| 599 | |
Rafael Espindola | ece40ca | 2015-05-29 18:26:09 +0000 | [diff] [blame] | 600 | if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type)) |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 601 | return true; |
| 602 | return false; |
Rafael Espindola | 75d65b9 | 2010-09-25 05:42:19 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Rafael Espindola | db8a586 | 2015-04-17 20:05:17 +0000 | [diff] [blame] | 605 | // True if the assembler knows nothing about the final value of the symbol. |
| 606 | // This doesn't cover the comdat issues, since in those cases the assembler |
| 607 | // can at least know that all symbols in the section will move together. |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 608 | static bool isWeak(const MCSymbolELF &Sym) { |
| 609 | if (Sym.getType() == ELF::STT_GNU_IFUNC) |
Rafael Espindola | a635d83 | 2015-04-17 08:46:11 +0000 | [diff] [blame] | 610 | return true; |
| 611 | |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 612 | switch (Sym.getBinding()) { |
Rafael Espindola | a635d83 | 2015-04-17 08:46:11 +0000 | [diff] [blame] | 613 | default: |
| 614 | llvm_unreachable("Unknown binding"); |
| 615 | case ELF::STB_LOCAL: |
| 616 | return false; |
| 617 | case ELF::STB_GLOBAL: |
Rafael Espindola | db8a586 | 2015-04-17 20:05:17 +0000 | [diff] [blame] | 618 | return false; |
Rafael Espindola | a635d83 | 2015-04-17 08:46:11 +0000 | [diff] [blame] | 619 | case ELF::STB_WEAK: |
| 620 | case ELF::STB_GNU_UNIQUE: |
| 621 | return true; |
| 622 | } |
Rafael Espindola | c9e7068 | 2015-03-24 23:48:44 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 625 | void ELFObjectWriter::recordRelocation(MCAssembler &Asm, |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 626 | const MCAsmLayout &Layout, |
| 627 | const MCFragment *Fragment, |
Rafael Espindola | 2658554 | 2015-01-19 21:11:14 +0000 | [diff] [blame] | 628 | const MCFixup &Fixup, MCValue Target, |
| 629 | bool &IsPCRel, uint64_t &FixedValue) { |
Rafael Espindola | 7549f87 | 2015-05-26 00:36:57 +0000 | [diff] [blame] | 630 | const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent()); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 631 | uint64_t C = Target.getConstant(); |
| 632 | uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset(); |
Rafael Espindola | 00ebfd4 | 2016-01-13 22:23:36 +0000 | [diff] [blame] | 633 | MCContext &Ctx = Asm.getContext(); |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 634 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 635 | if (const MCSymbolRefExpr *RefB = Target.getSymB()) { |
| 636 | assert(RefB->getKind() == MCSymbolRefExpr::VK_None && |
| 637 | "Should not have constructed this"); |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 638 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 639 | // Let A, B and C being the components of Target and R be the location of |
| 640 | // the fixup. If the fixup is not pcrel, we want to compute (A - B + C). |
| 641 | // If it is pcrel, we want to compute (A - B + C - R). |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 642 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 643 | // In general, ELF has no relocations for -B. It can only represent (A + C) |
| 644 | // or (A + C - R). If B = R + K and the relocation is not pcrel, we can |
| 645 | // replace B to implement it: (A - R - K + C) |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 646 | if (IsPCRel) { |
Rafael Espindola | 00ebfd4 | 2016-01-13 22:23:36 +0000 | [diff] [blame] | 647 | Ctx.reportError( |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 648 | Fixup.getLoc(), |
| 649 | "No relocation available to represent this relative expression"); |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 650 | return; |
| 651 | } |
David Majnemer | a45a176 | 2014-01-06 07:39:46 +0000 | [diff] [blame] | 652 | |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 653 | const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol()); |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 654 | |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 655 | if (SymB.isUndefined()) { |
Rafael Espindola | 00ebfd4 | 2016-01-13 22:23:36 +0000 | [diff] [blame] | 656 | Ctx.reportError(Fixup.getLoc(), |
| 657 | Twine("symbol '") + SymB.getName() + |
| 658 | "' can not be undefined in a subtraction expression"); |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 659 | return; |
| 660 | } |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 661 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 662 | assert(!SymB.isAbsolute() && "Should have been folded"); |
| 663 | const MCSection &SecB = SymB.getSection(); |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 664 | if (&SecB != &FixupSection) { |
Rafael Espindola | 00ebfd4 | 2016-01-13 22:23:36 +0000 | [diff] [blame] | 665 | Ctx.reportError(Fixup.getLoc(), |
| 666 | "Cannot represent a difference across sections"); |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 667 | return; |
| 668 | } |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 669 | |
Duncan P. N. Exon Smith | 2a40483 | 2015-05-19 23:53:20 +0000 | [diff] [blame] | 670 | uint64_t SymBOffset = Layout.getSymbolOffset(SymB); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 671 | uint64_t K = SymBOffset - FixupOffset; |
| 672 | IsPCRel = true; |
| 673 | C -= K; |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 676 | // We either rejected the fixup or folded B into C at this point. |
| 677 | const MCSymbolRefExpr *RefA = Target.getSymA(); |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 678 | const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr; |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 679 | |
Rafael Espindola | 212fdde | 2015-06-03 21:52:06 +0000 | [diff] [blame] | 680 | bool ViaWeakRef = false; |
| 681 | if (SymA && SymA->isVariable()) { |
| 682 | const MCExpr *Expr = SymA->getVariableValue(); |
| 683 | if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) { |
| 684 | if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) { |
| 685 | SymA = cast<MCSymbolELF>(&Inner->getSymbol()); |
| 686 | ViaWeakRef = true; |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | |
Rafael Espindola | 8340f94 | 2016-01-13 22:56:57 +0000 | [diff] [blame] | 691 | unsigned Type = getRelocType(Ctx, Target, Fixup, IsPCRel); |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 692 | uint64_t OriginalC = C; |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 693 | bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 694 | if (!RelocateWithSymbol && SymA && !SymA->isUndefined()) |
Duncan P. N. Exon Smith | 2a40483 | 2015-05-19 23:53:20 +0000 | [diff] [blame] | 695 | C += Layout.getSymbolOffset(*SymA); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 696 | |
| 697 | uint64_t Addend = 0; |
| 698 | if (hasRelocationAddend()) { |
| 699 | Addend = C; |
| 700 | C = 0; |
| 701 | } |
| 702 | |
| 703 | FixedValue = C; |
| 704 | |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 705 | if (!RelocateWithSymbol) { |
| 706 | const MCSection *SecA = |
| 707 | (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr; |
Rafael Espindola | b661302 | 2014-10-17 01:48:58 +0000 | [diff] [blame] | 708 | auto *ELFSec = cast_or_null<MCSectionELF>(SecA); |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 709 | const auto *SectionSymbol = |
| 710 | ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr; |
Rafael Espindola | a401eee | 2015-06-04 15:33:30 +0000 | [diff] [blame] | 711 | if (SectionSymbol) |
| 712 | SectionSymbol->setUsedInReloc(); |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 713 | ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend, SymA, |
| 714 | OriginalC); |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 715 | Relocations[&FixupSection].push_back(Rec); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 716 | return; |
| 717 | } |
Roman Divacky | dfbecd1 | 2011-08-04 19:08:19 +0000 | [diff] [blame] | 718 | |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 719 | const auto *RenamedSymA = SymA; |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 720 | if (SymA) { |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 721 | if (const MCSymbolELF *R = Renames.lookup(SymA)) |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 722 | RenamedSymA = R; |
Rafael Espindola | d7facaf | 2011-08-04 13:05:26 +0000 | [diff] [blame] | 723 | |
Rafael Espindola | 212fdde | 2015-06-03 21:52:06 +0000 | [diff] [blame] | 724 | if (ViaWeakRef) |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 725 | RenamedSymA->setIsWeakrefUsedInReloc(); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 726 | else |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 727 | RenamedSymA->setUsedInReloc(); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 728 | } |
Daniel Sanders | a463d31 | 2016-05-06 13:49:25 +0000 | [diff] [blame] | 729 | ELFRelocationEntry Rec(FixupOffset, RenamedSymA, Type, Addend, SymA, |
| 730 | OriginalC); |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 731 | Relocations[&FixupSection].push_back(Rec); |
Jason W Kim | 495c2bb | 2010-12-06 21:57:34 +0000 | [diff] [blame] | 732 | } |
| 733 | |
Rafael Espindola | 3b5ee55 | 2014-04-28 13:39:57 +0000 | [diff] [blame] | 734 | bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout, |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 735 | const MCSymbolELF &Symbol, bool Used, |
Rafael Espindola | 3b5ee55 | 2014-04-28 13:39:57 +0000 | [diff] [blame] | 736 | bool Renamed) { |
Rafael Espindola | 7fadc0e | 2014-03-20 02:12:01 +0000 | [diff] [blame] | 737 | if (Symbol.isVariable()) { |
| 738 | const MCExpr *Expr = Symbol.getVariableValue(); |
| 739 | if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) { |
| 740 | if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF) |
| 741 | return false; |
| 742 | } |
| 743 | } |
Rafael Espindola | 1614597 | 2010-11-01 14:28:48 +0000 | [diff] [blame] | 744 | |
Rafael Espindola | ee8d151 | 2010-10-19 19:31:37 +0000 | [diff] [blame] | 745 | if (Used) |
| 746 | return true; |
| 747 | |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 748 | if (Renamed) |
| 749 | return false; |
| 750 | |
Rafael Espindola | ef1e863 | 2015-06-03 21:23:21 +0000 | [diff] [blame] | 751 | if (Symbol.isVariable() && Symbol.isUndefined()) { |
| 752 | // FIXME: this is here just to diagnose the case of a var = commmon_sym. |
| 753 | Layout.getBaseSymbol(Symbol); |
| 754 | return false; |
Rafael Espindola | 3b5ee55 | 2014-04-28 13:39:57 +0000 | [diff] [blame] | 755 | } |
Rafael Espindola | 9e18e96 | 2011-02-23 20:22:07 +0000 | [diff] [blame] | 756 | |
Rafael Espindola | ef1e863 | 2015-06-03 21:23:21 +0000 | [diff] [blame] | 757 | if (Symbol.isUndefined() && !Symbol.isBindingSet()) |
Rafael Espindola | a5efd6a | 2010-10-27 14:44:52 +0000 | [diff] [blame] | 758 | return false; |
| 759 | |
Rafael Espindola | ee8d151 | 2010-10-19 19:31:37 +0000 | [diff] [blame] | 760 | if (Symbol.isTemporary()) |
Rafael Espindola | b1d0789 | 2010-10-05 18:01:23 +0000 | [diff] [blame] | 761 | return false; |
| 762 | |
Rafael Espindola | a401eee | 2015-06-04 15:33:30 +0000 | [diff] [blame] | 763 | if (Symbol.getType() == ELF::STT_SECTION) |
| 764 | return false; |
| 765 | |
Rafael Espindola | b1d0789 | 2010-10-05 18:01:23 +0000 | [diff] [blame] | 766 | return true; |
| 767 | } |
| 768 | |
Rafael Espindola | ea1b394 | 2015-04-07 19:00:17 +0000 | [diff] [blame] | 769 | void ELFObjectWriter::computeSymbolTable( |
| 770 | MCAssembler &Asm, const MCAsmLayout &Layout, |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 771 | const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap, |
| 772 | SectionOffsetsTy &SectionOffsets) { |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 773 | MCContext &Ctx = Asm.getContext(); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 774 | SymbolTableWriter Writer(*this, is64Bit()); |
| 775 | |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 776 | // Symbol table |
| 777 | unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; |
| 778 | MCSectionELF *SymtabSection = |
| 779 | Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, ""); |
| 780 | SymtabSection->setAlignment(is64Bit() ? 8 : 4); |
| 781 | SymbolTableIndex = addToSectionTable(SymtabSection); |
| 782 | |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 783 | align(SymtabSection->getAlignment()); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 784 | uint64_t SecStart = getStream().tell(); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 785 | |
| 786 | // The first entry is the undefined symbol entry. |
| 787 | Writer.writeSymbol(0, 0, 0, 0, 0, 0, false); |
| 788 | |
Rafael Espindola | cfbd35c | 2015-05-28 20:11:34 +0000 | [diff] [blame] | 789 | std::vector<ELFSymbolData> LocalSymbolData; |
| 790 | std::vector<ELFSymbolData> ExternalSymbolData; |
Rafael Espindola | cfbd35c | 2015-05-28 20:11:34 +0000 | [diff] [blame] | 791 | |
Rafael Espindola | bee6e9f | 2010-10-14 16:34:44 +0000 | [diff] [blame] | 792 | // Add the data for the symbols. |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 793 | bool HasLargeSectionIndex = false; |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 794 | for (const MCSymbol &S : Asm.symbols()) { |
| 795 | const auto &Symbol = cast<MCSymbolELF>(S); |
Rafael Espindola | ada43f6 | 2015-06-03 21:30:10 +0000 | [diff] [blame] | 796 | bool Used = Symbol.isUsedInReloc(); |
Rafael Espindola | 212fdde | 2015-06-03 21:52:06 +0000 | [diff] [blame] | 797 | bool WeakrefUsed = Symbol.isWeakrefUsedInReloc(); |
Rafael Espindola | 8c52a9b | 2015-06-03 21:41:59 +0000 | [diff] [blame] | 798 | bool isSignature = Symbol.isSignature(); |
Rafael Espindola | 7d0ba34 | 2010-11-14 04:17:37 +0000 | [diff] [blame] | 799 | |
Duncan P. N. Exon Smith | 469f9db | 2015-05-20 04:39:01 +0000 | [diff] [blame] | 800 | if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature, |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 801 | Renames.count(&Symbol))) |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 802 | continue; |
| 803 | |
Oliver Stannard | 9be59af | 2015-11-17 10:00:43 +0000 | [diff] [blame] | 804 | if (Symbol.isTemporary() && Symbol.isUndefined()) { |
| 805 | Ctx.reportError(SMLoc(), "Undefined temporary symbol"); |
| 806 | continue; |
| 807 | } |
Rafael Espindola | 6dff814 | 2015-06-25 20:10:45 +0000 | [diff] [blame] | 808 | |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 809 | ELFSymbolData MSD; |
Rafael Espindola | a869576 | 2015-06-02 00:25:12 +0000 | [diff] [blame] | 810 | MSD.Symbol = cast<MCSymbolELF>(&Symbol); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 811 | |
Rafael Espindola | 8c52a9b | 2015-06-03 21:41:59 +0000 | [diff] [blame] | 812 | bool Local = Symbol.getBinding() == ELF::STB_LOCAL; |
Rafael Espindola | 6dff814 | 2015-06-25 20:10:45 +0000 | [diff] [blame] | 813 | assert(Local || !Symbol.isTemporary()); |
| 814 | |
Rafael Espindola | f4b4430 | 2015-05-29 15:07:27 +0000 | [diff] [blame] | 815 | if (Symbol.isAbsolute()) { |
Rafael Espindola | 022bb76 | 2014-03-24 03:43:21 +0000 | [diff] [blame] | 816 | MSD.SectionIndex = ELF::SHN_ABS; |
Rafael Espindola | 1467250 | 2015-05-29 17:48:04 +0000 | [diff] [blame] | 817 | } else if (Symbol.isCommon()) { |
Rafael Espindola | bee6e9f | 2010-10-14 16:34:44 +0000 | [diff] [blame] | 818 | assert(!Local); |
Rafael Espindola | f0591c1 | 2010-09-21 00:24:38 +0000 | [diff] [blame] | 819 | MSD.SectionIndex = ELF::SHN_COMMON; |
Rafael Espindola | f4b4430 | 2015-05-29 15:07:27 +0000 | [diff] [blame] | 820 | } else if (Symbol.isUndefined()) { |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 821 | if (isSignature && !Used) { |
Rafael Espindola | 89feff3 | 2015-04-28 22:59:58 +0000 | [diff] [blame] | 822 | MSD.SectionIndex = RevGroupMap.lookup(&Symbol); |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 823 | if (MSD.SectionIndex >= ELF::SHN_LORESERVE) |
| 824 | HasLargeSectionIndex = true; |
| 825 | } else { |
Rafael Espindola | 7d0ba34 | 2010-11-14 04:17:37 +0000 | [diff] [blame] | 826 | MSD.SectionIndex = ELF::SHN_UNDEF; |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 827 | } |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 828 | } else { |
Rafael Espindola | d634003 | 2010-11-10 21:51:05 +0000 | [diff] [blame] | 829 | const MCSectionELF &Section = |
Rafael Espindola | f4b4430 | 2015-05-29 15:07:27 +0000 | [diff] [blame] | 830 | static_cast<const MCSectionELF &>(Symbol.getSection()); |
Rafael Espindola | d634003 | 2010-11-10 21:51:05 +0000 | [diff] [blame] | 831 | MSD.SectionIndex = SectionIndexMap.lookup(&Section); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 832 | assert(MSD.SectionIndex && "Invalid section index!"); |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 833 | if (MSD.SectionIndex >= ELF::SHN_LORESERVE) |
| 834 | HasLargeSectionIndex = true; |
Rafael Espindola | fbcf0db | 2010-10-15 15:39:06 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Rafael Espindola | 5a67ed1 | 2015-01-22 14:20:45 +0000 | [diff] [blame] | 837 | // The @@@ in symbol version is replaced with @ in undefined symbols and @@ |
| 838 | // in defined ones. |
| 839 | // |
| 840 | // FIXME: All name handling should be done before we get to the writer, |
NAKAMURA Takumi | b01d86b | 2015-02-25 11:02:00 +0000 | [diff] [blame] | 841 | // including dealing with GNU-style version suffixes. Fixing this isn't |
Rafael Espindola | 5a67ed1 | 2015-01-22 14:20:45 +0000 | [diff] [blame] | 842 | // trivial. |
| 843 | // |
| 844 | // We thus have to be careful to not perform the symbol version replacement |
| 845 | // blindly: |
| 846 | // |
| 847 | // The ELF format is used on Windows by the MCJIT engine. Thus, on |
| 848 | // Windows, the ELFObjectWriter can encounter symbols mangled using the MS |
| 849 | // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC |
| 850 | // C++ name mangling can legally have "@@@" as a sub-string. In that case, |
| 851 | // the EFLObjectWriter should not interpret the "@@@" sub-string as |
| 852 | // specifying GNU-style symbol versioning. The ELFObjectWriter therefore |
| 853 | // checks for the MSVC C++ name mangling prefix which is either "?", "@?", |
| 854 | // "__imp_?" or "__imp_@?". |
| 855 | // |
| 856 | // It would have been interesting to perform the MS mangling prefix check |
| 857 | // only when the target triple is of the form *-pc-windows-elf. But, it |
| 858 | // seems that this information is not easily accessible from the |
| 859 | // ELFObjectWriter. |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 860 | StringRef Name = Symbol.getName(); |
Evgeniy Stepanov | 9e0d41a | 2015-06-22 23:36:03 +0000 | [diff] [blame] | 861 | SmallString<32> Buf; |
Rafael Espindola | 5a67ed1 | 2015-01-22 14:20:45 +0000 | [diff] [blame] | 862 | if (!Name.startswith("?") && !Name.startswith("@?") && |
| 863 | !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) { |
| 864 | // This symbol isn't following the MSVC C++ name mangling convention. We |
| 865 | // can thus safely interpret the @@@ in symbol names as specifying symbol |
| 866 | // versioning. |
Rafael Espindola | 5a67ed1 | 2015-01-22 14:20:45 +0000 | [diff] [blame] | 867 | size_t Pos = Name.find("@@@"); |
| 868 | if (Pos != StringRef::npos) { |
| 869 | Buf += Name.substr(0, Pos); |
| 870 | unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1; |
| 871 | Buf += Name.substr(Pos + Skip); |
Rafael Espindola | fc063e8 | 2015-10-22 18:32:06 +0000 | [diff] [blame] | 872 | Name = VersionSymSaver.save(Buf.c_str()); |
Rafael Espindola | 5a67ed1 | 2015-01-22 14:20:45 +0000 | [diff] [blame] | 873 | } |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 874 | } |
Rafael Espindola | b661302 | 2014-10-17 01:48:58 +0000 | [diff] [blame] | 875 | |
| 876 | // Sections have their own string table |
Rafael Espindola | fc063e8 | 2015-10-22 18:32:06 +0000 | [diff] [blame] | 877 | if (Symbol.getType() != ELF::STT_SECTION) { |
| 878 | MSD.Name = Name; |
| 879 | StrTabBuilder.add(Name); |
| 880 | } |
Rafael Espindola | eb0c2c1 | 2010-10-27 15:18:17 +0000 | [diff] [blame] | 881 | |
Rafael Espindola | 10d2387 | 2015-05-29 14:20:40 +0000 | [diff] [blame] | 882 | if (Local) |
Rafael Espindola | a5efd6a | 2010-10-27 14:44:52 +0000 | [diff] [blame] | 883 | LocalSymbolData.push_back(MSD); |
| 884 | else |
| 885 | ExternalSymbolData.push_back(MSD); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 886 | } |
| 887 | |
Rafael Espindola | 2cd1951 | 2015-07-02 16:59:57 +0000 | [diff] [blame] | 888 | // This holds the .symtab_shndx section index. |
| 889 | unsigned SymtabShndxSectionIndex = 0; |
| 890 | |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 891 | if (HasLargeSectionIndex) { |
| 892 | MCSectionELF *SymtabShndxSection = |
| 893 | Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, ""); |
| 894 | SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection); |
| 895 | SymtabShndxSection->setAlignment(4); |
| 896 | } |
| 897 | |
Rafael Espindola | 1fd3627 | 2015-05-28 19:29:15 +0000 | [diff] [blame] | 898 | ArrayRef<std::string> FileNames = Asm.getFileNames(); |
| 899 | for (const std::string &Name : FileNames) |
Rafael Espindola | 66f3c9c | 2015-05-28 18:03:20 +0000 | [diff] [blame] | 900 | StrTabBuilder.add(Name); |
Hans Wennborg | 83e6e1e | 2014-04-30 16:25:02 +0000 | [diff] [blame] | 901 | |
Rafael Espindola | 21956e4 | 2015-10-23 21:48:05 +0000 | [diff] [blame] | 902 | StrTabBuilder.finalize(); |
Hans Wennborg | 83e6e1e | 2014-04-30 16:25:02 +0000 | [diff] [blame] | 903 | |
Rafael Espindola | 0cbea29 | 2015-05-28 20:00:13 +0000 | [diff] [blame] | 904 | for (const std::string &Name : FileNames) |
| 905 | Writer.writeSymbol(StrTabBuilder.getOffset(Name), |
| 906 | ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT, |
| 907 | ELF::SHN_ABS, true); |
| 908 | |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 909 | // Symbols are required to be in lexicographic order. |
| 910 | array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end()); |
| 911 | array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end()); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 912 | |
| 913 | // Set the symbol indices. Local symbols must come before all other |
| 914 | // symbols with non-local bindings. |
Rafael Espindola | 1fd3627 | 2015-05-28 19:29:15 +0000 | [diff] [blame] | 915 | unsigned Index = FileNames.size() + 1; |
Rafael Espindola | 0e3decf | 2010-11-14 03:12:24 +0000 | [diff] [blame] | 916 | |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 917 | for (ELFSymbolData &MSD : LocalSymbolData) { |
Daniel Jasper | 41de802 | 2015-06-23 11:31:32 +0000 | [diff] [blame] | 918 | unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION |
| 919 | ? 0 |
| 920 | : StrTabBuilder.getOffset(MSD.Name); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 921 | MSD.Symbol->setIndex(Index++); |
Rafael Espindola | e48421f | 2015-05-28 20:25:29 +0000 | [diff] [blame] | 922 | writeSymbol(Writer, StringIndex, MSD, Layout); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 923 | } |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 924 | |
| 925 | // Write the symbol table entries. |
Rafael Espindola | 0cbea29 | 2015-05-28 20:00:13 +0000 | [diff] [blame] | 926 | LastLocalSymbolIndex = Index; |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 927 | |
Rafael Espindola | dcda997 | 2015-05-28 19:43:20 +0000 | [diff] [blame] | 928 | for (ELFSymbolData &MSD : ExternalSymbolData) { |
Rafael Espindola | e48421f | 2015-05-28 20:25:29 +0000 | [diff] [blame] | 929 | unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name); |
Rafael Espindola | 0cbea29 | 2015-05-28 20:00:13 +0000 | [diff] [blame] | 930 | MSD.Symbol->setIndex(Index++); |
Rafael Espindola | e48421f | 2015-05-28 20:25:29 +0000 | [diff] [blame] | 931 | writeSymbol(Writer, StringIndex, MSD, Layout); |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 932 | assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 933 | } |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 934 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 935 | uint64_t SecEnd = getStream().tell(); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 936 | SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd); |
| 937 | |
| 938 | ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes(); |
| 939 | if (ShndxIndexes.empty()) { |
| 940 | assert(SymtabShndxSectionIndex == 0); |
| 941 | return; |
| 942 | } |
| 943 | assert(SymtabShndxSectionIndex != 0); |
| 944 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 945 | SecStart = getStream().tell(); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 946 | const MCSectionELF *SymtabShndxSection = |
| 947 | SectionTable[SymtabShndxSectionIndex - 1]; |
| 948 | for (uint32_t Index : ShndxIndexes) |
| 949 | write(Index); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 950 | SecEnd = getStream().tell(); |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 951 | SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 952 | } |
| 953 | |
Rafael Espindola | 0709a7b | 2015-05-21 19:20:38 +0000 | [diff] [blame] | 954 | MCSectionELF * |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 955 | ELFObjectWriter::createRelocationSection(MCContext &Ctx, |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 956 | const MCSectionELF &Sec) { |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 957 | if (Relocations[&Sec].empty()) |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 958 | return nullptr; |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 959 | |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 960 | const StringRef SectionName = Sec.getSectionName(); |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 961 | std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel"; |
| 962 | RelaSectionName += SectionName; |
Benjamin Kramer | fd05415 | 2010-08-17 17:56:13 +0000 | [diff] [blame] | 963 | |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 964 | unsigned EntrySize; |
| 965 | if (hasRelocationAddend()) |
| 966 | EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); |
| 967 | else |
| 968 | EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 969 | |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 970 | unsigned Flags = 0; |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 971 | if (Sec.getFlags() & ELF::SHF_GROUP) |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 972 | Flags = ELF::SHF_GROUP; |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 973 | |
Rafael Espindola | 0709a7b | 2015-05-21 19:20:38 +0000 | [diff] [blame] | 974 | MCSectionELF *RelaSection = Ctx.createELFRelSection( |
Rafael Espindola | ead8549 | 2015-02-17 20:31:13 +0000 | [diff] [blame] | 975 | RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL, |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 976 | Flags, EntrySize, Sec.getGroup(), &Sec); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 977 | RelaSection->setAlignment(is64Bit() ? 8 : 4); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 978 | return RelaSection; |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 979 | } |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 980 | |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 981 | // Include the debug info compression header. |
| 982 | bool ELFObjectWriter::maybeWriteCompression( |
| 983 | uint64_t Size, SmallVectorImpl<char> &CompressedContents, bool ZLibStyle, |
| 984 | unsigned Alignment) { |
| 985 | if (ZLibStyle) { |
| 986 | uint64_t HdrSize = |
| 987 | is64Bit() ? sizeof(ELF::Elf32_Chdr) : sizeof(ELF::Elf64_Chdr); |
| 988 | if (Size <= HdrSize + CompressedContents.size()) |
| 989 | return false; |
| 990 | // Platform specific header is followed by compressed data. |
| 991 | if (is64Bit()) { |
| 992 | // Write Elf64_Chdr header. |
| 993 | write(static_cast<ELF::Elf64_Word>(ELF::ELFCOMPRESS_ZLIB)); |
| 994 | write(static_cast<ELF::Elf64_Word>(0)); // ch_reserved field. |
| 995 | write(static_cast<ELF::Elf64_Xword>(Size)); |
| 996 | write(static_cast<ELF::Elf64_Xword>(Alignment)); |
| 997 | } else { |
| 998 | // Write Elf32_Chdr header otherwise. |
| 999 | write(static_cast<ELF::Elf32_Word>(ELF::ELFCOMPRESS_ZLIB)); |
| 1000 | write(static_cast<ELF::Elf32_Word>(Size)); |
| 1001 | write(static_cast<ELF::Elf32_Word>(Alignment)); |
| 1002 | } |
| 1003 | return true; |
| 1004 | } |
| 1005 | |
| 1006 | // "ZLIB" followed by 8 bytes representing the uncompressed size of the section, |
| 1007 | // useful for consumers to preallocate a buffer to decompress into. |
Richard Smith | b910e56 | 2016-05-25 00:14:12 +0000 | [diff] [blame] | 1008 | const StringRef Magic = "ZLIB"; |
| 1009 | if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size()) |
| 1010 | return false; |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 1011 | write(ArrayRef<char>(Magic.begin(), Magic.size())); |
| 1012 | writeBE64(Size); |
Richard Smith | b910e56 | 2016-05-25 00:14:12 +0000 | [diff] [blame] | 1013 | return true; |
| 1014 | } |
| 1015 | |
Rafael Espindola | e15b1b7 | 2015-05-27 13:30:50 +0000 | [diff] [blame] | 1016 | void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec, |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1017 | const MCAsmLayout &Layout) { |
Rafael Espindola | e15b1b7 | 2015-05-27 13:30:50 +0000 | [diff] [blame] | 1018 | MCSectionELF &Section = static_cast<MCSectionELF &>(Sec); |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1019 | StringRef SectionName = Section.getSectionName(); |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 1020 | |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1021 | // Compressing debug_frame requires handling alignment fragments which is |
| 1022 | // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow |
| 1023 | // for writing to arbitrary buffers) for little benefit. |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 1024 | bool CompressionEnabled = |
| 1025 | Asm.getContext().getAsmInfo()->compressDebugSections() != |
| 1026 | DebugCompressionType::DCT_None; |
| 1027 | if (!CompressionEnabled || !SectionName.startswith(".debug_") || |
| 1028 | SectionName == ".debug_frame") { |
Rafael Espindola | 64acc7f | 2015-05-26 02:17:21 +0000 | [diff] [blame] | 1029 | Asm.writeSectionData(&Section, Layout); |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1030 | return; |
| 1031 | } |
| 1032 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1033 | SmallVector<char, 128> UncompressedData; |
| 1034 | raw_svector_ostream VecOS(UncompressedData); |
| 1035 | raw_pwrite_stream &OldStream = getStream(); |
| 1036 | setStream(VecOS); |
| 1037 | Asm.writeSectionData(&Section, Layout); |
| 1038 | setStream(OldStream); |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 1039 | |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1040 | SmallVector<char, 128> CompressedContents; |
George Rimar | 167ca4a | 2017-01-17 15:45:07 +0000 | [diff] [blame^] | 1041 | if (Error E = zlib::compress( |
| 1042 | StringRef(UncompressedData.data(), UncompressedData.size()), |
| 1043 | CompressedContents)) { |
| 1044 | consumeError(std::move(E)); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1045 | getStream() << UncompressedData; |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 1046 | return; |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1047 | } |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 1048 | |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 1049 | bool ZlibStyle = Asm.getContext().getAsmInfo()->compressDebugSections() == |
| 1050 | DebugCompressionType::DCT_Zlib; |
| 1051 | if (!maybeWriteCompression(UncompressedData.size(), CompressedContents, |
| 1052 | ZlibStyle, Sec.getAlignment())) { |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1053 | getStream() << UncompressedData; |
Rafael Espindola | 868b3f4 | 2015-04-30 21:51:58 +0000 | [diff] [blame] | 1054 | return; |
| 1055 | } |
George Rimar | c91e38c | 2016-05-27 12:27:32 +0000 | [diff] [blame] | 1056 | |
| 1057 | if (ZlibStyle) |
| 1058 | // Set the compressed flag. That is zlib style. |
| 1059 | Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED); |
| 1060 | else |
| 1061 | // Add "z" prefix to section name. This is zlib-gnu style. |
| 1062 | Asm.getContext().renameELFSection(&Section, |
| 1063 | (".z" + SectionName.drop_front(1)).str()); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1064 | getStream() << CompressedContents; |
David Blaikie | 8019bf8 | 2014-04-10 21:53:53 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Daniel Dunbar | fe0c28f | 2010-11-13 07:33:40 +0000 | [diff] [blame] | 1067 | void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type, |
| 1068 | uint64_t Flags, uint64_t Address, |
| 1069 | uint64_t Offset, uint64_t Size, |
| 1070 | uint32_t Link, uint32_t Info, |
| 1071 | uint64_t Alignment, |
| 1072 | uint64_t EntrySize) { |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 1073 | write32(Name); // sh_name: index into string table |
| 1074 | write32(Type); // sh_type |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1075 | WriteWord(Flags); // sh_flags |
| 1076 | WriteWord(Address); // sh_addr |
| 1077 | WriteWord(Offset); // sh_offset |
| 1078 | WriteWord(Size); // sh_size |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 1079 | write32(Link); // sh_link |
| 1080 | write32(Info); // sh_info |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1081 | WriteWord(Alignment); // sh_addralign |
| 1082 | WriteWord(EntrySize); // sh_entsize |
| 1083 | } |
| 1084 | |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1085 | void ELFObjectWriter::writeRelocations(const MCAssembler &Asm, |
Rafael Espindola | 34948e5 | 2015-04-30 00:45:46 +0000 | [diff] [blame] | 1086 | const MCSectionELF &Sec) { |
| 1087 | std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec]; |
Akira Hatanaka | 64ad2cf | 2012-03-23 23:06:45 +0000 | [diff] [blame] | 1088 | |
Rafael Espindola | f44db24 | 2015-12-17 16:22:06 +0000 | [diff] [blame] | 1089 | // We record relocations by pushing to the end of a vector. Reverse the vector |
| 1090 | // to get the relocations in the order they were created. |
| 1091 | // In most cases that is not important, but it can be for special sections |
| 1092 | // (.eh_frame) or specific relocations (TLS optimizations on SystemZ). |
| 1093 | std::reverse(Relocs.begin(), Relocs.end()); |
Rafael Espindola | d0e1652 | 2015-12-17 15:08:24 +0000 | [diff] [blame] | 1094 | |
Rafael Espindola | f44db24 | 2015-12-17 16:22:06 +0000 | [diff] [blame] | 1095 | // Sort the relocation entries. MIPS needs this. |
Petar Jovanovic | 0380d0b | 2015-04-14 13:23:34 +0000 | [diff] [blame] | 1096 | TargetObjectWriter->sortRelocs(Asm, Relocs); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1097 | |
| 1098 | for (unsigned i = 0, e = Relocs.size(); i != e; ++i) { |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 1099 | const ELFRelocationEntry &Entry = Relocs[e - i - 1]; |
Rafael Espindola | 5e9ed90 | 2015-05-28 20:53:09 +0000 | [diff] [blame] | 1100 | unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0; |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 1101 | |
Rafael Espindola | fdaae0d | 2010-12-18 03:27:34 +0000 | [diff] [blame] | 1102 | if (is64Bit()) { |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1103 | write(Entry.Offset); |
Jack Carter | 8ad0c27 | 2012-06-27 22:28:30 +0000 | [diff] [blame] | 1104 | if (TargetObjectWriter->isN64()) { |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1105 | write(uint32_t(Index)); |
Benjamin Kramer | 6c3c349 | 2010-09-09 18:01:29 +0000 | [diff] [blame] | 1106 | |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1107 | write(TargetObjectWriter->getRSsym(Entry.Type)); |
| 1108 | write(TargetObjectWriter->getRType3(Entry.Type)); |
| 1109 | write(TargetObjectWriter->getRType2(Entry.Type)); |
| 1110 | write(TargetObjectWriter->getRType(Entry.Type)); |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 1111 | } else { |
Jack Carter | 8ad0c27 | 2012-06-27 22:28:30 +0000 | [diff] [blame] | 1112 | struct ELF::Elf64_Rela ERE64; |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 1113 | ERE64.setSymbolAndType(Index, Entry.Type); |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1114 | write(ERE64.r_info); |
Jack Carter | 8ad0c27 | 2012-06-27 22:28:30 +0000 | [diff] [blame] | 1115 | } |
Rafael Espindola | fdaae0d | 2010-12-18 03:27:34 +0000 | [diff] [blame] | 1116 | if (hasRelocationAddend()) |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1117 | write(Entry.Addend); |
Benjamin Kramer | 6c3c349 | 2010-09-09 18:01:29 +0000 | [diff] [blame] | 1118 | } else { |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1119 | write(uint32_t(Entry.Offset)); |
Benjamin Kramer | 6c3c349 | 2010-09-09 18:01:29 +0000 | [diff] [blame] | 1120 | |
Rafael Espindola | bce26a1 | 2010-10-05 15:11:03 +0000 | [diff] [blame] | 1121 | struct ELF::Elf32_Rela ERE32; |
Rafael Espindola | 5904e12 | 2014-03-29 06:26:49 +0000 | [diff] [blame] | 1122 | ERE32.setSymbolAndType(Index, Entry.Type); |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1123 | write(ERE32.r_info); |
Benjamin Kramer | 6c3c349 | 2010-09-09 18:01:29 +0000 | [diff] [blame] | 1124 | |
Rafael Espindola | fdaae0d | 2010-12-18 03:27:34 +0000 | [diff] [blame] | 1125 | if (hasRelocationAddend()) |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1126 | write(uint32_t(Entry.Addend)); |
Benjamin Kramer | 6c3c349 | 2010-09-09 18:01:29 +0000 | [diff] [blame] | 1127 | } |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1128 | } |
| 1129 | } |
| 1130 | |
Rafael Espindola | b186391 | 2015-04-30 21:10:06 +0000 | [diff] [blame] | 1131 | const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) { |
Rafael Espindola | 08850b3 | 2015-05-25 21:56:55 +0000 | [diff] [blame] | 1132 | const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1]; |
Rafael Espindola | 39751af | 2016-10-04 22:43:25 +0000 | [diff] [blame] | 1133 | StrTabBuilder.write(getStream()); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1134 | return StrtabSection; |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 1135 | } |
| 1136 | |
Rafael Espindola | e92c1bf | 2015-05-21 19:42:35 +0000 | [diff] [blame] | 1137 | void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap, |
| 1138 | uint32_t GroupSymbolIndex, uint64_t Offset, |
| 1139 | uint64_t Size, const MCSectionELF &Section) { |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1140 | uint64_t sh_link = 0; |
| 1141 | uint64_t sh_info = 0; |
| 1142 | |
| 1143 | switch(Section.getType()) { |
Rafael Espindola | 86fe2fe | 2015-04-06 03:16:51 +0000 | [diff] [blame] | 1144 | default: |
| 1145 | // Nothing to do. |
| 1146 | break; |
| 1147 | |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1148 | case ELF::SHT_DYNAMIC: |
Rafael Espindola | 74ef480 | 2015-04-30 21:20:06 +0000 | [diff] [blame] | 1149 | llvm_unreachable("SHT_DYNAMIC in a relocatable object"); |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1150 | |
| 1151 | case ELF::SHT_REL: |
| 1152 | case ELF::SHT_RELA: { |
Rafael Espindola | 3a7c0eb | 2015-02-17 20:37:50 +0000 | [diff] [blame] | 1153 | sh_link = SymbolTableIndex; |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1154 | assert(sh_link && ".symtab not found"); |
Rafael Espindola | b73b70e | 2015-04-06 03:09:30 +0000 | [diff] [blame] | 1155 | const MCSectionELF *InfoSection = Section.getAssociatedSection(); |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1156 | sh_info = SectionIndexMap.lookup(InfoSection); |
| 1157 | break; |
| 1158 | } |
| 1159 | |
| 1160 | case ELF::SHT_SYMTAB: |
| 1161 | case ELF::SHT_DYNSYM: |
| 1162 | sh_link = StringTableIndex; |
| 1163 | sh_info = LastLocalSymbolIndex; |
| 1164 | break; |
| 1165 | |
| 1166 | case ELF::SHT_SYMTAB_SHNDX: |
| 1167 | sh_link = SymbolTableIndex; |
| 1168 | break; |
| 1169 | |
Nick Lewycky | c6ac5f7 | 2011-10-07 23:28:32 +0000 | [diff] [blame] | 1170 | case ELF::SHT_GROUP: |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 1171 | sh_link = SymbolTableIndex; |
| 1172 | sh_info = GroupSymbolIndex; |
| 1173 | break; |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1174 | } |
| 1175 | |
Logan Chien | 4b72442 | 2013-02-05 14:18:59 +0000 | [diff] [blame] | 1176 | if (TargetObjectWriter->getEMachine() == ELF::EM_ARM && |
Rafael Espindola | 61e8ce3 | 2015-04-06 04:25:18 +0000 | [diff] [blame] | 1177 | Section.getType() == ELF::SHT_ARM_EXIDX) |
| 1178 | sh_link = SectionIndexMap.lookup(Section.getAssociatedSection()); |
Logan Chien | 4b72442 | 2013-02-05 14:18:59 +0000 | [diff] [blame] | 1179 | |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 1180 | WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()), |
Rafael Espindola | 2868758 | 2015-05-21 19:36:43 +0000 | [diff] [blame] | 1181 | Section.getType(), Section.getFlags(), 0, Offset, Size, |
| 1182 | sh_link, sh_info, Section.getAlignment(), |
| 1183 | Section.getEntrySize()); |
Rafael Espindola | 5a8d781 | 2010-11-10 23:36:59 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
Rafael Espindola | 7fe7e05 | 2015-02-17 20:40:59 +0000 | [diff] [blame] | 1186 | void ELFObjectWriter::writeSectionHeader( |
Rafael Espindola | 57c8083 | 2015-06-04 20:55:49 +0000 | [diff] [blame] | 1187 | const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap, |
Rafael Espindola | a820169 | 2015-04-28 15:26:21 +0000 | [diff] [blame] | 1188 | const SectionOffsetsTy &SectionOffsets) { |
Rafael Espindola | b186391 | 2015-04-30 21:10:06 +0000 | [diff] [blame] | 1189 | const unsigned NumSections = SectionTable.size(); |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 1190 | |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1191 | // Null section first. |
Rafael Espindola | 3fe87a1 | 2010-10-31 00:16:26 +0000 | [diff] [blame] | 1192 | uint64_t FirstSectionSize = |
Rafael Espindola | bf0db6c | 2015-04-15 13:07:47 +0000 | [diff] [blame] | 1193 | (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0; |
Rafael Espindola | 88d1f63 | 2015-04-29 20:25:24 +0000 | [diff] [blame] | 1194 | WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1195 | |
Rafael Espindola | 08850b3 | 2015-05-25 21:56:55 +0000 | [diff] [blame] | 1196 | for (const MCSectionELF *Section : SectionTable) { |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 1197 | uint32_t GroupSymbolIndex; |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1198 | unsigned Type = Section->getType(); |
| 1199 | if (Type != ELF::SHT_GROUP) |
Rafael Espindola | a3e9a22 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 1200 | GroupSymbolIndex = 0; |
| 1201 | else |
Rafael Espindola | 5e9ed90 | 2015-05-28 20:53:09 +0000 | [diff] [blame] | 1202 | GroupSymbolIndex = Section->getGroup()->getIndex(); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1203 | |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1204 | const std::pair<uint64_t, uint64_t> &Offsets = |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1205 | SectionOffsets.find(Section)->second; |
Rafael Espindola | 1aa20fc | 2015-05-21 19:46:39 +0000 | [diff] [blame] | 1206 | uint64_t Size; |
Rafael Espindola | 5a1e80b | 2015-05-26 02:00:36 +0000 | [diff] [blame] | 1207 | if (Type == ELF::SHT_NOBITS) |
| 1208 | Size = Layout.getSectionAddressSize(Section); |
| 1209 | else |
Rafael Espindola | 1aa20fc | 2015-05-21 19:46:39 +0000 | [diff] [blame] | 1210 | Size = Offsets.second - Offsets.first; |
Rafael Espindola | 60ebca9 | 2010-12-02 03:09:06 +0000 | [diff] [blame] | 1211 | |
Rafael Espindola | e92c1bf | 2015-05-21 19:42:35 +0000 | [diff] [blame] | 1212 | writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size, |
Rafael Espindola | 2868758 | 2015-05-21 19:36:43 +0000 | [diff] [blame] | 1213 | *Section); |
Matt Fleming | 6c1ad48 | 2010-08-16 18:57:57 +0000 | [diff] [blame] | 1214 | } |
| 1215 | } |
| 1216 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 1217 | void ELFObjectWriter::writeObject(MCAssembler &Asm, |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1218 | const MCAsmLayout &Layout) { |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1219 | MCContext &Ctx = Asm.getContext(); |
Rafael Espindola | 5960cee | 2015-05-22 23:58:30 +0000 | [diff] [blame] | 1220 | MCSectionELF *StrtabSection = |
| 1221 | Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0); |
| 1222 | StringTableIndex = addToSectionTable(StrtabSection); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1223 | |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1224 | RevGroupMapTy RevGroupMap; |
| 1225 | SectionIndexMapTy SectionIndexMap; |
| 1226 | |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1227 | std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers; |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1228 | |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1229 | // Write out the ELF header ... |
Rafael Espindola | 8c7829b | 2015-04-29 20:39:37 +0000 | [diff] [blame] | 1230 | writeHeader(Asm); |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1231 | |
Rafael Espindola | 7230f80 | 2015-04-08 11:41:24 +0000 | [diff] [blame] | 1232 | // ... then the sections ... |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1233 | SectionOffsetsTy SectionOffsets; |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1234 | std::vector<MCSectionELF *> Groups; |
| 1235 | std::vector<MCSectionELF *> Relocations; |
Rafael Espindola | e15b1b7 | 2015-05-27 13:30:50 +0000 | [diff] [blame] | 1236 | for (MCSection &Sec : Asm) { |
| 1237 | MCSectionELF &Section = static_cast<MCSectionELF &>(Sec); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1238 | |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 1239 | align(Section.getAlignment()); |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1240 | |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1241 | // Remember the offset into the file for this section. |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1242 | uint64_t SecStart = getStream().tell(); |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1243 | |
Rafael Espindola | 0ccf9b7 | 2015-06-02 21:30:13 +0000 | [diff] [blame] | 1244 | const MCSymbolELF *SignatureSymbol = Section.getGroup(); |
Rafael Espindola | e15b1b7 | 2015-05-27 13:30:50 +0000 | [diff] [blame] | 1245 | writeSectionData(Asm, Section, Layout); |
Rafael Espindola | b8cbb26 | 2015-04-30 00:30:40 +0000 | [diff] [blame] | 1246 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1247 | uint64_t SecEnd = getStream().tell(); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1248 | SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); |
| 1249 | |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1250 | MCSectionELF *RelSection = createRelocationSection(Ctx, Section); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1251 | |
| 1252 | if (SignatureSymbol) { |
Rafael Espindola | b5d316b | 2015-05-29 20:21:02 +0000 | [diff] [blame] | 1253 | Asm.registerSymbol(*SignatureSymbol); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1254 | unsigned &GroupIdx = RevGroupMap[SignatureSymbol]; |
| 1255 | if (!GroupIdx) { |
Rafael Espindola | 0709a7b | 2015-05-21 19:20:38 +0000 | [diff] [blame] | 1256 | MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol); |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1257 | GroupIdx = addToSectionTable(Group); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1258 | Group->setAlignment(4); |
| 1259 | Groups.push_back(Group); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1260 | } |
Rafael Espindola | 7830fc8 | 2015-06-05 17:54:25 +0000 | [diff] [blame] | 1261 | std::vector<const MCSectionELF *> &Members = |
| 1262 | GroupMembers[SignatureSymbol]; |
| 1263 | Members.push_back(&Section); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1264 | if (RelSection) |
Rafael Espindola | 7830fc8 | 2015-06-05 17:54:25 +0000 | [diff] [blame] | 1265 | Members.push_back(RelSection); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1268 | SectionIndexMap[&Section] = addToSectionTable(&Section); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1269 | if (RelSection) { |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1270 | SectionIndexMap[RelSection] = addToSectionTable(RelSection); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1271 | Relocations.push_back(RelSection); |
| 1272 | } |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1273 | } |
| 1274 | |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1275 | for (MCSectionELF *Group : Groups) { |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 1276 | align(Group->getAlignment()); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1277 | |
| 1278 | // Remember the offset into the file for this section. |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1279 | uint64_t SecStart = getStream().tell(); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1280 | |
| 1281 | const MCSymbol *SignatureSymbol = Group->getGroup(); |
| 1282 | assert(SignatureSymbol); |
| 1283 | write(uint32_t(ELF::GRP_COMDAT)); |
| 1284 | for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) { |
| 1285 | uint32_t SecIndex = SectionIndexMap.lookup(Member); |
| 1286 | write(SecIndex); |
| 1287 | } |
| 1288 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1289 | uint64_t SecEnd = getStream().tell(); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1290 | SectionOffsets[Group] = std::make_pair(SecStart, SecEnd); |
| 1291 | } |
| 1292 | |
| 1293 | // Compute symbol table information. |
Rafael Espindola | aa486e9 | 2015-05-28 17:54:01 +0000 | [diff] [blame] | 1294 | computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1295 | |
| 1296 | for (MCSectionELF *RelSection : Relocations) { |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 1297 | align(RelSection->getAlignment()); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1298 | |
| 1299 | // Remember the offset into the file for this section. |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1300 | uint64_t SecStart = getStream().tell(); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1301 | |
| 1302 | writeRelocations(Asm, *RelSection->getAssociatedSection()); |
| 1303 | |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1304 | uint64_t SecEnd = getStream().tell(); |
Rafael Espindola | 0a82ad7 | 2015-05-21 20:43:13 +0000 | [diff] [blame] | 1305 | SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1306 | } |
| 1307 | |
Rafael Espindola | 88d1f63 | 2015-04-29 20:25:24 +0000 | [diff] [blame] | 1308 | { |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1309 | uint64_t SecStart = getStream().tell(); |
Rafael Espindola | b186391 | 2015-04-30 21:10:06 +0000 | [diff] [blame] | 1310 | const MCSectionELF *Sec = createStringTable(Ctx); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1311 | uint64_t SecEnd = getStream().tell(); |
Rafael Espindola | bda1980 | 2015-04-30 14:21:49 +0000 | [diff] [blame] | 1312 | SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd); |
Rafael Espindola | 88abc39 | 2015-04-29 20:34:31 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1315 | uint64_t NaturalAlignment = is64Bit() ? 8 : 4; |
Rafael Espindola | b20fbb8 | 2015-06-05 18:21:00 +0000 | [diff] [blame] | 1316 | align(NaturalAlignment); |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1317 | |
Rafael Espindola | 5568c83 | 2016-01-19 15:19:08 +0000 | [diff] [blame] | 1318 | const uint64_t SectionHeaderOffset = getStream().tell(); |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1319 | |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1320 | // ... then the section header table ... |
Rafael Espindola | 57c8083 | 2015-06-04 20:55:49 +0000 | [diff] [blame] | 1321 | writeSectionHeader(Layout, SectionIndexMap, SectionOffsets); |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1322 | |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1323 | uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) |
Aaron Ballman | 9cab732 | 2015-04-30 14:03:12 +0000 | [diff] [blame] | 1324 | ? (uint16_t)ELF::SHN_UNDEF |
Rafael Espindola | 03d7abb | 2015-04-30 20:53:27 +0000 | [diff] [blame] | 1325 | : SectionTable.size() + 1; |
Rafael Espindola | 8c7829b | 2015-04-29 20:39:37 +0000 | [diff] [blame] | 1326 | if (sys::IsLittleEndianHost != IsLittleEndian) |
| 1327 | sys::swapByteOrder(NumSections); |
| 1328 | unsigned NumSectionsOffset; |
| 1329 | |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1330 | if (is64Bit()) { |
| 1331 | uint64_t Val = SectionHeaderOffset; |
| 1332 | if (sys::IsLittleEndianHost != IsLittleEndian) |
| 1333 | sys::swapByteOrder(Val); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1334 | getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val), |
| 1335 | offsetof(ELF::Elf64_Ehdr, e_shoff)); |
Rafael Espindola | 8c7829b | 2015-04-29 20:39:37 +0000 | [diff] [blame] | 1336 | NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum); |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1337 | } else { |
| 1338 | uint32_t Val = SectionHeaderOffset; |
| 1339 | if (sys::IsLittleEndianHost != IsLittleEndian) |
| 1340 | sys::swapByteOrder(Val); |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1341 | getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val), |
| 1342 | offsetof(ELF::Elf32_Ehdr, e_shoff)); |
Rafael Espindola | 8c7829b | 2015-04-29 20:39:37 +0000 | [diff] [blame] | 1343 | NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum); |
Rafael Espindola | 642a221 | 2015-04-14 22:54:16 +0000 | [diff] [blame] | 1344 | } |
David Majnemer | abdb2d2a | 2015-09-01 16:19:03 +0000 | [diff] [blame] | 1345 | getStream().pwrite(reinterpret_cast<char *>(&NumSections), |
| 1346 | sizeof(NumSections), NumSectionsOffset); |
Rafael Espindola | 1557fd6 | 2011-03-20 18:44:20 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 1349 | bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl( |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 1350 | const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB, |
Rafael Espindola | 35d6189 | 2015-04-17 21:15:17 +0000 | [diff] [blame] | 1351 | bool InSet, bool IsPCRel) const { |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 1352 | const auto &SymA = cast<MCSymbolELF>(SA); |
Rafael Espindola | 35d6189 | 2015-04-17 21:15:17 +0000 | [diff] [blame] | 1353 | if (IsPCRel) { |
| 1354 | assert(!InSet); |
Rafael Espindola | e3b2acf | 2015-05-29 18:47:23 +0000 | [diff] [blame] | 1355 | if (::isWeak(SymA)) |
Rafael Espindola | 35d6189 | 2015-04-17 21:15:17 +0000 | [diff] [blame] | 1356 | return false; |
| 1357 | } |
Jim Grosbach | 36e60e9 | 2015-06-04 22:24:41 +0000 | [diff] [blame] | 1358 | return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB, |
Rafael Espindola | 35d6189 | 2015-04-17 21:15:17 +0000 | [diff] [blame] | 1359 | InSet, IsPCRel); |
Eli Friedman | d92d17b | 2011-03-03 07:24:36 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 1362 | bool ELFObjectWriter::isWeak(const MCSymbol &S) const { |
| 1363 | const auto &Sym = cast<MCSymbolELF>(S); |
Rafael Espindola | e3b2acf | 2015-05-29 18:47:23 +0000 | [diff] [blame] | 1364 | if (::isWeak(Sym)) |
Rafael Espindola | db8a586 | 2015-04-17 20:05:17 +0000 | [diff] [blame] | 1365 | return true; |
| 1366 | |
Rafael Espindola | db8a586 | 2015-04-17 20:05:17 +0000 | [diff] [blame] | 1367 | // It is invalid to replace a reference to a global in a comdat |
| 1368 | // with a reference to a local since out of comdat references |
| 1369 | // to a local are forbidden. |
| 1370 | // We could try to return false for more cases, like the reference |
| 1371 | // being in the same comdat or Sym being an alias to another global, |
| 1372 | // but it is not clear if it is worth the effort. |
Rafael Espindola | 95fb9b9 | 2015-06-02 20:38:46 +0000 | [diff] [blame] | 1373 | if (Sym.getBinding() != ELF::STB_GLOBAL) |
Rafael Espindola | 29c8270 | 2015-04-20 12:44:06 +0000 | [diff] [blame] | 1374 | return false; |
Rafael Espindola | db8a586 | 2015-04-17 20:05:17 +0000 | [diff] [blame] | 1375 | |
Rafael Espindola | 29c8270 | 2015-04-20 12:44:06 +0000 | [diff] [blame] | 1376 | if (!Sym.isInSection()) |
| 1377 | return false; |
| 1378 | |
| 1379 | const auto &Sec = cast<MCSectionELF>(Sym.getSection()); |
| 1380 | return Sec.getGroup(); |
Rafael Espindola | f275ad8 | 2015-03-25 13:16:53 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
Rafael Espindola | 6b5e56c | 2010-12-17 17:45:22 +0000 | [diff] [blame] | 1383 | MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW, |
Rafael Espindola | 5560a4c | 2015-04-14 22:14:34 +0000 | [diff] [blame] | 1384 | raw_pwrite_stream &OS, |
Rafael Espindola | fdaae0d | 2010-12-18 03:27:34 +0000 | [diff] [blame] | 1385 | bool IsLittleEndian) { |
Rafael Espindola | 34a68af | 2011-12-22 03:24:43 +0000 | [diff] [blame] | 1386 | return new ELFObjectWriter(MOTW, OS, IsLittleEndian); |
Rafael Espindola | b264d33 | 2011-12-21 17:30:17 +0000 | [diff] [blame] | 1387 | } |