forked from WebAssembly/binaryen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
control_flow.txt
77 lines (77 loc) · 895 Bytes
/
control_flow.txt
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
if
1 ==> 2
2 ==> 3
3 ==> 4
4 ==> 5
11 ==> 11
90 ==> 90
loop
1 ==> 128
2 ==> 128
3 ==> 192
4 ==> 128
11 ==> 176
90 ==> 180
loop_break
1 ==> 62
2 ==> 46
3 ==> 62
4 ==> 38
11 ==> 46
90 ==> 180
loop_continue
1 ==> 124
2 ==> 184
3 ==> 124
4 ==> 152
11 ==> 184
90 ==> 180
do_loop
1 ==> 121
2 ==> 121
3 ==> 185
4 ==> 121
11 ==> 169
90 ==> 179
do_once
1 ==> 2
2 ==> 4
3 ==> 6
4 ==> 8
11 ==> 22
90 ==> 179
while_forever
1 ==> 1922
2 ==> 1922
3 ==> 1474
4 ==> 1922
11 ==> 1346
90 ==> 1426
switch
1 ==> 10
2 ==> 60
3 ==> 20
4 ==> 60
11 ==> 50
90 ==> 60
switch_nodefault
1 ==> 10
2 ==> 70
3 ==> 20
4 ==> 70
11 ==> 50
90 ==> 70
switch_rdefault
1 ==> 10
2 ==> -60
3 ==> 20
4 ==> -60
11 ==> 50
90 ==> -60
switch_fallthrough
1 ==> 10
2 ==> 3
3 ==> 4
4 ==> 60
11 ==> 50
90 ==> 60