diff options
author | Alon Zakai <azakai@google.com> | 2020-04-13 11:37:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 11:37:29 -0700 |
commit | e0716f53362f233662537a27f2165ed9dbb301e3 (patch) | |
tree | 5439c8da3c4b4134159232718d62e3ea076698ea /test/wasm2js/deterministic.2asm.js.opt | |
parent | 585f8174c1339d7ac5eeceed89d2ac30e4ba8826 (diff) | |
download | binaryen-e0716f53362f233662537a27f2165ed9dbb301e3.tar.gz binaryen-e0716f53362f233662537a27f2165ed9dbb301e3.tar.bz2 binaryen-e0716f53362f233662537a27f2165ed9dbb301e3.zip |
Add --deterministic flag to wasm2js, for fuzzing (#2757)
In wasm2js we ignore things that trap in wasm that we can't
really handle, like a load from memory out of bounds would
trap in wasm, but in JS we don't want to emit a bounds check
on each load. So wasm2js focuses on programs that don't
trap.
However, this is annoying in the fuzzer as it turns out that
our behavior for places where wasm would trap was not
deterministic. That is, wasm would trap, wasm2js would not
trap and do behavior X, and wasm2js with optimizations
would also not trap but do behavior Y != X. This produced
false positives in the fuzzer (and might be annoying in
manual debugging too).
As a workaround, this adds a --deterministic flag to wasm2js,
which tries to be deterministic about what it does for cases
where wasm would trap. This handles the case of an int
division by 0 which traps in wasm but without this flag could
have different behavior in wasm2js with or without opts
(see details in the patch).
Diffstat (limited to 'test/wasm2js/deterministic.2asm.js.opt')
-rw-r--r-- | test/wasm2js/deterministic.2asm.js.opt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/wasm2js/deterministic.2asm.js.opt b/test/wasm2js/deterministic.2asm.js.opt new file mode 100644 index 000000000..7a49ec1fb --- /dev/null +++ b/test/wasm2js/deterministic.2asm.js.opt @@ -0,0 +1,43 @@ + +function asmFunc(global, env, buffer) { + var memory = env.memory; + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + var Math_imul = global.Math.imul; + var Math_fround = global.Math.fround; + var Math_abs = global.Math.abs; + var Math_clz32 = global.Math.clz32; + var Math_min = global.Math.min; + var Math_max = global.Math.max; + var Math_floor = global.Math.floor; + var Math_ceil = global.Math.ceil; + var Math_sqrt = global.Math.sqrt; + var abort = env.abort; + var nan = global.NaN; + var infinity = global.Infinity; + function $0() { + if (4294967252 / HEAPU32[0] | 0) { + abort() + } + return 1; + } + + var FUNCTION_TABLE = []; + function __wasm_memory_size() { + return buffer.byteLength / 65536 | 0; + } + + return { + "foo": $0 + }; +} + +var memasmFunc = new ArrayBuffer(65536); +var retasmFunc = asmFunc({Math,Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array,NaN,Infinity}, {abort:function() { throw new Error('abort'); }},memasmFunc); +export var foo = retasmFunc.foo; |