Age | Commit message (Expand) | Author |
2013-08-02 | infer relative paths in file packager only when not told explicit src and des... | Alon Zakai |
2013-08-02 | also use LLVM_ROOT to detect when we need to clear the cache | Alon Zakai |
2013-08-02 | move file packager logging into debug-only | Alon Zakai |
2013-08-01 | add tools to split and merge asm modules from the surrounding code | Alon Zakai |
2013-08-01 | refactor asm module parsing code into separate file | Alon Zakai |
2013-08-01 | do not use -nostdinc++ with le32 target at all, it does not need it, and add ... | Alon Zakai |
2013-08-01 | only emit -nostdinc++ when calling clang to build a file ending in a cpp-styl... | Alon Zakai |
2013-08-01 | do not emit -m32 when using le32 target | Alon Zakai |
2013-07-31 | absolutize and verify paths in the file packager | Alon Zakai |
2013-07-26 | flatten if-chains into smaller chains, chunking reduces the overhead of flatt... | Alon Zakai |
2013-07-25 | fix outlining for all debug levels and add testing | Alon Zakai |
2013-07-25 | fix bug in aggressive variable elimination and re-enable it | Alon Zakai |
2013-07-25 | do not flatten ifs without elses | Alon Zakai |
2013-07-25 | support outlining with minification | Alon Zakai |
2013-07-25 | disable aggressiveVariableElimination for now | Alon Zakai |
2013-07-25 | do not outline sp assignments, because we need sp to perform an outline call | Alon Zakai |
2013-07-25 | allow mixing minifier extra info with general extra info in js optimizer | Alon Zakai |
2013-07-25 | fix find_bigfuncs.py | Alon Zakai |
2013-07-24 | flatten if chains in outliner, and be more careful to avoid outlining through... | Alon Zakai |
2013-07-23 | do not outline through an outline call | Alon Zakai |
2013-07-23 | use a separate stack location for control variable information for each outli... | Alon Zakai |
2013-07-22 | clean up outlinings limit code | Alon Zakai |
2013-07-22 | have a fixed limit for the number of outlinings we perform on a single function | Alon Zakai |
2013-07-21 | abort outlining if it leads to the new function or old function exceeding the... | Alon Zakai |
2013-07-21 | fix semantics of control variable handling in outlining: zero out when callin... | Alon Zakai |
2013-07-20 | simplify heuristics for restarting in outliner | Alon Zakai |
2013-07-20 | stop trying to outline in outlined code, appears to not be necessary anymore | Alon Zakai |
2013-07-20 | use blocks in switch cases in outliner | Alon Zakai |
2013-07-20 | allow sp to be modified in outlined code, by changing the model to where outl... | Alon Zakai |
2013-07-20 | adjust outlining heuristics to fully outline even big functions | Alon Zakai |
2013-07-20 | do a restart in the outliner only if the total cost is not too high | Alon Zakai |
2013-07-20 | recursively outline when the total cost is not too high, and adjust outlining... | Alon Zakai |
2013-07-20 | do not try another outlining pass if there is not that much left anyhow | Alon Zakai |
2013-07-19 | attempt a final outline from the start after any outlining, not just a recurs... | Alon Zakai |
2013-07-19 | after outlining recursively, try to outline once more from the beginning | Alon Zakai |
2013-07-19 | ensure a final return after inlining, if necessary | Alon Zakai |
2013-07-19 | remove variables owned by outlined code from the parent | Alon Zakai |
2013-07-18 | improve find_bigfuncs | Alon Zakai |
2013-07-18 | wipe out control flow variable before calling outlined code | Alon Zakai |
2013-07-18 | do not miss returns that are statements | Alon Zakai |
2013-07-18 | do not emit spills in outlined code for variables that only appear in the out... | Alon Zakai |
2013-07-18 | do not outline into outlined code for now, and refactor code analysis a little | Alon Zakai |
2013-07-18 | add coercions on return proxying in outliner | Alon Zakai |
2013-07-18 | emit only necessary return proxying code when outlining | Alon Zakai |
2013-07-18 | send variables to outlines code even if just written; they may not be written... | Alon Zakai |
2013-07-17 | consolidate simplifyExpressions to one pass that happens before closure, wher... | Alon Zakai |
2013-07-17 | add asm coercions to switches for outlining | Alon Zakai |
2013-07-17 | add asm coercions to ifs for outlining | Alon Zakai |
2013-07-17 | add asm coercion when outlining | Alon Zakai |
2013-07-17 | do not emit illegal breaks in seqs when outlining | Alon Zakai |