Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unify imported and non-imported things (#1678) | Alon Zakai | 2018-09-19 | 1 | -3/+3 |
| | | | | | | | | | | | | | | Fixes #1649 This moves us to a single object for functions, which can be imported or nor, and likewise for globals (as a result, GetGlobals do not need to check if the global is imported or not, etc.). All imported things now inherit from Importable, which has the module and base of the import, and if they are set then it is an import. For convenient iteration, there are a few helpers like ModuleUtils::iterDefinedGlobals(wasm, [&](Global* global) { .. use global .. }); as often iteration only cares about imported or defined (non-imported) things. | ||||
* | Cleanup scripts in scripts/test (#1566) | Sam Clegg | 2018-05-25 | 1 | -12/+12 |
| | | | | | | | | | | Remove executable bit and #! from scripts that don't have entry point. Add missing licence test. Move arg parsing into a function. Remove legacy --only_prepare (with underscrore) argument. | ||||
* | Fix flake8 failures in scripts/ (#1239) | Taiju Tsuiki | 2017-10-24 | 1 | -1/+1 |
| | | | flake8 starts warning on bare "except:" in python scripts, and all CI job is failing for that. | ||||
* | add drop and tee expressions | Alon Zakai | 2016-09-07 | 1 | -2/+4 |
| | |||||
* | update relooper fuzzer | Alon Zakai | 2016-07-18 | 1 | -1/+1 |
| | |||||
* | Relooper switch support (#617) | Alon Zakai | 2016-07-02 | 1 | -4/+41 |
| | | | | | | * support switches in relooper and c api * update relooper fuzzer for switches | ||||
* | use separate internal opcodes for binary variants | Alon Zakai | 2016-05-18 | 1 | -6/+6 |
| | |||||
* | remove obsolete comment from relooper fuzzer | Alon Zakai | 2016-05-07 | 1 | -1/+1 |
| | |||||
* | relooper fuzzing improvements (#453) | Alon Zakai | 2016-05-06 | 1 | -15/+22 |
| | |||||
* | add a fuzzer for the relooper through the C API | Alon Zakai | 2016-05-06 | 1 | -0/+282 |