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
|
(module
(import "env" "memory" (memory $0 1))
(table 0 funcref)
(data (i32.const 4) "\10\04\00\00")
(export "immediate_f32" (func $immediate_f32))
(export "immediate_f64" (func $immediate_f64))
(export "bitcast_i32_f32" (func $bitcast_i32_f32))
(export "bitcast_f32_i32" (func $bitcast_f32_i32))
(export "bitcast_i64_f64" (func $bitcast_i64_f64))
(export "bitcast_f64_i64" (func $bitcast_f64_i64))
(export "stackSave" (func $stackSave))
(export "stackAlloc" (func $stackAlloc))
(export "stackRestore" (func $stackRestore))
(func $immediate_f32 (; 0 ;) (result f32)
(f32.const 2.5)
)
(func $immediate_f64 (; 1 ;) (result f64)
(f64.const 2.5)
)
(func $bitcast_i32_f32 (; 2 ;) (param $0 f32) (result i32)
(i32.reinterpret_f32
(local.get $0)
)
)
(func $bitcast_f32_i32 (; 3 ;) (param $0 i32) (result f32)
(f32.reinterpret_i32
(local.get $0)
)
)
(func $bitcast_i64_f64 (; 4 ;) (param $0 f64) (result i64)
(i64.reinterpret_f64
(local.get $0)
)
)
(func $bitcast_f64_i64 (; 5 ;) (param $0 i64) (result f64)
(f64.reinterpret_i64
(local.get $0)
)
)
(func $stackSave (; 6 ;) (result i32)
(i32.load offset=4
(i32.const 0)
)
)
(func $stackAlloc (; 7 ;) (param $0 i32) (result i32)
(local $1 i32)
(i32.store offset=4
(i32.const 0)
(local.tee $1
(i32.and
(i32.sub
(i32.load offset=4
(i32.const 0)
)
(local.get $0)
)
(i32.const -16)
)
)
)
(local.get $1)
)
(func $stackRestore (; 8 ;) (param $0 i32)
(i32.store offset=4
(i32.const 0)
(local.get $0)
)
)
)
;; METADATA: { "asmConsts": {},"staticBump": 1040, "initializers": [], "declares": [], "externs": [], "implementedFunctions": ["_immediate_f32","_immediate_f64","_bitcast_i32_f32","_bitcast_f32_i32","_bitcast_i64_f64","_bitcast_f64_i64","_stackSave","_stackAlloc","_stackRestore"], "exports": ["immediate_f32","immediate_f64","bitcast_i32_f32","bitcast_f32_i32","bitcast_i64_f64","bitcast_f64_i64","stackSave","stackAlloc","stackRestore"], "invokeFuncs": [] }
|