| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 141 |
| 142 // codegen.cc | 142 // codegen.cc |
| 143 DEFINE_bool(lazy, true, "use lazy compilation") | 143 DEFINE_bool(lazy, true, "use lazy compilation") |
| 144 DEFINE_bool(debug_info, true, "add debug information to compiled functions") | 144 DEFINE_bool(debug_info, true, "add debug information to compiled functions") |
| 145 | 145 |
| 146 // compiler.cc | 146 // compiler.cc |
| 147 DEFINE_bool(strict, false, "strict error checking") | 147 DEFINE_bool(strict, false, "strict error checking") |
| 148 DEFINE_int(min_preparse_length, 1024, | 148 DEFINE_int(min_preparse_length, 1024, |
| 149 "minimum length for automatic enable preparsing") | 149 "minimum length for automatic enable preparsing") |
| 150 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code") | 150 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code") |
| 151 DEFINE_bool(fast_compiler, false, "enable speculative optimizing backend") | |
| 152 DEFINE_bool(always_full_compiler, false, | 151 DEFINE_bool(always_full_compiler, false, |
| 153 "try to use the dedicated run-once backend for all code") | 152 "try to use the dedicated run-once backend for all code") |
| 154 DEFINE_bool(always_fast_compiler, false, | |
| 155 "try to use the speculative optimizing backend for all code") | |
| 156 DEFINE_bool(trace_bailout, false, | 153 DEFINE_bool(trace_bailout, false, |
| 157 "print reasons for falling back to using the classic V8 backend") | 154 "print reasons for falling back to using the classic V8 backend") |
| 158 DEFINE_bool(safe_int32_compiler, true, | 155 DEFINE_bool(safe_int32_compiler, true, |
| 159 "enable optimized side-effect-free int32 expressions.") | 156 "enable optimized side-effect-free int32 expressions.") |
| 160 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") | 157 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") |
| 161 | 158 |
| 162 // compilation-cache.cc | 159 // compilation-cache.cc |
| 163 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 160 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 164 | 161 |
| 165 // data-flow.cc | 162 // data-flow.cc |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 #undef FLAG | 443 #undef FLAG |
| 447 | 444 |
| 448 #undef DEFINE_bool | 445 #undef DEFINE_bool |
| 449 #undef DEFINE_int | 446 #undef DEFINE_int |
| 450 #undef DEFINE_string | 447 #undef DEFINE_string |
| 451 | 448 |
| 452 #undef FLAG_MODE_DECLARE | 449 #undef FLAG_MODE_DECLARE |
| 453 #undef FLAG_MODE_DEFINE | 450 #undef FLAG_MODE_DEFINE |
| 454 #undef FLAG_MODE_DEFINE_DEFAULTS | 451 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 455 #undef FLAG_MODE_META | 452 #undef FLAG_MODE_META |
| OLD | NEW |