手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >asm.js使用示例代码
asm.js使用示例代码
摘要:复制代码代码如下:functionmymodule(global,foreign,buffer){"useasm";//----------...

复制代码 代码如下:

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 };

}

【asm.js使用示例代码】相关文章:

JavaScript中的parse()方法使用简介

jQuery实现div随意拖动的实例代码(通用代码)

AspNet中使用JQuery上传插件Uploadify详解

使用Node.js处理前端代码文件的编码问题

JavaScript函数使用的基本教程

angular2使用简单介绍

JavaScript中strike()方法的使用介绍

微信WeixinJSBridge API使用实例

javascript中FOREACH数组方法使用示例

在ASP.NET MVC项目中使用RequireJS库的用法示例

精品推荐
分类导航