aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-19fix test_debugAlon Zakai
2013-02-19remove unneeded sign correction from dlmalloc benchmarkAlon Zakai
2013-02-19Merge pull request #858 from ehsan/drawimage-memcpyAlon Zakai
Use the copy composite operation when calling drawImage
2013-02-19Use the copy composite operation when calling drawImageEhsan Akhgari
This optimizes IMG_Load so that it just does a memcpy as opposed to try to composite. The resulting buffer will be the same, it just happens that we don't need to do all of the work involved in compositing in the first place.
2013-02-19notify on unexpected exceptions being thrown and the lack of support for ↵Alon Zakai
them. fixes #856
2013-02-19closure docs on emcc --helpAlon Zakai
2013-02-18run closure in -O3, it makes sense there with the other unsafe optimizationsAlon Zakai
2013-02-18tune csmith driverAlon Zakai
2013-02-18csmith driver scriptAlon Zakai
2013-02-18fix test_closure_compilerAlon Zakai
2013-02-18remove LLVM debug info in -O1+, since the optimizer removes it anyhowAlon Zakai
2013-02-18fix test_emccAlon Zakai
2013-02-18fix emcc --version in other dirsAlon Zakai
2013-02-18clean up unneeded CorrectionsMonitor stuff; fixes test_unsignedAlon Zakai
2013-02-17ensure aligned memory in corruption detectorAlon Zakai
2013-02-17improve corruption checksAlon Zakai
2013-02-17print out # of corruption checks on exitAlon Zakai
2013-02-17memory corruption checkerAlon Zakai
2013-02-17fix CHECK_OVERFLOWAlon Zakai
2013-02-17typoAlon Zakai
2013-02-17fix indentationAlon Zakai
2013-02-17remove PROFILE option. It adds unacceptable overhead, and all browsers have ↵Alon Zakai
proper JS profilers these days - use those
2013-02-17remove PGO option. It is only relevant for non-ta2 builds, which are on the ↵Alon Zakai
way to deprecation, and it in the best case is not a precise optimization but an optimistic one
2013-02-17another gl workaroundAlon Zakai
2013-02-17remove asm memory masking per the new specAlon Zakai
2013-02-17remove not-yet-needed assert in addFunctionAlon Zakai
2013-02-17remove no longer needed --closure 0 from some testsAlon Zakai
2013-02-17default closure to off in all optimization levels - we rely on registerize ↵Alon Zakai
for much faster effects on runtime speed
2013-02-17fix registerize bug on functions with arguments but no localsAlon Zakai
2013-02-17use registerize only when not keeping debug, and also use it when closure is ↵Alon Zakai
disabled, not just ASM_JS mode (which is just one case where closure is disabled)
2013-02-17disable closure if debug info was requested (-g)Alon Zakai
2013-02-17show version and git revision in emcc --versionAlon Zakai
2013-02-15improve glIsProgram testingAlon Zakai
2013-02-15ensure no writes out of the buffer area in glReadPixelsAlon Zakai
2013-02-15memory checks for glReadPixelsAlon Zakai
2013-02-14set alpha to false in WebGL rendering - it represents the screen, so no ↵Alon Zakai
alpha is needed
2013-02-14fix and test glIsProgramAlon Zakai
2013-02-14fix gl flush assertionAlon Zakai
2013-02-13prepare jpeg as well as jpgAlon Zakai
2013-02-10force inputs to inttoptr to be i32 if they are i64; fixes #827Alon Zakai
2013-02-08gles workaroundAlon Zakai
2013-02-08gl assertionAlon Zakai
2013-02-08arc4randomAlon Zakai
2013-02-08fix comparisonAlon Zakai
2013-02-08check for restriding exceeding the temp buffer sizeAlon Zakai
2013-02-08make gl temp buffer size adjustableAlon Zakai
2013-02-08do not disable corrections/roundings/overflows in -O3Alon Zakai
2013-02-07Module.* options to disable image and audio autodecodingAlon Zakai
2013-02-07commented out explicit_zext in benchmarksAlon Zakai
2013-02-06Merge pull request #834 from caiiiycuk/test_memmoveAlon Zakai
Test for memmove