blob: 6893ad628bf62bf12ddef92cc11bd1a9cbcd2718 [file] [log] [blame]
Rui Ueyama717677a2016-02-11 21:17:59 +00001//===- LinkerScript.h -------------------------------------------*- C++ -*-===//
2//
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
10#ifndef LLD_ELF_LINKER_SCRIPT_H
11#define LLD_ELF_LINKER_SCRIPT_H
12
George Rimarbe394db2016-09-16 20:21:55 +000013#include "Config.h"
George Rimarc91930a2016-09-02 21:17:20 +000014#include "Strings.h"
Eugene Leviantbbe38602016-07-19 09:25:43 +000015#include "Writer.h"
Rui Ueyama717677a2016-02-11 21:17:59 +000016#include "lld/Core/LLVM.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000017#include "llvm/ADT/ArrayRef.h"
Meador Ingeb8897442017-01-24 02:34:00 +000018#include "llvm/ADT/DenseMap.h"
Rafael Espindolad3190792016-09-16 15:10:23 +000019#include "llvm/ADT/DenseSet.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000020#include "llvm/ADT/StringRef.h"
Rui Ueyamaf9de0d62016-02-11 21:38:55 +000021#include "llvm/Support/MemoryBuffer.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000022#include <cstddef>
23#include <cstdint>
Rui Ueyama8c6a5aa2016-11-05 22:37:59 +000024#include <functional>
Eugene Zelenko22886a22016-11-05 01:00:56 +000025#include <memory>
26#include <vector>
Rui Ueyama717677a2016-02-11 21:17:59 +000027
28namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000029namespace elf {
Eugene Zelenko22886a22016-11-05 01:00:56 +000030
Rafael Espindolae7553e42016-08-31 13:28:33 +000031class DefinedCommon;
George Rimardbb76db2016-08-18 13:00:49 +000032class ScriptParser;
Rui Ueyama8d083e62016-07-29 05:48:39 +000033class SymbolBody;
Rafael Espindolab4c9b812017-02-23 02:28:28 +000034class InputSectionBase;
Rafael Espindolad3190792016-09-16 15:10:23 +000035template <class ELFT> class InputSection;
Rafael Espindolae08e78d2016-11-09 23:23:45 +000036class OutputSectionBase;
Eugene Leviante63d81b2016-07-20 14:43:20 +000037template <class ELFT> class OutputSectionFactory;
Rafael Espindolac404d502017-02-23 02:32:18 +000038class InputSectionBase;
Rui Ueyama717677a2016-02-11 21:17:59 +000039
Rui Ueyamab04af132016-10-13 23:08:33 +000040// This represents an expression in the linker script.
41// ScriptParser::readExpr reads an expression and returns an Expr.
42// Later, we evaluate the expression by calling the function
43// with the value of special context variable ".".
Rafael Espindolaf6613932016-10-31 17:43:38 +000044struct Expr {
45 std::function<uint64_t(uint64_t)> Val;
Rafael Espindola2f831dc2016-10-31 19:56:37 +000046 std::function<bool()> IsAbsolute;
Eugene Leviantafaa9342016-11-16 09:49:39 +000047
48 // If expression is section-relative the function below is used
49 // to get the output section pointer.
50 std::function<const OutputSectionBase *()> Section;
51
Rafael Espindolaf6613932016-10-31 17:43:38 +000052 uint64_t operator()(uint64_t Dot) const { return Val(Dot); }
53 operator bool() const { return (bool)Val; }
54
Eugene Leviantafaa9342016-11-16 09:49:39 +000055 Expr(std::function<uint64_t(uint64_t)> Val, std::function<bool()> IsAbsolute,
56 std::function<const OutputSectionBase *()> Section)
57 : Val(Val), IsAbsolute(IsAbsolute), Section(Section) {}
58 template <typename T>
Rui Ueyama009d1742016-11-18 06:49:09 +000059 Expr(T V) : Expr(V, [] { return true; }, [] { return nullptr; }) {}
Rafael Espindolaf6613932016-10-31 17:43:38 +000060 Expr() : Expr(nullptr) {}
61};
Rui Ueyama708019c2016-07-24 18:19:40 +000062
Rui Ueyama07320e42016-04-20 20:13:41 +000063// Parses a linker script. Calling this function updates
64// Config and ScriptConfig.
65void readLinkerScript(MemoryBufferRef MB);
66
Rui Ueyamab04af132016-10-13 23:08:33 +000067// Parses a version script.
George Rimar20b65982016-08-31 09:08:26 +000068void readVersionScript(MemoryBufferRef MB);
69
Rafael Espindolad0ebd842016-12-08 17:54:26 +000070void readDynamicList(MemoryBufferRef MB);
71
George Rimareea31142016-07-21 14:26:59 +000072// This enum is used to implement linker script SECTIONS command.
73// https://sourceware.org/binutils/docs/ld/SECTIONS.html#SECTIONS
74enum SectionsCommandKind {
George Rimare38cbab2016-09-26 19:22:50 +000075 AssignmentKind, // . = expr or <sym> = expr
George Rimareea31142016-07-21 14:26:59 +000076 OutputSectionKind,
George Rimareefa7582016-08-04 09:29:31 +000077 InputSectionKind,
George Rimare38cbab2016-09-26 19:22:50 +000078 AssertKind, // ASSERT(expr)
79 BytesDataKind // BYTE(expr), SHORT(expr), LONG(expr) or QUAD(expr)
Rui Ueyama1ebc8ed2016-02-12 21:47:28 +000080};
81
George Rimar076fe152016-07-21 06:43:01 +000082struct BaseCommand {
83 BaseCommand(int K) : Kind(K) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +000084
85 virtual ~BaseCommand() = default;
86
George Rimar076fe152016-07-21 06:43:01 +000087 int Kind;
88};
89
Rui Ueyamab04af132016-10-13 23:08:33 +000090// This represents ". = <expr>" or "<symbol> = <expr>".
George Rimar076fe152016-07-21 06:43:01 +000091struct SymbolAssignment : BaseCommand {
George Rimara8d8dcf2017-02-22 09:13:04 +000092 SymbolAssignment(StringRef Name, Expr E, std::string Loc)
93 : BaseCommand(AssignmentKind), Name(Name), Expression(E), Location(Loc) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +000094
George Rimar076fe152016-07-21 06:43:01 +000095 static bool classof(const BaseCommand *C);
Rui Ueyama20204242016-07-29 05:52:33 +000096
97 // The LHS of an expression. Name is either a symbol name or ".".
George Rimar076fe152016-07-21 06:43:01 +000098 StringRef Name;
Rui Ueyama20204242016-07-29 05:52:33 +000099 SymbolBody *Sym = nullptr;
100
101 // The RHS of an expression.
Rui Ueyama708019c2016-07-24 18:19:40 +0000102 Expr Expression;
Rui Ueyama20204242016-07-29 05:52:33 +0000103
104 // Command attributes for PROVIDE, HIDDEN and PROVIDE_HIDDEN.
Eugene Levianta31c91b2016-07-22 07:38:40 +0000105 bool Provide = false;
Eugene Levianta31c91b2016-07-22 07:38:40 +0000106 bool Hidden = false;
George Rimar2ee2d2d2017-02-21 14:50:38 +0000107
George Rimara8d8dcf2017-02-22 09:13:04 +0000108 // Holds file name and line number for error reporting.
George Rimar2ee2d2d2017-02-21 14:50:38 +0000109 std::string Location;
George Rimar076fe152016-07-21 06:43:01 +0000110};
111
Davide Italiano246f6812016-07-22 03:36:24 +0000112// Linker scripts allow additional constraints to be put on ouput sections.
Rui Ueyamab04af132016-10-13 23:08:33 +0000113// If an output section is marked as ONLY_IF_RO, the section is created
114// only if its input sections are read-only. Likewise, an output section
115// with ONLY_IF_RW is created if all input sections are RW.
Rui Ueyamaefc40662016-07-25 22:00:10 +0000116enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite };
Davide Italiano246f6812016-07-22 03:36:24 +0000117
George Rimar076fe152016-07-21 06:43:01 +0000118struct OutputSectionCommand : BaseCommand {
119 OutputSectionCommand(StringRef Name)
120 : BaseCommand(OutputSectionKind), Name(Name) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000121
George Rimar076fe152016-07-21 06:43:01 +0000122 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000123
Eugene Levianteda81a12016-07-12 06:39:48 +0000124 StringRef Name;
George Rimar58e5c4d2016-07-25 08:29:46 +0000125 Expr AddrExpr;
George Rimar630c6172016-07-26 18:06:29 +0000126 Expr AlignExpr;
Eugene Leviantb71d6f72016-10-06 09:39:28 +0000127 Expr LMAExpr;
George Rimardb24d9c2016-08-19 15:18:23 +0000128 Expr SubalignExpr;
George Rimareea31142016-07-21 14:26:59 +0000129 std::vector<std::unique_ptr<BaseCommand>> Commands;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000130 std::vector<StringRef> Phdrs;
Rui Ueyama16068ae2016-11-19 18:05:56 +0000131 uint32_t Filler = 0;
Rui Ueyamaefc40662016-07-25 22:00:10 +0000132 ConstraintKind Constraint = ConstraintKind::NoConstraint;
Eugene Leviant2a942c42016-12-05 16:38:32 +0000133 std::string Location;
Meador Ingeb8897442017-01-24 02:34:00 +0000134 std::string MemoryRegionName;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000135};
136
George Rimar8034d492016-09-17 07:31:49 +0000137// This struct represents one section match pattern in SECTIONS() command.
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000138// It can optionally have negative match pattern for EXCLUDED_FILE command.
George Rimar07171f22016-09-21 15:56:44 +0000139// Also it may be surrounded with SORT() command, so contains sorting rules.
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000140struct SectionPattern {
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000141 SectionPattern(StringMatcher &&Pat1, StringMatcher &&Pat2)
142 : ExcludedFilePat(Pat1), SectionPat(Pat2) {}
Rui Ueyamad1d7cfc2016-09-20 00:02:06 +0000143
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000144 StringMatcher ExcludedFilePat;
145 StringMatcher SectionPat;
George Rimar07171f22016-09-21 15:56:44 +0000146 SortSectionPolicy SortOuter;
147 SortSectionPolicy SortInner;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000148};
149
George Rimareea31142016-07-21 14:26:59 +0000150struct InputSectionDescription : BaseCommand {
George Rimarc91930a2016-09-02 21:17:20 +0000151 InputSectionDescription(StringRef FilePattern)
Vitaly Buka0b7de062016-12-21 02:27:14 +0000152 : BaseCommand(InputSectionKind), FilePat(FilePattern) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000153
George Rimareea31142016-07-21 14:26:59 +0000154 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000155
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000156 StringMatcher FilePat;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000157
George Rimar8034d492016-09-17 07:31:49 +0000158 // Input sections that matches at least one of SectionPatterns
Rui Ueyama70efa2f2016-09-17 02:34:50 +0000159 // will be associated with this InputSectionDescription.
Rui Ueyamad1d7cfc2016-09-20 00:02:06 +0000160 std::vector<SectionPattern> SectionPatterns;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000161
Rafael Espindolac404d502017-02-23 02:32:18 +0000162 std::vector<InputSectionBase *> Sections;
George Rimareea31142016-07-21 14:26:59 +0000163};
164
Rui Ueyamab04af132016-10-13 23:08:33 +0000165// Represents an ASSERT().
George Rimareefa7582016-08-04 09:29:31 +0000166struct AssertCommand : BaseCommand {
167 AssertCommand(Expr E) : BaseCommand(AssertKind), Expression(E) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000168
George Rimareefa7582016-08-04 09:29:31 +0000169 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000170
George Rimareefa7582016-08-04 09:29:31 +0000171 Expr Expression;
172};
173
Rui Ueyamab04af132016-10-13 23:08:33 +0000174// Represents BYTE(), SHORT(), LONG(), or QUAD().
George Rimare38cbab2016-09-26 19:22:50 +0000175struct BytesDataCommand : BaseCommand {
Meador Inge95c7d8d2016-12-08 23:21:30 +0000176 BytesDataCommand(Expr E, unsigned Size)
177 : BaseCommand(BytesDataKind), Expression(E), Size(Size) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000178
George Rimare38cbab2016-09-26 19:22:50 +0000179 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000180
Meador Inge95c7d8d2016-12-08 23:21:30 +0000181 Expr Expression;
George Rimare38cbab2016-09-26 19:22:50 +0000182 unsigned Offset;
183 unsigned Size;
184};
185
Eugene Leviantbbe38602016-07-19 09:25:43 +0000186struct PhdrsCommand {
187 StringRef Name;
188 unsigned Type;
189 bool HasFilehdr;
190 bool HasPhdrs;
Eugene Leviant865bf862016-07-21 10:43:25 +0000191 unsigned Flags;
Eugene Leviant56b21c82016-09-09 09:46:16 +0000192 Expr LMAExpr;
George Rimar652852c2016-04-16 10:10:32 +0000193};
194
Meador Ingeb8897442017-01-24 02:34:00 +0000195// This struct is used to represent the location and size of regions of
196// target memory. Instances of the struct are created by parsing the
197// MEMORY command.
198struct MemoryRegion {
199 std::string Name;
200 uint64_t Origin;
201 uint64_t Length;
202 uint64_t Offset;
203 uint32_t Flags;
Rui Ueyama8a8a9532017-01-26 02:58:59 +0000204 uint32_t NegFlags;
Meador Ingeb8897442017-01-24 02:34:00 +0000205};
206
George Rimar884e7862016-09-08 08:19:13 +0000207class LinkerScriptBase {
Rafael Espindola4d1e4d72016-09-08 14:11:08 +0000208protected:
209 ~LinkerScriptBase() = default;
210
George Rimar884e7862016-09-08 08:19:13 +0000211public:
George Rimar884e7862016-09-08 08:19:13 +0000212 virtual uint64_t getHeaderSize() = 0;
Eugene Leviantf6aeed32016-12-22 13:13:12 +0000213 virtual uint64_t getSymbolValue(const Twine &Loc, StringRef S) = 0;
George Rimarf34f45f2016-09-23 13:17:23 +0000214 virtual bool isDefined(StringRef S) = 0;
Rafael Espindola2f831dc2016-10-31 19:56:37 +0000215 virtual bool isAbsolute(StringRef S) = 0;
Eugene Leviantafaa9342016-11-16 09:49:39 +0000216 virtual const OutputSectionBase *getSymbolSection(StringRef S) = 0;
Eugene Levianted30ce72016-11-28 09:58:04 +0000217 virtual const OutputSectionBase *getOutputSection(const Twine &Loc,
218 StringRef S) = 0;
Rui Ueyamaedf75e72016-11-17 20:27:10 +0000219 virtual uint64_t getOutputSectionSize(StringRef S) = 0;
George Rimar884e7862016-09-08 08:19:13 +0000220};
221
Rui Ueyama07320e42016-04-20 20:13:41 +0000222// ScriptConfiguration holds linker script parse results.
223struct ScriptConfiguration {
George Rimar652852c2016-04-16 10:10:32 +0000224 // Used to assign addresses to sections.
George Rimar076fe152016-07-21 06:43:01 +0000225 std::vector<std::unique_ptr<BaseCommand>> Commands;
George Rimar652852c2016-04-16 10:10:32 +0000226
Eugene Leviantbbe38602016-07-19 09:25:43 +0000227 // Used to assign sections to headers.
George Rimar70ce0a92016-07-20 15:09:10 +0000228 std::vector<PhdrsCommand> PhdrsCommands;
229
Eugene Leviante05336ff2016-09-14 08:32:36 +0000230 bool HasSections = false;
Rui Ueyama07320e42016-04-20 20:13:41 +0000231
Rui Ueyama8ec77e62016-04-21 22:00:51 +0000232 // List of section patterns specified with KEEP commands. They will
233 // be kept even if they are unused and --gc-sections is specified.
Eugene Leviantcf43f172016-10-05 09:36:59 +0000234 std::vector<InputSectionDescription *> KeptSections;
Meador Ingeb8897442017-01-24 02:34:00 +0000235
236 // A map from memory region name to a memory region descriptor.
237 llvm::DenseMap<llvm::StringRef, MemoryRegion> MemoryRegions;
Rui Ueyama717677a2016-02-11 21:17:59 +0000238};
239
Rui Ueyama07320e42016-04-20 20:13:41 +0000240extern ScriptConfiguration *ScriptConfig;
241
242// This is a runner of the linker script.
George Rimar884e7862016-09-08 08:19:13 +0000243template <class ELFT> class LinkerScript final : public LinkerScriptBase {
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000244 typedef typename ELFT::uint uintX_t;
245
Rui Ueyama07320e42016-04-20 20:13:41 +0000246public:
Rui Ueyamaf34d0e02016-08-12 01:24:53 +0000247 LinkerScript();
248 ~LinkerScript();
Eugene Zelenko22886a22016-11-05 01:00:56 +0000249
Eugene Leviant20d03192016-09-16 15:30:47 +0000250 void processCommands(OutputSectionFactory<ELFT> &Factory);
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000251 void addOrphanSections(OutputSectionFactory<ELFT> &Factory);
Rafael Espindola07fe6122016-11-14 14:23:35 +0000252 void removeEmptyCommands();
Rafael Espindola9546fff2016-09-22 14:40:50 +0000253 void adjustSectionsBeforeSorting();
Rafael Espindolaf7a17442016-11-14 15:39:38 +0000254 void adjustSectionsAfterSorting();
Rui Ueyamaa7f78842016-07-20 17:19:03 +0000255
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000256 std::vector<PhdrEntry> createPhdrs();
Eugene Leviantf9bc3bd2016-08-16 06:40:58 +0000257 bool ignoreInterpSection();
Rui Ueyamaadca2452016-07-23 14:18:48 +0000258
Rui Ueyama16068ae2016-11-19 18:05:56 +0000259 uint32_t getFiller(StringRef Name);
George Rimare38cbab2016-09-26 19:22:50 +0000260 void writeDataBytes(StringRef Name, uint8_t *Buf);
Eugene Leviantb71d6f72016-10-06 09:39:28 +0000261 bool hasLMA(StringRef Name);
Rafael Espindolab4c9b812017-02-23 02:28:28 +0000262 bool shouldKeep(InputSectionBase *S);
Rafael Espindolad3190792016-09-16 15:10:23 +0000263 void assignOffsets(OutputSectionCommand *Cmd);
Rafael Espindola337f9032016-11-14 14:13:32 +0000264 void placeOrphanSections();
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000265 void assignAddresses(std::vector<PhdrEntry> &Phdrs);
Eugene Leviantbbe38602016-07-19 09:25:43 +0000266 bool hasPhdrsCommands();
George Rimar884e7862016-09-08 08:19:13 +0000267 uint64_t getHeaderSize() override;
Eugene Leviantf6aeed32016-12-22 13:13:12 +0000268 uint64_t getSymbolValue(const Twine &Loc, StringRef S) override;
George Rimarf34f45f2016-09-23 13:17:23 +0000269 bool isDefined(StringRef S) override;
Rafael Espindola2f831dc2016-10-31 19:56:37 +0000270 bool isAbsolute(StringRef S) override;
Eugene Leviantafaa9342016-11-16 09:49:39 +0000271 const OutputSectionBase *getSymbolSection(StringRef S) override;
Eugene Levianted30ce72016-11-28 09:58:04 +0000272 const OutputSectionBase *getOutputSection(const Twine &Loc,
273 StringRef S) override;
Rui Ueyamaedf75e72016-11-17 20:27:10 +0000274 uint64_t getOutputSectionSize(StringRef S) override;
Rui Ueyama07320e42016-04-20 20:13:41 +0000275
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000276 std::vector<OutputSectionBase *> *OutputSections;
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000277
Rafael Espindolab6b8f6c2016-09-20 22:43:15 +0000278 int getSectionIndex(StringRef Name);
279
Rui Ueyama07320e42016-04-20 20:13:41 +0000280private:
Rafael Espindola4cd73522017-02-17 16:01:51 +0000281 void assignSymbol(SymbolAssignment *Cmd, bool InSec = false);
282 void addSymbol(SymbolAssignment *Cmd);
Rafael Espindolae71a3f8a2016-09-16 20:34:02 +0000283 void computeInputSections(InputSectionDescription *);
George Rimar2ee2d2d2017-02-21 14:50:38 +0000284 void setDot(Expr E, const Twine &Loc, bool InSec = false);
Rui Ueyama6b274812016-07-25 22:51:07 +0000285
Rafael Espindolab4c9b812017-02-23 02:28:28 +0000286 void discard(ArrayRef<InputSectionBase *> V);
Rui Ueyama48c3f1c2016-08-12 00:27:23 +0000287
Rafael Espindolab4c9b812017-02-23 02:28:28 +0000288 std::vector<InputSectionBase *>
Rui Ueyama0b9ce6a2016-08-12 03:16:56 +0000289 createInputSectionList(OutputSectionCommand &Cmd);
290
Rui Ueyamac998a8c2016-04-22 00:03:13 +0000291 // "ScriptConfig" is a bit too long, so define a short name for it.
292 ScriptConfiguration &Opt = *ScriptConfig;
293
Rui Ueyamaedebbdf2016-07-24 23:47:31 +0000294 std::vector<size_t> getPhdrIndices(StringRef SectionName);
Eugene Leviant2a942c42016-12-05 16:38:32 +0000295 size_t getPhdrIndex(const Twine &Loc, StringRef PhdrName);
Rui Ueyama07320e42016-04-20 20:13:41 +0000296
Meador Ingeb8897442017-01-24 02:34:00 +0000297 MemoryRegion *findMemoryRegion(OutputSectionCommand *Cmd,
298 OutputSectionBase *Sec);
299
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000300 uintX_t Dot;
George Rimarae4761c2017-02-21 15:08:18 +0000301 std::pair<Expr, uintX_t> CurLMA;
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000302 OutputSectionBase *CurOutSec = nullptr;
Meador Ingeb8897442017-01-24 02:34:00 +0000303 MemoryRegion *CurMemRegion = nullptr;
Rafael Espindolad3190792016-09-16 15:10:23 +0000304 uintX_t ThreadBssOffset = 0;
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000305 void switchTo(OutputSectionBase *Sec);
Rafael Espindolad3190792016-09-16 15:10:23 +0000306 void flush();
307 void output(InputSection<ELFT> *Sec);
308 void process(BaseCommand &Base);
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000309 llvm::DenseSet<OutputSectionBase *> AlreadyOutputOS;
Rafael Espindolac404d502017-02-23 02:32:18 +0000310 llvm::DenseSet<InputSectionBase *> AlreadyOutputIS;
Rui Ueyama07320e42016-04-20 20:13:41 +0000311};
312
313// Variable template is a C++14 feature, so we can't template
314// a global variable. Use a struct to workaround.
315template <class ELFT> struct Script { static LinkerScript<ELFT> *X; };
316template <class ELFT> LinkerScript<ELFT> *Script<ELFT>::X;
Rui Ueyama717677a2016-02-11 21:17:59 +0000317
George Rimar884e7862016-09-08 08:19:13 +0000318extern LinkerScriptBase *ScriptBase;
319
Eugene Zelenko22886a22016-11-05 01:00:56 +0000320} // end namespace elf
321} // end namespace lld
Rui Ueyama717677a2016-02-11 21:17:59 +0000322
Eugene Zelenko22886a22016-11-05 01:00:56 +0000323#endif // LLD_ELF_LINKER_SCRIPT_H