2017-11-17 18:14:09 +00:00
|
|
|
//===- Symbols.cpp --------------------------------------------------------===//
|
|
|
|
//
|
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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Symbols.h"
|
|
|
|
#include "Config.h"
|
2018-01-10 01:13:34 +00:00
|
|
|
#include "InputChunks.h"
|
2018-12-08 06:17:43 +00:00
|
|
|
#include "InputEvent.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
#include "InputFiles.h"
|
2018-02-23 05:08:53 +00:00
|
|
|
#include "InputGlobal.h"
|
2019-05-21 09:13:09 +00:00
|
|
|
#include "OutputSections.h"
|
2018-02-23 05:08:53 +00:00
|
|
|
#include "OutputSegment.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
#include "lld/Common/ErrorHandler.h"
|
2017-12-06 03:10:39 +00:00
|
|
|
#include "lld/Common/Strings.h"
|
2017-11-17 18:14:09 +00:00
|
|
|
|
|
|
|
#define DEBUG_TYPE "lld"
|
|
|
|
|
|
|
|
using namespace llvm;
|
2019-12-20 01:23:59 +00:00
|
|
|
using namespace llvm::object;
|
2018-01-10 00:52:20 +00:00
|
|
|
using namespace llvm::wasm;
|
2017-11-17 18:14:09 +00:00
|
|
|
|
2019-10-10 05:25:39 +00:00
|
|
|
namespace lld {
|
|
|
|
std::string toString(const wasm::Symbol &sym) {
|
|
|
|
return maybeDemangleSymbol(sym.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string maybeDemangleSymbol(StringRef name) {
|
2020-02-27 15:51:37 +00:00
|
|
|
// WebAssembly requires caller and callee signatures to match, so we mangle
|
|
|
|
// `main` in the case where we need to pass it arguments.
|
|
|
|
if (name == "__main_argc_argv")
|
|
|
|
return "main";
|
2019-10-10 05:25:39 +00:00
|
|
|
if (wasm::config->demangle)
|
|
|
|
return demangleItanium(name);
|
2020-01-28 19:23:46 +00:00
|
|
|
return std::string(name);
|
2019-10-10 05:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string toString(wasm::Symbol::Kind kind) {
|
|
|
|
switch (kind) {
|
|
|
|
case wasm::Symbol::DefinedFunctionKind:
|
|
|
|
return "DefinedFunction";
|
|
|
|
case wasm::Symbol::DefinedDataKind:
|
|
|
|
return "DefinedData";
|
|
|
|
case wasm::Symbol::DefinedGlobalKind:
|
|
|
|
return "DefinedGlobal";
|
|
|
|
case wasm::Symbol::DefinedEventKind:
|
|
|
|
return "DefinedEvent";
|
|
|
|
case wasm::Symbol::UndefinedFunctionKind:
|
|
|
|
return "UndefinedFunction";
|
|
|
|
case wasm::Symbol::UndefinedDataKind:
|
|
|
|
return "UndefinedData";
|
|
|
|
case wasm::Symbol::UndefinedGlobalKind:
|
|
|
|
return "UndefinedGlobal";
|
|
|
|
case wasm::Symbol::LazyKind:
|
|
|
|
return "LazyKind";
|
|
|
|
case wasm::Symbol::SectionKind:
|
|
|
|
return "SectionKind";
|
|
|
|
case wasm::Symbol::OutputSectionKind:
|
|
|
|
return "OutputSectionKind";
|
|
|
|
}
|
|
|
|
llvm_unreachable("invalid symbol kind");
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace wasm {
|
2018-02-14 18:27:59 +00:00
|
|
|
DefinedFunction *WasmSym::callCtors;
|
2020-10-01 00:21:57 +00:00
|
|
|
DefinedFunction *WasmSym::callDtors;
|
2019-07-03 22:04:54 +00:00
|
|
|
DefinedFunction *WasmSym::initMemory;
|
2019-04-04 18:40:51 +00:00
|
|
|
DefinedFunction *WasmSym::applyRelocs;
|
[WebAssembly] Implement thread-local storage (local-exec model)
Summary:
Thread local variables are placed inside a `.tdata` segment. Their symbols are
offsets from the start of the segment. The address of a thread local variable
is computed as `__tls_base` + the offset from the start of the segment.
`.tdata` segment is a passive segment and `memory.init` is used once per thread
to initialize the thread local storage.
`__tls_base` is a wasm global. Since each thread has its own wasm instance,
it is effectively thread local. Currently, `__tls_base` must be initialized
at thread startup, and so cannot be used with dynamic libraries.
`__tls_base` is to be initialized with a new linker-synthesized function,
`__wasm_init_tls`, which takes as an argument a block of memory to use as the
storage for thread locals. It then initializes the block of memory and sets
`__tls_base`. As `__wasm_init_tls` will handle the memory initialization,
the memory does not have to be zeroed.
To help allocating memory for thread-local storage, a new compiler intrinsic
is introduced: `__builtin_wasm_tls_size()`. This instrinsic function returns
the size of the thread-local storage for the current function.
The expected usage is to run something like the following upon thread startup:
__wasm_init_tls(malloc(__builtin_wasm_tls_size()));
Reviewers: tlively, aheejin, kripken, sbc100
Subscribers: dschuff, jgravelle-google, hiraditya, sunfish, jfb, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64537
llvm-svn: 366272
2019-07-16 22:00:45 +00:00
|
|
|
DefinedFunction *WasmSym::initTLS;
|
2018-02-20 23:38:27 +00:00
|
|
|
DefinedData *WasmSym::dsoHandle;
|
|
|
|
DefinedData *WasmSym::dataEnd;
|
2019-06-26 20:12:33 +00:00
|
|
|
DefinedData *WasmSym::globalBase;
|
2018-02-20 23:38:27 +00:00
|
|
|
DefinedData *WasmSym::heapBase;
|
2019-09-04 19:50:39 +00:00
|
|
|
DefinedData *WasmSym::initMemoryFlag;
|
2018-11-15 18:15:54 +00:00
|
|
|
GlobalSymbol *WasmSym::stackPointer;
|
[WebAssembly] Implement thread-local storage (local-exec model)
Summary:
Thread local variables are placed inside a `.tdata` segment. Their symbols are
offsets from the start of the segment. The address of a thread local variable
is computed as `__tls_base` + the offset from the start of the segment.
`.tdata` segment is a passive segment and `memory.init` is used once per thread
to initialize the thread local storage.
`__tls_base` is a wasm global. Since each thread has its own wasm instance,
it is effectively thread local. Currently, `__tls_base` must be initialized
at thread startup, and so cannot be used with dynamic libraries.
`__tls_base` is to be initialized with a new linker-synthesized function,
`__wasm_init_tls`, which takes as an argument a block of memory to use as the
storage for thread locals. It then initializes the block of memory and sets
`__tls_base`. As `__wasm_init_tls` will handle the memory initialization,
the memory does not have to be zeroed.
To help allocating memory for thread-local storage, a new compiler intrinsic
is introduced: `__builtin_wasm_tls_size()`. This instrinsic function returns
the size of the thread-local storage for the current function.
The expected usage is to run something like the following upon thread startup:
__wasm_init_tls(malloc(__builtin_wasm_tls_size()));
Reviewers: tlively, aheejin, kripken, sbc100
Subscribers: dschuff, jgravelle-google, hiraditya, sunfish, jfb, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64537
llvm-svn: 366272
2019-07-16 22:00:45 +00:00
|
|
|
GlobalSymbol *WasmSym::tlsBase;
|
|
|
|
GlobalSymbol *WasmSym::tlsSize;
|
[WebAssembly] Compute and export TLS block alignment
Summary:
Add immutable WASM global `__tls_align` which stores the alignment
requirements of the TLS segment.
Add `__builtin_wasm_tls_align()` intrinsic to get this alignment in Clang.
The expected usage has now changed to:
__wasm_init_tls(memalign(__builtin_wasm_tls_align(),
__builtin_wasm_tls_size()));
Reviewers: tlively, aheejin, sbc100, sunfish, alexcrichton
Reviewed By: tlively
Subscribers: dschuff, jgravelle-google, hiraditya, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D65028
llvm-svn: 366624
2019-07-19 23:34:16 +00:00
|
|
|
GlobalSymbol *WasmSym::tlsAlign;
|
2018-11-15 18:15:54 +00:00
|
|
|
UndefinedGlobal *WasmSym::tableBase;
|
2019-08-13 17:02:02 +00:00
|
|
|
DefinedData *WasmSym::definedTableBase;
|
2018-11-15 18:15:54 +00:00
|
|
|
UndefinedGlobal *WasmSym::memoryBase;
|
2019-08-13 17:02:02 +00:00
|
|
|
DefinedData *WasmSym::definedMemoryBase;
|
2018-02-23 05:08:53 +00:00
|
|
|
|
|
|
|
WasmSymbolType Symbol::getWasmType() const {
|
2018-02-28 01:10:50 +00:00
|
|
|
if (isa<FunctionSymbol>(this))
|
2018-05-14 22:42:33 +00:00
|
|
|
return WASM_SYMBOL_TYPE_FUNCTION;
|
2018-02-28 01:10:50 +00:00
|
|
|
if (isa<DataSymbol>(this))
|
2018-05-14 22:42:33 +00:00
|
|
|
return WASM_SYMBOL_TYPE_DATA;
|
2018-02-28 01:10:50 +00:00
|
|
|
if (isa<GlobalSymbol>(this))
|
2018-05-14 22:42:33 +00:00
|
|
|
return WASM_SYMBOL_TYPE_GLOBAL;
|
2018-12-08 06:17:43 +00:00
|
|
|
if (isa<EventSymbol>(this))
|
|
|
|
return WASM_SYMBOL_TYPE_EVENT;
|
2019-05-21 09:13:09 +00:00
|
|
|
if (isa<SectionSymbol>(this) || isa<OutputSectionSymbol>(this))
|
2018-05-14 22:42:33 +00:00
|
|
|
return WASM_SYMBOL_TYPE_SECTION;
|
2018-02-28 01:10:50 +00:00
|
|
|
llvm_unreachable("invalid symbol kind");
|
2018-02-23 05:08:53 +00:00
|
|
|
}
|
2017-11-17 18:14:09 +00:00
|
|
|
|
2019-02-20 23:19:31 +00:00
|
|
|
const WasmSignature *Symbol::getSignature() const {
|
|
|
|
if (auto* f = dyn_cast<FunctionSymbol>(this))
|
|
|
|
return f->signature;
|
|
|
|
if (auto *l = dyn_cast<LazySymbol>(this))
|
|
|
|
return l->signature;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-02-20 17:45:38 +00:00
|
|
|
InputChunk *Symbol::getChunk() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this))
|
|
|
|
return f->function;
|
2018-02-23 05:08:53 +00:00
|
|
|
if (auto *d = dyn_cast<DefinedData>(this))
|
|
|
|
return d->segment;
|
2018-02-20 17:45:38 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-06-07 06:00:46 +00:00
|
|
|
bool Symbol::isDiscarded() const {
|
|
|
|
if (InputChunk *c = getChunk())
|
|
|
|
return c->discarded;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-23 05:08:53 +00:00
|
|
|
bool Symbol::isLive() const {
|
|
|
|
if (auto *g = dyn_cast<DefinedGlobal>(this))
|
|
|
|
return g->global->live;
|
2018-12-08 06:17:43 +00:00
|
|
|
if (auto *e = dyn_cast<DefinedEvent>(this))
|
|
|
|
return e->event->live;
|
2018-02-23 05:08:53 +00:00
|
|
|
if (InputChunk *c = getChunk())
|
|
|
|
return c->live;
|
2018-04-20 17:18:06 +00:00
|
|
|
return referenced;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Symbol::markLive() {
|
2019-06-07 06:00:46 +00:00
|
|
|
assert(!isDiscarded());
|
2020-10-01 03:00:04 +00:00
|
|
|
if (file != NULL)
|
|
|
|
file->markLive();
|
2018-04-20 17:18:06 +00:00
|
|
|
if (auto *g = dyn_cast<DefinedGlobal>(this))
|
|
|
|
g->global->live = true;
|
2018-12-08 06:17:43 +00:00
|
|
|
if (auto *e = dyn_cast<DefinedEvent>(this))
|
|
|
|
e->event->live = true;
|
2018-04-20 17:18:06 +00:00
|
|
|
if (InputChunk *c = getChunk())
|
|
|
|
c->live = true;
|
|
|
|
referenced = true;
|
2018-02-23 05:08:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t Symbol::getOutputSymbolIndex() const {
|
|
|
|
assert(outputSymbolIndex != INVALID_INDEX);
|
|
|
|
return outputSymbolIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Symbol::setOutputSymbolIndex(uint32_t index) {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setOutputSymbolIndex " << name << " -> " << index
|
|
|
|
<< "\n");
|
2018-02-23 05:08:53 +00:00
|
|
|
assert(outputSymbolIndex == INVALID_INDEX);
|
|
|
|
outputSymbolIndex = index;
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:46:15 +00:00
|
|
|
void Symbol::setGOTIndex(uint32_t index) {
|
|
|
|
LLVM_DEBUG(dbgs() << "setGOTIndex " << name << " -> " << index << "\n");
|
|
|
|
assert(gotIndex == INVALID_INDEX);
|
2019-08-13 17:02:02 +00:00
|
|
|
if (config->isPic) {
|
2020-04-01 16:21:08 +00:00
|
|
|
// Any symbol that is assigned a GOT entry must be exported otherwise the
|
2019-08-13 17:02:02 +00:00
|
|
|
// dynamic linker won't be able create the entry that contains it.
|
|
|
|
forceExport = true;
|
|
|
|
}
|
2019-03-26 19:46:15 +00:00
|
|
|
gotIndex = index;
|
|
|
|
}
|
|
|
|
|
2018-02-14 18:27:59 +00:00
|
|
|
bool Symbol::isWeak() const {
|
|
|
|
return (flags & WASM_SYMBOL_BINDING_MASK) == WASM_SYMBOL_BINDING_WEAK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Symbol::isLocal() const {
|
|
|
|
return (flags & WASM_SYMBOL_BINDING_MASK) == WASM_SYMBOL_BINDING_LOCAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Symbol::isHidden() const {
|
|
|
|
return (flags & WASM_SYMBOL_VISIBILITY_MASK) == WASM_SYMBOL_VISIBILITY_HIDDEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Symbol::setHidden(bool isHidden) {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setHidden: " << name << " -> " << isHidden << "\n");
|
2018-02-14 18:27:59 +00:00
|
|
|
flags &= ~WASM_SYMBOL_VISIBILITY_MASK;
|
|
|
|
if (isHidden)
|
|
|
|
flags |= WASM_SYMBOL_VISIBILITY_HIDDEN;
|
|
|
|
else
|
|
|
|
flags |= WASM_SYMBOL_VISIBILITY_DEFAULT;
|
|
|
|
}
|
|
|
|
|
2018-06-28 17:04:58 +00:00
|
|
|
bool Symbol::isExported() const {
|
|
|
|
if (!isDefined() || isLocal())
|
|
|
|
return false;
|
|
|
|
|
2018-06-28 17:21:46 +00:00
|
|
|
if (forceExport || config->exportAll)
|
2018-06-28 17:04:58 +00:00
|
|
|
return true;
|
|
|
|
|
2018-09-27 21:06:25 +00:00
|
|
|
if (config->exportDynamic && !isHidden())
|
|
|
|
return true;
|
2018-09-25 21:50:15 +00:00
|
|
|
|
2019-02-07 01:53:50 +00:00
|
|
|
return flags & WASM_SYMBOL_EXPORTED;
|
2018-06-28 17:04:58 +00:00
|
|
|
}
|
|
|
|
|
2019-08-29 22:41:05 +00:00
|
|
|
bool Symbol::isNoStrip() const {
|
|
|
|
return flags & WASM_SYMBOL_NO_STRIP;
|
|
|
|
}
|
|
|
|
|
2018-03-12 19:56:23 +00:00
|
|
|
uint32_t FunctionSymbol::getFunctionIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this))
|
|
|
|
return f->function->getFunctionIndex();
|
|
|
|
assert(functionIndex != INVALID_INDEX);
|
|
|
|
return functionIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FunctionSymbol::setFunctionIndex(uint32_t index) {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setFunctionIndex " << name << " -> " << index << "\n");
|
2018-03-12 19:56:23 +00:00
|
|
|
assert(functionIndex == INVALID_INDEX);
|
|
|
|
functionIndex = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionSymbol::hasFunctionIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this))
|
|
|
|
return f->function->hasFunctionIndex();
|
|
|
|
return functionIndex != INVALID_INDEX;
|
|
|
|
}
|
|
|
|
|
2018-02-14 18:27:59 +00:00
|
|
|
uint32_t FunctionSymbol::getTableIndex() const {
|
2018-02-20 17:45:38 +00:00
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this))
|
|
|
|
return f->function->getTableIndex();
|
2018-02-14 22:55:38 +00:00
|
|
|
assert(tableIndex != INVALID_INDEX);
|
|
|
|
return tableIndex;
|
2018-01-24 21:45:25 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 18:27:59 +00:00
|
|
|
bool FunctionSymbol::hasTableIndex() const {
|
2018-02-20 17:45:38 +00:00
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this))
|
|
|
|
return f->function->hasTableIndex();
|
2018-02-14 22:55:38 +00:00
|
|
|
return tableIndex != INVALID_INDEX;
|
2018-01-24 21:45:25 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 18:27:59 +00:00
|
|
|
void FunctionSymbol::setTableIndex(uint32_t index) {
|
2018-01-24 21:45:25 +00:00
|
|
|
// For imports, we set the table index here on the Symbol; for defined
|
|
|
|
// functions we set the index on the InputFunction so that we don't export
|
|
|
|
// the same thing twice (keeps the table size down).
|
2018-02-20 17:45:38 +00:00
|
|
|
if (auto *f = dyn_cast<DefinedFunction>(this)) {
|
|
|
|
f->function->setTableIndex(index);
|
2018-01-24 21:45:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setTableIndex " << name << " -> " << index << "\n");
|
2018-02-14 22:55:38 +00:00
|
|
|
assert(tableIndex == INVALID_INDEX);
|
2017-12-11 22:00:56 +00:00
|
|
|
tableIndex = index;
|
|
|
|
}
|
2017-11-17 18:14:09 +00:00
|
|
|
|
2018-02-20 17:45:38 +00:00
|
|
|
DefinedFunction::DefinedFunction(StringRef name, uint32_t flags, InputFile *f,
|
|
|
|
InputFunction *function)
|
|
|
|
: FunctionSymbol(name, DefinedFunctionKind, flags, f,
|
|
|
|
function ? &function->signature : nullptr),
|
|
|
|
function(function) {}
|
|
|
|
|
2020-06-05 16:03:12 +00:00
|
|
|
uint64_t DefinedData::getVirtualAddress() const {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "getVirtualAddress: " << getName() << "\n");
|
[WebAssembly] Implement thread-local storage (local-exec model)
Summary:
Thread local variables are placed inside a `.tdata` segment. Their symbols are
offsets from the start of the segment. The address of a thread local variable
is computed as `__tls_base` + the offset from the start of the segment.
`.tdata` segment is a passive segment and `memory.init` is used once per thread
to initialize the thread local storage.
`__tls_base` is a wasm global. Since each thread has its own wasm instance,
it is effectively thread local. Currently, `__tls_base` must be initialized
at thread startup, and so cannot be used with dynamic libraries.
`__tls_base` is to be initialized with a new linker-synthesized function,
`__wasm_init_tls`, which takes as an argument a block of memory to use as the
storage for thread locals. It then initializes the block of memory and sets
`__tls_base`. As `__wasm_init_tls` will handle the memory initialization,
the memory does not have to be zeroed.
To help allocating memory for thread-local storage, a new compiler intrinsic
is introduced: `__builtin_wasm_tls_size()`. This instrinsic function returns
the size of the thread-local storage for the current function.
The expected usage is to run something like the following upon thread startup:
__wasm_init_tls(malloc(__builtin_wasm_tls_size()));
Reviewers: tlively, aheejin, kripken, sbc100
Subscribers: dschuff, jgravelle-google, hiraditya, sunfish, jfb, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64537
llvm-svn: 366272
2019-07-16 22:00:45 +00:00
|
|
|
if (segment) {
|
|
|
|
// For thread local data, the symbol location is relative to the start of
|
|
|
|
// the .tdata section, since they are used as offsets from __tls_base.
|
|
|
|
// Hence, we do not add in segment->outputSeg->startVA.
|
|
|
|
if (segment->outputSeg->name == ".tdata")
|
|
|
|
return segment->outputSegmentOffset + offset;
|
2018-02-28 01:01:34 +00:00
|
|
|
return segment->outputSeg->startVA + segment->outputSegmentOffset + offset;
|
[WebAssembly] Implement thread-local storage (local-exec model)
Summary:
Thread local variables are placed inside a `.tdata` segment. Their symbols are
offsets from the start of the segment. The address of a thread local variable
is computed as `__tls_base` + the offset from the start of the segment.
`.tdata` segment is a passive segment and `memory.init` is used once per thread
to initialize the thread local storage.
`__tls_base` is a wasm global. Since each thread has its own wasm instance,
it is effectively thread local. Currently, `__tls_base` must be initialized
at thread startup, and so cannot be used with dynamic libraries.
`__tls_base` is to be initialized with a new linker-synthesized function,
`__wasm_init_tls`, which takes as an argument a block of memory to use as the
storage for thread locals. It then initializes the block of memory and sets
`__tls_base`. As `__wasm_init_tls` will handle the memory initialization,
the memory does not have to be zeroed.
To help allocating memory for thread-local storage, a new compiler intrinsic
is introduced: `__builtin_wasm_tls_size()`. This instrinsic function returns
the size of the thread-local storage for the current function.
The expected usage is to run something like the following upon thread startup:
__wasm_init_tls(malloc(__builtin_wasm_tls_size()));
Reviewers: tlively, aheejin, kripken, sbc100
Subscribers: dschuff, jgravelle-google, hiraditya, sunfish, jfb, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D64537
llvm-svn: 366272
2019-07-16 22:00:45 +00:00
|
|
|
}
|
2018-02-28 01:01:34 +00:00
|
|
|
return offset;
|
2018-01-10 00:52:20 +00:00
|
|
|
}
|
2017-12-03 02:38:04 +00:00
|
|
|
|
2020-06-05 16:03:12 +00:00
|
|
|
void DefinedData::setVirtualAddress(uint64_t value) {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setVirtualAddress " << name << " -> " << value << "\n");
|
2018-02-23 05:08:53 +00:00
|
|
|
assert(!segment);
|
|
|
|
offset = value;
|
2018-01-12 22:10:35 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 16:03:12 +00:00
|
|
|
uint64_t DefinedData::getOutputSegmentOffset() const {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "getOutputSegmentOffset: " << getName() << "\n");
|
2018-02-23 05:08:53 +00:00
|
|
|
return segment->outputSegmentOffset + offset;
|
|
|
|
}
|
|
|
|
|
2020-06-05 16:03:12 +00:00
|
|
|
uint64_t DefinedData::getOutputSegmentIndex() const {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "getOutputSegmentIndex: " << getName() << "\n");
|
2018-02-28 00:20:29 +00:00
|
|
|
return segment->outputSeg->index;
|
2018-02-23 05:08:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-12 19:56:23 +00:00
|
|
|
uint32_t GlobalSymbol::getGlobalIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedGlobal>(this))
|
|
|
|
return f->global->getGlobalIndex();
|
|
|
|
assert(globalIndex != INVALID_INDEX);
|
|
|
|
return globalIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalSymbol::setGlobalIndex(uint32_t index) {
|
2018-05-15 13:36:20 +00:00
|
|
|
LLVM_DEBUG(dbgs() << "setGlobalIndex " << name << " -> " << index << "\n");
|
2018-03-12 19:56:23 +00:00
|
|
|
assert(globalIndex == INVALID_INDEX);
|
|
|
|
globalIndex = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GlobalSymbol::hasGlobalIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedGlobal>(this))
|
|
|
|
return f->global->hasGlobalIndex();
|
|
|
|
return globalIndex != INVALID_INDEX;
|
|
|
|
}
|
|
|
|
|
2018-02-23 05:08:53 +00:00
|
|
|
DefinedGlobal::DefinedGlobal(StringRef name, uint32_t flags, InputFile *file,
|
|
|
|
InputGlobal *global)
|
|
|
|
: GlobalSymbol(name, DefinedGlobalKind, flags, file,
|
|
|
|
global ? &global->getType() : nullptr),
|
|
|
|
global(global) {}
|
|
|
|
|
2018-12-08 06:17:43 +00:00
|
|
|
uint32_t EventSymbol::getEventIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedEvent>(this))
|
|
|
|
return f->event->getEventIndex();
|
|
|
|
assert(eventIndex != INVALID_INDEX);
|
|
|
|
return eventIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventSymbol::setEventIndex(uint32_t index) {
|
|
|
|
LLVM_DEBUG(dbgs() << "setEventIndex " << name << " -> " << index << "\n");
|
|
|
|
assert(eventIndex == INVALID_INDEX);
|
|
|
|
eventIndex = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EventSymbol::hasEventIndex() const {
|
|
|
|
if (auto *f = dyn_cast<DefinedEvent>(this))
|
|
|
|
return f->event->hasEventIndex();
|
|
|
|
return eventIndex != INVALID_INDEX;
|
|
|
|
}
|
|
|
|
|
|
|
|
DefinedEvent::DefinedEvent(StringRef name, uint32_t flags, InputFile *file,
|
|
|
|
InputEvent *event)
|
|
|
|
: EventSymbol(name, DefinedEventKind, flags, file,
|
|
|
|
event ? &event->getType() : nullptr,
|
|
|
|
event ? &event->signature : nullptr),
|
|
|
|
event(event) {}
|
|
|
|
|
2019-05-21 09:13:09 +00:00
|
|
|
const OutputSectionSymbol *SectionSymbol::getOutputSectionSymbol() const {
|
|
|
|
assert(section->outputSec && section->outputSec->sectionSym);
|
|
|
|
return section->outputSec->sectionSym;
|
2018-05-04 23:14:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 22:51:51 +00:00
|
|
|
void LazySymbol::fetch() { cast<ArchiveFile>(file)->addMember(&archiveSymbol); }
|
|
|
|
|
2020-08-07 23:12:33 +00:00
|
|
|
void LazySymbol::setWeak() {
|
|
|
|
flags |= (flags & ~WASM_SYMBOL_BINDING_MASK) | WASM_SYMBOL_BINDING_WEAK;
|
|
|
|
}
|
|
|
|
|
2019-12-20 01:23:59 +00:00
|
|
|
MemoryBufferRef LazySymbol::getMemberBuffer() {
|
|
|
|
Archive::Child c =
|
|
|
|
CHECK(archiveSymbol.getMember(),
|
|
|
|
"could not get the member for symbol " + toString(*this));
|
|
|
|
|
|
|
|
return CHECK(c.getMemoryBufferRef(),
|
|
|
|
"could not get the buffer for the member defining symbol " +
|
|
|
|
toString(*this));
|
|
|
|
}
|
|
|
|
|
2019-10-10 05:25:39 +00:00
|
|
|
void printTraceSymbolUndefined(StringRef name, const InputFile* file) {
|
2019-05-24 13:29:17 +00:00
|
|
|
message(toString(file) + ": reference to " + name);
|
|
|
|
}
|
|
|
|
|
2019-02-06 02:35:18 +00:00
|
|
|
// Print out a log message for --trace-symbol.
|
2019-10-10 05:25:39 +00:00
|
|
|
void printTraceSymbol(Symbol *sym) {
|
2019-05-24 13:29:17 +00:00
|
|
|
// Undefined symbols are traced via printTraceSymbolUndefined
|
2019-02-06 02:35:18 +00:00
|
|
|
if (sym->isUndefined())
|
2019-05-24 13:29:17 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
std::string s;
|
|
|
|
if (sym->isLazy())
|
2019-02-06 02:35:18 +00:00
|
|
|
s = ": lazy definition of ";
|
|
|
|
else
|
|
|
|
s = ": definition of ";
|
|
|
|
|
|
|
|
message(toString(sym->getFile()) + s + sym->getName());
|
|
|
|
}
|
2019-05-21 09:13:09 +00:00
|
|
|
|
2019-10-10 05:25:39 +00:00
|
|
|
const char *defaultModule = "env";
|
|
|
|
const char *functionTableName = "__indirect_function_table";
|
|
|
|
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace lld
|