diff options
author | Sam Clegg <sbc@chromium.org> | 2019-04-25 07:50:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 07:50:15 -0700 |
commit | 09945884f7461135286357d14f993f9b5c5a329b (patch) | |
tree | 91e9940c495469d4029bacc3576a97bb8b215908 /test/wasm2js/get_local.2asm.js | |
parent | c3ed0f176b36a502ef2e1fd915550a808b8d8f0b (diff) | |
download | binaryen-09945884f7461135286357d14f993f9b5c5a329b.tar.gz binaryen-09945884f7461135286357d14f993f9b5c5a329b.tar.bz2 binaryen-09945884f7461135286357d14f993f9b5c5a329b.zip |
Remove f32 legalization from LegalizeJSInterface (#2052)
As well as i64 splitting this pass was also converting f32 to f64
at the wasm boundry. However it appears this is not actually useful
and makes somethings (such as dynamic linking) harder.
Diffstat (limited to 'test/wasm2js/get_local.2asm.js')
-rw-r--r-- | test/wasm2js/get_local.2asm.js | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/test/wasm2js/get_local.2asm.js b/test/wasm2js/get_local.2asm.js index 891a4950e..ddf0c30fa 100644 --- a/test/wasm2js/get_local.2asm.js +++ b/test/wasm2js/get_local.2asm.js @@ -130,10 +130,6 @@ function asmFunc(global, env, buffer) { return $0_1; } - function legalstub$2() { - return +$2(); - } - function legalstub$5($0_1, $1_1) { var i64toi32_i32$2 = 0, i64toi32_i32$4 = 0, i64toi32_i32$0 = 0, i64toi32_i32$1 = 0, i64toi32_i32$3 = 0, $12 = 0, $13 = 0, $4_1 = 0, $4$hi = 0, $7$hi = 0, $2_1 = 0, $2$hi = 0; i64toi32_i32$0 = 0; @@ -185,10 +181,6 @@ function asmFunc(global, env, buffer) { return $2_1; } - function legalstub$6($0_1) { - return +$6(Math_fround($0_1)); - } - function legalstub$8($0_1, $1_1, $2_1, $3_1, $4_1, $5_1) { var i64toi32_i32$2 = 0, i64toi32_i32$0 = 0, i64toi32_i32$1 = 0, i64toi32_i32$4 = 0, i64toi32_i32$3 = 0, $14 = 0, $7_1 = 0, $7$hi = 0, $10$hi = 0; i64toi32_i32$0 = 0; @@ -216,7 +208,7 @@ function asmFunc(global, env, buffer) { i64toi32_i32$2 = $10$hi; i64toi32_i32$3 = $14; i64toi32_i32$2 = i64toi32_i32$1 | i64toi32_i32$2; - $8(i64toi32_i32$0 | i64toi32_i32$3, i64toi32_i32$2, Math_fround($2_1), $3_1, $4_1, $5_1); + $8(i64toi32_i32$0 | i64toi32_i32$3, i64toi32_i32$2, $2_1, $3_1, $4_1, $5_1); } function legalstub$9($0_1, $1_1, $2_1, $3_1, $4_1, $5_1) { @@ -246,18 +238,18 @@ function asmFunc(global, env, buffer) { i64toi32_i32$2 = $10$hi; i64toi32_i32$3 = $14; i64toi32_i32$2 = i64toi32_i32$1 | i64toi32_i32$2; - return $9(i64toi32_i32$0 | i64toi32_i32$3, i64toi32_i32$2, Math_fround($2_1), $3_1, $4_1, $5_1); + return $9(i64toi32_i32$0 | i64toi32_i32$3, i64toi32_i32$2, $2_1, $3_1, $4_1, $5_1); } var FUNCTION_TABLE = []; return { "type_local_i32": $0, "type_local_i64": legalstub$1, - "type_local_f32": legalstub$2, + "type_local_f32": $2, "type_local_f64": $3, "type_param_i32": $4, "type_param_i64": legalstub$5, - "type_param_f32": legalstub$6, + "type_param_f32": $6, "type_param_f64": $7, "type_mixed": legalstub$8, "read": legalstub$9 |