summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* if we use the zero-init value of a local, we cannot coalesce it with a param ↵Alon Zakai2016-06-017-2/+129
| | | | (#556)
* handle duplicate exports in asm2wasmAlon Zakai2016-05-315-1/+24
|
* refactor walk logic into walk* and doWalk* methods, for a more regular API ↵Alon Zakai2016-05-301-1/+1
| | | | that is clearer where it should be overridden (#551)
* add a pass that eliminates duplicate functionsAlon Zakai2016-05-286-77/+1576
|
* canonicalize the order in reorder-locals, by using first-appearance to break ↵Alon Zakai2016-05-288-854/+854
| | | | ties
* note number of functions in metricsAlon Zakai2016-05-281-0/+1
|
* Allows parsing of debug information in .S filesYury Delendik2016-05-262-0/+358
| | | | Currently it ignores this information. Also it allows parse files with -asm-verbose=true.
* Merge pull request #543 from WebAssembly/fix-merge-blocksAlon Zakai2016-05-253-537/+453
|\ | | | | Fix merge blocks on named blocks
| * add a merge-block testAlon Zakai2016-05-252-0/+28
| |
| * fix a merge-blocks bug where we merged named blocksAlon Zakai2016-05-253-537/+425
| |
* | Add remove unused functions pass. (#463)Michael Bebenita2016-05-252-0/+77
|/
* update spec tests, and handle the new .fail. tests (#541)Alon Zakai2016-05-251-0/+0
|
* move blocks outside in merge-blocks so that they can be merged laterAlon Zakai2016-05-2411-219/+1493
|
* add a pass to drop return values in set_local and store (#539)Alon Zakai2016-05-232-0/+40
|
* fix isResultUsed bug with ifsAlon Zakai2016-05-234-158/+303
|
* Avoid a redundant return in dynCall functions. (#533)Dan Gohman2016-05-234-37/+23
|
* dead code elimination pass (#536)Alon Zakai2016-05-226-654/+1066
|
* don't depend on asm.js type detection in binary formation in asm2wasm, use ↵Alon Zakai2016-05-225-0/+65
| | | | the full asm global info we have (#535)
* Update s2wasm for LLVM changes, and regenerate tests. (#532)Dan Gohman2016-05-2076-6058/+7358
|
* notice only branches out in EffectAnalyzer, internal control flow can be ↵Alon Zakai2016-05-199-2357/+2275
| | | | ignored (#530)
* Allow implicit function returns. (#529)Dan Gohman2016-05-192-0/+29
|
* vacuum the top of functions tooAlon Zakai2016-05-194-34/+21
|
* vacuum after passes that create garbage; this makes the total time betterAlon Zakai2016-05-199-1440/+1407
|
* add --no-opt testing to asm2wasmAlon Zakai2016-05-1914-0/+114694
|
* vacuum away everything not tied downAlon Zakai2016-05-1913-502/+230
|
* Avoid double dollarsigns in s2wasm local names. (#527)Dan Gohman2016-05-1950-3552/+3552
| | | | | | | | | * Avoid double dollarsigns in s2wasm local names. Recognize '$' as part of the .s syntax for register names, and exclude it when forming the wasm local name. This changes names like "$$0" to "$0". * Fix a comment.
* use separate internal opcodes for binary variantsAlon Zakai2016-05-184-52/+52
|
* use separate internal opcodes for unary variantsAlon Zakai2016-05-181-11/+11
|
* spec test updates, and many validation fixesAlon Zakai2016-05-185-383/+348
|
* don't emit extra unnecessary blocks for loops in binary format (#523)Alon Zakai2016-05-172-10/+19
|
* Merge pull request #518 from WebAssembly/true-learningAlon Zakai2016-05-171-18/+18
|\ | | | | Activate true learning in local coalescing
| * learn using multiple generationsAlon Zakai2016-05-171-18/+18
| |
* | Print a newline at the end of the METADATA line. (#521)Dan Gohman2016-05-1768-68/+68
| |
* | Rename $discard to $drop in the .s syntax.Dan Gohman2016-05-17648-7071/+7071
|/ | | | | This is shorter and is more consistent with terminology being used to discuss WebAssembly.
* add a learning local coalescerAlon Zakai2016-05-172-0/+1274
|
* Update waterfall build to 6633 (#513)Derek Schuff2016-05-17248-6287/+5510
| | | | New expected failures are mostly due to a change in the way the torture tests are compiled (https://github.com/WebAssembly/waterfall/commit/160171e51dbd37724a11c902b84f8f1fa86e9a4e)
* Merge pull request #511 from WebAssembly/metrics-betterAlon Zakai2016-05-162-3/+6
|\ | | | | Metrics improvements
| * add total vars (non-param locals) to metricsAlon Zakai2016-05-162-2/+5
| |
| * emit total in metrics in a way that shows its diffs tooAlon Zakai2016-05-161-1/+1
| |
* | remove dead get_locals in vacuumAlon Zakai2016-05-1610-954/+381
|/
* Merge pull request #507 from WebAssembly/coalesce-localsAlon Zakai2016-05-1617-25628/+23531
|\ | | | | Coalesce locals
| * add cfg-building traversal and a pass to coalesce locals using itAlon Zakai2016-05-1517-25628/+23531
| |
* | don't emit an extra endline in s2wasm (#506) (#508)Alon Zakai2016-05-1669-69/+69
| |
* | Update c-api-kitchen-sink.c (#504)BSalita2016-05-151-1/+1
|/
* allow not providing a name for function types in c api (#501)Alon Zakai2016-05-132-0/+5
|
* test fixesAlon Zakai2016-05-134-6/+6
|
* use exceptions consistently to report input errorsAlon Zakai2016-05-121-1/+1
|
* update spec tests (#478)Alon Zakai2016-05-111-0/+0
|
* Update waterfall and torture tests to 6423 (#476)Derek Schuff2016-05-11477-36697/+37276
|
* VS warning fix in c-api-kitchen-sink.c, double constants shouldn't be used ↵BSalita2016-05-111-5/+4
| | | | as float args (#473)