blob: 0cb2c69e7c84770a616cf269621ef68c722e5b9f (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
function asmFunc(imports) {
var Math_imul = Math.imul;
var Math_fround = Math.fround;
var Math_abs = Math.abs;
var Math_clz32 = Math.clz32;
var Math_min = Math.min;
var Math_max = Math.max;
var Math_floor = Math.floor;
var Math_ceil = Math.ceil;
var Math_trunc = Math.trunc;
var Math_sqrt = Math.sqrt;
function $0(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x == y | 0;
}
function $1(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x != y | 0;
}
function $2(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x < y | 0;
}
function $3(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x <= y | 0;
}
function $4(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x > y | 0;
}
function $5(x, y) {
x = Math_fround(x);
y = Math_fround(y);
return x >= y | 0;
}
return {
"eq": $0,
"ne": $1,
"lt": $2,
"le": $3,
"gt": $4,
"ge": $5
};
}
var retasmFunc = asmFunc({
});
export var eq = retasmFunc.eq;
export var ne = retasmFunc.ne;
export var lt = retasmFunc.lt;
export var le = retasmFunc.le;
export var gt = retasmFunc.gt;
export var ge = retasmFunc.ge;
|