webpack/lib/wasm/WebAssemblyParser.js

180 lines
4.5 KiB
JavaScript
Raw Normal View History

2017-10-30 20:56:57 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2018-04-28 00:53:07 +08:00
const t = require("@webassemblyjs/ast");
2018-03-01 22:07:43 +08:00
const { decode } = require("@webassemblyjs/wasm-parser");
const {
moduleContextFromModuleAST
} = require("@webassemblyjs/helper-module-context");
2018-03-01 22:07:43 +08:00
const { Tapable } = require("tapable");
2018-04-28 00:53:07 +08:00
const WebAssemblyImportDependency = require("../dependencies/WebAssemblyImportDependency");
const WebAssemblyExportImportedDependency = require("../dependencies/WebAssemblyExportImportedDependency");
2017-10-30 20:56:57 +08:00
2018-05-11 02:19:30 +08:00
/** @typedef {import("../Module")} Module */
2018-04-28 00:53:07 +08:00
/**
2018-05-09 23:40:38 +08:00
* @param {t.ModuleImport} n the import
2018-04-28 00:53:07 +08:00
* @returns {boolean} true, if a memory was imported
*/
2018-05-09 23:40:38 +08:00
const isMemoryImport = n => n.descr.type === "Memory";
2018-04-28 00:53:07 +08:00
/**
2018-05-09 23:40:38 +08:00
* @param {t.ModuleImport} n the import
2018-04-28 00:53:07 +08:00
* @returns {boolean} true, if a table was imported
*/
2018-05-09 23:40:38 +08:00
const isTableImport = n => n.descr.type === "Table";
/**
* @param {t.ModuleImport} n the import
* @returns {boolean} true, if a func was imported
*/
const isFuncImport = n => n.descr.type === "FuncImportDescr";
/**
* @param {t.ModuleImport} n the import
* @returns {boolean} true, if a global was imported
*/
const isGlobalImport = n => n.descr.type === "GlobalType";
2018-05-11 20:24:08 +08:00
const JS_COMPAT_TYPES = new Set(["i32", "f32", "f64"]);
/**
* @param {t.ModuleImport} moduleImport the import
* @returns {null | string} the type incompatible with js types
*/
const getJsIncompatibleType = moduleImport => {
if (moduleImport.descr.type !== "FuncImportDescr") return null;
const signature = moduleImport.descr.signature;
for (const param of signature.params) {
if (!JS_COMPAT_TYPES.has(param.valtype))
return `${param.valtype} as parameter`;
}
for (const type of signature.results) {
if (!JS_COMPAT_TYPES.has(type)) return `${type} as result`;
}
return null;
};
2018-02-28 15:50:29 +08:00
const decoderOpts = {
ignoreCodeSection: true,
ignoreDataSection: true,
// this will avoid having to lookup with identifiers in the ModuleContext
ignoreCustomNameSection: true
2018-02-28 15:50:29 +08:00
};
2017-10-30 20:56:57 +08:00
class WebAssemblyParser extends Tapable {
constructor(options) {
super();
2017-11-28 23:54:26 +08:00
this.hooks = {};
2017-10-30 20:56:57 +08:00
this.options = options;
}
2018-02-28 04:06:39 +08:00
parse(binary, state) {
// flag it as ESM
state.module.buildMeta.exportsType = "namespace";
// parse it
const program = decode(binary, decoderOpts);
const module = program.body[0];
const moduleContext = moduleContextFromModuleAST(module);
// extract imports and exports
2018-03-01 22:07:43 +08:00
const exports = (state.module.buildMeta.providedExports = []);
const jsIncompatibleExports = (state.module.buildMeta.jsIncompatibleExports = []);
const importedGlobals = [];
t.traverse(module, {
2018-03-01 22:07:43 +08:00
ModuleExport({ node }) {
const descriptor = node.descr;
if (descriptor.exportType === "Func") {
const funcidx = descriptor.id.value;
const funcSignature = moduleContext.getFunction(funcidx);
const hasIncompatibleArg = funcSignature.args.some(
t => !JS_COMPAT_TYPES.has(t)
);
const hasIncompatibleResult = funcSignature.result.some(
t => !JS_COMPAT_TYPES.has(t)
);
if (hasIncompatibleArg === true || hasIncompatibleResult === true) {
jsIncompatibleExports.push(node.name);
}
}
2018-05-09 23:53:25 +08:00
exports.push(node.name);
if (node.descr && node.descr.exportType === "Global") {
const refNode = importedGlobals[node.descr.id.value];
if (refNode) {
const dep = new WebAssemblyExportImportedDependency(
node.name,
refNode.module,
refNode.name
);
state.module.addDependency(dep);
}
}
},
Global({ node }) {
const init = node.init[0];
let importNode = null;
if (init.id === "get_global") {
const globalIdx = init.args[0].value;
if (globalIdx < importedGlobals.length) {
importNode = importedGlobals[globalIdx];
}
}
importedGlobals.push(importNode);
},
2018-03-01 22:07:43 +08:00
ModuleImport({ node }) {
/** @type {false | string} */
let onlyDirectImport = false;
2018-05-09 23:53:25 +08:00
if (isMemoryImport(node) === true) {
onlyDirectImport = "Memory";
} else if (isTableImport(node) === true) {
onlyDirectImport = "Table";
} else if (isFuncImport(node) === true) {
const incompatibleType = getJsIncompatibleType(node);
if (incompatibleType) {
onlyDirectImport = `Non-JS-compatible Func Sigurature (${incompatibleType})`;
}
}
2018-03-09 00:54:06 +08:00
const dep = new WebAssemblyImportDependency(
2018-05-09 23:53:25 +08:00
node.module,
node.name,
node.descr,
onlyDirectImport
2018-03-09 00:54:06 +08:00
);
state.module.addDependency(dep);
if (isGlobalImport(node)) {
importedGlobals.push(node);
}
}
});
return state;
2017-10-30 20:56:57 +08:00
}
}
module.exports = WebAssemblyParser;