Skip to content

Commit

Permalink
Use table.fill in externref-xform (TODO)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaslihotzki committed May 22, 2023
1 parent a9dea47 commit 9740e87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
15 changes: 4 additions & 11 deletions crates/externref-xform/src/lib.rs
Expand Up @@ -648,19 +648,12 @@ impl Transform<'_> {
// Note that we pave over all our stack slots with `ref.null` to ensure
// that the table doesn't accidentally hold a strong reference to items
// no longer in use by our wasm instance.
//
// TODO: use `table.fill` once that's spec'd
if externref_stack > 0 {
for i in 0..externref_stack {
body.local_get(fp);
if i > 0 {
body.i32_const(i).binop(BinaryOp::I32Add);
}
body.ref_null(ValType::Externref);
body.table_set(self.table);
}

body.local_get(fp)
.ref_null(ValType::Externref)
.i32_const(externref_stack)
.table_fill(self.table)
.local_get(fp)
.i32_const(externref_stack)
.binop(BinaryOp::I32Add)
.global_set(self.stack_pointer);
Expand Down
3 changes: 2 additions & 1 deletion crates/externref-xform/tests/anyref-param.wat
Expand Up @@ -25,7 +25,8 @@
call $foo
local.get 1
ref.null extern
table.set 0
i32.const 1
table.fill 0
local.get 1
i32.const 1
i32.add
Expand Down
3 changes: 2 additions & 1 deletion crates/externref-xform/tests/mixed-export.wat
Expand Up @@ -34,7 +34,8 @@
call $a
local.get 5
ref.null extern
table.set 0
i32.const 1
table.fill 0
local.get 5
i32.const 1
i32.add
Expand Down

0 comments on commit 9740e87

Please sign in to comment.