2017-11-17 18:14:09 +00:00
|
|
|
//===- SymbolTable.h --------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-11-17 18:14:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_WASM_SYMBOL_TABLE_H
|
|
|
|
#define LLD_WASM_SYMBOL_TABLE_H
|
|
|
|
|
|
|
|
#include "InputFiles.h"
|
2018-05-30 18:07:52 +00:00
|
|
|
#include "LTO.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
#include "Symbols.h"
|
2018-11-27 01:08:16 +00:00
|
|
|
#include "lld/Common/LLVM.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
#include "llvm/ADT/CachedHashString.h"
|
2018-03-14 15:45:11 +00:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
class InputSegment;
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// 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.
|
|
|
|
class SymbolTable {
|
|
|
|
public:
|
|
|
|
void addFile(InputFile *File);
|
2018-05-30 18:07:52 +00:00
|
|
|
void addCombinedLTOObject();
|
2017-11-17 18:14:09 +00:00
|
|
|
|
|
|
|
std::vector<ObjFile *> ObjectFiles;
|
2019-03-13 21:29:20 +00:00
|
|
|
std::vector<InputFile *> SharedFiles;
|
2018-05-30 18:07:52 +00:00
|
|
|
std::vector<BitcodeFile *> BitcodeFiles;
|
2018-03-09 16:43:05 +00:00
|
|
|
std::vector<InputFunction *> SyntheticFunctions;
|
|
|
|
std::vector<InputGlobal *> SyntheticGlobals;
|
2017-11-17 18:14:09 +00:00
|
|
|
|
|
|
|
void reportRemainingUndefines();
|
|
|
|
|
2017-12-07 01:51:24 +00:00
|
|
|
ArrayRef<Symbol *> getSymbols() const { return SymVector; }
|
2019-02-06 02:35:18 +00:00
|
|
|
|
2017-11-17 18:14:09 +00:00
|
|
|
Symbol *find(StringRef Name);
|
|
|
|
|
2019-02-20 23:19:31 +00:00
|
|
|
void replace(StringRef Name, Symbol* Sym);
|
|
|
|
|
2019-02-06 02:35:18 +00:00
|
|
|
void trace(StringRef Name);
|
|
|
|
|
2018-02-28 00:09:22 +00:00
|
|
|
Symbol *addDefinedFunction(StringRef Name, uint32_t Flags, InputFile *File,
|
2018-02-28 00:37:03 +00:00
|
|
|
InputFunction *Function);
|
2018-02-28 00:09:22 +00:00
|
|
|
Symbol *addDefinedData(StringRef Name, uint32_t Flags, InputFile *File,
|
2018-02-28 00:37:03 +00:00
|
|
|
InputSegment *Segment, uint32_t Address,
|
|
|
|
uint32_t Size);
|
2018-02-28 00:09:22 +00:00
|
|
|
Symbol *addDefinedGlobal(StringRef Name, uint32_t Flags, InputFile *File,
|
2018-02-23 05:08:53 +00:00
|
|
|
InputGlobal *G);
|
2018-12-08 06:17:43 +00:00
|
|
|
Symbol *addDefinedEvent(StringRef Name, uint32_t Flags, InputFile *File,
|
|
|
|
InputEvent *E);
|
2018-02-28 00:09:22 +00:00
|
|
|
|
2019-02-07 22:00:48 +00:00
|
|
|
Symbol *addUndefinedFunction(StringRef Name, StringRef ImportName,
|
|
|
|
StringRef ImportModule, uint32_t Flags,
|
2019-02-01 02:29:57 +00:00
|
|
|
InputFile *File, const WasmSignature *Signature);
|
2018-02-28 00:09:22 +00:00
|
|
|
Symbol *addUndefinedData(StringRef Name, uint32_t Flags, InputFile *File);
|
2019-02-07 22:00:48 +00:00
|
|
|
Symbol *addUndefinedGlobal(StringRef Name, StringRef ImportName,
|
|
|
|
StringRef ImportModule, uint32_t Flags,
|
|
|
|
InputFile *File, const WasmGlobalType *Type);
|
2018-02-28 00:09:22 +00:00
|
|
|
|
2018-11-27 01:08:16 +00:00
|
|
|
void addLazy(ArchiveFile *F, const llvm::object::Archive::Symbol *Sym);
|
2018-03-01 23:29:05 +00:00
|
|
|
|
2018-03-14 15:45:11 +00:00
|
|
|
bool addComdat(StringRef Name);
|
2017-11-17 18:14:09 +00:00
|
|
|
|
2018-02-28 00:37:03 +00:00
|
|
|
DefinedData *addSyntheticDataSymbol(StringRef Name, uint32_t Flags);
|
2018-02-23 05:08:53 +00:00
|
|
|
DefinedGlobal *addSyntheticGlobal(StringRef Name, uint32_t Flags,
|
|
|
|
InputGlobal *Global);
|
2018-03-09 16:43:05 +00:00
|
|
|
DefinedFunction *addSyntheticFunction(StringRef Name, uint32_t Flags,
|
|
|
|
InputFunction *Function);
|
2018-02-23 05:08:53 +00:00
|
|
|
|
2019-02-20 23:19:31 +00:00
|
|
|
void handleSymbolVariants();
|
2019-02-07 22:42:16 +00:00
|
|
|
void handleWeakUndefines();
|
|
|
|
|
2017-11-17 18:14:09 +00:00
|
|
|
private:
|
2019-02-07 22:42:16 +00:00
|
|
|
std::pair<Symbol *, bool> insert(StringRef Name, const InputFile *File);
|
2019-02-06 02:35:18 +00:00
|
|
|
std::pair<Symbol *, bool> insertName(StringRef Name);
|
2017-11-17 18:14:09 +00:00
|
|
|
|
2019-02-20 23:19:31 +00:00
|
|
|
bool getFunctionVariant(Symbol* Sym, const WasmSignature *Sig,
|
|
|
|
const InputFile *File, Symbol **Out);
|
2019-02-07 22:42:16 +00:00
|
|
|
InputFunction *replaceWithUnreachable(Symbol *Sym, const WasmSignature &Sig,
|
|
|
|
StringRef DebugName);
|
|
|
|
|
2019-02-06 02:35:18 +00:00
|
|
|
// Maps symbol names to index into the SymVector. -1 means that symbols
|
|
|
|
// is to not yet in the vector but it should have tracing enabled if it is
|
|
|
|
// ever added.
|
|
|
|
llvm::DenseMap<llvm::CachedHashStringRef, int> SymMap;
|
2017-12-07 01:51:24 +00:00
|
|
|
std::vector<Symbol *> SymVector;
|
2018-03-01 23:29:05 +00:00
|
|
|
|
2019-02-20 23:19:31 +00:00
|
|
|
// For certain symbols types, e.g. function symbols, we allow for muliple
|
|
|
|
// variants of the same symbol with different signatures.
|
|
|
|
llvm::DenseMap<llvm::CachedHashStringRef, std::vector<Symbol *>> SymVariants;
|
|
|
|
|
2018-03-14 15:45:11 +00:00
|
|
|
llvm::DenseSet<llvm::CachedHashStringRef> Comdats;
|
2018-05-30 18:07:52 +00:00
|
|
|
|
|
|
|
// For LTO.
|
|
|
|
std::unique_ptr<BitcodeCompiler> LTO;
|
2017-11-17 18:14:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern SymbolTable *Symtab;
|
|
|
|
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|