diff options
author | Thomas Lively <tlively@google.com> | 2022-11-11 12:08:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 20:08:08 +0000 |
commit | cf908c7976d02a9d3d4810a2b5a04e502e4efed2 (patch) | |
tree | ac04d8c683903cc76b6e95668bf850f03f9b4be8 /test/lit/array-new-seg-note-count.wast | |
parent | 3928189214e03430bbc9f2b51c6af3887b465160 (diff) | |
download | binaryen-cf908c7976d02a9d3d4810a2b5a04e502e4efed2.tar.gz binaryen-cf908c7976d02a9d3d4810a2b5a04e502e4efed2.tar.bz2 binaryen-cf908c7976d02a9d3d4810a2b5a04e502e4efed2.zip |
Fix two fuzz bugs with ArrayNewSeg (#5242)
First, we forgot to note the type annotation on `ArrayNewSeg` instructions, so
in small modules where these are the only annotated instructions, the type
section would be incomplete.
Second, in the interpreter we were reserving space for the array before checking
that the segment access was valid. This could cause huge allocations that threw
bad_alloc exceptions before the interpreter could get around to trapping. Fix
the problem by reserving the array after validating the arguements.
Fixes #5236.
Diffstat (limited to 'test/lit/array-new-seg-note-count.wast')
-rw-r--r-- | test/lit/array-new-seg-note-count.wast | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/lit/array-new-seg-note-count.wast b/test/lit/array-new-seg-note-count.wast new file mode 100644 index 000000000..45c08e313 --- /dev/null +++ b/test/lit/array-new-seg-note-count.wast @@ -0,0 +1,25 @@ +;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited. + +;; RUN: wasm-opt %s -all --roundtrip -S -o - | filecheck %s + +;; Test that the array type is emitted into the type section properly. +(module + ;; CHECK: (type $vec (array i32)) + (type $vec (array i32)) + ;; CHECK: (type $none_=>_ref|$vec| (func (result (ref $vec)))) + + ;; CHECK: (data "") + (data "") + ;; CHECK: (func $test (result (ref $vec)) + ;; CHECK-NEXT: (array.new_data $vec 0 + ;; CHECK-NEXT: (i32.const 0) + ;; CHECK-NEXT: (i32.const 0) + ;; CHECK-NEXT: ) + ;; CHECK-NEXT: ) + (func $test (result (ref $vec)) + (array.new_data $vec 0 + (i32.const 0) + (i32.const 0) + ) + ) +) |