aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-01-30do not do -Ox or LTO when building a linkable moduleAlon Zakai
2012-01-29split LLVM LTO into separate passAlon Zakai
2012-01-29switch to -Ox from -std-compile-optsAlon Zakai
2012-01-29enable poppler in o1 and o2, and some test_emcc fixesAlon Zakai
2012-01-29fix eliminator bug with eliminating over loopsAlon Zakai
2012-01-29bisection bugfinding toolAlon Zakai
2012-01-28fix eliminator bug with variable defs not counting as mutations (which we ↵Alon Zakai
see now due to more phis)
2012-01-26find_bigis toolAlon Zakai
2012-01-25improve nativize_llvmAlon Zakai
2012-01-25add nativize_llvm toolAlon Zakai
2012-01-23simplify llvm opt picking code, and allow up to level 3Alon Zakai
2012-01-23enable unsafe llvm opts in emccAlon Zakai
2012-01-21do not generate annotations when disassembling bitcodeAlon Zakai
2012-01-21disable pruning of emcc -s opts from test runner - it's too buggyAlon Zakai
2012-01-20fix bug with Settings.default values not including -O, so comparisons were ↵Alon Zakai
wrong in some cases
2012-01-20fix bug with missing keys in Settings.defaultsAlon Zakai
2012-01-20remove dead function eliminator, which is no longer neededAlon Zakai
2012-01-20do not add unneeded -s 'es in test runnerAlon Zakai
2012-01-20autodebugger indender toolAlon Zakai
2012-01-19make the autodebugger also note when we enter functionsAlon Zakai
2012-01-19js optimizer commentAlon Zakai
2012-01-18LINKABLE options, disabling dead code elimination for shared libraries and ↵Alon Zakai
main files that have things that shared libraries will access through an extern
2012-01-18use llvm internalive and globaldce to remove unneeded code before compiling ↵Alon Zakai
to js
2012-01-18fix emcc bug with detecting bitcode after refactoring of llvm-nm calling codeAlon Zakai
2012-01-18automatically use libcxx when neededAlon Zakai
2012-01-18further refactor the library scanning code, and prepare for libcxxAlon Zakai
2012-01-18refactor library def scanning codeAlon Zakai
2012-01-17cache for dlmalloc and soon libc++Alon Zakai
2012-01-16improve side effect detection in js optimizerAlon Zakai
2012-01-15tweak order of operations in vacuumAlon Zakai
2012-01-15optimize hoistMultiples to not need multiple passesAlon Zakai
2012-01-15js optimizer refactoringAlon Zakai
2012-01-14refactor hoistMultiples shell for clarityAlon Zakai
2012-01-14vaccum per function in js optimizerAlon Zakai
2012-01-14optimize js optimizer traversal of generated codeAlon Zakai
2012-01-14optimize hoistMultiples with a switchAlon Zakai
2012-01-14optimize hoistMultiples by removing jsonCompare'sAlon Zakai
2012-01-12emcc option to compress js whitespaceAlon Zakai
2012-01-11better workaround for v8 bug 1895Alon Zakai
2012-01-11fix bindings generator bug with static return values, and do not create ↵Alon Zakai
EmscriptenEnsurer by default (it turns into a very large amount of code after closure, causing errors in large projects)
2012-01-11tweak fix_closure outputAlon Zakai
2012-01-11fix fix_closure bug with newlinesAlon Zakai
2012-01-10option for NODE_JS_SAFE as a workaround for intermittent failures due to ↵Alon Zakai
node issue 2476
2012-01-10refactor js optimizer to not use fs.* as much as possibleAlon Zakai
2012-01-10fix fix_closure bug with the relevant line being split over several linesAlon Zakai
2012-01-10fix fix_closure bugAlon Zakai
2012-01-10experimental tool to fix closure's over-inlining into FUNCTION_TABLEAlon Zakai
2012-01-10use NODE_JS when calling coffee and eliminator, to avoid problems with ↵Alon Zakai
missing system node
2012-01-08fix and optimize cached header handling in test runnerAlon Zakai
2012-01-06also hoist loops in inner functionsAlon Zakai