aboutsummaryrefslogtreecommitdiff
path: root/tools/test-js-optimizer-asm-outline2-output.js
AgeCommit message (Collapse)Author
2014-02-23add stack bump if only sp is defined but no bump is present, when outliningAlon Zakai
2013-08-13fix limit in outlining.flatten, and adjust to 1/4 of the outlining targetAlon Zakai
2013-08-09aim for more evenly-sized pieces in outlinerAlon Zakai
2013-08-09sort spills and unspills in outlinerAlon Zakai
2013-07-26flatten if-chains into smaller chains, chunking reduces the overhead of ↵Alon Zakai
flattening them out entirely
2013-07-25fix bug in aggressive variable elimination and re-enable itAlon 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-24flatten if chains in outliner, and be more careful to avoid outlining ↵Alon Zakai
through an outline call
2013-07-23use a separate stack location for control variable information for each ↵Alon Zakai
outlined function, to avoid problems when outlining right through the support code for a previous outlining
2013-07-21fix semantics of control variable handling in outlining: zero out when ↵Alon Zakai
calling outlined funcitons, and right after using the value, so that we can handle nested outlined calls
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 ↵Alon Zakai
outlined code returns sp (which also parallels that we sent it as the single parameter)
2013-07-20adjust outlining heuristics to fully outline even big functionsAlon Zakai
2013-07-19remove variables owned by outlined code from the parentAlon Zakai
2013-07-18wipe out control flow variable before calling outlined codeAlon Zakai
2013-07-18do not emit spills in outlined code for variables that only appear in the ↵Alon Zakai
outlines code
2013-07-18emit only necessary return proxying code when outliningAlon Zakai
2013-07-18send variables to outlines code even if just written; they may not be ↵Alon Zakai
written to, and we would write a zero incorrectly
2013-07-17add asm coercions to switches for outliningAlon Zakai
2013-07-17add asm coercions to ifs for outliningAlon Zakai
2013-07-17add asm coercion when outliningAlon Zakai
2013-07-17do not emit illegal breaks in seqs when outliningAlon Zakai
2013-07-17enable larger outline testAlon Zakai
2013-07-16rename outline test filesAlon Zakai