summaryrefslogtreecommitdiff
path: root/test/unit.fromasm.imprecise
Commit message (Expand)AuthorAgeFilesLines
* Unify imported and non-imported things (#1678)Alon Zakai2018-09-191-2/+2
* fix sign detection of a floating-point mod ; fixes kripken/emscripten#7123 (#...Alon Zakai2018-09-151-0/+6
* Stack IR (#1623)Alon Zakai2018-07-301-55/+55
* Merge loop tails up (#1543)Alon Zakai2018-05-101-3/+3
* br_table optimizations (#1502)Alon Zakai2018-04-101-3/+3
* Global optimization fixes (#1360)Alon Zakai2018-01-171-108/+67
* Optimize out memory and table when possible (#1352)Alon Zakai2018-01-101-4/+3
* Redundant Set Elimination pass (#1344)Alon Zakai2018-01-051-3/+0
* Update call_indirect text syntax to match spec update (#1281)Derek Schuff2017-11-131-8/+8
* Emit binary function index in comment in text format, for convenience (#1232)Alon Zakai2017-10-201-60/+60
* optimize helper funcs (like i32-div) if created in asm2wasm, so they are cons...Alon Zakai2017-10-041-0/+7
* precompute-propagate pass (#1179)Alon Zakai2017-09-121-38/+58
* when inlining, we must zero out non-param locals, as their initial zero value...Alon Zakai2017-08-101-2/+3
* Improve and enable inlining pass (#966)Alon Zakai2017-08-071-50/+20
* fix import type detection of calls in comma operators; when the parent is a c...Alon Zakai2017-07-271-0/+12
* fix f32 frem in asm2wasm #1105 (#1106)Alon Zakai2017-07-201-0/+14
* fix merge-blocks logic in call, call_indirect, select, we need to avoid any d...Alon Zakai (kripken)2017-07-141-0/+19
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-6/+6
* allow values to flow out of loops in RemoveUnneededBrs, and simplify some unn...Alon Zakai (kripken)2017-05-101-22/+15
* asm2wasm: properly infer return type of a call inside a sequence (#1006)Alon Zakai2017-05-091-2/+12
* fix autoDrop, now that we properly set block types, unreachable can easily ha...Alon Zakai2017-05-091-0/+17
* improve dce to handle more cases of nested unreachable code (#989)Alon Zakai2017-05-021-10/+8
* handle unsigned float-to-int properly in asm2wasmAlon Zakai (kripken)2017-04-181-1/+6
* add test for f64-to-int signed/unsignedAlon Zakai (kripken)2017-04-181-0/+15
* fix sign-ext opt issues (#935)Alon Zakai2017-03-091-4/+7
* use a single space for pretty printing of wasts, so massive wasts are less un...Alon Zakai2017-03-091-1026/+1026
* Optimize "squared" operations (#905)Alon Zakai2017-02-161-7/+4
* optimize linear sums (#904)Alon Zakai2017-02-161-25/+7
* add sqrt test (#912)Alon Zakai2017-02-161-0/+22
* emit globals before table and memory, because they may use a global for their...Alon Zakai2016-12-301-1/+1
* make legalizeJSInterface handle f32s as well, which are not valid in asm.js ffisAlon Zakai2016-12-071-3/+41
* convert ftCall_* and mftCall_* into table callsAlon Zakai2016-12-071-0/+16
* support asm.js numeric exports by creating a global and exporting thatAlon Zakai2016-12-071-0/+2
* add a RemoveUnusedModuleElements pass, and make LegalizeJSInterface create Te...Alon Zakai2016-12-071-8/+0
* use tableBase for the table segmentsAlon Zakai2016-12-071-1/+1
* increase limit in RelooperJumpThreading (#847)Alon Zakai2016-11-281-32/+32
* support assigns of f32 to HEAP64 in asm2wasm (#830)Alon Zakai2016-11-071-0/+11
* handle a label setting inside the if-body of a label value in RelooperJumpThr...Alon Zakai2016-11-061-0/+53
* improve local simplication: simplify without if/block structure values before...Alon Zakai2016-11-061-10/+1
* Optimize out bool & 1 (#804)Alon Zakai2016-10-251-8/+12
* run remove-unused-functions by defaultAlon Zakai2016-10-141-0/+39
* Change print order of top-level module components (#751)Derek Schuff2016-10-071-3/+3
* Require unique names in binaryen IR (#746)Alon Zakai2016-10-061-66/+64
* don't create an unnecessary duplicate block in asm2wasm switches, when there ...Alon Zakai2016-10-031-17/+17
* Print the name of memory along with size (#720)Derek Schuff2016-09-281-1/+1
* Type check block/loop/if sigs (#717)Alon Zakai2016-09-281-3/+3
* optimize if(const)Alon Zakai2016-09-241-6/+6
* precompute void expressions tooAlon Zakai2016-09-241-9/+3
* replace two drops in an if-else with one on the ifAlon Zakai2016-09-231-0/+13
* autoDrop fixAlon Zakai2016-09-231-7/+15