File: bulk-memory.wast.fromBinary

package info (click to toggle)
binaryen 68-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,900 kB
  • sloc: cpp: 57,351; ansic: 3,562; python: 2,898; sh: 700; makefile: 6
file content (30 lines) | stat: -rw-r--r-- 489 bytes parent folder | download
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
(module
 (type $0 (func))
 (memory $0 1024 1024)
 (data (i32.const 0) "hello, world")
 (func $memory.init (; 0 ;) (type $0)
  (memory.init 0
   (i32.const 512)
   (i32.const 0)
   (i32.const 12)
  )
 )
 (func $data.drop (; 1 ;) (type $0)
  (data.drop 0)
 )
 (func $memory.copy (; 2 ;) (type $0)
  (memory.copy
   (i32.const 512)
   (i32.const 0)
   (i32.const 12)
  )
 )
 (func $memory.fill (; 3 ;) (type $0)
  (memory.fill
   (i32.const 0)
   (i32.const 42)
   (i32.const 1024)
  )
 )
)