Rafael Espindola | 9d06ab6 | 2015-09-22 00:01:39 +0000 | [diff] [blame] | 1 | //===- InputSection.h -------------------------------------------*- C++ -*-===// |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 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 | |
Rafael Espindola | 9d06ab6 | 2015-09-22 00:01:39 +0000 | [diff] [blame] | 10 | #ifndef LLD_ELF_INPUT_SECTION_H |
| 11 | #define LLD_ELF_INPUT_SECTION_H |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 12 | |
Rui Ueyama | c4aaed9 | 2015-10-22 18:49:53 +0000 | [diff] [blame] | 13 | #include "Config.h" |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 14 | #include "lld/Core/LLVM.h" |
Rui Ueyama | c00718f | 2016-02-23 03:34:37 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/TinyPtrVector.h" |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 16 | #include "llvm/Object/ELF.h" |
| 17 | |
| 18 | namespace lld { |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 19 | namespace elf { |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 20 | |
Rafael Espindola | 38c67a2 | 2016-04-15 14:41:56 +0000 | [diff] [blame] | 21 | class SymbolBody; |
| 22 | |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 23 | template <class ELFT> class ICF; |
Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 24 | template <class ELFT> class DefinedRegular; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 25 | template <class ELFT> class ObjectFile; |
Rafael Espindola | 832b93f | 2015-08-24 20:06:32 +0000 | [diff] [blame] | 26 | template <class ELFT> class OutputSection; |
Rui Ueyama | c7cc6ec | 2015-10-15 22:27:29 +0000 | [diff] [blame] | 27 | template <class ELFT> class OutputSectionBase; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 28 | |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 29 | enum RelExpr { |
| 30 | R_ABS, |
| 31 | R_GOT, |
Rafael Espindola | 3f5d634 | 2016-04-18 12:07:13 +0000 | [diff] [blame] | 32 | R_GOTONLY_PC, |
| 33 | R_GOTREL, |
Rafael Espindola | 58cd5db | 2016-04-19 22:46:03 +0000 | [diff] [blame] | 34 | R_GOT_OFF, |
Rafael Espindola | 3f5d634 | 2016-04-18 12:07:13 +0000 | [diff] [blame] | 35 | R_GOT_FROM_END, |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 36 | R_GOT_PAGE_PC, |
| 37 | R_GOT_PC, |
| 38 | R_MIPS_GOT, |
| 39 | R_MIPS_GOT_LOCAL, |
Rafael Espindola | 3f5d634 | 2016-04-18 12:07:13 +0000 | [diff] [blame] | 40 | R_NEG_TLS, |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 41 | R_PAGE_PC, |
| 42 | R_PC, |
| 43 | R_PLT, |
| 44 | R_PLT_PC, |
| 45 | R_PPC_OPD, |
| 46 | R_PPC_PLT_OPD, |
| 47 | R_PPC_TOC, |
| 48 | R_RELAX_TLS_GD_TO_IE, |
| 49 | R_RELAX_TLS_GD_TO_IE_PC, |
| 50 | R_RELAX_TLS_GD_TO_LE, |
| 51 | R_RELAX_TLS_IE_TO_LE, |
| 52 | R_RELAX_TLS_LD_TO_LE, |
| 53 | R_SIZE, |
| 54 | R_THUNK, |
Rafael Espindola | 3f5d634 | 2016-04-18 12:07:13 +0000 | [diff] [blame] | 55 | R_TLS, |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 56 | R_TLSGD, |
| 57 | R_TLSGD_PC, |
| 58 | R_TLSLD, |
| 59 | R_TLSLD_PC |
| 60 | }; |
| 61 | |
Rafael Espindola | c6b17bd | 2016-04-20 17:30:22 +0000 | [diff] [blame] | 62 | inline bool refersToGotEntry(RelExpr Expr) { |
| 63 | return Expr == R_GOT || Expr == R_GOT_OFF || Expr == R_MIPS_GOT || |
| 64 | Expr == R_MIPS_GOT_LOCAL || Expr == R_GOT_PAGE_PC || |
Rafael Espindola | a85efd9 | 2016-04-30 01:15:17 +0000 | [diff] [blame] | 65 | Expr == R_GOT_PC || Expr == R_GOT_FROM_END || Expr == R_TLSGD || |
| 66 | Expr == R_TLSGD_PC; |
Rafael Espindola | c6b17bd | 2016-04-20 17:30:22 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 69 | struct Relocation { |
| 70 | RelExpr Expr; |
| 71 | uint32_t Type; |
| 72 | uint64_t Offset; |
| 73 | uint64_t Addend; |
| 74 | SymbolBody *Sym; |
| 75 | }; |
| 76 | |
Rafael Espindola | 7167585 | 2015-09-22 00:16:19 +0000 | [diff] [blame] | 77 | // This corresponds to a section of an input file. |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 78 | template <class ELFT> class InputSectionBase { |
| 79 | protected: |
Rafael Espindola | 197d6a8 | 2016-04-22 16:39:59 +0000 | [diff] [blame] | 80 | typedef typename ELFT::Rel Elf_Rel; |
| 81 | typedef typename ELFT::Rela Elf_Rela; |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 82 | typedef typename ELFT::Shdr Elf_Shdr; |
| 83 | typedef typename ELFT::Sym Elf_Sym; |
| 84 | typedef typename ELFT::uint uintX_t; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 85 | const Elf_Shdr *Header; |
| 86 | |
| 87 | // The file this section is from. |
| 88 | ObjectFile<ELFT> *File; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 89 | |
| 90 | public: |
Simon Atanasyan | add74f3 | 2016-05-04 10:07:38 +0000 | [diff] [blame^] | 91 | enum Kind { Regular, EHFrame, Merge, MipsReginfo, MipsOptions }; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 92 | Kind SectionKind; |
| 93 | |
Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 94 | InputSectionBase() : Repl(this) {} |
| 95 | |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 96 | InputSectionBase(ObjectFile<ELFT> *File, const Elf_Shdr *Header, |
| 97 | Kind SectionKind); |
| 98 | OutputSectionBase<ELFT> *OutSec = nullptr; |
Rui Ueyama | 6a9ef85 | 2016-02-25 18:49:09 +0000 | [diff] [blame] | 99 | uint32_t Align; |
Rafael Espindola | 83b0dc6 | 2015-08-13 22:21:37 +0000 | [diff] [blame] | 100 | |
Rui Ueyama | c4aaed9 | 2015-10-22 18:49:53 +0000 | [diff] [blame] | 101 | // Used for garbage collection. |
Rui Ueyama | 6a9ef85 | 2016-02-25 18:49:09 +0000 | [diff] [blame] | 102 | bool Live; |
Rui Ueyama | c4aaed9 | 2015-10-22 18:49:53 +0000 | [diff] [blame] | 103 | |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 104 | // This pointer points to the "real" instance of this instance. |
| 105 | // Usually Repl == this. However, if ICF merges two sections, |
| 106 | // Repl pointer of one section points to another section. So, |
| 107 | // if you need to get a pointer to this instance, do not use |
| 108 | // this but instead this->Repl. |
| 109 | InputSectionBase<ELFT> *Repl; |
| 110 | |
Rafael Espindola | 7167585 | 2015-09-22 00:16:19 +0000 | [diff] [blame] | 111 | // Returns the size of this section (even if this is a common or BSS.) |
Simon Atanasyan | 13f6da1 | 2016-03-31 21:26:23 +0000 | [diff] [blame] | 112 | size_t getSize() const; |
Rafael Espindola | 83b0dc6 | 2015-08-13 22:21:37 +0000 | [diff] [blame] | 113 | |
Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 114 | static InputSectionBase<ELFT> Discarded; |
Rafael Espindola | 83b0dc6 | 2015-08-13 22:21:37 +0000 | [diff] [blame] | 115 | |
Rafael Espindola | 5d83ccd | 2015-08-13 19:18:30 +0000 | [diff] [blame] | 116 | StringRef getSectionName() const; |
Michael J. Spencer | 8039dae2 | 2015-07-29 00:30:10 +0000 | [diff] [blame] | 117 | const Elf_Shdr *getSectionHdr() const { return Header; } |
Rafael Espindola | e1901cc | 2015-09-24 15:11:50 +0000 | [diff] [blame] | 118 | ObjectFile<ELFT> *getFile() const { return File; } |
Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 119 | uintX_t getOffset(const DefinedRegular<ELFT> &Sym); |
Rafael Espindola | db9bf4d | 2015-11-11 16:50:37 +0000 | [diff] [blame] | 120 | |
| 121 | // Translate an offset in the input section to an offset in the output |
| 122 | // section. |
| 123 | uintX_t getOffset(uintX_t Offset); |
| 124 | |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 125 | ArrayRef<uint8_t> getSectionData() const; |
Rui Ueyama | 1250464 | 2015-10-27 21:51:13 +0000 | [diff] [blame] | 126 | |
Rafael Espindola | 22ef956 | 2016-04-13 01:40:19 +0000 | [diff] [blame] | 127 | void relocate(uint8_t *Buf, uint8_t *BufEnd); |
| 128 | std::vector<Relocation> Relocations; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 129 | }; |
| 130 | |
Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 131 | template <class ELFT> InputSectionBase<ELFT> InputSectionBase<ELFT>::Discarded; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 132 | |
Rui Ueyama | 5a32c76 | 2016-01-06 03:16:23 +0000 | [diff] [blame] | 133 | // Usually sections are copied to the output as atomic chunks of data, |
| 134 | // but some special types of sections are split into small pieces of data |
| 135 | // and each piece is copied to a different place in the output. |
| 136 | // This class represents such special sections. |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 137 | template <class ELFT> class SplitInputSection : public InputSectionBase<ELFT> { |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 138 | typedef typename ELFT::Shdr Elf_Shdr; |
| 139 | typedef typename ELFT::uint uintX_t; |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 140 | |
| 141 | public: |
| 142 | SplitInputSection(ObjectFile<ELFT> *File, const Elf_Shdr *Header, |
| 143 | typename InputSectionBase<ELFT>::Kind SectionKind); |
Rui Ueyama | 5a32c76 | 2016-01-06 03:16:23 +0000 | [diff] [blame] | 144 | |
| 145 | // For each piece of data, we maintain the offsets in the input section and |
| 146 | // in the output section. The latter may be -1 if it is not assigned yet. |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 147 | std::vector<std::pair<uintX_t, uintX_t>> Offsets; |
Rui Ueyama | 5a32c76 | 2016-01-06 03:16:23 +0000 | [diff] [blame] | 148 | |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 149 | std::pair<std::pair<uintX_t, uintX_t> *, uintX_t> |
| 150 | getRangeAndSize(uintX_t Offset); |
| 151 | }; |
| 152 | |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 153 | // This corresponds to a SHF_MERGE section of an input file. |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 154 | template <class ELFT> class MergeInputSection : public SplitInputSection<ELFT> { |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 155 | typedef typename ELFT::uint uintX_t; |
| 156 | typedef typename ELFT::Sym Elf_Sym; |
| 157 | typedef typename ELFT::Shdr Elf_Shdr; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 158 | |
| 159 | public: |
| 160 | MergeInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header); |
| 161 | static bool classof(const InputSectionBase<ELFT> *S); |
Rafael Espindola | f82ed2a | 2015-10-24 22:51:01 +0000 | [diff] [blame] | 162 | // Translate an offset in the input section to an offset in the output |
| 163 | // section. |
Rafael Espindola | 48225b4 | 2015-10-23 19:55:11 +0000 | [diff] [blame] | 164 | uintX_t getOffset(uintX_t Offset); |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 167 | // This corresponds to a .eh_frame section of an input file. |
| 168 | template <class ELFT> class EHInputSection : public SplitInputSection<ELFT> { |
| 169 | public: |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 170 | typedef typename ELFT::Shdr Elf_Shdr; |
| 171 | typedef typename ELFT::uint uintX_t; |
Rafael Espindola | 0c6a4f1 | 2015-11-11 19:54:14 +0000 | [diff] [blame] | 172 | EHInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header); |
| 173 | static bool classof(const InputSectionBase<ELFT> *S); |
| 174 | |
| 175 | // Translate an offset in the input section to an offset in the output |
| 176 | // section. |
| 177 | uintX_t getOffset(uintX_t Offset); |
| 178 | |
| 179 | // Relocation section that refer to this one. |
| 180 | const Elf_Shdr *RelocSection = nullptr; |
| 181 | }; |
| 182 | |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 183 | // This corresponds to a non SHF_MERGE section of an input file. |
| 184 | template <class ELFT> class InputSection : public InputSectionBase<ELFT> { |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 185 | friend ICF<ELFT>; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 186 | typedef InputSectionBase<ELFT> Base; |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 187 | typedef typename ELFT::Shdr Elf_Shdr; |
| 188 | typedef typename ELFT::Rela Elf_Rela; |
| 189 | typedef typename ELFT::Rel Elf_Rel; |
| 190 | typedef typename ELFT::Sym Elf_Sym; |
| 191 | typedef typename ELFT::uint uintX_t; |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 192 | |
| 193 | public: |
| 194 | InputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Header); |
| 195 | |
| 196 | // Write this section to a mmap'ed file, assuming Buf is pointing to |
| 197 | // beginning of the output section. |
| 198 | void writeTo(uint8_t *Buf); |
| 199 | |
Michael J. Spencer | 67bc8d6 | 2015-08-27 23:15:56 +0000 | [diff] [blame] | 200 | // Relocation sections that refer to this one. |
Rui Ueyama | c00718f | 2016-02-23 03:34:37 +0000 | [diff] [blame] | 201 | llvm::TinyPtrVector<const Elf_Shdr *> RelocSections; |
Michael J. Spencer | 67bc8d6 | 2015-08-27 23:15:56 +0000 | [diff] [blame] | 202 | |
Rui Ueyama | edffd91 | 2015-10-14 21:00:23 +0000 | [diff] [blame] | 203 | // The offset from beginning of the output sections this section was assigned |
| 204 | // to. The writer sets a value. |
Rui Ueyama | 55c3f89 | 2015-10-15 01:58:40 +0000 | [diff] [blame] | 205 | uint64_t OutSecOff = 0; |
Rui Ueyama | edffd91 | 2015-10-14 21:00:23 +0000 | [diff] [blame] | 206 | |
Rafael Espindola | c159c96 | 2015-10-19 21:00:02 +0000 | [diff] [blame] | 207 | static bool classof(const InputSectionBase<ELFT> *S); |
George Rimar | 58941ee | 2016-02-25 08:23:37 +0000 | [diff] [blame] | 208 | |
| 209 | InputSectionBase<ELFT> *getRelocatedSection(); |
| 210 | |
Simon Atanasyan | 13f6da1 | 2016-03-31 21:26:23 +0000 | [diff] [blame] | 211 | // Register thunk related to the symbol. When the section is written |
| 212 | // to a mmap'ed file, target is requested to write an actual thunk code. |
| 213 | // Now thunks is supported for MIPS target only. |
| 214 | void addThunk(SymbolBody &Body); |
| 215 | |
| 216 | // The offset of synthetic thunk code from beginning of this section. |
| 217 | uint64_t getThunkOff() const; |
| 218 | |
| 219 | // Size of chunk with thunks code. |
| 220 | uint64_t getThunksSize() const; |
| 221 | |
Rui Ueyama | 2b6fb80 | 2016-04-28 18:42:04 +0000 | [diff] [blame] | 222 | template <class RelTy> |
| 223 | void relocateNonAlloc(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels); |
| 224 | |
George Rimar | 58941ee | 2016-02-25 08:23:37 +0000 | [diff] [blame] | 225 | private: |
Rui Ueyama | fc467e7 | 2016-03-13 05:06:50 +0000 | [diff] [blame] | 226 | template <class RelTy> |
Rafael Espindola | 0f7ccc3 | 2016-04-05 14:47:28 +0000 | [diff] [blame] | 227 | void copyRelocations(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 228 | |
| 229 | // Called by ICF to merge two input sections. |
| 230 | void replace(InputSection<ELFT> *Other); |
| 231 | |
| 232 | // Used by ICF. |
| 233 | uint64_t GroupId = 0; |
Simon Atanasyan | 13f6da1 | 2016-03-31 21:26:23 +0000 | [diff] [blame] | 234 | |
| 235 | llvm::TinyPtrVector<const SymbolBody *> Thunks; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 236 | }; |
| 237 | |
Simon Atanasyan | 1d7df40 | 2015-12-20 10:57:34 +0000 | [diff] [blame] | 238 | // MIPS .reginfo section provides information on the registers used by the code |
| 239 | // in the object file. Linker should collect this information and write a single |
| 240 | // .reginfo section in the output file. The output section contains a union of |
| 241 | // used registers masks taken from input .reginfo sections and final value |
| 242 | // of the `_gp` symbol. For details: Chapter 4 / "Register Information" at |
| 243 | // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf |
| 244 | template <class ELFT> |
| 245 | class MipsReginfoInputSection : public InputSectionBase<ELFT> { |
Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 246 | typedef typename ELFT::Shdr Elf_Shdr; |
Simon Atanasyan | 1d7df40 | 2015-12-20 10:57:34 +0000 | [diff] [blame] | 247 | |
| 248 | public: |
Rui Ueyama | 70eed36 | 2016-01-06 22:42:43 +0000 | [diff] [blame] | 249 | MipsReginfoInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Hdr); |
Simon Atanasyan | 1d7df40 | 2015-12-20 10:57:34 +0000 | [diff] [blame] | 250 | static bool classof(const InputSectionBase<ELFT> *S); |
Rui Ueyama | 70eed36 | 2016-01-06 22:42:43 +0000 | [diff] [blame] | 251 | |
Simon Atanasyan | add74f3 | 2016-05-04 10:07:38 +0000 | [diff] [blame^] | 252 | const llvm::object::Elf_Mips_RegInfo<ELFT> *Reginfo = nullptr; |
| 253 | }; |
| 254 | |
| 255 | template <class ELFT> |
| 256 | class MipsOptionsInputSection : public InputSectionBase<ELFT> { |
| 257 | typedef typename ELFT::Shdr Elf_Shdr; |
| 258 | |
| 259 | public: |
| 260 | MipsOptionsInputSection(ObjectFile<ELFT> *F, const Elf_Shdr *Hdr); |
| 261 | static bool classof(const InputSectionBase<ELFT> *S); |
| 262 | |
| 263 | const llvm::object::Elf_Mips_RegInfo<ELFT> *Reginfo = nullptr; |
Simon Atanasyan | 1d7df40 | 2015-12-20 10:57:34 +0000 | [diff] [blame] | 264 | }; |
| 265 | |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 266 | } // namespace elf |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 267 | } // namespace lld |
| 268 | |
| 269 | #endif |