blob: 90d0cc9f13d0ec3ac4aa8adf6b2f8151268cabfe (
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
|
(module
(type $FUNCSIG$vi (func (param i32)))
(import "env" "memory" (memory $0 256 256))
(import "env" "table" (table 0 0 anyfunc))
(import "env" "memoryBase" (global $memoryBase i32))
(import "env" "tableBase" (global $tableBase i32))
(import "env" "setTempRet0" (func $setTempRet0 (param i32)))
(func $test1 (; 1 ;) (result i32)
(local $$b$1 i32)
(local $$x_sroa_0_0_extract_trunc i32)
(local $$2 i32)
(local $$1$1 i32)
(local $$1$0 i32)
(return
(block (result i32)
(call $setTempRet0
(i32.or
(i32.add
(i32.add
(i32.mul
(get_local $$b$1)
(get_local $$x_sroa_0_0_extract_trunc)
)
(get_local $$2)
)
(get_local $$1$1)
)
(i32.and
(get_local $$1$1)
(i32.const 0)
)
)
)
(i32.or
(i32.const 0)
(i32.and
(get_local $$1$0)
(i32.const -1)
)
)
)
)
)
(func $test2 (; 2 ;)
(call $setTempRet0
(i32.const 10)
)
)
)
|