aboutsummaryrefslogtreecommitdiff
path: root/tools/js-optimizer.js
AgeCommit message (Expand)Author
2013-09-11abort registerize at the proper early time when we need toAlon Zakai
2013-09-11disable registerize when seeing inline js in non-asm mode, as we do not prote...Alon Zakai
2013-09-07fix outlining log messageAlon Zakai
2013-09-06properly outline the while (1) switch patternAlon Zakai
2013-09-06remember inlined js in outlinerAlon Zakai
2013-09-06handle inline assembly more carefully, avoid it being seen by asm optimizatio...Alon Zakai
2013-09-06fix inline js in x86 target, enable testing sans validation for inline js in ...Alon Zakai
2013-08-27fix outliner bug with checking when switch cases need to be joinedAlon Zakai
2013-08-27fix outlining separation of case statements ending in continue or returnAlon Zakai
2013-08-27better outlining debugging outputAlon Zakai
2013-08-23do not split up fallthrough case statements from their followup when flatteningAlon Zakai
2013-08-23vacuum before outlining, for consistencyAlon Zakai
2013-08-22flatten switches in outlinerAlon Zakai
2013-08-14disable optimizeShifts; fixes #1518Alon Zakai
2013-08-13fix limit in outlining.flatten, and adjust to 1/4 of the outlining targetAlon Zakai
2013-08-13exit outlining when we are done, as early as possibleAlon Zakai
2013-08-09aim for more evenly-sized pieces in outlinerAlon Zakai
2013-08-09sort spills and unspills in outlinerAlon Zakai
2013-08-09track loop depth in outlinerAlon Zakai
2013-08-09report more variable stats when outliningAlon Zakai
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-05handle overflows when relocating heap offsetsAlon Zakai
2013-08-05infrastructure to track the costs of outlining, and to possibly change outlin...Alon 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-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
2013-07-20adjust outlining heuristics to fully outline even big functionsAlon Zakai
2013-07-20do a restart in the outliner only if the total cost is not too highAlon Zakai
2013-07-20recursively outline when the total cost is not too high, and adjust outlining...Alon Zakai
2013-07-20do not try another outlining pass if there is not that much left anyhowAlon Zakai
2013-07-19attempt a final outline from the start after any outlining, not just a recurs...Alon Zakai
2013-07-19after outlining recursively, try to outline once more from the beginningAlon Zakai