2015-12-30 11:57:38 +00:00
|
|
|
//===- SymbolTable.h --------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_COFF_SYMBOL_TABLE_H
|
|
|
|
#define LLD_COFF_SYMBOL_TABLE_H
|
|
|
|
|
|
|
|
#include "InputFiles.h"
|
2017-01-02 19:19:15 +00:00
|
|
|
#include "llvm/ADT/CachedHashString.h"
|
2015-12-30 11:57:38 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
|
|
#include "llvm/ADT/DenseMapInfo.h"
|
|
|
|
#include "llvm/Support/Allocator.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
struct LTOCodeGenerator;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace coff {
|
|
|
|
|
|
|
|
class Chunk;
|
2017-01-02 19:19:15 +00:00
|
|
|
class CommonChunk;
|
2015-12-30 11:57:38 +00:00
|
|
|
class Defined;
|
2017-01-02 19:19:15 +00:00
|
|
|
class DefinedAbsolute;
|
|
|
|
class DefinedRelative;
|
2015-12-30 11:57:38 +00:00
|
|
|
class Lazy;
|
2017-01-02 19:19:15 +00:00
|
|
|
class SectionChunk;
|
2015-12-30 11:57:38 +00:00
|
|
|
class SymbolBody;
|
|
|
|
struct Symbol;
|
|
|
|
|
|
|
|
// SymbolTable is a bucket of all known symbols, including defined,
|
|
|
|
// undefined, or lazy symbols (the last one is symbols in archive
|
|
|
|
// files whose archive members are not yet loaded).
|
|
|
|
//
|
|
|
|
// We put all symbols of all files to a SymbolTable, and the
|
|
|
|
// SymbolTable selects the "best" symbols if there are name
|
|
|
|
// conflicts. For example, obviously, a defined symbol is better than
|
|
|
|
// an undefined symbol. Or, if there's a conflict between a lazy and a
|
|
|
|
// undefined, it'll read an archive member to read a real definition
|
2017-01-02 19:19:15 +00:00
|
|
|
// to replace the lazy symbol. The logic is implemented in the
|
|
|
|
// add*() functions, which are called by input files as they are parsed.
|
|
|
|
// There is one add* function per symbol type.
|
2015-12-30 11:57:38 +00:00
|
|
|
class SymbolTable {
|
|
|
|
public:
|
2017-01-02 19:19:15 +00:00
|
|
|
void addFile(InputFile *File);
|
2015-12-30 11:57:38 +00:00
|
|
|
|
2017-01-02 19:19:15 +00:00
|
|
|
// Try to resolve any undefined symbols and update the symbol table
|
|
|
|
// accordingly, then print an error message for any remaining undefined
|
|
|
|
// symbols.
|
|
|
|
void reportRemainingUndefines();
|
2015-12-30 11:57:38 +00:00
|
|
|
|
|
|
|
// Returns a list of chunks of selected symbols.
|
|
|
|
std::vector<Chunk *> getChunks();
|
|
|
|
|
|
|
|
// Returns a symbol for a given name. Returns a nullptr if not found.
|
|
|
|
Symbol *find(StringRef Name);
|
|
|
|
Symbol *findUnderscore(StringRef Name);
|
|
|
|
|
|
|
|
// Occasionally we have to resolve an undefined symbol to its
|
|
|
|
// mangled symbol. This function tries to find a mangled name
|
|
|
|
// for U from the symbol table, and if found, set the symbol as
|
|
|
|
// a weak alias for U.
|
2017-01-02 19:19:15 +00:00
|
|
|
void mangleMaybe(SymbolBody *B);
|
2015-12-30 11:57:38 +00:00
|
|
|
StringRef findMangle(StringRef Name);
|
|
|
|
|
|
|
|
// Print a layout map to OS.
|
|
|
|
void printMap(llvm::raw_ostream &OS);
|
|
|
|
|
|
|
|
// Build a set of COFF objects representing the combined contents of
|
|
|
|
// BitcodeFiles and add them to the symbol table. Called after all files are
|
|
|
|
// added and before the writer writes results to a file.
|
|
|
|
void addCombinedLTOObjects();
|
|
|
|
|
|
|
|
// The writer needs to handle DLL import libraries specially in
|
|
|
|
// order to create the import descriptor table.
|
|
|
|
std::vector<ImportFile *> ImportFiles;
|
|
|
|
|
|
|
|
// The writer needs to infer the machine type from the object files.
|
|
|
|
std::vector<ObjectFile *> ObjectFiles;
|
|
|
|
|
|
|
|
// Creates an Undefined symbol for a given name.
|
2017-01-02 19:19:15 +00:00
|
|
|
SymbolBody *addUndefined(StringRef Name);
|
|
|
|
|
|
|
|
Symbol *addRelative(StringRef N, uint64_t VA);
|
|
|
|
Symbol *addAbsolute(StringRef N, uint64_t VA);
|
|
|
|
|
|
|
|
Symbol *addUndefined(StringRef Name, InputFile *F, bool IsWeakAlias);
|
|
|
|
void addLazy(ArchiveFile *F, const Archive::Symbol Sym);
|
|
|
|
Symbol *addAbsolute(StringRef N, COFFSymbolRef S);
|
|
|
|
Symbol *addRegular(ObjectFile *F, COFFSymbolRef S, SectionChunk *C);
|
|
|
|
Symbol *addBitcode(BitcodeFile *F, StringRef N, bool IsReplaceable);
|
|
|
|
Symbol *addCommon(ObjectFile *F, COFFSymbolRef S, CommonChunk *C);
|
|
|
|
Symbol *addImportData(StringRef N, ImportFile *F);
|
|
|
|
Symbol *addImportThunk(StringRef Name, DefinedImportData *S,
|
|
|
|
uint16_t Machine);
|
|
|
|
|
|
|
|
void reportDuplicate(Symbol *Existing, InputFile *NewFile);
|
2015-12-30 11:57:38 +00:00
|
|
|
|
|
|
|
// A list of chunks which to be added to .rdata.
|
|
|
|
std::vector<Chunk *> LocalImportChunks;
|
|
|
|
|
|
|
|
private:
|
2017-01-02 19:19:15 +00:00
|
|
|
void readArchive();
|
2015-12-30 11:57:38 +00:00
|
|
|
void readObjects();
|
|
|
|
|
2017-01-02 19:19:15 +00:00
|
|
|
std::pair<Symbol *, bool> insert(StringRef Name);
|
2015-12-30 11:57:38 +00:00
|
|
|
StringRef findByPrefix(StringRef Prefix);
|
|
|
|
|
|
|
|
void addCombinedLTOObject(ObjectFile *Obj);
|
|
|
|
std::vector<ObjectFile *> createLTOObjects(llvm::LTOCodeGenerator *CG);
|
|
|
|
|
2017-01-02 19:19:15 +00:00
|
|
|
llvm::DenseMap<llvm::CachedHashStringRef, Symbol *> Symtab;
|
2015-12-30 11:57:38 +00:00
|
|
|
|
|
|
|
std::vector<BitcodeFile *> BitcodeFiles;
|
2016-07-23 20:48:50 +00:00
|
|
|
std::vector<SmallString<0>> Objs;
|
2015-12-30 11:57:38 +00:00
|
|
|
};
|
|
|
|
|
2017-01-02 19:19:15 +00:00
|
|
|
extern SymbolTable *Symtab;
|
|
|
|
|
2015-12-30 11:57:38 +00:00
|
|
|
} // namespace coff
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|