summaryrefslogtreecommitdiff
path: root/test/merge/fusing.wast.combined
Commit message (Collapse)AuthorAgeFilesLines
* Delete wasm-merge (#1969)Thomas Lively2019-03-291-47/+0
| | | It is not very useful.
* Massive renaming (#1855)Thomas Lively2019-01-071-6/+6
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* Rename tableBase/memoryBase to __table_base/__memory_base (#1731)Sam Clegg2018-11-081-1/+5
|
* Emit imports before defined things in text format (#1715)Alon Zakai2018-11-011-1/+1
| | | | | That is the correct order in the text format, wabt errors otherwise. See AssemblyScript/assemblyscript#310
* Unify imported and non-imported things (#1678)Alon Zakai2018-09-191-10/+10
| | | | | | | | | | | | | | 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.
* support fixed (non-relocatable) segments in wasm-merge. also a few printing ↵Alon Zakai2017-12-051-1/+0
| | | | fixes for multiple segments, which we never really printed that prettily (#1316)
* Emit binary function index in comment in text format, for convenience (#1232)Alon Zakai2017-10-201-3/+3
|
* wasm-merge tool (#919)Alon Zakai2017-04-171-0/+44
wasm-merge tool: combines two wasm files into a larger one, handling collisions, and aware of the dynamic linking conventions. it does not do full static linking, but may eventually.