blob: ea8fd438cdf3a964a08f1c393d26df19256d4750 [file] [log] [blame]
Rafael Espindola9d06ab62015-09-22 00:01:39 +00001//===- InputSection.h -------------------------------------------*- C++ -*-===//
Michael J. Spencer84487f12015-07-24 21:03:07 +00002//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Rafael Espindola9d06ab62015-09-22 00:01:39 +000010#ifndef LLD_ELF_INPUT_SECTION_H
11#define LLD_ELF_INPUT_SECTION_H
Michael J. Spencer84487f12015-07-24 21:03:07 +000012
Rui Ueyamac4aaed92015-10-22 18:49:53 +000013#include "Config.h"
Michael J. Spencer84487f12015-07-24 21:03:07 +000014#include "lld/Core/LLVM.h"
Rui Ueyamac00718f2016-02-23 03:34:37 +000015#include "llvm/ADT/TinyPtrVector.h"
Michael J. Spencer84487f12015-07-24 21:03:07 +000016#include "llvm/Object/ELF.h"
17
18namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000019namespace elf {
Michael J. Spencer84487f12015-07-24 21:03:07 +000020
Rafael Espindola38c67a22016-04-15 14:41:56 +000021class SymbolBody;
22
Rui Ueyama0b289522016-02-25 18:43:51 +000023template <class ELFT> class ICF;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +000024template <class ELFT> class DefinedRegular;
Michael J. Spencer84487f12015-07-24 21:03:07 +000025template <class ELFT> class ObjectFile;
Rafael Espindola832b93f2015-08-24 20:06:32 +000026template <class ELFT> class OutputSection;
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +000027template <class ELFT> class OutputSectionBase;
Michael J. Spencer84487f12015-07-24 21:03:07 +000028
Rafael Espindola22ef9562016-04-13 01:40:19 +000029enum RelExpr {
30 R_ABS,
31 R_GOT,
Rafael Espindola3f5d6342016-04-18 12:07:13 +000032 R_GOTONLY_PC,
33 R_GOTREL,
34 R_GOT_FROM_END,
Rafael Espindolade2c76e2016-05-04 14:38:55 +000035 R_GOT_OFF,
Rafael Espindola22ef9562016-04-13 01:40:19 +000036 R_GOT_PAGE_PC,
37 R_GOT_PC,
Rafael Espindolaebb04b92016-05-04 14:44:22 +000038 R_HINT,
Rafael Espindola22ef9562016-04-13 01:40:19 +000039 R_MIPS_GOT,
40 R_MIPS_GOT_LOCAL,
Rafael Espindola3f5d6342016-04-18 12:07:13 +000041 R_NEG_TLS,
Rafael Espindola22ef9562016-04-13 01:40:19 +000042 R_PAGE_PC,
43 R_PC,
44 R_PLT,
45 R_PLT_PC,
46 R_PPC_OPD,
47 R_PPC_PLT_OPD,
48 R_PPC_TOC,
49 R_RELAX_TLS_GD_TO_IE,
50 R_RELAX_TLS_GD_TO_IE_PC,
51 R_RELAX_TLS_GD_TO_LE,
52 R_RELAX_TLS_IE_TO_LE,
53 R_RELAX_TLS_LD_TO_LE,
54 R_SIZE,
55 R_THUNK,
Rafael Espindola3f5d6342016-04-18 12:07:13 +000056 R_TLS,
Rafael Espindola22ef9562016-04-13 01:40:19 +000057 R_TLSGD,
58 R_TLSGD_PC,
59 R_TLSLD,
60 R_TLSLD_PC
61};
62
Rafael Espindolac6b17bd2016-04-20 17:30:22 +000063inline bool refersToGotEntry(RelExpr Expr) {
64 return Expr == R_GOT || Expr == R_GOT_OFF || Expr == R_MIPS_GOT ||
65 Expr == R_MIPS_GOT_LOCAL || Expr == R_GOT_PAGE_PC ||
Rafael Espindolaa85efd92016-04-30 01:15:17 +000066 Expr == R_GOT_PC || Expr == R_GOT_FROM_END || Expr == R_TLSGD ||
67 Expr == R_TLSGD_PC;
Rafael Espindolac6b17bd2016-04-20 17:30:22 +000068}
69
Rafael Espindola22ef9562016-04-13 01:40:19 +000070struct Relocation {
71 RelExpr Expr;
72 uint32_t Type;
73 uint64_t Offset;
74 uint64_t Addend;
75 SymbolBody *Sym;
76};
77
Rafael Espindola71675852015-09-22 00:16:19 +000078// This corresponds to a section of an input file.
Rafael Espindolac159c962015-10-19 21:00:02 +000079template <class ELFT> class InputSectionBase {
80protected:
Rafael Espindola197d6a82016-04-22 16:39:59 +000081 typedef typename ELFT::Rel Elf_Rel;
82 typedef typename ELFT::Rela Elf_Rela;
Rui Ueyama9328b2c2016-03-14 23:16:09 +000083 typedef typename ELFT::Shdr Elf_Shdr;
84 typedef typename ELFT::Sym Elf_Sym;
85 typedef typename ELFT::uint uintX_t;
Rafael Espindolac159c962015-10-19 21:00:02 +000086 const Elf_Shdr *Header;
87
88 // The file this section is from.
89 ObjectFile<ELFT> *File;
Michael J. Spencer84487f12015-07-24 21:03:07 +000090
91public:
Simon Atanasyanadd74f32016-05-04 10:07:38 +000092 enum Kind { Regular, EHFrame, Merge, MipsReginfo, MipsOptions };
Rafael Espindolac159c962015-10-19 21:00:02 +000093 Kind SectionKind;
94
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +000095 InputSectionBase() : Repl(this) {}
96
Rafael Espindolac159c962015-10-19 21:00:02 +000097 InputSectionBase(ObjectFile<ELFT> *File, const Elf_Shdr *Header,
98 Kind SectionKind);
99 OutputSectionBase<ELFT> *OutSec = nullptr;
Rui Ueyama6a9ef852016-02-25 18:49:09 +0000100 uint32_t Align;
Rafael Espindola83b0dc62015-08-13 22:21:37 +0000101
Rui Ueyamac4aaed92015-10-22 18:49:53 +0000102 // Used for garbage collection.
Rui Ueyama6a9ef852016-02-25 18:49:09 +0000103 bool Live;
Rui Ueyamac4aaed92015-10-22 18:49:53 +0000104
Rui Ueyama0b289522016-02-25 18:43:51 +0000105 // This pointer points to the "real" instance of this instance.
106 // Usually Repl == this. However, if ICF merges two sections,
107 // Repl pointer of one section points to another section. So,
108 // if you need to get a pointer to this instance, do not use
109 // this but instead this->Repl.
110 InputSectionBase<ELFT> *Repl;
111
Rafael Espindola71675852015-09-22 00:16:19 +0000112 // Returns the size of this section (even if this is a common or BSS.)
Simon Atanasyan13f6da12016-03-31 21:26:23 +0000113 size_t getSize() const;
Rafael Espindola83b0dc62015-08-13 22:21:37 +0000114
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000115 static InputSectionBase<ELFT> Discarded;
Rafael Espindola83b0dc62015-08-13 22:21:37 +0000116
Rafael Espindola5d83ccd2015-08-13 19:18:30 +0000117 StringRef getSectionName() const;
Michael J. Spencer8039dae22015-07-29 00:30:10 +0000118 const Elf_Shdr *getSectionHdr() const { return Header; }
Rafael Espindolae1901cc2015-09-24 15:11:50 +0000119 ObjectFile<ELFT> *getFile() const { return File; }
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000120 uintX_t getOffset(const DefinedRegular<ELFT> &Sym);
Rafael Espindoladb9bf4d2015-11-11 16:50:37 +0000121
122 // Translate an offset in the input section to an offset in the output
123 // section.
124 uintX_t getOffset(uintX_t Offset);
125
Rafael Espindolac159c962015-10-19 21:00:02 +0000126 ArrayRef<uint8_t> getSectionData() const;
Rui Ueyama12504642015-10-27 21:51:13 +0000127
Rafael Espindola22ef9562016-04-13 01:40:19 +0000128 void relocate(uint8_t *Buf, uint8_t *BufEnd);
129 std::vector<Relocation> Relocations;
Rafael Espindolac159c962015-10-19 21:00:02 +0000130};
131
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000132template <class ELFT> InputSectionBase<ELFT> InputSectionBase<ELFT>::Discarded;
Rafael Espindolac159c962015-10-19 21:00:02 +0000133
Rui Ueyama5a32c762016-01-06 03:16:23 +0000134// Usually sections are copied to the output as atomic chunks of data,
135// but some special types of sections are split into small pieces of data
136// and each piece is copied to a different place in the output.
137// This class represents such special sections.
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000138template <class ELFT> class SplitInputSection : public InputSectionBase<ELFT> {
Rui Ueyama9328b2c2016-03-14 23:16:09 +0000139 typedef typename ELFT::Shdr Elf_Shdr;
140 typedef typename ELFT::uint uintX_t;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000141
142public:
143 SplitInputSection(ObjectFile<ELFT> *File, const Elf_Shdr *Header,
144 typename InputSectionBase<ELFT>::Kind SectionKind);
Rui Ueyama5a32c762016-01-06 03:16:23 +0000145
146 // For each piece of data, we maintain the offsets in the input section and
Peter Collingbournee29e1422016-05-05 04:10:12 +0000147 // in the output section.
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000148 std::vector<std::pair<uintX_t, uintX_t>> Offsets;
Rui Ueyama5a32c762016-01-06 03:16:23 +0000149
Peter Collingbournee29e1422016-05-05 04:10:12 +0000150 // Merge input sections may use the following special values as the output
151 // section offset:
152 enum {
153 // The piece is dead.
154 PieceDead = uintX_t(-1),
155 // The piece is live, and an offset has not yet been assigned. After offsets
156 // have been assigned, if the output section uses tail merging, the field
157 // will still have this value and the output section offset is available
158 // from MergeOutputSection<ELFT>::getOffset(). Otherwise, this value has no
159 // special significance, it just means that the offset is 0.
160 PieceLive = uintX_t(0),
161 };
162
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000163 std::pair<std::pair<uintX_t, uintX_t> *, uintX_t>
164 getRangeAndSize(uintX_t Offset);
165};
166
Rafael Espindolac159c962015-10-19 21:00:02 +0000167// This corresponds to a SHF_MERGE section of an input file.
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000168template <class ELFT> class MergeInputSection : public SplitInputSection<ELFT> {
Rui Ueyama9328b2c2016-03-14 23:16:09 +0000169 typedef typename ELFT::uint uintX_t;
170 typedef typename ELFT::Sym Elf_Sym;
171 typedef typename ELFT::Shdr Elf_Shdr;
Rafael Espindolac159c962015-10-19 21:00:02 +0000172
173public:
174 MergeInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header);
175 static bool classof(const InputSectionBase<ELFT> *S);
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +0000176 // Translate an offset in the input section to an offset in the output
177 // section.
Rafael Espindola48225b42015-10-23 19:55:11 +0000178 uintX_t getOffset(uintX_t Offset);
Rafael Espindolac159c962015-10-19 21:00:02 +0000179};
180
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000181// This corresponds to a .eh_frame section of an input file.
182template <class ELFT> class EHInputSection : public SplitInputSection<ELFT> {
183public:
Rui Ueyama9328b2c2016-03-14 23:16:09 +0000184 typedef typename ELFT::Shdr Elf_Shdr;
185 typedef typename ELFT::uint uintX_t;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000186 EHInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header);
187 static bool classof(const InputSectionBase<ELFT> *S);
188
189 // Translate an offset in the input section to an offset in the output
190 // section.
191 uintX_t getOffset(uintX_t Offset);
192
193 // Relocation section that refer to this one.
194 const Elf_Shdr *RelocSection = nullptr;
195};
196
Rafael Espindolac159c962015-10-19 21:00:02 +0000197// This corresponds to a non SHF_MERGE section of an input file.
198template <class ELFT> class InputSection : public InputSectionBase<ELFT> {
Rui Ueyama0b289522016-02-25 18:43:51 +0000199 friend ICF<ELFT>;
Rafael Espindolac159c962015-10-19 21:00:02 +0000200 typedef InputSectionBase<ELFT> Base;
Rui Ueyama9328b2c2016-03-14 23:16:09 +0000201 typedef typename ELFT::Shdr Elf_Shdr;
202 typedef typename ELFT::Rela Elf_Rela;
203 typedef typename ELFT::Rel Elf_Rel;
204 typedef typename ELFT::Sym Elf_Sym;
205 typedef typename ELFT::uint uintX_t;
Rafael Espindolac159c962015-10-19 21:00:02 +0000206
207public:
208 InputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header);
209
210 // Write this section to a mmap'ed file, assuming Buf is pointing to
211 // beginning of the output section.
212 void writeTo(uint8_t *Buf);
213
Michael J. Spencer67bc8d62015-08-27 23:15:56 +0000214 // Relocation sections that refer to this one.
Rui Ueyamac00718f2016-02-23 03:34:37 +0000215 llvm::TinyPtrVector<const Elf_Shdr *> RelocSections;
Michael J. Spencer67bc8d62015-08-27 23:15:56 +0000216
Rui Ueyamaedffd912015-10-14 21:00:23 +0000217 // The offset from beginning of the output sections this section was assigned
218 // to. The writer sets a value.
Rui Ueyama55c3f892015-10-15 01:58:40 +0000219 uint64_t OutSecOff = 0;
Rui Ueyamaedffd912015-10-14 21:00:23 +0000220
Rafael Espindolac159c962015-10-19 21:00:02 +0000221 static bool classof(const InputSectionBase<ELFT> *S);
George Rimar58941ee2016-02-25 08:23:37 +0000222
223 InputSectionBase<ELFT> *getRelocatedSection();
224
Simon Atanasyan13f6da12016-03-31 21:26:23 +0000225 // Register thunk related to the symbol. When the section is written
226 // to a mmap'ed file, target is requested to write an actual thunk code.
227 // Now thunks is supported for MIPS target only.
228 void addThunk(SymbolBody &Body);
229
230 // The offset of synthetic thunk code from beginning of this section.
231 uint64_t getThunkOff() const;
232
233 // Size of chunk with thunks code.
234 uint64_t getThunksSize() const;
235
Rui Ueyama2b6fb802016-04-28 18:42:04 +0000236 template <class RelTy>
237 void relocateNonAlloc(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels);
238
George Rimar58941ee2016-02-25 08:23:37 +0000239private:
Rui Ueyamafc467e72016-03-13 05:06:50 +0000240 template <class RelTy>
Rafael Espindola0f7ccc32016-04-05 14:47:28 +0000241 void copyRelocations(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels);
Rui Ueyama0b289522016-02-25 18:43:51 +0000242
243 // Called by ICF to merge two input sections.
244 void replace(InputSection<ELFT> *Other);
245
246 // Used by ICF.
247 uint64_t GroupId = 0;
Simon Atanasyan13f6da12016-03-31 21:26:23 +0000248
249 llvm::TinyPtrVector<const SymbolBody *> Thunks;
Michael J. Spencer84487f12015-07-24 21:03:07 +0000250};
251
Simon Atanasyan1d7df402015-12-20 10:57:34 +0000252// MIPS .reginfo section provides information on the registers used by the code
253// in the object file. Linker should collect this information and write a single
254// .reginfo section in the output file. The output section contains a union of
255// used registers masks taken from input .reginfo sections and final value
256// of the `_gp` symbol. For details: Chapter 4 / "Register Information" at
257// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
258template <class ELFT>
259class MipsReginfoInputSection : public InputSectionBase<ELFT> {
Rui Ueyama9328b2c2016-03-14 23:16:09 +0000260 typedef typename ELFT::Shdr Elf_Shdr;
Simon Atanasyan1d7df402015-12-20 10:57:34 +0000261
262public:
Rui Ueyama70eed362016-01-06 22:42:43 +0000263 MipsReginfoInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Hdr);
Simon Atanasyan1d7df402015-12-20 10:57:34 +0000264 static bool classof(const InputSectionBase<ELFT> *S);
Rui Ueyama70eed362016-01-06 22:42:43 +0000265
Simon Atanasyanadd74f32016-05-04 10:07:38 +0000266 const llvm::object::Elf_Mips_RegInfo<ELFT> *Reginfo = nullptr;
267};
268
269template <class ELFT>
270class MipsOptionsInputSection : public InputSectionBase<ELFT> {
271 typedef typename ELFT::Shdr Elf_Shdr;
272
273public:
274 MipsOptionsInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Hdr);
275 static bool classof(const InputSectionBase<ELFT> *S);
276
277 const llvm::object::Elf_Mips_RegInfo<ELFT> *Reginfo = nullptr;
Simon Atanasyan1d7df402015-12-20 10:57:34 +0000278};
279
Rafael Espindolae0df00b2016-02-28 00:25:54 +0000280} // namespace elf
Michael J. Spencer84487f12015-07-24 21:03:07 +0000281} // namespace lld
282
283#endif