diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lit/ctor-eval/high_memory.wast | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/lit/ctor-eval/high_memory.wast b/test/lit/ctor-eval/high_memory.wast new file mode 100644 index 000000000..edcfe2446 --- /dev/null +++ b/test/lit/ctor-eval/high_memory.wast @@ -0,0 +1,42 @@ +;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited. +;; RUN: wasm-ctor-eval %s --ctors=test1,test2 --kept-exports=test1,test2 --quiet -all -S -o - | filecheck %s + +(module + ;; CHECK: (type $none_=>_none (func)) + + ;; CHECK: (memory $0 1616) + (memory $0 1616) ;; 101 MB + + (func "test1" + ;; This write will be evalled into a data segment and removed. + (i32.store8 + (i32.const 0x63fffff) ;; 100 MB - 1 + (i32.const 42) + ) + ) + + (func "test2" + ;; We stop at this write to a high address (wasm-ctor-eval generally only + ;; writes to low addresses, so it is tuned for that) + (i32.store8 + (i32.const 0x6400000) ;; 100 MB + (i32.const 43) + ) + ) +) +;; CHECK: (data $0 (i32.const 104857599) "*") + +;; CHECK: (export "test1" (func $0_2)) + +;; CHECK: (export "test2" (func $1)) + +;; CHECK: (func $1 (type $none_=>_none) +;; CHECK-NEXT: (i32.store8 +;; CHECK-NEXT: (i32.const 104857600) +;; CHECK-NEXT: (i32.const 43) +;; CHECK-NEXT: ) +;; CHECK-NEXT: ) + +;; CHECK: (func $0_2 (type $none_=>_none) +;; CHECK-NEXT: (nop) +;; CHECK-NEXT: ) |