diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-11-30 09:54:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 09:54:57 -0800 |
commit | 0e068c386ef1588c09e57a4d081be626d83bc31c (patch) | |
tree | 0a432d17fd6a26b6cce092ab81558aeb4270da77 /src/asm_v_wasm.h | |
parent | f16a7605b8226502062c6ca24323d431669c90ec (diff) | |
download | binaryen-0e068c386ef1588c09e57a4d081be626d83bc31c.tar.gz binaryen-0e068c386ef1588c09e57a4d081be626d83bc31c.tar.bz2 binaryen-0e068c386ef1588c09e57a4d081be626d83bc31c.zip |
Fuzzing: log values during execution (#1779)
Before we just looked at function return values when looking for differences before and after running some passes, while fuzzing. This adds logging of values during execution, which can represent control flow, monitor locals, etc., giving a lot more opportunities for the fuzzer to find problems.
Also:
* Clean up the sigToFunctionType function, which allocated a struct and returned it. This makes it safer by returning the struct by value, which is also easier to use in this PR.
* Fix printing of imported function calls without a function type - turns out we always generate function types in loading, so we didn't notice this was broken, but this new fuzzer feature hit it.
Diffstat (limited to 'src/asm_v_wasm.h')
-rw-r--r-- | src/asm_v_wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm_v_wasm.h b/src/asm_v_wasm.h index c79c73674..08416ef80 100644 --- a/src/asm_v_wasm.h +++ b/src/asm_v_wasm.h @@ -66,7 +66,7 @@ std::string getSigFromStructs(Type result, const ListType& operands) { Type sigToType(char sig); -FunctionType* sigToFunctionType(std::string sig); +FunctionType sigToFunctionType(std::string sig); FunctionType* ensureFunctionType(std::string sig, Module* wasm); |