我创建了一个 jsPref,来测试这个 asm.js 的东西:http: //jsperf.com/asm-diag
我认为我做错了什么,因为 asmjs 代码的运行速度比常规 js 代码慢两倍,即使在 firefox nightly 中也是如此。
我不知道代码有什么问题。
提前致谢,
编辑:
Benchmark.prototype.setup = function() {
function DiagModule(stdlib, foreign, heap) {
"use asm";
// Variable Declarations
var sqrt = stdlib.Math.sqrt;
var pow = stdlib.Math.pow;
// Function Declarations
function square(x) {
x = x|0;
return (pow(x, 2))|0;
}
function diag(x, y) {
x = x|0;
y = y|0;
return +sqrt(square(x) + square(y));
}
return { diag: diag };
}
diag = DiagModule({ Math: Math }).diag;
};
汇编:
var _diag = diag(10, 100);
常规的:
var _diag = Math.sqrt(Math.pow(10, 2) + Math.pow(100, 2))