aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2013-07-15fill EMSCRIPTEN in env with the path to emscriptenAlon Zakai
2013-07-15Merge pull request #1357 from int3/keyboard-interruptAlon Zakai
Handle keyboard interrupt in child processes.
2013-07-14do not eliminate away tempDoublePtr uses that are alignment fixes; fixes #1375Alon Zakai
2013-07-13avoid creating ~~~ (from ~~ ^ -1) which is confusing for asm given the role ↵Alon Zakai
of ~~
2013-07-10Don't throw KeyboardInterrupt from a child process.Jez Ng
This should fix #1327.
2013-07-09outliner todoAlon Zakai
2013-07-09Merge branch 'lint' of github.com:int3/emscripten into incomingAlon Zakai
2013-07-09work on outlining control flowAlon Zakai
2013-07-09replace &-1 with |0 at the end of the optimization pipelineAlon Zakai
2013-07-09analyze escaping breaks and continues in outlined codeAlon Zakai
2013-07-08add one-time loop when we need to handle control flow in outlined functionsAlon Zakai
2013-07-08analyze code flow in outlined codeAlon Zakai
2013-07-08recurse into outlined functionsAlon Zakai
2013-07-08do not outline too-big a chunk out of a functionAlon Zakai
2013-07-08Remove semicolons from Python code.Jez Ng
2013-07-08Merge branch 'incoming' of github.com:kripken/emscripten into incomingAlon Zakai
2013-07-08Merge pull request #1355 from sunfishcode/incomingAlon Zakai
Incoming
2013-07-08add read/writes in outlined functionsAlon Zakai
2013-07-08add variable info to outlined functionsAlon Zakai
2013-07-08generate functions for split-out codeAlon Zakai
2013-07-08read results from outlined codeAlon Zakai
2013-07-08emit statements in outliningAlon Zakai
2013-07-08start to emit spillsAlon Zakai
2013-07-08testing for existing sp in outlinerAlon Zakai
2013-07-08infrastructure to analyze functions and variables in outlinerAlon Zakai
2013-07-08start to outline codeAlon Zakai
2013-07-08outlining tweaksAlon Zakai
2013-07-08initial recursive logic for outliningAlon Zakai
2013-07-08setup for outlining of code chunksAlon Zakai
2013-07-08begin work on outliner pass to break up large functions. part 1: aggressive ↵Alon Zakai
variable elimination, to reduce spilling
2013-07-08Add '!==' as a comparison operator.Dan Gohman
2013-07-08Xor optimizations.Dan Gohman
Optimize x^-1 to ~x; this comes up because LLVM does not have a bitwise negate operator. Optimize x&1^1 to !x; this comes up because of how LLVM lowers C++ bool variables. Also, add an optimization to simplifyExpressionsPre to eliminate |0 from '~' expressions in more cases.
2013-07-08update testAlon Zakai
2013-07-08remove code after a return in a block of statementsAlon Zakai
2013-07-07rename __stackbase__ to spAlon Zakai
2013-07-07keep free() alive like malloc()Alon Zakai
2013-07-06disable -fno-threadsafe-statics, issue #1289Alon Zakai
2013-07-04commentsAlon Zakai
2013-07-03force-include .a contents when it is the only input aside from linked librariesAlon Zakai
2013-07-03do not relocate function pointers when no need to (no such table in parent)Alon Zakai
2013-07-03handle multiple F_BASE_.. in relocationAlon Zakai
2013-07-03always do globaldce (and potentially strip-debug), even when we are building ↵Alon Zakai
something linkable
2013-07-03add a naming to globals that can be linked and used across modulesAlon Zakai
2013-07-03refactor linking of importsAlon Zakai
2013-07-03finalize floats during relocation in side modulesAlon Zakai
2013-07-03simplify heap initializer mergingAlon Zakai
2013-07-03refactor invoke generation and add missing invokes when linkingAlon Zakai
2013-07-03merge global initializersAlon Zakai
2013-07-03begin work on memory relocationAlon Zakai
2013-07-03move memory initializer pattern to sharedAlon Zakai