summaryrefslogtreecommitdiff
path: root/test/unit.asm.js
Commit message (Expand)AuthorAgeFilesLines
* Emscripten stack simplification (#1870)Alon Zakai2019-01-161-0/+3
* fix sign detection of a floating-point mod ; fixes kripken/emscripten#7123 (#...Alon Zakai2018-09-151-0/+8
* optimize helper funcs (like i32-div) if created in asm2wasm, so they are cons...Alon Zakai2017-10-041-1/+6
* precompute-propagate pass (#1179)Alon Zakai2017-09-121-11/+50
* Improve and enable inlining pass (#966)Alon Zakai2017-08-071-0/+1
* fix import type detection of calls in comma operators; when the parent is a c...Alon Zakai2017-07-271-0/+7
* fix f32 frem in asm2wasm #1105 (#1106)Alon Zakai2017-07-201-1/+4
* fix merge-blocks logic in call, call_indirect, select, we need to avoid any d...Alon Zakai (kripken)2017-07-141-0/+7
* asm2wasm: properly infer return type of a call inside a sequence (#1006)Alon Zakai2017-05-091-0/+12
* fix autoDrop, now that we properly set block types, unreachable can easily ha...Alon Zakai2017-05-091-0/+15
* add test for f64-to-int signed/unsignedAlon Zakai (kripken)2017-04-181-0/+11
* add sqrt test (#912)Alon Zakai2017-02-161-1/+11
* lower min and max in asm2wasm in wasm f*.min/maxAlon Zakai2016-12-071-0/+9
* make legalizeJSInterface handle f32s as well, which are not valid in asm.js ffisAlon Zakai2016-12-071-1/+8
* convert ftCall_* and mftCall_* into table callsAlon Zakai2016-12-071-1/+7
* support asm.js numeric exports by creating a global and exporting thatAlon Zakai2016-12-071-1/+1
* support assigns of f32 to HEAP64 in asm2wasm (#830)Alon Zakai2016-11-071-1/+6
* handle a label setting inside the if-body of a label value in RelooperJumpThr...Alon Zakai2016-11-061-1/+32
* Fixes fround of an unsigned integer (#821)Alon Zakai2016-11-041-0/+9
* fix large f32 consts, fixes #817 (#820)Alon Zakai2016-11-011-0/+4
* Optimize out bool & 1 (#804)Alon Zakai2016-10-251-24/+33
* run remove-unused-functions by defaultAlon Zakai2016-10-141-1/+1
* optimize if(const)Alon Zakai2016-09-241-6/+6
* precompute void expressions tooAlon Zakai2016-09-241-2/+2
* replace two drops in an if-else with one on the ifAlon Zakai2016-09-231-0/+14
* autoDrop fixAlon Zakai2016-09-231-0/+15
* drop if-else arms as necessaryAlon Zakai2016-09-131-0/+15
* update br type when turning it into a br_if in remove-unused-brsAlon Zakai2016-09-131-0/+17
* thread relooper jumpsAlon Zakai2016-09-121-11/+115
* run another optimize-expressions at the end of asm2wasmAlon Zakai2016-09-101-0/+21
* sort locals by number of total copiesAlon Zakai2016-09-101-0/+24
* take into account removed copies even when number of locals is the same, in c...Alon Zakai2016-09-091-0/+22
* autodrop if body if no elseAlon Zakai2016-09-071-0/+5
* add a testAlon Zakai2016-09-071-1/+5
* track globals in EffectAnalyzerAlon Zakai2016-09-071-0/+13
* optimize loads+shifts into signed loadsAlon Zakai2016-09-071-0/+12
* Add a ReFinalize helper, and use that to properly handle asm.js imports whose...Alon Zakai2016-09-071-0/+6
* support HEAP8[x | 0| notation in asm2wasmAlon Zakai2016-09-071-0/+5
* when replacing an if with its condition (when it has no body), we must drop itAlon Zakai2016-09-071-0/+11
* add a test for loop finalizationAlon Zakai2016-09-071-0/+16
* handle asm.js globals that are set and the return value usedAlon Zakai2016-09-071-0/+11
* set type of calls to their target, instead of the previous behavior where the...Alon Zakai2016-09-071-0/+10
* add drop and tee expressionsAlon Zakai2016-09-071-0/+10
* handle param overloading in asm2wasm ffis (#629)Alon Zakai2016-07-121-0/+2
* fix br_if with value optimization in remove-unused-brsAlon Zakai2016-06-111-0/+12
* if we use the zero-init value of a local, we cannot coalesce it with a param ...Alon Zakai2016-06-011-0/+13
* handle duplicate exports in asm2wasmAlon Zakai2016-05-311-1/+8
* move blocks outside in merge-blocks so that they can be merged laterAlon Zakai2016-05-241-1/+7
* don't depend on asm.js type detection in binary formation in asm2wasm, use th...Alon Zakai2016-05-221-0/+7
* fix asm2wasm f64->f32->i32 bitcast (#412)Alon Zakai2016-04-281-0/+2