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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
function a() {
f((HEAPU8[10202] | 0) + 5 | 0);
f((HEAPU8[10202] | 0) | 0);
f(347 | 0);
f(347 | 12);
f(347 & 12);
HEAP[4096 >> 2] = 5;
HEAP[(4096 & 8191) >> 2] = 5;
whee(12, 13) | 0;
+whee(12, 13);
}
function b($this, $__n) {
$this = $this | 0;
$__n = $__n | 0;
var $4 = 0, $5 = 0, $10 = 0, $13 = 0, $14 = 0, $15 = 0, $23 = 0, $30 = 0, $38 = 0, $40 = 0;
if (($__n | 0) == 0) {
return;
}
$4 = $this;
$5 = HEAP8[$4 & 16777215] | 0;
if (($5 & 1) << 24 >> 24 == 0) {
$14 = 10;
$13 = $5;
} else {
$10 = HEAP32[(($this | 0) & 16777215) >> 2] | 0;
$14 = ($10 & -2) - 1 | 0;
$13 = $10 & 255;
}
$15 = $13 & 255;
if (($15 & 1 | 0) == 0) {
$23 = $15 >>> 1;
} else {
$23 = HEAP32[(($this + 4 | 0) & 16777215) >> 2] | 0;
}
if (($14 - $23 | 0) >>> 0 < $__n >>> 0) {
__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj($this, $14, ($__n - $14 | 0) + $23 | 0, $23, $23);
$30 = HEAP8[$4 & 16777215] | 0;
} else {
$30 = $13;
}
if (($30 & 1) << 24 >> 24 == 0) {
$38 = $this + 1 | 0;
} else {
$38 = HEAP32[(($this + 8 | 0) & 16777215) >> 2] | 0;
}
_memset($38 + $23 | 0 | 0 | 0, 0 | 0 | 0, $__n | 0 | 0, 1 | 0 | 0, 1213141516);
$40 = $23 + $__n | 0;
if (((HEAP8[$4 & 16777215] | 0) & 1) << 24 >> 24 == 0) {
HEAP8[$4 & 16777215] = $40 << 1 & 255;
} else {
HEAP32[(($this + 4 | 0) & 16777215) >> 2] = $40;
}
HEAP8[($38 + $40 | 0) & 16777215] = 0;
return;
}
function rett() {
if (f()) {
g();
return 5;
}
// missing final return, need to add it
}
function ret2t() {
if (f()) {
g();
return;
}
// missing final return, but no need
}
function retf() {
if (f()) {
g();
return +h();
}
// missing final return, need it as a float
}
function i32_8() {
if (((HEAP8[$4 & 16777215] | 0) << 24 >> 24) == 0) {
print(5);
}
if ((HEAP8[$5 & 16777215] << 24 >> 24) == 0) {
print(5);
}
if (((HEAPU8[$6 & 16777215] | 0) << 24 >> 24) == 0) {
print(5);
}
if ((HEAPU8[$7 & 16777215] << 24 >> 24) == 0) {
print(5);
}
// non-valid
if ((HEAPU8[$8 & 16777215] << 24 >> 16) == 0) {
print(5);
}
if ((HEAPU8[$9 & 16777215] << 16 >> 16) == 0) {
print(5);
}
}
function sign_extension_simplification() {
if ((HEAP8[$4 & 16777215] & 127) << 24 >> 24 == 0) {
print(5);
}
if ((HEAP8[$4 & 16777215] & 128) << 24 >> 24 == 0) {
print(5);
}
if ((HEAP32[$5 & 16777215] & 32767) << 16 >> 16 == 0) {
print(5);
}
if ((HEAP32[$5 & 16777215] & 32768) << 16 >> 16 == 0) {
print(5);
}
}
// EMSCRIPTEN_GENERATED_FUNCTIONS: ["a", "b", "rett", "ret2t", "retf", "i32_8"]
|