[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lld / ELF / InputFiles.h
blob41c2ba4e307b36bb5c6e00342f4e896efc88ff45
1 //===- InputFiles.h ---------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLD_ELF_INPUT_FILES_H
10 #define LLD_ELF_INPUT_FILES_H
12 #include "Config.h"
13 #include "Symbols.h"
14 #include "lld/Common/ErrorHandler.h"
15 #include "lld/Common/LLVM.h"
16 #include "lld/Common/Reproduce.h"
17 #include "llvm/ADT/DenseSet.h"
18 #include "llvm/BinaryFormat/Magic.h"
19 #include "llvm/Object/ELF.h"
20 #include "llvm/Support/MemoryBufferRef.h"
21 #include "llvm/Support/Threading.h"
23 namespace llvm {
24 struct DILineInfo;
25 class TarWriter;
26 namespace lto {
27 class InputFile;
29 } // namespace llvm
31 namespace lld {
32 class DWARFCache;
34 // Returns "<internal>", "foo.a(bar.o)" or "baz.o".
35 std::string toString(const elf::InputFile *f);
37 namespace elf {
39 class InputSection;
40 class Symbol;
42 // If --reproduce is specified, all input files are written to this tar archive.
43 extern std::unique_ptr<llvm::TarWriter> tar;
45 // Opens a given file.
46 std::optional<MemoryBufferRef> readFile(StringRef path);
48 // Add symbols in File to the symbol table.
49 void parseFile(InputFile *file);
51 void parseArmCMSEImportLib(InputFile *file);
53 // The root class of input files.
54 class InputFile {
55 protected:
56 std::unique_ptr<Symbol *[]> symbols;
57 uint32_t numSymbols = 0;
58 SmallVector<InputSectionBase *, 0> sections;
60 public:
61 enum Kind : uint8_t {
62 ObjKind,
63 SharedKind,
64 BitcodeKind,
65 BinaryKind,
68 Kind kind() const { return fileKind; }
70 bool isElf() const {
71 Kind k = kind();
72 return k == ObjKind || k == SharedKind;
75 StringRef getName() const { return mb.getBufferIdentifier(); }
76 MemoryBufferRef mb;
78 // Returns sections. It is a runtime error to call this function
79 // on files that don't have the notion of sections.
80 ArrayRef<InputSectionBase *> getSections() const {
81 assert(fileKind == ObjKind || fileKind == BinaryKind);
82 return sections;
85 // Returns object file symbols. It is a runtime error to call this
86 // function on files of other types.
87 ArrayRef<Symbol *> getSymbols() const {
88 assert(fileKind == BinaryKind || fileKind == ObjKind ||
89 fileKind == BitcodeKind);
90 return {symbols.get(), numSymbols};
93 MutableArrayRef<Symbol *> getMutableSymbols() {
94 assert(fileKind == BinaryKind || fileKind == ObjKind ||
95 fileKind == BitcodeKind);
96 return {symbols.get(), numSymbols};
99 // Get filename to use for linker script processing.
100 StringRef getNameForScript() const;
102 // Check if a non-common symbol should be extracted to override a common
103 // definition.
104 bool shouldExtractForCommon(StringRef name);
106 // .got2 in the current file. This is used by PPC32 -fPIC/-fPIE to compute
107 // offsets in PLT call stubs.
108 InputSection *ppc32Got2 = nullptr;
110 // Index of MIPS GOT built for this file.
111 uint32_t mipsGotIndex = -1;
113 // groupId is used for --warn-backrefs which is an optional error
114 // checking feature. All files within the same --{start,end}-group or
115 // --{start,end}-lib get the same group ID. Otherwise, each file gets a new
116 // group ID. For more info, see checkDependency() in SymbolTable.cpp.
117 uint32_t groupId;
118 static bool isInGroup;
119 static uint32_t nextGroupId;
121 // If this is an architecture-specific file, the following members
122 // have ELF type (i.e. ELF{32,64}{LE,BE}) and target machine type.
123 uint16_t emachine = llvm::ELF::EM_NONE;
124 const Kind fileKind;
125 ELFKind ekind = ELFNoneKind;
126 uint8_t osabi = 0;
127 uint8_t abiVersion = 0;
129 // True if this is a relocatable object file/bitcode file between --start-lib
130 // and --end-lib.
131 bool lazy = false;
133 // True if this is an argument for --just-symbols. Usually false.
134 bool justSymbols = false;
136 std::string getSrcMsg(const Symbol &sym, InputSectionBase &sec,
137 uint64_t offset);
139 // On PPC64 we need to keep track of which files contain small code model
140 // relocations that access the .toc section. To minimize the chance of a
141 // relocation overflow, files that do contain said relocations should have
142 // their .toc sections sorted closer to the .got section than files that do
143 // not contain any small code model relocations. Thats because the toc-pointer
144 // is defined to point at .got + 0x8000 and the instructions used with small
145 // code model relocations support immediates in the range [-0x8000, 0x7FFC],
146 // making the addressable range relative to the toc pointer
147 // [.got, .got + 0xFFFC].
148 bool ppc64SmallCodeModelTocRelocs = false;
150 // True if the file has TLSGD/TLSLD GOT relocations without R_PPC64_TLSGD or
151 // R_PPC64_TLSLD. Disable TLS relaxation to avoid bad code generation.
152 bool ppc64DisableTLSRelax = false;
154 protected:
155 InputFile(Kind k, MemoryBufferRef m);
157 public:
158 // If not empty, this stores the name of the archive containing this file.
159 // We use this string for creating error messages.
160 SmallString<0> archiveName;
161 // Cache for toString(). Only toString() should use this member.
162 mutable SmallString<0> toStringCache;
164 private:
165 // Cache for getNameForScript().
166 mutable SmallString<0> nameForScriptCache;
169 class ELFFileBase : public InputFile {
170 public:
171 ELFFileBase(Kind k, ELFKind ekind, MemoryBufferRef m);
172 static bool classof(const InputFile *f) { return f->isElf(); }
174 void init();
175 template <typename ELFT> llvm::object::ELFFile<ELFT> getObj() const {
176 return check(llvm::object::ELFFile<ELFT>::create(mb.getBuffer()));
179 StringRef getStringTable() const { return stringTable; }
181 ArrayRef<Symbol *> getLocalSymbols() {
182 if (numSymbols == 0)
183 return {};
184 return llvm::ArrayRef(symbols.get() + 1, firstGlobal - 1);
186 ArrayRef<Symbol *> getGlobalSymbols() {
187 return llvm::ArrayRef(symbols.get() + firstGlobal,
188 numSymbols - firstGlobal);
190 MutableArrayRef<Symbol *> getMutableGlobalSymbols() {
191 return llvm::MutableArrayRef(symbols.get() + firstGlobal,
192 numSymbols - firstGlobal);
195 template <typename ELFT> typename ELFT::ShdrRange getELFShdrs() const {
196 return typename ELFT::ShdrRange(
197 reinterpret_cast<const typename ELFT::Shdr *>(elfShdrs), numELFShdrs);
199 template <typename ELFT> typename ELFT::SymRange getELFSyms() const {
200 return typename ELFT::SymRange(
201 reinterpret_cast<const typename ELFT::Sym *>(elfSyms), numELFSyms);
203 template <typename ELFT> typename ELFT::SymRange getGlobalELFSyms() const {
204 return getELFSyms<ELFT>().slice(firstGlobal);
207 protected:
208 // Initializes this class's member variables.
209 template <typename ELFT> void init(InputFile::Kind k);
211 StringRef stringTable;
212 const void *elfShdrs = nullptr;
213 const void *elfSyms = nullptr;
214 uint32_t numELFShdrs = 0;
215 uint32_t numELFSyms = 0;
216 uint32_t firstGlobal = 0;
218 public:
219 uint32_t andFeatures = 0;
220 bool hasCommonSyms = false;
223 // .o file.
224 template <class ELFT> class ObjFile : public ELFFileBase {
225 LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
227 public:
228 static bool classof(const InputFile *f) { return f->kind() == ObjKind; }
230 llvm::object::ELFFile<ELFT> getObj() const {
231 return this->ELFFileBase::getObj<ELFT>();
234 ObjFile(ELFKind ekind, MemoryBufferRef m, StringRef archiveName)
235 : ELFFileBase(ObjKind, ekind, m) {
236 this->archiveName = archiveName;
239 void parse(bool ignoreComdats = false);
240 void parseLazy();
242 StringRef getShtGroupSignature(ArrayRef<Elf_Shdr> sections,
243 const Elf_Shdr &sec);
245 Symbol &getSymbol(uint32_t symbolIndex) const {
246 if (symbolIndex >= numSymbols)
247 fatal(toString(this) + ": invalid symbol index");
248 return *this->symbols[symbolIndex];
251 uint32_t getSectionIndex(const Elf_Sym &sym) const;
253 template <typename RelT> Symbol &getRelocTargetSym(const RelT &rel) const {
254 uint32_t symIndex = rel.getSymbol(config->isMips64EL);
255 return getSymbol(symIndex);
258 std::optional<llvm::DILineInfo> getDILineInfo(InputSectionBase *, uint64_t);
259 std::optional<std::pair<std::string, unsigned>>
260 getVariableLoc(StringRef name);
262 // Name of source file obtained from STT_FILE symbol value,
263 // or empty string if there is no such symbol in object file
264 // symbol table.
265 StringRef sourceFile;
267 // Pointer to this input file's .llvm_addrsig section, if it has one.
268 const Elf_Shdr *addrsigSec = nullptr;
270 // SHT_LLVM_CALL_GRAPH_PROFILE section index.
271 uint32_t cgProfileSectionIndex = 0;
273 // MIPS GP0 value defined by this file. This value represents the gp value
274 // used to create the relocatable object and required to support
275 // R_MIPS_GPREL16 / R_MIPS_GPREL32 relocations.
276 uint32_t mipsGp0 = 0;
278 // True if the file defines functions compiled with
279 // -fsplit-stack. Usually false.
280 bool splitStack = false;
282 // True if the file defines functions compiled with -fsplit-stack,
283 // but had one or more functions with the no_split_stack attribute.
284 bool someNoSplitStack = false;
286 // Get cached DWARF information.
287 DWARFCache *getDwarf();
289 void initSectionsAndLocalSyms(bool ignoreComdats);
290 void postParse();
291 void importCmseSymbols();
293 private:
294 void initializeSections(bool ignoreComdats,
295 const llvm::object::ELFFile<ELFT> &obj);
296 void initializeSymbols(const llvm::object::ELFFile<ELFT> &obj);
297 void initializeJustSymbols();
299 InputSectionBase *getRelocTarget(uint32_t idx, const Elf_Shdr &sec,
300 uint32_t info);
301 InputSectionBase *createInputSection(uint32_t idx, const Elf_Shdr &sec,
302 StringRef name);
304 bool shouldMerge(const Elf_Shdr &sec, StringRef name);
306 // Each ELF symbol contains a section index which the symbol belongs to.
307 // However, because the number of bits dedicated for that is limited, a
308 // symbol can directly point to a section only when the section index is
309 // equal to or smaller than 65280.
311 // If an object file contains more than 65280 sections, the file must
312 // contain .symtab_shndx section. The section contains an array of
313 // 32-bit integers whose size is the same as the number of symbols.
314 // Nth symbol's section index is in the Nth entry of .symtab_shndx.
316 // The following variable contains the contents of .symtab_shndx.
317 // If the section does not exist (which is common), the array is empty.
318 ArrayRef<Elf_Word> shndxTable;
320 // Debugging information to retrieve source file and line for error
321 // reporting. Linker may find reasonable number of errors in a
322 // single object file, so we cache debugging information in order to
323 // parse it only once for each object file we link.
324 std::unique_ptr<DWARFCache> dwarf;
325 llvm::once_flag initDwarf;
328 class BitcodeFile : public InputFile {
329 public:
330 BitcodeFile(MemoryBufferRef m, StringRef archiveName,
331 uint64_t offsetInArchive, bool lazy);
332 static bool classof(const InputFile *f) { return f->kind() == BitcodeKind; }
333 void parse();
334 void parseLazy();
335 void postParse();
336 std::unique_ptr<llvm::lto::InputFile> obj;
337 std::vector<bool> keptComdats;
340 // .so file.
341 class SharedFile : public ELFFileBase {
342 public:
343 SharedFile(MemoryBufferRef m, StringRef defaultSoName);
345 // This is actually a vector of Elf_Verdef pointers.
346 SmallVector<const void *, 0> verdefs;
348 // If the output file needs Elf_Verneed data structures for this file, this is
349 // a vector of Elf_Vernaux version identifiers that map onto the entries in
350 // Verdefs, otherwise it is empty.
351 SmallVector<uint32_t, 0> vernauxs;
353 static unsigned vernauxNum;
355 SmallVector<StringRef, 0> dtNeeded;
356 StringRef soName;
358 static bool classof(const InputFile *f) { return f->kind() == SharedKind; }
360 template <typename ELFT> void parse();
362 // Used for --as-needed
363 bool isNeeded;
365 // Non-weak undefined symbols which are not yet resolved when the SO is
366 // parsed. Only filled for `--no-allow-shlib-undefined`.
367 SmallVector<Symbol *, 0> requiredSymbols;
369 private:
370 template <typename ELFT>
371 std::vector<uint32_t> parseVerneed(const llvm::object::ELFFile<ELFT> &obj,
372 const typename ELFT::Shdr *sec);
375 class BinaryFile : public InputFile {
376 public:
377 explicit BinaryFile(MemoryBufferRef m) : InputFile(BinaryKind, m) {}
378 static bool classof(const InputFile *f) { return f->kind() == BinaryKind; }
379 void parse();
382 ELFFileBase *createObjFile(MemoryBufferRef mb, StringRef archiveName = "",
383 bool lazy = false);
385 std::string replaceThinLTOSuffix(StringRef path);
387 } // namespace elf
388 } // namespace lld
390 #endif