[PATCH] D81962: [lld][WebAssembly] Allow ctors functions that return values
Sam Clegg via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 16 13:12:21 PDT 2020
sbc100 created this revision.
Herald added subscribers: llvm-commits, sunfish, aheejin, jgravelle-google, dschuff.
Herald added a project: LLVM.
sbc100 added reviewers: dschuff, sunfish.
Some projects use the constructor attribute on functions that also
return values. In this case we just ignore them.
The error was reported in the libgpg-error project that marks
gpg_err_init with the `__constructor__` attribute.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D81962
Files:
lld/test/wasm/ctor_return_value.s
lld/wasm/Writer.cpp
Index: lld/wasm/Writer.cpp
===================================================================
--- lld/wasm/Writer.cpp
+++ lld/wasm/Writer.cpp
@@ -909,6 +909,9 @@
for (const WasmInitEntry &f : initFunctions) {
writeU8(os, WASM_OPCODE_CALL, "CALL");
writeUleb128(os, f.sym->getFunctionIndex(), "function index");
+ for (size_t i = 0; i < f.sym->signature->Returns.size(); i++) {
+ writeU8(os, WASM_OPCODE_DROP, "DROP");
+ }
}
writeU8(os, WASM_OPCODE_END, "END");
}
@@ -973,8 +976,8 @@
if (sym->isDiscarded())
continue;
assert(sym->isLive());
- if (*sym->signature != WasmSignature{{}, {}})
- error("invalid signature for init func: " + toString(*sym));
+ if (sym->signature->Params.size() != 0)
+ error("constructor functions cannot take arguments: " + toString(*sym));
LLVM_DEBUG(dbgs() << "initFunctions: " << toString(*sym) << "\n");
initFunctions.emplace_back(WasmInitEntry{sym, f.Priority});
}
Index: lld/test/wasm/ctor_return_value.s
===================================================================
--- /dev/null
+++ lld/test/wasm/ctor_return_value.s
@@ -0,0 +1,46 @@
+# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
+# RUN: wasm-ld %t.o -o %t.wasm
+# RUN: obj2yaml %t.wasm | FileCheck %s
+
+ .globl myctor
+myctor:
+ .functype myctor () -> (i32)
+ i32.const 1
+
+ end_function
+
+ .globl _start
+_start:
+ .functype _start () -> ()
+ call __wasm_call_ctors
+ end_function
+
+ .section .init_array.100,"",@
+ .p2align 2
+ .int32 myctor
+ .int32 myctor
+ .int32 myctor
+
+.type __wasm_call_ctors, at function
+
+# CHECK: - Type: CODE
+# CHECK-NEXT: Functions:
+# CHECK-NEXT: - Index: 0
+# CHECK-NEXT: Locals: []
+# CHECK-NEXT: Body: 10011A10011A10011A0B
+# CHECK-NEXT: - Index: 1
+# CHECK-NEXT: Locals: []
+# CHECK-NEXT: Body: 41010B
+# CHECK-NEXT: - Index: 2
+# CHECK-NEXT: Locals: []
+# CHECK-NEXT: Body: 1080808080000B
+# CHECK-NEXT: - Type: CUSTOM
+# CHECK-NEXT: Name: name
+# CHECK-NEXT: FunctionNames:
+# CHECK-NEXT: - Index: 0
+# CHECK-NEXT: Name: __wasm_call_ctors
+# CHECK-NEXT: - Index: 1
+# CHECK-NEXT: Name: myctor
+# CHECK-NEXT: - Index: 2
+# CHECK-NEXT: Name: _start
+# CHECK-NEXT: ...
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D81962.271172.patch
Type: text/x-patch
Size: 2577 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200616/38d9cdab/attachment.bin>
More information about the llvm-commits
mailing list