aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Expand)Author
2013-08-091.5.51.5.5Bruce Mitchener
2013-08-081.5.41.5.4Alon Zakai
2013-08-08Improve the generation of ~/.emscripten on Windows.Nick Bray
2013-08-08Allow the PNaCl toolchain to be used in place of a standard version of Clang.Nick Bray
2013-08-08generate static linking invokes in the prelude; fixes #1468Alon Zakai
2013-08-08Merge pull request #1470 from inolen/preload_path_fixesAlon Zakai
2013-08-08Merge pull request #1467 from abergmeier/extend_versionsAlon Zakai
2013-08-08Merge branch 'link_exports' of github.com:ncbray/emscripten into incomingAlon Zakai
2013-08-07fix static linker parsing bugAlon Zakai
2013-08-07Ensure the linker pulls in static libraries containing exported functions.Nick Bray
2013-08-06store preloaded images by their absolute pathAnthony Pesch
2013-08-06test outlining with -O2, but without size checksAlon Zakai
2013-08-06allow outlining of single statementsAlon Zakai
2013-08-06better outline loggingAlon Zakai
2013-08-06increment outlining counter only when outlining succeededAlon Zakai
2013-08-06Enable LLVM_ADD_VERSION and CLANG_ADD_VERSION being set in Emscripten configu...Andreas Bergmeier
2013-08-06add more output in file packager errorAlon Zakai
2013-08-05handle overflows when relocating heap offsetsAlon Zakai
2013-08-05increase logging output, fixes s_0_0.test_safe_heapAlon Zakai
2013-08-05increase logging output, fixes s_0_0.test_safe_heapAlon Zakai
2013-08-05infrastructure to track the costs of outlining, and to possibly change outlin...Alon Zakai
2013-08-02infer relative paths in file packager only when not told explicit src and des...Alon Zakai
2013-08-02also use LLVM_ROOT to detect when we need to clear the cacheAlon Zakai
2013-08-02move file packager logging into debug-onlyAlon Zakai
2013-08-01add tools to split and merge asm modules from the surrounding codeAlon Zakai
2013-08-01refactor asm module parsing code into separate fileAlon Zakai
2013-08-01do not use -nostdinc++ with le32 target at all, it does not need it, and add ...Alon Zakai
2013-08-01only emit -nostdinc++ when calling clang to build a file ending in a cpp-styl...Alon Zakai
2013-08-01do not emit -m32 when using le32 targetAlon Zakai
2013-07-31absolutize and verify paths in the file packagerAlon Zakai
2013-07-26flatten if-chains into smaller chains, chunking reduces the overhead of flatt...Alon Zakai
2013-07-25fix outlining for all debug levels and add testingAlon Zakai
2013-07-25fix bug in aggressive variable elimination and re-enable itAlon Zakai
2013-07-25do not flatten ifs without elsesAlon Zakai
2013-07-25support outlining with minificationAlon Zakai
2013-07-25disable aggressiveVariableElimination for nowAlon Zakai
2013-07-25do not outline sp assignments, because we need sp to perform an outline callAlon Zakai
2013-07-25allow mixing minifier extra info with general extra info in js optimizerAlon Zakai
2013-07-25fix find_bigfuncs.pyAlon Zakai
2013-07-24flatten if chains in outliner, and be more careful to avoid outlining through...Alon Zakai
2013-07-23do not outline through an outline callAlon Zakai
2013-07-23use a separate stack location for control variable information for each outli...Alon Zakai
2013-07-22clean up outlinings limit codeAlon Zakai
2013-07-22have a fixed limit for the number of outlinings we perform on a single functionAlon Zakai
2013-07-21abort outlining if it leads to the new function or old function exceeding the...Alon Zakai
2013-07-21fix semantics of control variable handling in outlining: zero out when callin...Alon Zakai
2013-07-20simplify heuristics for restarting in outlinerAlon Zakai
2013-07-20stop trying to outline in outlined code, appears to not be necessary anymoreAlon Zakai
2013-07-20use blocks in switch cases in outlinerAlon Zakai
2013-07-20allow sp to be modified in outlined code, by changing the model to where outl...Alon Zakai