blob: a3b9c128f7ac1cc649b18ff3f042ec997dfcdbeb [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;
Eugene Leviante63d81b2016-07-20 14:43:20 +000034template <class ELFT> class 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;
Eugene Leviant97403d12016-09-01 09:55:57 +000038class InputSectionData;
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 {
Rafael Espindolaf6613932016-10-31 17:43:38 +000092 SymbolAssignment(StringRef Name, Expr E)
93 : BaseCommand(AssignmentKind), Name(Name), Expression(E) {}
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 Rimar076fe152016-07-21 06:43:01 +0000107};
108
Davide Italiano246f6812016-07-22 03:36:24 +0000109// Linker scripts allow additional constraints to be put on ouput sections.
Rui Ueyamab04af132016-10-13 23:08:33 +0000110// If an output section is marked as ONLY_IF_RO, the section is created
111// only if its input sections are read-only. Likewise, an output section
112// with ONLY_IF_RW is created if all input sections are RW.
Rui Ueyamaefc40662016-07-25 22:00:10 +0000113enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite };
Davide Italiano246f6812016-07-22 03:36:24 +0000114
George Rimar076fe152016-07-21 06:43:01 +0000115struct OutputSectionCommand : BaseCommand {
116 OutputSectionCommand(StringRef Name)
117 : BaseCommand(OutputSectionKind), Name(Name) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000118
George Rimar076fe152016-07-21 06:43:01 +0000119 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000120
Eugene Levianteda81a12016-07-12 06:39:48 +0000121 StringRef Name;
George Rimar58e5c4d2016-07-25 08:29:46 +0000122 Expr AddrExpr;
George Rimar630c6172016-07-26 18:06:29 +0000123 Expr AlignExpr;
Eugene Leviantb71d6f72016-10-06 09:39:28 +0000124 Expr LMAExpr;
George Rimardb24d9c2016-08-19 15:18:23 +0000125 Expr SubalignExpr;
George Rimareea31142016-07-21 14:26:59 +0000126 std::vector<std::unique_ptr<BaseCommand>> Commands;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000127 std::vector<StringRef> Phdrs;
Rui Ueyama16068ae2016-11-19 18:05:56 +0000128 uint32_t Filler = 0;
Rui Ueyamaefc40662016-07-25 22:00:10 +0000129 ConstraintKind Constraint = ConstraintKind::NoConstraint;
Eugene Leviant2a942c42016-12-05 16:38:32 +0000130 std::string Location;
Meador Ingeb8897442017-01-24 02:34:00 +0000131 std::string MemoryRegionName;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000132};
133
George Rimar8034d492016-09-17 07:31:49 +0000134// This struct represents one section match pattern in SECTIONS() command.
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000135// It can optionally have negative match pattern for EXCLUDED_FILE command.
George Rimar07171f22016-09-21 15:56:44 +0000136// Also it may be surrounded with SORT() command, so contains sorting rules.
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000137struct SectionPattern {
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000138 SectionPattern(StringMatcher &&Pat1, StringMatcher &&Pat2)
139 : ExcludedFilePat(Pat1), SectionPat(Pat2) {}
Rui Ueyamad1d7cfc2016-09-20 00:02:06 +0000140
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000141 StringMatcher ExcludedFilePat;
142 StringMatcher SectionPat;
George Rimar07171f22016-09-21 15:56:44 +0000143 SortSectionPolicy SortOuter;
144 SortSectionPolicy SortInner;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000145};
146
George Rimareea31142016-07-21 14:26:59 +0000147struct InputSectionDescription : BaseCommand {
George Rimarc91930a2016-09-02 21:17:20 +0000148 InputSectionDescription(StringRef FilePattern)
Vitaly Buka0b7de062016-12-21 02:27:14 +0000149 : BaseCommand(InputSectionKind), FilePat(FilePattern) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000150
George Rimareea31142016-07-21 14:26:59 +0000151 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000152
Rui Ueyamaf91282e2016-11-03 17:57:38 +0000153 StringMatcher FilePat;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000154
George Rimar8034d492016-09-17 07:31:49 +0000155 // Input sections that matches at least one of SectionPatterns
Rui Ueyama70efa2f2016-09-17 02:34:50 +0000156 // will be associated with this InputSectionDescription.
Rui Ueyamad1d7cfc2016-09-20 00:02:06 +0000157 std::vector<SectionPattern> SectionPatterns;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000158
Rafael Espindolad3190792016-09-16 15:10:23 +0000159 std::vector<InputSectionData *> Sections;
George Rimareea31142016-07-21 14:26:59 +0000160};
161
Rui Ueyamab04af132016-10-13 23:08:33 +0000162// Represents an ASSERT().
George Rimareefa7582016-08-04 09:29:31 +0000163struct AssertCommand : BaseCommand {
164 AssertCommand(Expr E) : BaseCommand(AssertKind), Expression(E) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000165
George Rimareefa7582016-08-04 09:29:31 +0000166 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000167
George Rimareefa7582016-08-04 09:29:31 +0000168 Expr Expression;
169};
170
Rui Ueyamab04af132016-10-13 23:08:33 +0000171// Represents BYTE(), SHORT(), LONG(), or QUAD().
George Rimare38cbab2016-09-26 19:22:50 +0000172struct BytesDataCommand : BaseCommand {
Meador Inge95c7d8d2016-12-08 23:21:30 +0000173 BytesDataCommand(Expr E, unsigned Size)
174 : BaseCommand(BytesDataKind), Expression(E), Size(Size) {}
Eugene Zelenko22886a22016-11-05 01:00:56 +0000175
George Rimare38cbab2016-09-26 19:22:50 +0000176 static bool classof(const BaseCommand *C);
Eugene Zelenko22886a22016-11-05 01:00:56 +0000177
Meador Inge95c7d8d2016-12-08 23:21:30 +0000178 Expr Expression;
George Rimare38cbab2016-09-26 19:22:50 +0000179 unsigned Offset;
180 unsigned Size;
181};
182
Eugene Leviantbbe38602016-07-19 09:25:43 +0000183struct PhdrsCommand {
184 StringRef Name;
185 unsigned Type;
186 bool HasFilehdr;
187 bool HasPhdrs;
Eugene Leviant865bf862016-07-21 10:43:25 +0000188 unsigned Flags;
Eugene Leviant56b21c82016-09-09 09:46:16 +0000189 Expr LMAExpr;
George Rimar652852c2016-04-16 10:10:32 +0000190};
191
Meador Ingeb8897442017-01-24 02:34:00 +0000192// This struct is used to represent the location and size of regions of
193// target memory. Instances of the struct are created by parsing the
194// MEMORY command.
195struct MemoryRegion {
196 std::string Name;
197 uint64_t Origin;
198 uint64_t Length;
199 uint64_t Offset;
200 uint32_t Flags;
Rui Ueyama8a8a9532017-01-26 02:58:59 +0000201 uint32_t NegFlags;
Meador Ingeb8897442017-01-24 02:34:00 +0000202};
203
George Rimar884e7862016-09-08 08:19:13 +0000204class LinkerScriptBase {
Rafael Espindola4d1e4d72016-09-08 14:11:08 +0000205protected:
206 ~LinkerScriptBase() = default;
207
George Rimar884e7862016-09-08 08:19:13 +0000208public:
George Rimar884e7862016-09-08 08:19:13 +0000209 virtual uint64_t getHeaderSize() = 0;
Eugene Leviantf6aeed32016-12-22 13:13:12 +0000210 virtual uint64_t getSymbolValue(const Twine &Loc, StringRef S) = 0;
George Rimarf34f45f2016-09-23 13:17:23 +0000211 virtual bool isDefined(StringRef S) = 0;
Rafael Espindola2f831dc2016-10-31 19:56:37 +0000212 virtual bool isAbsolute(StringRef S) = 0;
Eugene Leviantafaa9342016-11-16 09:49:39 +0000213 virtual const OutputSectionBase *getSymbolSection(StringRef S) = 0;
Eugene Levianted30ce72016-11-28 09:58:04 +0000214 virtual const OutputSectionBase *getOutputSection(const Twine &Loc,
215 StringRef S) = 0;
Rui Ueyamaedf75e72016-11-17 20:27:10 +0000216 virtual uint64_t getOutputSectionSize(StringRef S) = 0;
George Rimar884e7862016-09-08 08:19:13 +0000217};
218
Rui Ueyama07320e42016-04-20 20:13:41 +0000219// ScriptConfiguration holds linker script parse results.
220struct ScriptConfiguration {
George Rimar652852c2016-04-16 10:10:32 +0000221 // Used to assign addresses to sections.
George Rimar076fe152016-07-21 06:43:01 +0000222 std::vector<std::unique_ptr<BaseCommand>> Commands;
George Rimar652852c2016-04-16 10:10:32 +0000223
Eugene Leviantbbe38602016-07-19 09:25:43 +0000224 // Used to assign sections to headers.
George Rimar70ce0a92016-07-20 15:09:10 +0000225 std::vector<PhdrsCommand> PhdrsCommands;
226
Eugene Leviante05336ff2016-09-14 08:32:36 +0000227 bool HasSections = false;
Rui Ueyama07320e42016-04-20 20:13:41 +0000228
Rui Ueyama8ec77e62016-04-21 22:00:51 +0000229 // List of section patterns specified with KEEP commands. They will
230 // be kept even if they are unused and --gc-sections is specified.
Eugene Leviantcf43f172016-10-05 09:36:59 +0000231 std::vector<InputSectionDescription *> KeptSections;
Meador Ingeb8897442017-01-24 02:34:00 +0000232
233 // A map from memory region name to a memory region descriptor.
234 llvm::DenseMap<llvm::StringRef, MemoryRegion> MemoryRegions;
Rui Ueyama717677a2016-02-11 21:17:59 +0000235};
236
Rui Ueyama07320e42016-04-20 20:13:41 +0000237extern ScriptConfiguration *ScriptConfig;
238
239// This is a runner of the linker script.
George Rimar884e7862016-09-08 08:19:13 +0000240template <class ELFT> class LinkerScript final : public LinkerScriptBase {
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000241 typedef typename ELFT::uint uintX_t;
242
Rui Ueyama07320e42016-04-20 20:13:41 +0000243public:
Rui Ueyamaf34d0e02016-08-12 01:24:53 +0000244 LinkerScript();
245 ~LinkerScript();
Eugene Zelenko22886a22016-11-05 01:00:56 +0000246
Eugene Leviant20d03192016-09-16 15:30:47 +0000247 void processCommands(OutputSectionFactory<ELFT> &Factory);
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000248 void addOrphanSections(OutputSectionFactory<ELFT> &Factory);
Rafael Espindola07fe6122016-11-14 14:23:35 +0000249 void removeEmptyCommands();
Rafael Espindola9546fff2016-09-22 14:40:50 +0000250 void adjustSectionsBeforeSorting();
Rafael Espindolaf7a17442016-11-14 15:39:38 +0000251 void adjustSectionsAfterSorting();
Rui Ueyamaa7f78842016-07-20 17:19:03 +0000252
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000253 std::vector<PhdrEntry> createPhdrs();
Eugene Leviantf9bc3bd2016-08-16 06:40:58 +0000254 bool ignoreInterpSection();
Rui Ueyamaadca2452016-07-23 14:18:48 +0000255
Rui Ueyama16068ae2016-11-19 18:05:56 +0000256 uint32_t getFiller(StringRef Name);
George Rimare38cbab2016-09-26 19:22:50 +0000257 void writeDataBytes(StringRef Name, uint8_t *Buf);
Eugene Leviantb71d6f72016-10-06 09:39:28 +0000258 bool hasLMA(StringRef Name);
Rui Ueyama07320e42016-04-20 20:13:41 +0000259 bool shouldKeep(InputSectionBase<ELFT> *S);
Rafael Espindolad3190792016-09-16 15:10:23 +0000260 void assignOffsets(OutputSectionCommand *Cmd);
Rafael Espindola337f9032016-11-14 14:13:32 +0000261 void placeOrphanSections();
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000262 void assignAddresses(std::vector<PhdrEntry> &Phdrs);
Eugene Leviantbbe38602016-07-19 09:25:43 +0000263 bool hasPhdrsCommands();
George Rimar884e7862016-09-08 08:19:13 +0000264 uint64_t getHeaderSize() override;
Eugene Leviantf6aeed32016-12-22 13:13:12 +0000265 uint64_t getSymbolValue(const Twine &Loc, StringRef S) override;
George Rimarf34f45f2016-09-23 13:17:23 +0000266 bool isDefined(StringRef S) override;
Rafael Espindola2f831dc2016-10-31 19:56:37 +0000267 bool isAbsolute(StringRef S) override;
Eugene Leviantafaa9342016-11-16 09:49:39 +0000268 const OutputSectionBase *getSymbolSection(StringRef S) override;
Eugene Levianted30ce72016-11-28 09:58:04 +0000269 const OutputSectionBase *getOutputSection(const Twine &Loc,
270 StringRef S) override;
Rui Ueyamaedf75e72016-11-17 20:27:10 +0000271 uint64_t getOutputSectionSize(StringRef S) override;
Rui Ueyama07320e42016-04-20 20:13:41 +0000272
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000273 std::vector<OutputSectionBase *> *OutputSections;
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000274
Rafael Espindolab6b8f6c2016-09-20 22:43:15 +0000275 int getSectionIndex(StringRef Name);
276
Rui Ueyama07320e42016-04-20 20:13:41 +0000277private:
Rafael Espindola4cd73522017-02-17 16:01:51 +0000278 void assignSymbol(SymbolAssignment *Cmd, bool InSec = false);
279 void addSymbol(SymbolAssignment *Cmd);
Rafael Espindolae71a3f8a2016-09-16 20:34:02 +0000280 void computeInputSections(InputSectionDescription *);
Rafael Espindola679828f2017-02-17 16:26:13 +0000281 void setDot(Expr E, bool InSec = false);
Rui Ueyama6b274812016-07-25 22:51:07 +0000282
Rafael Espindola7bd37872016-09-12 16:05:16 +0000283 void discard(ArrayRef<InputSectionBase<ELFT> *> V);
Rui Ueyama48c3f1c2016-08-12 00:27:23 +0000284
Rui Ueyama0b9ce6a2016-08-12 03:16:56 +0000285 std::vector<InputSectionBase<ELFT> *>
286 createInputSectionList(OutputSectionCommand &Cmd);
287
Rui Ueyamac998a8c2016-04-22 00:03:13 +0000288 // "ScriptConfig" is a bit too long, so define a short name for it.
289 ScriptConfiguration &Opt = *ScriptConfig;
290
Rui Ueyamaedebbdf2016-07-24 23:47:31 +0000291 std::vector<size_t> getPhdrIndices(StringRef SectionName);
Eugene Leviant2a942c42016-12-05 16:38:32 +0000292 size_t getPhdrIndex(const Twine &Loc, StringRef PhdrName);
Rui Ueyama07320e42016-04-20 20:13:41 +0000293
Meador Ingeb8897442017-01-24 02:34:00 +0000294 MemoryRegion *findMemoryRegion(OutputSectionCommand *Cmd,
295 OutputSectionBase *Sec);
296
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000297 uintX_t Dot;
Eugene Leviantb71d6f72016-10-06 09:39:28 +0000298 uintX_t LMAOffset = 0;
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000299 OutputSectionBase *CurOutSec = nullptr;
Meador Ingeb8897442017-01-24 02:34:00 +0000300 MemoryRegion *CurMemRegion = nullptr;
Rafael Espindolad3190792016-09-16 15:10:23 +0000301 uintX_t ThreadBssOffset = 0;
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000302 void switchTo(OutputSectionBase *Sec);
Rafael Espindolad3190792016-09-16 15:10:23 +0000303 void flush();
304 void output(InputSection<ELFT> *Sec);
305 void process(BaseCommand &Base);
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000306 llvm::DenseSet<OutputSectionBase *> AlreadyOutputOS;
Rafael Espindolad3190792016-09-16 15:10:23 +0000307 llvm::DenseSet<InputSectionData *> AlreadyOutputIS;
Rui Ueyama07320e42016-04-20 20:13:41 +0000308};
309
310// Variable template is a C++14 feature, so we can't template
311// a global variable. Use a struct to workaround.
312template <class ELFT> struct Script { static LinkerScript<ELFT> *X; };
313template <class ELFT> LinkerScript<ELFT> *Script<ELFT>::X;
Rui Ueyama717677a2016-02-11 21:17:59 +0000314
George Rimar884e7862016-09-08 08:19:13 +0000315extern LinkerScriptBase *ScriptBase;
316
Eugene Zelenko22886a22016-11-05 01:00:56 +0000317} // end namespace elf
318} // end namespace lld
Rui Ueyama717677a2016-02-11 21:17:59 +0000319
Eugene Zelenko22886a22016-11-05 01:00:56 +0000320#endif // LLD_ELF_LINKER_SCRIPT_H