新聞中心
Asm.js是JavaScript的高性能子集,簡化特性便于優(yōu)化。Mozilla現(xiàn)在宣布,asm.js性能進(jìn)一步逼近原生,asm.js的速度已達(dá)到原生碼的三分之二, 而以前只能達(dá)到二分之一甚至更低。Mozilla是通過改變浮點(diǎn)算法處理方式改進(jìn)asm.js性能。

創(chuàng)新互聯(lián)專注于開魯網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供開魯營銷型網(wǎng)站建設(shè),開魯網(wǎng)站制作、開魯網(wǎng)頁設(shè)計(jì)、開魯網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造開魯網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供開魯網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
JavaScript默認(rèn)使用float64數(shù)據(jù)類型,以提供***的數(shù)據(jù)精度,但相比范圍較小的int、int32、float和float32數(shù) 據(jù)類型,float64的效率并不高,Mozilla的 SpiderMonkey引擎在asm.js中加入了float32數(shù)據(jù)類型,允許將C/C++程序中的float32算法直接翻譯到asm.js的 float32算法。
Mozilla相信asm.js的性能還能進(jìn)一步提升。
asm.js 是一個底層、格外為 JavaScript 子集優(yōu)化的編譯器。這是 Mozilla 研究項(xiàng)目,類似 Emscripten, Mandreel, 和 LLJS.
示例代碼:
- function mymodule(global, foreign, buffer) {
- "use asm";
- // -------------------------------------------------------------------------
- // SECTION 1: imports
- var H32 = new global.Int32Array(buffer);
- var HU32 = new global.Uint32Array(buffer);
- var log = foreign.consoleDotLog;
- // -------------------------------------------------------------------------
- // SECTION 2: functions
- function f(x, y, z, w) {
- // SECTION A: parameter type declarations
- x = x|0; // int parameter
- y = +y; // double parameter
- // SECTION B: function body
- log(x|0); // call into FFI -- must force the sign
- log(y); // call into FFI -- already know it's a double
- x = (x+3)|0; // signed addition
- // SECTION C: unconditional return
- return ((((x+1)|0)>>>0)/(x|0))>>>0; // compound expression
- }
- function g() {
- g_f = +g_i; // read/write globals
- return;
- }
- function g2() {
- return;
- }
- function h(i, x) {
- i = i|0;
- x = x|0;
- H32[(i&0xffffffff)>>4] = x; // masked by 2^k-1, shifted by byte count
- ftable_2[(x-2)&2](); // dynamic call of functions in table 2
- }
- // -------------------------------------------------------------------------
- // SECTION 3: function tables
- var ftable_1 = [f];
- var ftable_2 = [g, g2]; // all of the same type
- // -------------------------------------------------------------------------
- // SECTION 4: globals
- var g_i = 0; // int global
- var g_f = 0.0; // double global
- // -------------------------------------------------------------------------
- // SECTION 5: exports
- return { f_export: f, goop: g };
- }
當(dāng)前題目:Asm.js性能逼近原生碼
文章URL:http://m.fisionsoft.com.cn/article/cdedcpg.html


咨詢
建站咨詢
