summaryrefslogtreecommitdiff
path: root/test/ctor-eval/basics-flatten.wast
blob: f53b772f0475987e633f69e392c43d35790ff25a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(module
  (type $v (func))
  (memory 256 256)
  ;; test flattening of multiple segments
  (data (i32.const 10) "waka ")
  (data (i32.const 15) "waka") ;; skip a byte here
  (data (i32.const 20) "waka waka waka")
  (table 1 1 funcref)
  (elem (i32.const 0) $call-indirect)
  (export "test1" (func $test1))
  (export "test2" (func $test2))
  (export "test3" (func $test3))
  (func $test1
    (drop (i32.const 0)) ;; no work at all, really
    (call $safe-to-call) ;; safe to call
    (call_indirect (type $v) (i32.const 0)) ;; safe to call
  )
  (func $test2
    (drop (i32.load (i32.const 12))) ;; a safe load
    (drop (i32.load16_s (i32.const 12)))
    (drop (i32.load8_s (i32.const 12)))
    (drop (i32.load16_u (i32.const 12)))
    (drop (i32.load8_u (i32.const 12)))
  )
  (func $test3
    (i32.store (i32.const 12) (i32.const 115)) ;; a safe store, should alter memory
    (i32.store16 (i32.const 20) (i32.const 31353))
    (i32.store8 (i32.const 23) (i32.const 120))
  )
  (func $safe-to-call
    (drop (i32.const 1))
    (i32.store8 (i32.const 10) (i32.const 110)) ;; safe write too (lowest possible)
    (i32.store8 (i32.const 33) (i32.const 109)) ;; safe write too (highest possible)
  )
  (func $call-indirect
    (i32.store8 (i32.const 40) (i32.const 67))
  )
)