summaryrefslogtreecommitdiff
path: root/test/binaryen.js/low-memory-unused.js.txt
blob: 4933825a5b03c83b94e70bd509d2542195025698 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
=== 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 $i32_=>_i32 (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 $i32_=>_i32 (func (param i32) (result i32)))
 (memory $0 1)
 (export "test" (func $test))
 (func $test (; has Stack IR ;) (param $0 i32) (result i32)
  (i32.load
   (i32.add
    (local.get $0)
    (i32.const 128)
   )
  )
 )
)

// beginning a Binaryen API trace
#include <math.h>
#include <map>
#include "binaryen-c.h"
int main() {
  std::map<size_t, BinaryenType> types;
  std::map<size_t, BinaryenExpressionRef> expressions;
  std::map<size_t, BinaryenFunctionRef> functions;
  std::map<size_t, BinaryenGlobalRef> globals;
  std::map<size_t, BinaryenEventRef> events;
  std::map<size_t, BinaryenExportRef> exports;
  std::map<size_t, RelooperBlockRef> relooperBlocks;
  BinaryenModuleRef the_module = NULL;
  RelooperRef the_relooper = NULL;
  BinaryenSetLowMemoryUnused(1);
  BinaryenGetLowMemoryUnused();
  return 0;
}
// ending a Binaryen API trace

=== optimized, lowMemoryUnused=true ===
(module
 (type $i32_=>_i32 (func (param i32) (result i32)))
 (memory $0 1)
 (export "test" (func $test))
 (func $test (; has Stack IR ;) (param $0 i32) (result i32)
  (i32.load offset=128
   (local.get $0)
  )
 )
)