Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand tests for array.new_data #562

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions test/core/gc/array_new_data.wast
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
(module
(type $arr (array (mut i8)))

(data $d "abcd")

(func (export "array-new-data") (param i32 i32) (result (ref $arr))
(array.new_data $arr $d (local.get 0) (local.get 1))
)
)

;; In-bounds data segment accesses.
(assert_return (invoke "array-new-data" (i32.const 0) (i32.const 0)) (ref.array))
(assert_return (invoke "array-new-data" (i32.const 0) (i32.const 4)) (ref.array))
(assert_return (invoke "array-new-data" (i32.const 1) (i32.const 2)) (ref.array))
(assert_return (invoke "array-new-data" (i32.const 4) (i32.const 0)) (ref.array))

;; Out-of-bounds data segment accesses.
(assert_trap (invoke "array-new-data" (i32.const 0) (i32.const 5)) "out of bounds memory access")
(assert_trap (invoke "array-new-data" (i32.const 5) (i32.const 0)) "out of bounds memory access")
fitzgen marked this conversation as resolved.
Show resolved Hide resolved

(module
(type $arr (array (mut i8)))

(data $d "\aa\bb\cc\dd")

(func (export "array-new-data-contents") (result i32 i32)
(local (ref null $arr))
fitzgen marked this conversation as resolved.
Show resolved Hide resolved
(local.set 0 (array.new_data $arr $d (i32.const 1) (i32.const 2)))
(array.get_u $arr (local.get 0) (i32.const 0))
(array.get_u $arr (local.get 0) (i32.const 1))
)
)

;; Array is initialized with the correct contents.
(assert_return (invoke "array-new-data-contents") (i32.const 0xbb) (i32.const 0xcc))

(module
(type $arr (array (mut i32)))

(data $d "\aa\bb\cc\dd")

(func (export "array-new-data-little-endian") (result i32)
(array.get $arr
(array.new_data $arr $d (i32.const 0) (i32.const 1))
(i32.const 0))
)
)

;; Data segments are interpreted as little-endian.
(assert_return (invoke "array-new-data-little-endian") (i32.const 0xddccbbaa))
fitzgen marked this conversation as resolved.
Show resolved Hide resolved
Loading