[WebAssembly] Improve support for "needed" list in dylink section

This change adds basic support for shared library dependencies
via the dylink section.

See https://github.com/WebAssembly/tool-conventions/pull/77

Differential Revision: https://reviews.llvm.org/D59237

llvm-svn: 356102
This commit is contained in:
Sam Clegg 2019-03-13 21:29:20 +00:00
parent bb1aced80d
commit a688a42cdd
8 changed files with 65 additions and 2 deletions

View File

@ -0,0 +1,38 @@
; RUN: llc -filetype=obj %s -o %t.o
; RUN: llc -filetype=obj %p/Inputs/ret32.ll -o %t.ret32.o
; RUN: wasm-ld -shared -o %t1.so %t.o
; RUN: obj2yaml %t1.so | FileCheck %s -check-prefix=SO1
; RUN: wasm-ld -shared -o %t2.so %t1.so %t.ret32.o
; RUN: obj2yaml %t2.so | FileCheck %s -check-prefix=SO2
target triple = "wasm32-unknown-unknown"
@data = global i32 2, align 4
define default void @foo() {
entry:
ret void
}
; SO1: Sections:
; SO1-NEXT: - Type: CUSTOM
; SO1-NEXT: Name: dylink
; SO1-NEXT: MemorySize: 4
; SO1-NEXT: MemoryAlignment: 2
; SO1-NEXT: TableSize: 0
; SO1-NEXT: TableAlignment: 0
; SO1-NEXT: Needed: []
; SO1-NEXT: - Type: TYPE
; SO2: Sections:
; SO2-NEXT: - Type: CUSTOM
; SO2-NEXT: Name: dylink
; SO2-NEXT: MemorySize: 0
; SO2-NEXT: MemoryAlignment: 0
; SO2-NEXT: TableSize: 0
; SO2-NEXT: TableAlignment: 0
; SO2-NEXT: Needed:
; SO2-NEXT: - shared-needed.ll.tmp1.so
; SO2-NEXT: - Type: TYPE

View File

@ -33,6 +33,8 @@ declare void @func_external()
; CHECK-NEXT: MemoryAlignment: 2
; CHECK-NEXT: TableSize: 2
; CHECK-NEXT: TableAlignment: 0
; CHECK-NEXT: Needed: []
; CHECK-NEXT: - Type: TYPE
; check for import of __table_base and __memory_base globals

View File

@ -44,8 +44,13 @@ Optional<MemoryBufferRef> lld::wasm::readFile(StringRef Path) {
InputFile *lld::wasm::createObjectFile(MemoryBufferRef MB) {
file_magic Magic = identify_magic(MB.getBuffer());
if (Magic == file_magic::wasm_object)
if (Magic == file_magic::wasm_object) {
std::unique_ptr<Binary> Bin = check(createBinary(MB));
auto *Obj = cast<WasmObjectFile>(Bin.get());
if (Obj->isSharedObject())
return make<SharedFile>(MB);
return make<ObjFile>(MB);
}
if (Magic == file_magic::bitcode)
return make<BitcodeFile>(MB);

View File

@ -33,6 +33,7 @@ class InputFile {
public:
enum Kind {
ObjectKind,
SharedKind,
ArchiveKind,
BitcodeKind,
};
@ -129,6 +130,16 @@ private:
std::unique_ptr<WasmObjectFile> WasmObj;
};
// .so file.
class SharedFile : public InputFile {
public:
explicit SharedFile(MemoryBufferRef M) : InputFile(SharedKind, M) {}
static bool classof(const InputFile *F) { return F->kind() == SharedKind; }
void parse() override {}
};
// .bc file
class BitcodeFile : public InputFile {
public:
explicit BitcodeFile(MemoryBufferRef M) : InputFile(BitcodeKind, M) {}

View File

@ -37,6 +37,8 @@ void SymbolTable::addFile(InputFile *File) {
BitcodeFiles.push_back(F);
else if (auto *F = dyn_cast<ObjFile>(File))
ObjectFiles.push_back(F);
else if (auto *F = dyn_cast<SharedFile>(File))
SharedFiles.push_back(F);
}
// This function is where all the optimizations of link-time

View File

@ -39,6 +39,7 @@ public:
void addCombinedLTOObject();
std::vector<ObjFile *> ObjectFiles;
std::vector<InputFile *> SharedFiles;
std::vector<BitcodeFile *> BitcodeFiles;
std::vector<InputFunction *> SyntheticFunctions;
std::vector<InputGlobal *> SyntheticGlobals;

View File

@ -28,6 +28,7 @@
#include "llvm/Support/Format.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/LEB128.h"
#include "llvm/Support/Path.h"
#include <cstdarg>
#include <map>
@ -502,7 +503,9 @@ void Writer::createDylinkSection() {
writeUleb128(OS, MemAlign, "MemAlign");
writeUleb128(OS, IndirectFunctions.size(), "TableSize");
writeUleb128(OS, 0, "TableAlign");
writeUleb128(OS, 0, "Needed"); // TODO: Support "needed" shared libraries
writeUleb128(OS, Symtab->SharedFiles.size(), "Needed");
for (auto *SO : Symtab->SharedFiles)
writeStr(OS, llvm::sys::path::filename(SO->getName()), "so name");
}
// Create the custom "linking" section containing linker metadata.

View File

@ -324,6 +324,7 @@ Error WasmObjectFile::parseSection(WasmSection &Sec) {
Error WasmObjectFile::parseDylinkSection(ReadContext &Ctx) {
// See https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
HasDylinkSection = true;
DylinkInfo.MemorySize = readVaruint32(Ctx);
DylinkInfo.MemoryAlignment = readVaruint32(Ctx);
DylinkInfo.TableSize = readVaruint32(Ctx);