summaryrefslogtreecommitdiff
path: root/test/wasm2js/emscripten.2asm.js
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2019-04-24 15:27:05 -0700
committerGitHub <noreply@github.com>2019-04-24 15:27:05 -0700
commitc3ed0f176b36a502ef2e1fd915550a808b8d8f0b (patch)
tree6abff96331025a74e18cfa4f173a997d3c800559 /test/wasm2js/emscripten.2asm.js
parentbc0a605e8864324d40aafbd00e8de0e50240ce26 (diff)
downloadbinaryen-c3ed0f176b36a502ef2e1fd915550a808b8d8f0b.tar.gz
binaryen-c3ed0f176b36a502ef2e1fd915550a808b8d8f0b.tar.bz2
binaryen-c3ed0f176b36a502ef2e1fd915550a808b8d8f0b.zip
wasm2js: more js optimization (#2050)
* Emit ints as signed, so -1 isn't a big unsigned number. * x - -c (where c is a constant) is larger than x + c in js (but not wasm) * +(+x) => +x * Avoid unnecessary coercions on calls, return, load, etc. - we just need coercions when entering or exiting "wasm" (not internally), and on actual operations that need them.
Diffstat (limited to 'test/wasm2js/emscripten.2asm.js')
-rw-r--r--test/wasm2js/emscripten.2asm.js37
1 files changed, 31 insertions, 6 deletions
diff --git a/test/wasm2js/emscripten.2asm.js b/test/wasm2js/emscripten.2asm.js
index 8d7abb4a4..5e4109c46 100644
--- a/test/wasm2js/emscripten.2asm.js
+++ b/test/wasm2js/emscripten.2asm.js
@@ -30,7 +30,10 @@ function asmFunc(global, env, buffer) {
var wasm2js_i32$0 = 0;
syscall$6(1 | 0, 2 | 0) | 0;
syscall$54(3 | 0, 4 | 0) | 0;
- wasm2js_i32$0 = HEAP32[0 + 1030 >> 2] | 0, FUNCTION_TABLE[wasm2js_i32$0]();
+ wasm2js_i32$0 = HEAP32[0 + 1030 >> 2], FUNCTION_TABLE[wasm2js_i32$0]();
+ internal(1);
+ tabled(1);
+ exported(1);
}
function other() {
@@ -42,10 +45,10 @@ function asmFunc(global, env, buffer) {
}
function bar() {
- HEAPU8[128 | 0] | 0;
- HEAP8[128 | 0] | 0;
- HEAPU16[128 >> 1] | 0;
- HEAP16[128 >> 1] | 0;
+ HEAPU8[128 | 0];
+ HEAP8[128 | 0];
+ HEAPU16[128 >> 1];
+ HEAP16[128 >> 1];
}
function __growWasmMemory($0) {
@@ -53,13 +56,35 @@ function asmFunc(global, env, buffer) {
return abort() | 0;
}
+ function internal(x) {
+ return x;
+ }
+
+ function tabled(x) {
+ x = x | 0;
+ return x | 0;
+ }
+
+ function exported(x) {
+ x = x | 0;
+ return x | 0;
+ }
+
+ function sub_zero(x) {
+ x = x | 0;
+ return x + 5 | 0;
+ }
+
// EMSCRIPTEN_END_FUNCS;
FUNCTION_TABLE[1] = foo;
FUNCTION_TABLE[2] = bar;
+ FUNCTION_TABLE[3] = tabled;
return {
"main": main,
"other": other,
- "__growWasmMemory": __growWasmMemory
+ "__growWasmMemory": __growWasmMemory,
+ "exported": exported,
+ "sub_zero": sub_zero
};
}