blob: 31b94b43c2b5142d93474acf310c204febc5aeff (
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
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
|
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
(function TestMathCeilReturningFloatish() {
function Module(stdlib) {
"use asm";
var ceil = stdlib.Math.ceil;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return ceil(a);
}
return f;
}
var f = Module(this);
assertEquals(3, f(2.2));
assertFalse(%IsAsmWasmCode(Module));
})();
(function TestMathFloorReturningFloatish() {
function Module(stdlib) {
"use asm";
var floor = stdlib.Math.floor;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return floor(a);
}
return f;
}
var f = Module(this);
assertEquals(2, f(2.2));
assertFalse(%IsAsmWasmCode(Module));
})();
(function TestMathSqrtReturningFloatish() {
function Module(stdlib) {
"use asm";
var sqrt = stdlib.Math.sqrt;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return sqrt(a);
}
return f;
}
var f = Module(this);
assertEquals(Math.sqrt(Math.fround(2.2)), f(2.2));
assertFalse(%IsAsmWasmCode(Module));
})();
(function TestMathAbsReturningFloatish() {
function Module(stdlib) {
"use asm";
var abs = stdlib.Math.abs;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return abs(a);
}
return f;
}
var f = Module(this);
assertEquals(Math.fround(2.2), f(-2.2));
assertFalse(%IsAsmWasmCode(Module));
})();
(function TestMathMinReturningFloat() {
function Module(stdlib) {
"use asm";
var min = stdlib.Math.min;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return min(a, a);
}
return f;
}
var f = Module(this);
assertEquals(Math.fround(2.2), f(2.2));
assertTrue(%IsAsmWasmCode(Module));
})();
(function TestMathMaxReturningFloat() {
function Module(stdlib) {
"use asm";
var max = stdlib.Math.max;
var fround = stdlib.Math.fround;
function f(a) {
a = fround(a);
return max(a, a);
}
return f;
}
var f = Module(this);
assertEquals(Math.fround(2.2), f(2.2));
assertTrue(%IsAsmWasmCode(Module));
})();
|