diff options
author | Sam Clegg <sbc@chromium.org> | 2024-05-10 16:33:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 23:33:38 +0000 |
commit | abc430b617385f3e989f85e7bd1c2a9d838fd217 (patch) | |
tree | 5a7869083ae64cc59a04cb5512b3f175fade02d5 /test/spec/table_get.wast | |
parent | 9975b56614d4a5560b35f009be20d51e360b69dc (diff) | |
download | binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.tar.gz binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.tar.bz2 binaryen-abc430b617385f3e989f85e7bd1c2a9d838fd217.zip |
[memory64] Add table64 to existing memory64 support (#6577)
Tests is still very limited. Hopefully we can use the upstream spec
tests soon and avoid having to write our own tests for
`.set/.set/.fill/etc`.
See https://github.com/WebAssembly/memory64/issues/51
Diffstat (limited to 'test/spec/table_get.wast')
-rw-r--r-- | test/spec/table_get.wast | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/test/spec/table_get.wast b/test/spec/table_get.wast index de5f6622a..cc24ba3ec 100644 --- a/test/spec/table_get.wast +++ b/test/spec/table_get.wast @@ -1,30 +1,45 @@ (module (table $t2 2 externref) (table $t3 3 funcref) + (table $t64 i64 3 funcref) (elem (table $t3) (i32.const 1) func $dummy) (func $dummy) + (func (export "init") + ;; (table.set $t2 (i32.const 1) (local.get $r)) + (table.set $t3 (i32.const 2) (table.get $t3 (i32.const 1))) + ) + (func (export "get-externref") (param $i i32) (result externref) - (table.get $t2 (local.get $i)) + (table.get (local.get $i)) ) (func $f3 (export "get-funcref") (param $i i32) (result funcref) (table.get $t3 (local.get $i)) ) + (func $f4 (export "get-funcref-t64") (param $i i64) (result funcref) + (table.get $t64 (local.get $i)) + ) (func (export "is_null-funcref") (param $i i32) (result i32) (ref.is_null (call $f3 (local.get $i))) ) ) +;; (invoke "init" (ref.extern 1)) +(invoke "init") + (assert_return (invoke "get-externref" (i32.const 0)) (ref.null extern)) +;; (assert_return (invoke "get-externref" (i32.const 1)) (ref.extern 1)) (assert_return (invoke "get-funcref" (i32.const 0)) (ref.null func)) +(assert_return (invoke "get-funcref-t64" (i64.const 0)) (ref.null func)) (assert_return (invoke "is_null-funcref" (i32.const 1)) (i32.const 0)) +(assert_return (invoke "is_null-funcref" (i32.const 2)) (i32.const 0)) -(assert_trap (invoke "get-externref" (i32.const 2)) "out of bounds") -(assert_trap (invoke "get-funcref" (i32.const 3)) "out of bounds") -(assert_trap (invoke "get-externref" (i32.const -1)) "out of bounds") -(assert_trap (invoke "get-funcref" (i32.const -1)) "out of bounds") +(assert_trap (invoke "get-externref" (i32.const 2)) "out of bounds table access") +(assert_trap (invoke "get-funcref" (i32.const 3)) "out of bounds table access") +(assert_trap (invoke "get-externref" (i32.const -1)) "out of bounds table access") +(assert_trap (invoke "get-funcref" (i32.const -1)) "out of bounds table access") ;; Type errors |