summaryrefslogtreecommitdiff
path: root/test/binaryen.js/low-memory-unused.js.txt
blob: d9b10a3f62904f4e316345f48d3faa25885229da (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
=== input wast ===
(module
 (memory $0 1)
 (export "test" (func $test))
 (func $test (param $0 i32) (result i32)
  (i32.load
    (i32.add
      (local.get $0)
      (i32.const 128)
    )
  )
 )
)

=== unoptimized ===
(module
 (type $0 (func (param i32) (result i32)))
 (memory $0 1)
 (export "test" (func $test))
 (func $test (param $0 i32) (result i32)
  (i32.load
   (i32.add
    (local.get $0)
    (i32.const 128)
   )
  )
 )
)

=== optimized, lowMemoryUnused=false ===
(module
 (type $0 (func (param i32) (result i32)))
 (memory $0 1)
 (export "test" (func $test))
 (func $test (param $0 i32) (result i32)
  (i32.load
   (i32.add
    (local.get $0)
    (i32.const 128)
   )
  )
 )
)


=== optimized, lowMemoryUnused=true ===
(module
 (type $0 (func (param i32) (result i32)))
 (memory $0 1)
 (export "test" (func $test))
 (func $test (param $0 i32) (result i32)
  (i32.load offset=128
   (local.get $0)
  )
 )
)