Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 1 | //===- 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 Rimar | be394db | 2016-09-16 20:21:55 +0000 | [diff] [blame] | 13 | #include "Config.h" |
George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 14 | #include "Strings.h" |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 15 | #include "Writer.h" |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 16 | #include "lld/Core/LLVM.h" |
| 17 | #include "llvm/ADT/DenseMap.h" |
Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DenseSet.h" |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/MapVector.h" |
Rui Ueyama | f9de0d6 | 2016-02-11 21:38:55 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Allocator.h" |
| 21 | #include "llvm/Support/MemoryBuffer.h" |
George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Regex.h" |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 23 | #include <functional> |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 24 | |
| 25 | namespace lld { |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 26 | namespace elf { |
Rafael Espindola | e7553e4 | 2016-08-31 13:28:33 +0000 | [diff] [blame] | 27 | class DefinedCommon; |
George Rimar | dbb76db | 2016-08-18 13:00:49 +0000 | [diff] [blame] | 28 | class ScriptParser; |
Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 29 | class SymbolBody; |
Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 30 | template <class ELFT> class InputSectionBase; |
Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 31 | template <class ELFT> class InputSection; |
Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 32 | template <class ELFT> class OutputSectionBase; |
| 33 | template <class ELFT> class OutputSectionFactory; |
Eugene Leviant | 97403d1 | 2016-09-01 09:55:57 +0000 | [diff] [blame] | 34 | class InputSectionData; |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 35 | |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 36 | typedef std::function<uint64_t(uint64_t)> Expr; |
| 37 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 38 | // Parses a linker script. Calling this function updates |
| 39 | // Config and ScriptConfig. |
| 40 | void readLinkerScript(MemoryBufferRef MB); |
| 41 | |
George Rimar | 20b6598 | 2016-08-31 09:08:26 +0000 | [diff] [blame] | 42 | void readVersionScript(MemoryBufferRef MB); |
| 43 | |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 44 | // This enum is used to implement linker script SECTIONS command. |
| 45 | // https://sourceware.org/binutils/docs/ld/SECTIONS.html#SECTIONS |
| 46 | enum SectionsCommandKind { |
| 47 | AssignmentKind, |
| 48 | OutputSectionKind, |
George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 49 | InputSectionKind, |
| 50 | AssertKind |
Rui Ueyama | 1ebc8ed | 2016-02-12 21:47:28 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 53 | struct BaseCommand { |
| 54 | BaseCommand(int K) : Kind(K) {} |
| 55 | virtual ~BaseCommand() {} |
| 56 | int Kind; |
| 57 | }; |
| 58 | |
| 59 | struct SymbolAssignment : BaseCommand { |
Eugene Leviant | db741e7 | 2016-09-07 07:08:43 +0000 | [diff] [blame] | 60 | SymbolAssignment(StringRef Name, Expr E, bool IsAbsolute) |
| 61 | : BaseCommand(AssignmentKind), Name(Name), Expression(E), |
| 62 | IsAbsolute(IsAbsolute) {} |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 63 | static bool classof(const BaseCommand *C); |
Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 64 | |
| 65 | // The LHS of an expression. Name is either a symbol name or ".". |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 66 | StringRef Name; |
Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 67 | SymbolBody *Sym = nullptr; |
| 68 | |
| 69 | // The RHS of an expression. |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 70 | Expr Expression; |
Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 71 | |
| 72 | // Command attributes for PROVIDE, HIDDEN and PROVIDE_HIDDEN. |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 73 | bool Provide = false; |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 74 | bool Hidden = false; |
Eugene Leviant | db741e7 | 2016-09-07 07:08:43 +0000 | [diff] [blame] | 75 | bool IsAbsolute; |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 78 | // Linker scripts allow additional constraints to be put on ouput sections. |
| 79 | // An output section will only be created if all of its input sections are |
| 80 | // read-only |
| 81 | // or all of its input sections are read-write by using the keyword ONLY_IF_RO |
| 82 | // and ONLY_IF_RW respectively. |
Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 83 | enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite }; |
Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 84 | |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 85 | struct OutputSectionCommand : BaseCommand { |
| 86 | OutputSectionCommand(StringRef Name) |
| 87 | : BaseCommand(OutputSectionKind), Name(Name) {} |
| 88 | static bool classof(const BaseCommand *C); |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 89 | StringRef Name; |
George Rimar | 58e5c4d | 2016-07-25 08:29:46 +0000 | [diff] [blame] | 90 | Expr AddrExpr; |
George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 91 | Expr AlignExpr; |
George Rimar | 8ceadb3 | 2016-08-17 07:44:19 +0000 | [diff] [blame] | 92 | Expr LmaExpr; |
George Rimar | db24d9c | 2016-08-19 15:18:23 +0000 | [diff] [blame] | 93 | Expr SubalignExpr; |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 94 | std::vector<std::unique_ptr<BaseCommand>> Commands; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 95 | std::vector<StringRef> Phdrs; |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 96 | std::vector<uint8_t> Filler; |
Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 97 | ConstraintKind Constraint = ConstraintKind::NoConstraint; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 98 | }; |
| 99 | |
George Rimar | 8034d49 | 2016-09-17 07:31:49 +0000 | [diff] [blame] | 100 | // This struct represents one section match pattern in SECTIONS() command. |
Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 101 | // It can optionally have negative match pattern for EXCLUDED_FILE command. |
| 102 | struct SectionPattern { |
Rui Ueyama | d1d7cfc | 2016-09-20 00:02:06 +0000 | [diff] [blame^] | 103 | SectionPattern(llvm::Regex &&Re1, llvm::Regex &&Re2) |
| 104 | : ExcludedFileRe(std::forward<llvm::Regex>(Re1)), |
| 105 | SectionRe(std::forward<llvm::Regex>(Re2)) {} |
| 106 | |
| 107 | SectionPattern(SectionPattern &&Other) { |
| 108 | std::swap(ExcludedFileRe, Other.ExcludedFileRe); |
| 109 | std::swap(SectionRe, Other.SectionRe); |
| 110 | } |
| 111 | |
Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 112 | llvm::Regex ExcludedFileRe; |
| 113 | llvm::Regex SectionRe; |
| 114 | }; |
| 115 | |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 116 | struct InputSectionDescription : BaseCommand { |
George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 117 | InputSectionDescription(StringRef FilePattern) |
| 118 | : BaseCommand(InputSectionKind), |
| 119 | FileRe(compileGlobPatterns({FilePattern})) {} |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 120 | static bool classof(const BaseCommand *C); |
George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 121 | llvm::Regex FileRe; |
Rui Ueyama | b2a0abd | 2016-09-16 21:14:55 +0000 | [diff] [blame] | 122 | SortSectionPolicy SortOuter = SortSectionPolicy::Default; |
| 123 | SortSectionPolicy SortInner = SortSectionPolicy::Default; |
Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 124 | |
George Rimar | 8034d49 | 2016-09-17 07:31:49 +0000 | [diff] [blame] | 125 | // Input sections that matches at least one of SectionPatterns |
Rui Ueyama | 70efa2f | 2016-09-17 02:34:50 +0000 | [diff] [blame] | 126 | // will be associated with this InputSectionDescription. |
Rui Ueyama | d1d7cfc | 2016-09-20 00:02:06 +0000 | [diff] [blame^] | 127 | std::vector<SectionPattern> SectionPatterns; |
Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 128 | |
Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 129 | std::vector<InputSectionData *> Sections; |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 130 | }; |
| 131 | |
George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 132 | struct AssertCommand : BaseCommand { |
| 133 | AssertCommand(Expr E) : BaseCommand(AssertKind), Expression(E) {} |
| 134 | static bool classof(const BaseCommand *C); |
| 135 | Expr Expression; |
| 136 | }; |
| 137 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 138 | struct PhdrsCommand { |
| 139 | StringRef Name; |
| 140 | unsigned Type; |
| 141 | bool HasFilehdr; |
| 142 | bool HasPhdrs; |
Eugene Leviant | 865bf86 | 2016-07-21 10:43:25 +0000 | [diff] [blame] | 143 | unsigned Flags; |
Eugene Leviant | 56b21c8 | 2016-09-09 09:46:16 +0000 | [diff] [blame] | 144 | Expr LMAExpr; |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 145 | }; |
| 146 | |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 147 | class LinkerScriptBase { |
Rafael Espindola | 4d1e4d7 | 2016-09-08 14:11:08 +0000 | [diff] [blame] | 148 | protected: |
| 149 | ~LinkerScriptBase() = default; |
| 150 | |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 151 | public: |
| 152 | virtual uint64_t getOutputSectionAddress(StringRef Name) = 0; |
| 153 | virtual uint64_t getOutputSectionSize(StringRef Name) = 0; |
Eugene Leviant | 36fac7f | 2016-09-08 09:08:30 +0000 | [diff] [blame] | 154 | virtual uint64_t getOutputSectionAlign(StringRef Name) = 0; |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 155 | virtual uint64_t getHeaderSize() = 0; |
| 156 | virtual uint64_t getSymbolValue(StringRef S) = 0; |
| 157 | }; |
| 158 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 159 | // ScriptConfiguration holds linker script parse results. |
| 160 | struct ScriptConfiguration { |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 161 | // Used to assign addresses to sections. |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 162 | std::vector<std::unique_ptr<BaseCommand>> Commands; |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 163 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 164 | // Used to assign sections to headers. |
George Rimar | 70ce0a9 | 2016-07-20 15:09:10 +0000 | [diff] [blame] | 165 | std::vector<PhdrsCommand> PhdrsCommands; |
| 166 | |
Eugene Leviant | e05336ff | 2016-09-14 08:32:36 +0000 | [diff] [blame] | 167 | bool HasSections = false; |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 168 | |
Rui Ueyama | f9de0d6 | 2016-02-11 21:38:55 +0000 | [diff] [blame] | 169 | llvm::BumpPtrAllocator Alloc; |
Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 170 | |
| 171 | // List of section patterns specified with KEEP commands. They will |
| 172 | // be kept even if they are unused and --gc-sections is specified. |
George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 173 | std::vector<llvm::Regex *> KeptSections; |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 174 | }; |
| 175 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 176 | extern ScriptConfiguration *ScriptConfig; |
| 177 | |
| 178 | // This is a runner of the linker script. |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 179 | template <class ELFT> class LinkerScript final : public LinkerScriptBase { |
Rui Ueyama | 0b3868e | 2016-04-22 20:41:07 +0000 | [diff] [blame] | 180 | typedef typename ELFT::uint uintX_t; |
| 181 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 182 | public: |
Rui Ueyama | f34d0e0 | 2016-08-12 01:24:53 +0000 | [diff] [blame] | 183 | LinkerScript(); |
| 184 | ~LinkerScript(); |
Eugene Leviant | 20d0319 | 2016-09-16 15:30:47 +0000 | [diff] [blame] | 185 | void processCommands(OutputSectionFactory<ELFT> &Factory); |
Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 186 | void createSections(OutputSectionFactory<ELFT> &Factory); |
Rui Ueyama | a7f7884 | 2016-07-20 17:19:03 +0000 | [diff] [blame] | 187 | |
Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 188 | std::vector<PhdrEntry<ELFT>> createPhdrs(); |
Eugene Leviant | f9bc3bd | 2016-08-16 06:40:58 +0000 | [diff] [blame] | 189 | bool ignoreInterpSection(); |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 190 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 191 | ArrayRef<uint8_t> getFiller(StringRef Name); |
George Rimar | 8ceadb3 | 2016-08-17 07:44:19 +0000 | [diff] [blame] | 192 | Expr getLma(StringRef Name); |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 193 | bool shouldKeep(InputSectionBase<ELFT> *S); |
Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 194 | void assignOffsets(OutputSectionCommand *Cmd); |
Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 195 | void assignAddresses(); |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 196 | int compareSections(StringRef A, StringRef B); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 197 | bool hasPhdrsCommands(); |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 198 | uint64_t getOutputSectionAddress(StringRef Name) override; |
| 199 | uint64_t getOutputSectionSize(StringRef Name) override; |
Eugene Leviant | 36fac7f | 2016-09-08 09:08:30 +0000 | [diff] [blame] | 200 | uint64_t getOutputSectionAlign(StringRef Name) override; |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 201 | uint64_t getHeaderSize() override; |
| 202 | uint64_t getSymbolValue(StringRef S) override; |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 203 | |
Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 204 | std::vector<OutputSectionBase<ELFT> *> *OutputSections; |
| 205 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 206 | private: |
Rafael Espindola | e71a3f8a | 2016-09-16 20:34:02 +0000 | [diff] [blame] | 207 | void computeInputSections(InputSectionDescription *); |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 208 | |
Eugene Leviant | 20d0319 | 2016-09-16 15:30:47 +0000 | [diff] [blame] | 209 | void addSection(OutputSectionFactory<ELFT> &Factory, |
| 210 | InputSectionBase<ELFT> *Sec, StringRef Name); |
Rafael Espindola | 7bd3787 | 2016-09-12 16:05:16 +0000 | [diff] [blame] | 211 | void discard(ArrayRef<InputSectionBase<ELFT> *> V); |
Rui Ueyama | 48c3f1c | 2016-08-12 00:27:23 +0000 | [diff] [blame] | 212 | |
Rui Ueyama | 0b9ce6a | 2016-08-12 03:16:56 +0000 | [diff] [blame] | 213 | std::vector<InputSectionBase<ELFT> *> |
| 214 | createInputSectionList(OutputSectionCommand &Cmd); |
| 215 | |
Rui Ueyama | c998a8c | 2016-04-22 00:03:13 +0000 | [diff] [blame] | 216 | // "ScriptConfig" is a bit too long, so define a short name for it. |
| 217 | ScriptConfiguration &Opt = *ScriptConfig; |
| 218 | |
Rui Ueyama | c3e2a4b | 2016-04-21 20:30:00 +0000 | [diff] [blame] | 219 | int getSectionIndex(StringRef Name); |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 220 | std::vector<size_t> getPhdrIndices(StringRef SectionName); |
Rui Ueyama | 29c5a2a | 2016-07-26 00:27:36 +0000 | [diff] [blame] | 221 | size_t getPhdrIndex(StringRef PhdrName); |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 222 | |
Rui Ueyama | 0b3868e | 2016-04-22 20:41:07 +0000 | [diff] [blame] | 223 | uintX_t Dot; |
Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 224 | OutputSectionBase<ELFT> *CurOutSec = nullptr; |
| 225 | uintX_t ThreadBssOffset = 0; |
| 226 | void switchTo(OutputSectionBase<ELFT> *Sec); |
| 227 | void flush(); |
| 228 | void output(InputSection<ELFT> *Sec); |
| 229 | void process(BaseCommand &Base); |
| 230 | llvm::DenseSet<OutputSectionBase<ELFT> *> AlreadyOutputOS; |
| 231 | llvm::DenseSet<InputSectionData *> AlreadyOutputIS; |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 232 | }; |
| 233 | |
| 234 | // Variable template is a C++14 feature, so we can't template |
| 235 | // a global variable. Use a struct to workaround. |
| 236 | template <class ELFT> struct Script { static LinkerScript<ELFT> *X; }; |
| 237 | template <class ELFT> LinkerScript<ELFT> *Script<ELFT>::X; |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 238 | |
George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 239 | extern LinkerScriptBase *ScriptBase; |
| 240 | |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 241 | } // namespace elf |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 242 | } // namespace lld |
| 243 | |
| 244 | #endif |