diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-18 13:25:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 13:25:16 -0700 |
commit | 9233afca9a27f8794fb0c8b79b5fa0d8e47060d4 (patch) | |
tree | 5af513816427e2aac91effd49e59b2244acf33d5 /scripts | |
parent | 769b92faf0447264c363aba6ce1fcec58786507f (diff) | |
download | binaryen-9233afca9a27f8794fb0c8b79b5fa0d8e47060d4.tar.gz binaryen-9233afca9a27f8794fb0c8b79b5fa0d8e47060d4.tar.bz2 binaryen-9233afca9a27f8794fb0c8b79b5fa0d8e47060d4.zip |
wasm2js2: more fuzzing improvements (#2028)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fuzz_opt.py | 106 | ||||
-rw-r--r-- | scripts/wasm2js.js | 99 |
2 files changed, 157 insertions, 48 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index faa831387..5ab5b801f 100644 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -26,7 +26,7 @@ from test.shared import options, NODEJS # parameters -NANS = True +NANS = False FUZZ_OPTS = [] # '--all-features' etc @@ -90,6 +90,57 @@ def compare(x, y, comment): )) +def fix_output(out): + # large doubles may print slightly different on different VMs + def fix_double(x): + x = x.group(1) + if 'nan' in x or 'NaN' in x: + x = 'nan' + else: + x = x.replace('Infinity', 'inf') + x = str(float(x)) + return 'f64.const ' + x + out = re.sub(r'f64\.const (-?[nanN:abcdefxIity\d+-.]+)', fix_double, out) + + # mark traps from wasm-opt as exceptions, even though they didn't run in a vm + out = out.replace('[trap ', 'exception: [trap ') + + # exceptions may differ when optimizing, but an exception should occur. so ignore their types + # also js engines print them out slightly differently + return '\n'.join(map(lambda x: ' *exception*' if 'exception' in x else x, out.split('\n'))) + + +def fix_spec_output(out): + out = fix_output(out) + # spec shows a pointer when it traps, remove that + out = '\n'.join(map(lambda x: x if 'runtime trap' not in x else x[x.find('runtime trap'):], out.split('\n'))) + # https://github.com/WebAssembly/spec/issues/543 , float consts are messed up + out = '\n'.join(map(lambda x: x if 'f32' not in x and 'f64' not in x else '', out.split('\n'))) + return out + + +def run_vm(cmd): + # ignore some vm assertions, if bugs have already been filed + known_issues = [ + 'local count too large', # ignore this; can be caused by flatten, ssa, etc. passes + 'liftoff-assembler.cc, line 239\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8631 + 'liftoff-assembler.cc, line 245\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8631 + 'liftoff-register.h, line 86\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8632 + ] + try: + return run(cmd) + except: + output = run_unchecked(cmd) + for issue in known_issues: + if issue in output: + return IGNORE + raise + + +def run_bynterp(wasm): + return fix_output(run_vm([in_bin('wasm-opt'), wasm, '--fuzz-exec-before'])) + + def run_wasm2js(wasm): wrapper = run([in_bin('wasm-opt'), wasm, '--emit-js-wrapper=/dev/stdout']) main = run([in_bin('wasm2js'), wasm, '--emscripten']) @@ -99,58 +150,17 @@ def run_wasm2js(wasm): f.write(glue) f.write(main) f.write(wrapper) - return run([NODEJS, 'js.js', 'a.wasm']) + return fix_output(run_vm([NODEJS, 'js.js', 'a.wasm'])) def run_vms(prefix): - def fix_output(out): - # large doubles may print slightly different on different VMs - def fix_double(x): - x = x.group(1) - if 'nan' in x or 'NaN' in x: - x = 'nan' - else: - x = x.replace('Infinity', 'inf') - x = str(float(x)) - return 'f64.const ' + x - out = re.sub(r'f64\.const (-?[nanN:abcdefxIity\d+-.]+)', fix_double, out) - - # mark traps from wasm-opt as exceptions, even though they didn't run in a vm - out = out.replace('[trap ', 'exception: [trap ') - - # exceptions may differ when optimizing, but an exception should occur. so ignore their types - # also js engines print them out slightly differently - return '\n'.join(map(lambda x: ' *exception*' if 'exception' in x else x, out.split('\n'))) - - def fix_spec_output(out): - out = fix_output(out) - # spec shows a pointer when it traps, remove that - out = '\n'.join(map(lambda x: x if 'runtime trap' not in x else x[x.find('runtime trap'):], out.split('\n'))) - # https://github.com/WebAssembly/spec/issues/543 , float consts are messed up - out = '\n'.join(map(lambda x: x if 'f32' not in x and 'f64' not in x else '', out.split('\n'))) - return out - - def run_vm(cmd): - # ignore some vm assertions, if bugs have already been filed - known_issues = [ - 'local count too large', # ignore this; can be caused by flatten, ssa, etc. passes - 'liftoff-assembler.cc, line 239\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8631 - 'liftoff-assembler.cc, line 245\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8631 - 'liftoff-register.h, line 86\n', # https://bugs.chromium.org/p/v8/issues/detail?id=8632 - ] - try: - return run(cmd) - except: - output = run_unchecked(cmd) - for issue in known_issues: - if issue in output: - return IGNORE - raise - - results = [fix_output(run_vm([in_bin('wasm-opt'), prefix + 'wasm', '--fuzz-exec-before']))] + wasm = prefix + 'wasm' + results = [] + results.append(run_bynterp(wasm)) + results.append(fix_output(run_vm([os.path.expanduser('d8'), prefix + 'js'] + V8_OPTS + ['--', wasm]))) + # results.append(run_wasm2js(wasm)) # append to add results from VMs - results += [run_wasm2js(prefix + 'wasm')] # results += [fix_output(run_vm([os.path.expanduser('d8'), prefix + 'js'] + V8_OPTS + ['--', prefix + 'wasm']))] # results += [fix_output(run_vm([os.path.expanduser('~/.jsvu/jsc'), prefix + 'js', '--', prefix + 'wasm']))] # spec has no mechanism to not halt on a trap. so we just check until the first trap, basically diff --git a/scripts/wasm2js.js b/scripts/wasm2js.js index fe619f5f3..edd7eeeb9 100644 --- a/scripts/wasm2js.js +++ b/scripts/wasm2js.js @@ -89,7 +89,106 @@ var WebAssembly = { } }; +var tempRet0 = 0; + var asmLibraryArg = { + log_i32: function(x) { + console.log('[LoggingExternalInterface logging ' + literal(x, 'i32') + ']'); + }, + log_i64: function(x, h) { + console.log('[LoggingExternalInterface logging ' + literal(x, 'i32') + ' ' + literal(h, 'i32') + ']'); + }, + log_f32: function(x) { + console.log('[LoggingExternalInterface logging ' + literal(x, 'f64') + ']'); + }, + log_f64: function(x) { + console.log('[LoggingExternalInterface logging ' + literal(x, 'f64') + ']'); + }, + log_execution: function(loc) { + console.log('log_execution ' + loc); + }, + setTempRet0: function(x) { + tempRet0 = x; + }, + getTempRet0: function() { + return x; + }, + get_i32: function(loc, index, value) { + console.log('get_i32 ' + [loc, index, value]); + return value; + }, + get_i64: function(loc, index, low, high) { + console.log('get_i64 ' + [loc, index, low, high]); + asmLibraryArg['setTempRet0'](high); + return low; + }, + get_f32: function(loc, index, value) { + console.log('get_f32 ' + [loc, index, value]); + return value; + }, + get_f64: function(loc, index, value) { + console.log('get_f64 ' + [loc, index, value]); + return value; + }, + set_i32: function(loc, index, value) { + console.log('set_i32 ' + [loc, index, value]); + return value; + }, + set_i64: function(loc, index, low, high) { + console.log('set_i64 ' + [loc, index, low, high]); + asmLibraryArg['setTempRet0'](high); + return low; + }, + set_f32: function(loc, index, value) { + console.log('set_f32 ' + [loc, index, value]); + return value; + }, + set_f64: function(loc, index, value) { + console.log('set_f64 ' + [loc, index, value]); + return value; + }, + load_ptr: function(loc, bytes, offset, ptr) { + console.log('load_ptr ' + [loc, bytes, offset, ptr]); + return ptr; + }, + load_val_i32: function(loc, value) { + console.log('load_val_i32 ' + [loc, value]); + return value; + }, + load_val_i64: function(loc, low, high) { + console.log('load_val_i64 ' + [loc, low, high]); + asmLibraryArg['setTempRet0'](high); + return low; + }, + load_val_f32: function(loc, value) { + console.log('loaload_val_i32d_ptr ' + [loc, value]); + return value; + }, + load_val_f64: function(loc, value) { + console.log('load_val_f64 ' + [loc, value]); + return value; + }, + store_ptr: function(loc, bytes, offset, ptr) { + console.log('store_ptr ' + [loc, bytes, offset, ptr]); + return ptr; + }, + store_val_i32: function(loc, value) { + console.log('store_val_i32 ' + [loc, value]); + return value; + }, + store_val_i64: function(loc, low, high) { + console.log('store_val_i64 ' + [loc, low, high]); + asmLibraryArg['setTempRet0'](high); + return low; + }, + store_val_f32: function(loc, value) { + console.log('loastore_val_i32d_ptr ' + [loc, value]); + return value; + }, + store_val_f64: function(loc, value) { + console.log('store_val_f64 ' + [loc, value]); + return value; + }, }; var wasmMemory = new WebAssembly.Memory({ initial: 1 }); |