您好,欢迎访问一九零五行业门户网

asm.js使用示例代码_基础知识

复制代码 代码如下:
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 };
}
其它类似信息

推荐信息