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