summaryrefslogtreecommitdiff
path: root/test/binaryen.js/sourcemap.js
diff options
context:
space:
mode:
authorDaniel Wirtz <dcode@dcode.io>2019-12-20 00:36:11 +0100
committerAlon Zakai <azakai@google.com>2019-12-19 15:36:11 -0800
commit02e6ba2b139e6c7ac0a97baa2af75df4250e140f (patch)
treeabef9ae255bf9d7369c47ef8c0ff714ef4d85b46 /test/binaryen.js/sourcemap.js
parent81c16df401347e8e067fe9ccf0c26ae532bc03d5 (diff)
downloadbinaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.tar.gz
binaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.tar.bz2
binaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.zip
Compile Binaryen to WebAssembly (#2503)
This PR enables compiling Binaryen to WebAssembly when building binaryen.js. Since WebAssembly is best compiled and instantiated asynchronously in browsers, it also adds a new mechanism to tell if respectively when the module is ready by means of one of the following: // Using a promise const binaryen = require("binaryen"); binaryen.ready.then(() => { ... use normally ... }); // Using await const binaryen = require("binaryen"); (async () => { await binaryen.ready; ... use normally ... })(); // Where top-level await is available const binaryen = await require("binaryen").ready; ... use normally ... One can also tell if Binaryen is already ready (for example when assuming it in follow-up code) by: if (/* we already know that */ binaryen.isReady) { ... use normally ... } else { throw Error("Binaryen is supposed to be ready here but isn't"); } The JS test cases have been updated accordingly by wrapping everything in a test function and invoking it once ready. Documentation will have to be updated as well to cover this of course. New file size is about 2.5mb, even though the Wasm becomes inlined into the JS file which makes distribution across different environments a lot easier. Also makes building binaryen (to either js or wasm) emit binaryen.js, and not binaryen_js.js etc. Supersedes and thus fixes #1381 With .ready it also fixes #2452
Diffstat (limited to 'test/binaryen.js/sourcemap.js')
-rw-r--r--test/binaryen.js/sourcemap.js74
1 files changed, 39 insertions, 35 deletions
diff --git a/test/binaryen.js/sourcemap.js b/test/binaryen.js/sourcemap.js
index 04f188e23..f8deecf3f 100644
--- a/test/binaryen.js/sourcemap.js
+++ b/test/binaryen.js/sourcemap.js
@@ -2,41 +2,45 @@ function assert(x) {
if (!x) throw 'error!';
}
-var module = new Binaryen.Module();
-
-var fileIndex = module.addDebugInfoFileName("module.c");
-
-console.log(module.getDebugInfoFileName(fileIndex));
-console.log();
-
-var expr = module.i32.const(1);
-var body = module.block("", [
- expr
-], Binaryen.i32);
-
-var func = module.addFunction("main", Binaryen.none, Binaryen.i32, [], body);
-
-module.setDebugLocation(func, expr, fileIndex, 1, 2);
-module.setDebugLocation(func, body, fileIndex, 0, 3);
-
-var output = module.emitBinary("module.wasm.map");
-assert(module.validate());
-
-function dumpBinary(buffer) {
- var hex = [], o, b, h;
- for (var i = 0; i < buffer.length; ++i) {
- o = i.toString(16);
- while (o.length < 3) o = "0" + o;
- if ((i & 15) === 0) hex.push((i ? "\n" : "") + o + ":");
- if ((b = buffer[i]) >= 0x21 && b <= 0x7e)
- h = String.fromCharCode(b) + ' ';
- else if ((h = b.toString(16)).length < 2)
- h = "0" + h;
- hex.push(h);
+function test() {
+ var module = new Binaryen.Module();
+
+ var fileIndex = module.addDebugInfoFileName("module.c");
+
+ console.log(module.getDebugInfoFileName(fileIndex));
+ console.log();
+
+ var expr = module.i32.const(1);
+ var body = module.block("", [
+ expr
+ ], Binaryen.i32);
+
+ var func = module.addFunction("main", Binaryen.none, Binaryen.i32, [], body);
+
+ module.setDebugLocation(func, expr, fileIndex, 1, 2);
+ module.setDebugLocation(func, body, fileIndex, 0, 3);
+
+ var output = module.emitBinary("module.wasm.map");
+ assert(module.validate());
+
+ function dumpBinary(buffer) {
+ var hex = [], o, b, h;
+ for (var i = 0; i < buffer.length; ++i) {
+ o = i.toString(16);
+ while (o.length < 3) o = "0" + o;
+ if ((i & 15) === 0) hex.push((i ? "\n" : "") + o + ":");
+ if ((b = buffer[i]) >= 0x21 && b <= 0x7e)
+ h = String.fromCharCode(b) + ' ';
+ else if ((h = b.toString(16)).length < 2)
+ h = "0" + h;
+ hex.push(h);
+ }
+ console.log(hex.join(" "));
}
- console.log(hex.join(" "));
+
+ dumpBinary(output.binary);
+ console.log();
+ console.log(output.sourceMap);
}
-dumpBinary(output.binary);
-console.log();
-console.log(output.sourceMap);
+Binaryen.ready.then(test);