-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabi.optimized.wat
90 lines (90 loc) · 1.71 KB
/
abi.optimized.wat
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
(module
(type $i (func (result i32)))
(type $iiiiv (func (param i32 i32 i32 i32)))
(type $v (func))
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
(global $abi/condition (mut i32) (i32.const 0))
(global $abi/y (mut i32) (i32.const 0))
(memory $0 1)
(data (i32.const 4) "\06\00\00\00a\00b\00i\00.\00t\00s")
(export "exported" (func $abi/exported))
(export "exportedExported" (func $abi/exportedExported))
(export "exportedInternal" (func $abi/exportedInternal))
(export "memory" (memory $0))
(start $start)
(func $abi/exported (; 1 ;) (type $i) (result i32)
(i32.const -128)
)
(func $abi/exportedExported (; 2 ;) (type $i) (result i32)
(call $abi/exported)
)
(func $abi/internal (; 3 ;) (type $i) (result i32)
(i32.const 128)
)
(func $abi/exportedInternal (; 4 ;) (type $i) (result i32)
(i32.shr_s
(i32.shl
(call $abi/internal)
(i32.const 24)
)
(i32.const 24)
)
)
(func $start (; 5 ;) (type $v)
(local $0 i32)
(drop
(call $abi/internal)
)
(set_global $abi/condition
(i32.const 1)
)
(set_local $0
(i32.const 256)
)
(if
(tee_local $0
(select
(i32.shr_s
(i32.shr_s
(i32.shl
(get_local $0)
(i32.const 24)
)
(i32.const 24)
)
(i32.const 24)
)
(i32.and
(get_local $0)
(i32.const 127)
)
(get_global $abi/condition)
)
)
(block
(call $abort
(i32.const 0)
(i32.const 4)
(i32.const 58)
(i32.const 2)
)
(unreachable)
)
)
(set_global $abi/y
(i32.const 0)
)
(if
(get_global $abi/y)
(block
(call $abort
(i32.const 0)
(i32.const 4)
(i32.const 65)
(i32.const 2)
)
(unreachable)
)
)
)
)