diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-16 12:01:48 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-17 17:56:17 -0700 |
commit | 9b7c27056eccfa8f95dc2c61fe969ab6f353757a (patch) | |
tree | 25a20bf3d6521d9df5137f4920914d2c2d3e56c8 /src | |
parent | df8919a0de5ff258eff86c7e7bfcf0e01d928d10 (diff) |
comment on outlining downsides
Diffstat (limited to 'src')
-rw-r--r-- | src/settings.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/settings.js b/src/settings.js index 6e644a54..8e0d9e2d 100644 --- a/src/settings.js +++ b/src/settings.js @@ -165,6 +165,11 @@ var OUTLINING_LIMIT = 0; // A function size above which we try to automatically // throughput. It is hard to say what values to start testing // with, but something around 20,000 to 100,000 might make sense. // (The unit size is number of AST nodes.) + // Outlining decreases maximum function size, but does so at the + // cost of increasing overall code size as well as performance + // (outlining itself makes code less optimized, and requires + // emscripten to disable some passes that are incompatible with + // it). var AGGRESSIVE_VARIABLE_ELIMINATION = 0; // Run aggressiveVariableElimination in js-optimizer.js |