2019-05-21 09:13:09 +00:00
|
|
|
//===- SyntheticSection.h ---------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Synthetic sections represent chunks of linker-created data. If you
|
|
|
|
// need to create a chunk of data that to be included in some section
|
|
|
|
// in the result, you probably want to create that as a synthetic section.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_WASM_SYNTHETIC_SECTIONS_H
|
|
|
|
#define LLD_WASM_SYNTHETIC_SECTIONS_H
|
|
|
|
|
|
|
|
#include "OutputSections.h"
|
|
|
|
|
|
|
|
#include "llvm/ADT/SmallSet.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
2020-09-28 20:06:34 +00:00
|
|
|
#include "llvm/BinaryFormat/WasmTraits.h"
|
2019-05-21 09:13:09 +00:00
|
|
|
|
|
|
|
#define DEBUG_TYPE "lld"
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
// An init entry to be written to either the synthetic init func or the
|
|
|
|
// linking metadata.
|
|
|
|
struct WasmInitEntry {
|
|
|
|
const FunctionSymbol *sym;
|
|
|
|
uint32_t priority;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SyntheticSection : public OutputSection {
|
|
|
|
public:
|
|
|
|
SyntheticSection(uint32_t type, std::string name = "")
|
|
|
|
: OutputSection(type, name), bodyOutputStream(body) {
|
|
|
|
if (!name.empty())
|
|
|
|
writeStr(bodyOutputStream, name, "section name");
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeTo(uint8_t *buf) override {
|
|
|
|
assert(offset);
|
|
|
|
log("writing " + toString(*this));
|
|
|
|
memcpy(buf + offset, header.data(), header.size());
|
|
|
|
memcpy(buf + offset + header.size(), body.data(), body.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getSize() const override { return header.size() + body.size(); }
|
|
|
|
|
|
|
|
virtual void writeBody() {}
|
|
|
|
|
2019-08-13 17:02:02 +00:00
|
|
|
virtual void assignIndexes() {}
|
|
|
|
|
2019-05-21 09:13:09 +00:00
|
|
|
void finalizeContents() override {
|
|
|
|
writeBody();
|
|
|
|
bodyOutputStream.flush();
|
|
|
|
createHeader(body.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &getStream() { return bodyOutputStream; }
|
|
|
|
|
|
|
|
std::string body;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
llvm::raw_string_ostream bodyOutputStream;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create the custom "dylink" section containing information for the dynamic
|
|
|
|
// linker.
|
|
|
|
// See
|
|
|
|
// https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
|
|
|
|
class DylinkSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
DylinkSection() : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "dylink") {}
|
|
|
|
bool isNeeded() const override { return config->isPic; }
|
|
|
|
void writeBody() override;
|
|
|
|
|
|
|
|
uint32_t memAlign = 0;
|
|
|
|
uint32_t memSize = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TypeSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
TypeSection() : SyntheticSection(llvm::wasm::WASM_SEC_TYPE) {}
|
|
|
|
|
|
|
|
bool isNeeded() const override { return types.size() > 0; };
|
|
|
|
void writeBody() override;
|
|
|
|
uint32_t registerType(const WasmSignature &sig);
|
|
|
|
uint32_t lookupType(const WasmSignature &sig);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::vector<const WasmSignature *> types;
|
|
|
|
llvm::DenseMap<WasmSignature, int32_t> typeIndices;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ImportSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
ImportSection() : SyntheticSection(llvm::wasm::WASM_SEC_IMPORT) {}
|
2019-07-10 09:10:01 +00:00
|
|
|
bool isNeeded() const override { return getNumImports() > 0; }
|
2019-05-21 09:13:09 +00:00
|
|
|
void writeBody() override;
|
|
|
|
void addImport(Symbol *sym);
|
|
|
|
void addGOTEntry(Symbol *sym);
|
2019-05-23 09:41:03 +00:00
|
|
|
void seal() { isSealed = true; }
|
2019-07-10 09:10:01 +00:00
|
|
|
uint32_t getNumImports() const;
|
|
|
|
uint32_t getNumImportedGlobals() const {
|
2019-05-23 09:41:03 +00:00
|
|
|
assert(isSealed);
|
|
|
|
return numImportedGlobals;
|
|
|
|
}
|
2019-07-10 09:10:01 +00:00
|
|
|
uint32_t getNumImportedFunctions() const {
|
2019-05-23 09:41:03 +00:00
|
|
|
assert(isSealed);
|
|
|
|
return numImportedFunctions;
|
|
|
|
}
|
2019-07-10 09:10:01 +00:00
|
|
|
uint32_t getNumImportedEvents() const {
|
2019-05-23 09:41:03 +00:00
|
|
|
assert(isSealed);
|
|
|
|
return numImportedEvents;
|
|
|
|
}
|
2019-05-21 09:13:09 +00:00
|
|
|
|
|
|
|
std::vector<const Symbol *> importedSymbols;
|
|
|
|
|
|
|
|
protected:
|
2019-05-23 09:41:03 +00:00
|
|
|
bool isSealed = false;
|
|
|
|
unsigned numImportedGlobals = 0;
|
|
|
|
unsigned numImportedFunctions = 0;
|
|
|
|
unsigned numImportedEvents = 0;
|
2019-05-21 09:13:09 +00:00
|
|
|
std::vector<const Symbol *> gotSymbols;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FunctionSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
FunctionSection() : SyntheticSection(llvm::wasm::WASM_SEC_FUNCTION) {}
|
|
|
|
|
|
|
|
bool isNeeded() const override { return inputFunctions.size() > 0; };
|
|
|
|
void writeBody() override;
|
|
|
|
void addFunction(InputFunction *func);
|
|
|
|
|
|
|
|
std::vector<InputFunction *> inputFunctions;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
class TableSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
TableSection() : SyntheticSection(llvm::wasm::WASM_SEC_TABLE) {}
|
|
|
|
|
|
|
|
bool isNeeded() const override {
|
|
|
|
// Always output a table section (or table import), even if there are no
|
|
|
|
// indirect calls. There are two reasons for this:
|
|
|
|
// 1. For executables it is useful to have an empty table slot at 0
|
|
|
|
// which can be filled with a null function call handler.
|
|
|
|
// 2. If we don't do this, any program that contains a call_indirect but
|
|
|
|
// no address-taken function will fail at validation time since it is
|
|
|
|
// a validation error to include a call_indirect instruction if there
|
|
|
|
// is not table.
|
|
|
|
return !config->importTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeBody() override;
|
|
|
|
};
|
|
|
|
|
2020-03-25 02:36:13 +00:00
|
|
|
class MemorySection : public SyntheticSection {
|
2019-05-21 09:13:09 +00:00
|
|
|
public:
|
2020-03-25 02:36:13 +00:00
|
|
|
MemorySection() : SyntheticSection(llvm::wasm::WASM_SEC_MEMORY) {}
|
2019-09-24 20:52:12 +00:00
|
|
|
|
2020-03-25 02:36:13 +00:00
|
|
|
bool isNeeded() const override { return !config->importMemory; }
|
|
|
|
void writeBody() override;
|
2019-05-21 09:13:09 +00:00
|
|
|
|
2020-06-30 00:53:09 +00:00
|
|
|
uint64_t numMemoryPages = 0;
|
|
|
|
uint64_t maxMemoryPages = 0;
|
2019-05-21 09:13:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// The event section contains a list of declared wasm events associated with the
|
|
|
|
// module. Currently the only supported event kind is exceptions. A single event
|
|
|
|
// entry represents a single event with an event tag. All C++ exceptions are
|
|
|
|
// represented by a single event. An event entry in this section contains
|
|
|
|
// information on what kind of event it is (e.g. exception) and the type of
|
|
|
|
// values contained in a single event object. (In wasm, an event can contain
|
|
|
|
// multiple values of primitive types. But for C++ exceptions, we just throw a
|
|
|
|
// pointer which is an i32 value (for wasm32 architecture), so the signature of
|
|
|
|
// C++ exception is (i32)->(void), because all event types are assumed to have
|
|
|
|
// void return type to share WasmSignature with functions.)
|
|
|
|
class EventSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
EventSection() : SyntheticSection(llvm::wasm::WASM_SEC_EVENT) {}
|
|
|
|
void writeBody() override;
|
|
|
|
bool isNeeded() const override { return inputEvents.size() > 0; }
|
|
|
|
void addEvent(InputEvent *event);
|
|
|
|
|
|
|
|
std::vector<InputEvent *> inputEvents;
|
|
|
|
};
|
|
|
|
|
2020-03-25 02:36:13 +00:00
|
|
|
class GlobalSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
GlobalSection() : SyntheticSection(llvm::wasm::WASM_SEC_GLOBAL) {}
|
|
|
|
uint32_t numGlobals() const {
|
|
|
|
assert(isSealed);
|
|
|
|
return inputGlobals.size() + dataAddressGlobals.size() +
|
2020-10-07 21:48:37 +00:00
|
|
|
internalGotSymbols.size();
|
2020-03-25 02:36:13 +00:00
|
|
|
}
|
|
|
|
bool isNeeded() const override { return numGlobals() > 0; }
|
|
|
|
void assignIndexes() override;
|
|
|
|
void writeBody() override;
|
|
|
|
void addGlobal(InputGlobal *global);
|
|
|
|
void addDataAddressGlobal(DefinedData *global);
|
2020-10-07 21:48:37 +00:00
|
|
|
|
|
|
|
// Add an internal GOT entry global that corresponds to the given symbol.
|
|
|
|
// Normally GOT entries are imported and assigned by the external dynamic
|
|
|
|
// linker. However, when linking PIC code statically or when linking with
|
|
|
|
// -Bsymbolic we can internalize GOT entries by declaring globals the hold
|
|
|
|
// symbol addresses.
|
|
|
|
//
|
|
|
|
// For the static linking case these internal globals can be completely
|
|
|
|
// eliminated by a post-link optimizer such as wasm-opt.
|
|
|
|
//
|
|
|
|
// TODO(sbc): Another approach to optimizing these away could be to use
|
|
|
|
// specific relocation types combined with linker relaxation which could
|
|
|
|
// transform a `global.get` to an `i32.const`.
|
|
|
|
void addInternalGOTEntry(Symbol *sym);
|
|
|
|
void generateRelocationCode(raw_ostream &os) const;
|
2020-03-25 02:36:13 +00:00
|
|
|
|
|
|
|
std::vector<const DefinedData *> dataAddressGlobals;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool isSealed = false;
|
|
|
|
std::vector<InputGlobal *> inputGlobals;
|
2020-10-07 21:48:37 +00:00
|
|
|
std::vector<Symbol *> internalGotSymbols;
|
2020-03-25 02:36:13 +00:00
|
|
|
};
|
|
|
|
|
2019-05-21 09:13:09 +00:00
|
|
|
class ExportSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
ExportSection() : SyntheticSection(llvm::wasm::WASM_SEC_EXPORT) {}
|
|
|
|
bool isNeeded() const override { return exports.size() > 0; }
|
|
|
|
void writeBody() override;
|
|
|
|
|
|
|
|
std::vector<llvm::wasm::WasmExport> exports;
|
2020-09-15 01:28:26 +00:00
|
|
|
std::vector<const Symbol *> exportedSymbols;
|
2019-05-21 09:13:09 +00:00
|
|
|
};
|
|
|
|
|
2019-09-04 19:50:39 +00:00
|
|
|
class StartSection : public SyntheticSection {
|
|
|
|
public:
|
2020-05-21 18:33:25 +00:00
|
|
|
StartSection(bool hasInitializedSegments)
|
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_START),
|
|
|
|
hasInitializedSegments(hasInitializedSegments) {}
|
2019-09-04 19:50:39 +00:00
|
|
|
bool isNeeded() const override;
|
|
|
|
void writeBody() override;
|
|
|
|
|
|
|
|
protected:
|
2020-05-21 18:33:25 +00:00
|
|
|
bool hasInitializedSegments;
|
2019-09-04 19:50:39 +00:00
|
|
|
};
|
|
|
|
|
2019-05-21 09:13:09 +00:00
|
|
|
class ElemSection : public SyntheticSection {
|
|
|
|
public:
|
2019-08-27 04:19:34 +00:00
|
|
|
ElemSection()
|
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_ELEM) {}
|
2019-05-21 09:13:09 +00:00
|
|
|
bool isNeeded() const override { return indirectFunctions.size() > 0; };
|
|
|
|
void writeBody() override;
|
|
|
|
void addEntry(FunctionSymbol *sym);
|
|
|
|
uint32_t numEntries() const { return indirectFunctions.size(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::vector<const FunctionSymbol *> indirectFunctions;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DataCountSection : public SyntheticSection {
|
|
|
|
public:
|
2019-10-15 19:05:11 +00:00
|
|
|
DataCountSection(ArrayRef<OutputSegment *> segments);
|
2019-05-21 09:13:09 +00:00
|
|
|
bool isNeeded() const override;
|
|
|
|
void writeBody() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
uint32_t numSegments;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create the custom "linking" section containing linker metadata.
|
|
|
|
// This is only created when relocatable output is requested.
|
|
|
|
class LinkingSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
LinkingSection(const std::vector<WasmInitEntry> &initFunctions,
|
|
|
|
const std::vector<OutputSegment *> &dataSegments)
|
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "linking"),
|
|
|
|
initFunctions(initFunctions), dataSegments(dataSegments) {}
|
2019-05-24 13:28:27 +00:00
|
|
|
bool isNeeded() const override {
|
|
|
|
return config->relocatable || config->emitRelocs;
|
|
|
|
}
|
2019-05-21 09:13:09 +00:00
|
|
|
void writeBody() override;
|
|
|
|
void addToSymtab(Symbol *sym);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::vector<const Symbol *> symtabEntries;
|
|
|
|
llvm::StringMap<uint32_t> sectionSymbolIndices;
|
|
|
|
const std::vector<WasmInitEntry> &initFunctions;
|
|
|
|
const std::vector<OutputSegment *> &dataSegments;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create the custom "name" section containing debug symbol names.
|
|
|
|
class NameSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
NameSection() : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "name") {}
|
|
|
|
bool isNeeded() const override {
|
|
|
|
return !config->stripDebug && !config->stripAll && numNames() > 0;
|
|
|
|
}
|
|
|
|
void writeBody() override;
|
|
|
|
unsigned numNames() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ProducersSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
ProducersSection()
|
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "producers") {}
|
|
|
|
bool isNeeded() const override {
|
|
|
|
return !config->stripAll && fieldCount() > 0;
|
|
|
|
}
|
|
|
|
void writeBody() override;
|
|
|
|
void addInfo(const llvm::wasm::WasmProducerInfo &info);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int fieldCount() const {
|
|
|
|
return int(!languages.empty()) + int(!tools.empty()) + int(!sDKs.empty());
|
|
|
|
}
|
|
|
|
SmallVector<std::pair<std::string, std::string>, 8> languages;
|
|
|
|
SmallVector<std::pair<std::string, std::string>, 8> tools;
|
|
|
|
SmallVector<std::pair<std::string, std::string>, 8> sDKs;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TargetFeaturesSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
TargetFeaturesSection()
|
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "target_features") {}
|
|
|
|
bool isNeeded() const override {
|
|
|
|
return !config->stripAll && features.size() > 0;
|
|
|
|
}
|
|
|
|
void writeBody() override;
|
|
|
|
|
|
|
|
llvm::SmallSet<std::string, 8> features;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RelocSection : public SyntheticSection {
|
|
|
|
public:
|
|
|
|
RelocSection(StringRef name, OutputSection *sec)
|
2020-01-28 19:23:46 +00:00
|
|
|
: SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, std::string(name)),
|
|
|
|
sec(sec) {}
|
2019-05-21 09:13:09 +00:00
|
|
|
void writeBody() override;
|
2019-07-10 09:10:01 +00:00
|
|
|
bool isNeeded() const override { return sec->getNumRelocations() > 0; };
|
2019-05-21 09:13:09 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
OutputSection *sec;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Linker generated output sections
|
|
|
|
struct OutStruct {
|
|
|
|
DylinkSection *dylinkSec;
|
|
|
|
TypeSection *typeSec;
|
|
|
|
FunctionSection *functionSec;
|
|
|
|
ImportSection *importSec;
|
|
|
|
TableSection *tableSec;
|
|
|
|
MemorySection *memorySec;
|
|
|
|
GlobalSection *globalSec;
|
|
|
|
EventSection *eventSec;
|
|
|
|
ExportSection *exportSec;
|
2019-09-04 19:50:39 +00:00
|
|
|
StartSection *startSec;
|
2019-05-21 09:13:09 +00:00
|
|
|
ElemSection *elemSec;
|
|
|
|
DataCountSection *dataCountSec;
|
|
|
|
LinkingSection *linkingSec;
|
|
|
|
NameSection *nameSec;
|
|
|
|
ProducersSection *producersSec;
|
|
|
|
TargetFeaturesSection *targetFeaturesSec;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern OutStruct out;
|
|
|
|
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|