| 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" | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ArrayRef.h" | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DenseSet.h" | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/StringRef.h" | 
| Rui Ueyama | f9de0d6 | 2016-02-11 21:38:55 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryBuffer.h" | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 21 | #include <cstddef> | 
|  | 22 | #include <cstdint> | 
| Rui Ueyama | 8c6a5aa | 2016-11-05 22:37:59 +0000 | [diff] [blame] | 23 | #include <functional> | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 24 | #include <memory> | 
|  | 25 | #include <vector> | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 26 |  | 
|  | 27 | namespace lld { | 
| Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 28 | namespace elf { | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 29 |  | 
| Rafael Espindola | e7553e4 | 2016-08-31 13:28:33 +0000 | [diff] [blame] | 30 | class DefinedCommon; | 
| George Rimar | dbb76db | 2016-08-18 13:00:49 +0000 | [diff] [blame] | 31 | class ScriptParser; | 
| Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 32 | class SymbolBody; | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 33 | template <class ELFT> class InputSectionBase; | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 34 | template <class ELFT> class InputSection; | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 35 | class OutputSectionBase; | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 36 | template <class ELFT> class OutputSectionFactory; | 
| Eugene Leviant | 97403d1 | 2016-09-01 09:55:57 +0000 | [diff] [blame] | 37 | class InputSectionData; | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 38 |  | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 39 | // This represents an expression in the linker script. | 
|  | 40 | // ScriptParser::readExpr reads an expression and returns an Expr. | 
|  | 41 | // Later, we evaluate the expression by calling the function | 
|  | 42 | // with the value of special context variable ".". | 
| Rafael Espindola | f661393 | 2016-10-31 17:43:38 +0000 | [diff] [blame] | 43 | struct Expr { | 
|  | 44 | std::function<uint64_t(uint64_t)> Val; | 
| Rafael Espindola | 2f831dc | 2016-10-31 19:56:37 +0000 | [diff] [blame] | 45 | std::function<bool()> IsAbsolute; | 
| Rafael Espindola | f661393 | 2016-10-31 17:43:38 +0000 | [diff] [blame] | 46 | uint64_t operator()(uint64_t Dot) const { return Val(Dot); } | 
|  | 47 | operator bool() const { return (bool)Val; } | 
|  | 48 |  | 
| Rafael Espindola | b0de56b | 2016-10-31 21:36:23 +0000 | [diff] [blame] | 49 | Expr(std::function<uint64_t(uint64_t)> Val, std::function<bool()> IsAbsolute) | 
| Rafael Espindola | 2f831dc | 2016-10-31 19:56:37 +0000 | [diff] [blame] | 50 | : Val(Val), IsAbsolute(IsAbsolute) {} | 
| Rafael Espindola | b0de56b | 2016-10-31 21:36:23 +0000 | [diff] [blame] | 51 | template <typename T> Expr(T V) : Expr(V, []() { return true; }) {} | 
| Rafael Espindola | f661393 | 2016-10-31 17:43:38 +0000 | [diff] [blame] | 52 | Expr() : Expr(nullptr) {} | 
|  | 53 | }; | 
| Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 54 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 55 | // Parses a linker script. Calling this function updates | 
|  | 56 | // Config and ScriptConfig. | 
|  | 57 | void readLinkerScript(MemoryBufferRef MB); | 
|  | 58 |  | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 59 | // Parses a version script. | 
| George Rimar | 20b6598 | 2016-08-31 09:08:26 +0000 | [diff] [blame] | 60 | void readVersionScript(MemoryBufferRef MB); | 
|  | 61 |  | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 62 | // This enum is used to implement linker script SECTIONS command. | 
|  | 63 | // https://sourceware.org/binutils/docs/ld/SECTIONS.html#SECTIONS | 
|  | 64 | enum SectionsCommandKind { | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 65 | AssignmentKind, // . = expr or <sym> = expr | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 66 | OutputSectionKind, | 
| George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 67 | InputSectionKind, | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 68 | AssertKind,   // ASSERT(expr) | 
|  | 69 | BytesDataKind // BYTE(expr), SHORT(expr), LONG(expr) or QUAD(expr) | 
| Rui Ueyama | 1ebc8ed | 2016-02-12 21:47:28 +0000 | [diff] [blame] | 70 | }; | 
|  | 71 |  | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 72 | struct BaseCommand { | 
|  | 73 | BaseCommand(int K) : Kind(K) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 74 |  | 
|  | 75 | virtual ~BaseCommand() = default; | 
|  | 76 |  | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 77 | int Kind; | 
|  | 78 | }; | 
|  | 79 |  | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 80 | // This represents ". = <expr>" or "<symbol> = <expr>". | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 81 | struct SymbolAssignment : BaseCommand { | 
| Rafael Espindola | f661393 | 2016-10-31 17:43:38 +0000 | [diff] [blame] | 82 | SymbolAssignment(StringRef Name, Expr E) | 
|  | 83 | : BaseCommand(AssignmentKind), Name(Name), Expression(E) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 84 |  | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 85 | static bool classof(const BaseCommand *C); | 
| Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 86 |  | 
|  | 87 | // The LHS of an expression. Name is either a symbol name or ".". | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 88 | StringRef Name; | 
| Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 89 | SymbolBody *Sym = nullptr; | 
|  | 90 |  | 
|  | 91 | // The RHS of an expression. | 
| Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 92 | Expr Expression; | 
| Rui Ueyama | 2020424 | 2016-07-29 05:52:33 +0000 | [diff] [blame] | 93 |  | 
|  | 94 | // Command attributes for PROVIDE, HIDDEN and PROVIDE_HIDDEN. | 
| Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 95 | bool Provide = false; | 
| Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 96 | bool Hidden = false; | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 97 | }; | 
|  | 98 |  | 
| Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 99 | // Linker scripts allow additional constraints to be put on ouput sections. | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 100 | // If an output section is marked as ONLY_IF_RO, the section is created | 
|  | 101 | // only if its input sections are read-only. Likewise, an output section | 
|  | 102 | // with ONLY_IF_RW is created if all input sections are RW. | 
| Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 103 | enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite }; | 
| Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 104 |  | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 105 | struct OutputSectionCommand : BaseCommand { | 
|  | 106 | OutputSectionCommand(StringRef Name) | 
|  | 107 | : BaseCommand(OutputSectionKind), Name(Name) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 108 |  | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 109 | static bool classof(const BaseCommand *C); | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 110 |  | 
| Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 111 | StringRef Name; | 
| George Rimar | 58e5c4d | 2016-07-25 08:29:46 +0000 | [diff] [blame] | 112 | Expr AddrExpr; | 
| George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 113 | Expr AlignExpr; | 
| Eugene Leviant | b71d6f7 | 2016-10-06 09:39:28 +0000 | [diff] [blame] | 114 | Expr LMAExpr; | 
| George Rimar | db24d9c | 2016-08-19 15:18:23 +0000 | [diff] [blame] | 115 | Expr SubalignExpr; | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 116 | std::vector<std::unique_ptr<BaseCommand>> Commands; | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 117 | std::vector<StringRef> Phdrs; | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 118 | std::vector<uint8_t> Filler; | 
| Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 119 | ConstraintKind Constraint = ConstraintKind::NoConstraint; | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 120 | }; | 
|  | 121 |  | 
| George Rimar | 8034d49 | 2016-09-17 07:31:49 +0000 | [diff] [blame] | 122 | // This struct represents one section match pattern in SECTIONS() command. | 
| Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 123 | // It can optionally have negative match pattern for EXCLUDED_FILE command. | 
| George Rimar | 07171f2 | 2016-09-21 15:56:44 +0000 | [diff] [blame] | 124 | // Also it may be surrounded with SORT() command, so contains sorting rules. | 
| Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 125 | struct SectionPattern { | 
| Rui Ueyama | f91282e | 2016-11-03 17:57:38 +0000 | [diff] [blame] | 126 | SectionPattern(StringMatcher &&Pat1, StringMatcher &&Pat2) | 
|  | 127 | : ExcludedFilePat(Pat1), SectionPat(Pat2) {} | 
| Rui Ueyama | d1d7cfc | 2016-09-20 00:02:06 +0000 | [diff] [blame] | 128 |  | 
| Rui Ueyama | f91282e | 2016-11-03 17:57:38 +0000 | [diff] [blame] | 129 | StringMatcher ExcludedFilePat; | 
|  | 130 | StringMatcher SectionPat; | 
| George Rimar | 07171f2 | 2016-09-21 15:56:44 +0000 | [diff] [blame] | 131 | SortSectionPolicy SortOuter; | 
|  | 132 | SortSectionPolicy SortInner; | 
| Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 133 | }; | 
|  | 134 |  | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 135 | struct InputSectionDescription : BaseCommand { | 
| George Rimar | c91930a | 2016-09-02 21:17:20 +0000 | [diff] [blame] | 136 | InputSectionDescription(StringRef FilePattern) | 
| Rui Ueyama | f91282e | 2016-11-03 17:57:38 +0000 | [diff] [blame] | 137 | : BaseCommand(InputSectionKind), FilePat({FilePattern}) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 138 |  | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 139 | static bool classof(const BaseCommand *C); | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 140 |  | 
| Rui Ueyama | f91282e | 2016-11-03 17:57:38 +0000 | [diff] [blame] | 141 | StringMatcher FilePat; | 
| Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 142 |  | 
| George Rimar | 8034d49 | 2016-09-17 07:31:49 +0000 | [diff] [blame] | 143 | // Input sections that matches at least one of SectionPatterns | 
| Rui Ueyama | 70efa2f | 2016-09-17 02:34:50 +0000 | [diff] [blame] | 144 | // will be associated with this InputSectionDescription. | 
| Rui Ueyama | d1d7cfc | 2016-09-20 00:02:06 +0000 | [diff] [blame] | 145 | std::vector<SectionPattern> SectionPatterns; | 
| Rui Ueyama | 4dc07be | 2016-09-17 02:23:40 +0000 | [diff] [blame] | 146 |  | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 147 | std::vector<InputSectionData *> Sections; | 
| George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 148 | }; | 
|  | 149 |  | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 150 | // Represents an ASSERT(). | 
| George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 151 | struct AssertCommand : BaseCommand { | 
|  | 152 | AssertCommand(Expr E) : BaseCommand(AssertKind), Expression(E) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 153 |  | 
| George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 154 | static bool classof(const BaseCommand *C); | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 155 |  | 
| George Rimar | eefa758 | 2016-08-04 09:29:31 +0000 | [diff] [blame] | 156 | Expr Expression; | 
|  | 157 | }; | 
|  | 158 |  | 
| Rui Ueyama | b04af13 | 2016-10-13 23:08:33 +0000 | [diff] [blame] | 159 | // Represents BYTE(), SHORT(), LONG(), or QUAD(). | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 160 | struct BytesDataCommand : BaseCommand { | 
|  | 161 | BytesDataCommand(uint64_t Data, unsigned Size) | 
|  | 162 | : BaseCommand(BytesDataKind), Data(Data), Size(Size) {} | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 163 |  | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 164 | static bool classof(const BaseCommand *C); | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 165 |  | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 166 | uint64_t Data; | 
|  | 167 | unsigned Offset; | 
|  | 168 | unsigned Size; | 
|  | 169 | }; | 
|  | 170 |  | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 171 | struct PhdrsCommand { | 
|  | 172 | StringRef Name; | 
|  | 173 | unsigned Type; | 
|  | 174 | bool HasFilehdr; | 
|  | 175 | bool HasPhdrs; | 
| Eugene Leviant | 865bf86 | 2016-07-21 10:43:25 +0000 | [diff] [blame] | 176 | unsigned Flags; | 
| Eugene Leviant | 56b21c8 | 2016-09-09 09:46:16 +0000 | [diff] [blame] | 177 | Expr LMAExpr; | 
| George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 178 | }; | 
|  | 179 |  | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 180 | class LinkerScriptBase { | 
| Rafael Espindola | 4d1e4d7 | 2016-09-08 14:11:08 +0000 | [diff] [blame] | 181 | protected: | 
|  | 182 | ~LinkerScriptBase() = default; | 
|  | 183 |  | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 184 | public: | 
|  | 185 | virtual uint64_t getOutputSectionAddress(StringRef Name) = 0; | 
|  | 186 | virtual uint64_t getOutputSectionSize(StringRef Name) = 0; | 
| Eugene Leviant | 36fac7f | 2016-09-08 09:08:30 +0000 | [diff] [blame] | 187 | virtual uint64_t getOutputSectionAlign(StringRef Name) = 0; | 
| Eugene Leviant | b71d6f7 | 2016-10-06 09:39:28 +0000 | [diff] [blame] | 188 | virtual uint64_t getOutputSectionLMA(StringRef Name) = 0; | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 189 | virtual uint64_t getHeaderSize() = 0; | 
|  | 190 | virtual uint64_t getSymbolValue(StringRef S) = 0; | 
| George Rimar | f34f45f | 2016-09-23 13:17:23 +0000 | [diff] [blame] | 191 | virtual bool isDefined(StringRef S) = 0; | 
| Rafael Espindola | 2f831dc | 2016-10-31 19:56:37 +0000 | [diff] [blame] | 192 | virtual bool isAbsolute(StringRef S) = 0; | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 193 | }; | 
|  | 194 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 195 | // ScriptConfiguration holds linker script parse results. | 
|  | 196 | struct ScriptConfiguration { | 
| George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 197 | // Used to assign addresses to sections. | 
| George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 198 | std::vector<std::unique_ptr<BaseCommand>> Commands; | 
| George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 199 |  | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 200 | // Used to assign sections to headers. | 
| George Rimar | 70ce0a9 | 2016-07-20 15:09:10 +0000 | [diff] [blame] | 201 | std::vector<PhdrsCommand> PhdrsCommands; | 
|  | 202 |  | 
| Eugene Leviant | e05336ff | 2016-09-14 08:32:36 +0000 | [diff] [blame] | 203 | bool HasSections = false; | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 204 |  | 
| Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 205 | // List of section patterns specified with KEEP commands. They will | 
|  | 206 | // be kept even if they are unused and --gc-sections is specified. | 
| Eugene Leviant | cf43f17 | 2016-10-05 09:36:59 +0000 | [diff] [blame] | 207 | std::vector<InputSectionDescription *> KeptSections; | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 208 | }; | 
|  | 209 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 210 | extern ScriptConfiguration *ScriptConfig; | 
|  | 211 |  | 
|  | 212 | // This is a runner of the linker script. | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 213 | template <class ELFT> class LinkerScript final : public LinkerScriptBase { | 
| Rui Ueyama | 0b3868e | 2016-04-22 20:41:07 +0000 | [diff] [blame] | 214 | typedef typename ELFT::uint uintX_t; | 
|  | 215 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 216 | public: | 
| Rui Ueyama | f34d0e0 | 2016-08-12 01:24:53 +0000 | [diff] [blame] | 217 | LinkerScript(); | 
|  | 218 | ~LinkerScript(); | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 219 |  | 
| Eugene Leviant | 20d0319 | 2016-09-16 15:30:47 +0000 | [diff] [blame] | 220 | void processCommands(OutputSectionFactory<ELFT> &Factory); | 
| Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 221 | void createSections(OutputSectionFactory<ELFT> &Factory); | 
| Rafael Espindola | 07fe612 | 2016-11-14 14:23:35 +0000 | [diff] [blame] | 222 | void removeEmptyCommands(); | 
| Rafael Espindola | 9546fff | 2016-09-22 14:40:50 +0000 | [diff] [blame] | 223 | void adjustSectionsBeforeSorting(); | 
| Rafael Espindola | f7a1744 | 2016-11-14 15:39:38 +0000 | [diff] [blame^] | 224 | void adjustSectionsAfterSorting(); | 
| Rui Ueyama | a7f7884 | 2016-07-20 17:19:03 +0000 | [diff] [blame] | 225 |  | 
| Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 226 | std::vector<PhdrEntry<ELFT>> createPhdrs(); | 
| Eugene Leviant | f9bc3bd | 2016-08-16 06:40:58 +0000 | [diff] [blame] | 227 | bool ignoreInterpSection(); | 
| Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 228 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 229 | ArrayRef<uint8_t> getFiller(StringRef Name); | 
| George Rimar | e38cbab | 2016-09-26 19:22:50 +0000 | [diff] [blame] | 230 | void writeDataBytes(StringRef Name, uint8_t *Buf); | 
| Eugene Leviant | b71d6f7 | 2016-10-06 09:39:28 +0000 | [diff] [blame] | 231 | bool hasLMA(StringRef Name); | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 232 | bool shouldKeep(InputSectionBase<ELFT> *S); | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 233 | void assignOffsets(OutputSectionCommand *Cmd); | 
| Rafael Espindola | 337f903 | 2016-11-14 14:13:32 +0000 | [diff] [blame] | 234 | void placeOrphanSections(); | 
| Rafael Espindola | 6d91fce | 2016-09-29 18:50:34 +0000 | [diff] [blame] | 235 | void assignAddresses(std::vector<PhdrEntry<ELFT>> &Phdrs); | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 236 | bool hasPhdrsCommands(); | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 237 | uint64_t getOutputSectionAddress(StringRef Name) override; | 
|  | 238 | uint64_t getOutputSectionSize(StringRef Name) override; | 
| Eugene Leviant | 36fac7f | 2016-09-08 09:08:30 +0000 | [diff] [blame] | 239 | uint64_t getOutputSectionAlign(StringRef Name) override; | 
| Eugene Leviant | b71d6f7 | 2016-10-06 09:39:28 +0000 | [diff] [blame] | 240 | uint64_t getOutputSectionLMA(StringRef Name) override; | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 241 | uint64_t getHeaderSize() override; | 
|  | 242 | uint64_t getSymbolValue(StringRef S) override; | 
| George Rimar | f34f45f | 2016-09-23 13:17:23 +0000 | [diff] [blame] | 243 | bool isDefined(StringRef S) override; | 
| Rafael Espindola | 2f831dc | 2016-10-31 19:56:37 +0000 | [diff] [blame] | 244 | bool isAbsolute(StringRef S) override; | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 245 |  | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 246 | std::vector<OutputSectionBase *> *OutputSections; | 
| Rafael Espindola | a4b41dc | 2016-08-04 12:13:05 +0000 | [diff] [blame] | 247 |  | 
| Rafael Espindola | b6b8f6c | 2016-09-20 22:43:15 +0000 | [diff] [blame] | 248 | int getSectionIndex(StringRef Name); | 
|  | 249 |  | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 250 | private: | 
| Rafael Espindola | e71a3f8a | 2016-09-16 20:34:02 +0000 | [diff] [blame] | 251 | void computeInputSections(InputSectionDescription *); | 
| Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 252 |  | 
| Eugene Leviant | 20d0319 | 2016-09-16 15:30:47 +0000 | [diff] [blame] | 253 | void addSection(OutputSectionFactory<ELFT> &Factory, | 
|  | 254 | InputSectionBase<ELFT> *Sec, StringRef Name); | 
| Rafael Espindola | 7bd3787 | 2016-09-12 16:05:16 +0000 | [diff] [blame] | 255 | void discard(ArrayRef<InputSectionBase<ELFT> *> V); | 
| Rui Ueyama | 48c3f1c | 2016-08-12 00:27:23 +0000 | [diff] [blame] | 256 |  | 
| Rui Ueyama | 0b9ce6a | 2016-08-12 03:16:56 +0000 | [diff] [blame] | 257 | std::vector<InputSectionBase<ELFT> *> | 
|  | 258 | createInputSectionList(OutputSectionCommand &Cmd); | 
|  | 259 |  | 
| Rui Ueyama | c998a8c | 2016-04-22 00:03:13 +0000 | [diff] [blame] | 260 | // "ScriptConfig" is a bit too long, so define a short name for it. | 
|  | 261 | ScriptConfiguration &Opt = *ScriptConfig; | 
|  | 262 |  | 
| Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 263 | std::vector<size_t> getPhdrIndices(StringRef SectionName); | 
| Rui Ueyama | 29c5a2a | 2016-07-26 00:27:36 +0000 | [diff] [blame] | 264 | size_t getPhdrIndex(StringRef PhdrName); | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 265 |  | 
| Rui Ueyama | 0b3868e | 2016-04-22 20:41:07 +0000 | [diff] [blame] | 266 | uintX_t Dot; | 
| Eugene Leviant | b71d6f7 | 2016-10-06 09:39:28 +0000 | [diff] [blame] | 267 | uintX_t LMAOffset = 0; | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 268 | OutputSectionBase *CurOutSec = nullptr; | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 269 | uintX_t ThreadBssOffset = 0; | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 270 | void switchTo(OutputSectionBase *Sec); | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 271 | void flush(); | 
|  | 272 | void output(InputSection<ELFT> *Sec); | 
|  | 273 | void process(BaseCommand &Base); | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 274 | llvm::DenseSet<OutputSectionBase *> AlreadyOutputOS; | 
| Rafael Espindola | d319079 | 2016-09-16 15:10:23 +0000 | [diff] [blame] | 275 | llvm::DenseSet<InputSectionData *> AlreadyOutputIS; | 
| Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 276 | }; | 
|  | 277 |  | 
|  | 278 | // Variable template is a C++14 feature, so we can't template | 
|  | 279 | // a global variable. Use a struct to workaround. | 
|  | 280 | template <class ELFT> struct Script { static LinkerScript<ELFT> *X; }; | 
|  | 281 | template <class ELFT> LinkerScript<ELFT> *Script<ELFT>::X; | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 282 |  | 
| George Rimar | 884e786 | 2016-09-08 08:19:13 +0000 | [diff] [blame] | 283 | extern LinkerScriptBase *ScriptBase; | 
|  | 284 |  | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 285 | } // end namespace elf | 
|  | 286 | } // end namespace lld | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 287 |  | 
| Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 288 | #endif // LLD_ELF_LINKER_SCRIPT_H |