aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-10-25eliminate (carefully) into and through ifsAlon Zakai
2012-10-25move dep invalidations clearing to correct positionAlon Zakai
2012-10-25fix eliminator test output to current optimizationsAlon Zakai
2012-10-25restore limit_sizeAlon Zakai
2012-10-25deoptimize testAlon Zakai
2012-10-25invalidate elimination by dependencies after the current lineAlon Zakai
2012-10-25track dependencies of variables we might eliminateAlon Zakai
2012-10-25do not eliminate into the body/else of if - this is rarely important, and ↵Alon Zakai
requires much more time and complexity to handle
2012-10-25fix handling of unremovable unused varsAlon Zakai
2012-10-25variables with no uses cannot be removed if their definition has side effectsAlon Zakai
2012-10-25eliminate in if nodesAlon Zakai
2012-10-25test fixesAlon Zakai
2012-10-25test fixAlon Zakai
2012-10-25remove var x; of completely unused vars, and restore previous test casesAlon Zakai
2012-10-25rewrite of eliminator to better approachAlon Zakai
2012-10-24note 'seq' (x,y,z) nodes as modifying control flow and invalidating eliminationAlon Zakai
2012-10-23fix eliminator bug where X[y] would take X into account for variable ↵Alon Zakai
effects, preventing optimization
2012-10-23remove no longer needed coffeescriptAlon Zakai
2012-10-23integrate eliminator as js optimizer passAlon Zakai
2012-10-23include eliminator as js optimizer passAlon Zakai
2012-10-23remove unneeded js optimizer re-parseAlon Zakai
2012-10-23optimize newline removal in eliminatorAlon Zakai
2012-10-23more misc eliminator optimizationsAlon Zakai
2012-10-23misc eliminator optimizationsAlon Zakai
2012-10-23tiny eliminator optimizationAlon Zakai
2012-10-23simplify eliminatorAlon Zakai
2012-10-23rewrite eliminator in jsAlon Zakai
2012-10-22add eliminator testAlon Zakai
2012-10-20check node version is at least 0.6.8, which is the first to not have v8 bug ↵Alon Zakai
1895; enable crankshaft in js optimizer for additional speed
2012-10-20implement simplifyZeroComp js optimizer pass, not yet executedAlon Zakai
2012-10-20restore workaround for v8 bug 1895Alon Zakai
2012-10-17fix closure error in file packagerAlon Zakai
2012-10-17split up very large js files when passing them into js-optimizer and ↵Alon Zakai
eliminator, to allow optimizing very large files without node hitting out-of-memory
2012-10-17remove unneeded node checksAlon Zakai
2012-10-17stop working around v8 bug 1985 which was fixed a while agoAlon Zakai
2012-10-17allow changing java heap size for closure via JAVA_HEAP_SIZE env varAlon Zakai
2012-10-17improve node autodetectionAlon Zakai
2012-10-17Don't explode in emconfigure if no args are passedRiccardo Magliocchetti
2012-10-14handle .a with identically named .o ; fixes #637Alon Zakai
2012-10-13update coffeescript to d8905e2f8799931013e227b869b1c6f6c85122f0Alon Zakai
2012-10-01fix file paths with --embed, fixes #597Alon Zakai
2012-09-29Merge pull request #594 from larsxschneider/lars/add-split-optionAlon Zakai
Add emcc option "--split <size>" to split javascript file.
2012-09-28note on file packagerAlon Zakai
2012-09-28workaround for libcxx --std=c++11 issueAlon Zakai
2012-09-26autoguess ~/.emscripten values on first run, possibly fixes #593Alon Zakai
2012-09-26remove misleading top line in settings when copying it to ~/.emscriptenAlon Zakai
2012-09-26Merge pull request #581 from LCID-Fire/debian_clang_checkAlon Zakai
Extract check_clang_version into an own function and correct checking so...
2012-09-26Add emcc option "--split <size>" to split javascript file.Lars Schneider
Splits the resulting javascript file into pieces to ease debugging. This option only works if Javascript is generated (target -o <name>.js). Files with function declarations must be loaded before main file upon execution. Without "-g" option: Creates files with function declarations up to the given size with the suffix "_functions.partxxx.js" and a main file with the suffix ".js". With "-g" option: Recreates the directory structure of the C source files and stores function declarations in their respective C files with the suffix ".js". If such a file exceeds the given size, files with the suffix ".partxxx.js" are created. The main file resides in the base directory and has the suffix ".js".
2012-09-25add workaround for older node versionsAlon Zakai
2012-09-25Support loading emscripten argument filenames with relative pathsChad Austin