| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 DEFINE_int(min_preparse_length, 1024, | 145 DEFINE_int(min_preparse_length, 1024, |
| 146 "minimum length for automatic enable preparsing") | 146 "minimum length for automatic enable preparsing") |
| 147 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code") | 147 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code") |
| 148 DEFINE_bool(fast_compiler, false, "enable speculative optimizing backend") | 148 DEFINE_bool(fast_compiler, false, "enable speculative optimizing backend") |
| 149 DEFINE_bool(always_full_compiler, false, | 149 DEFINE_bool(always_full_compiler, false, |
| 150 "try to use the dedicated run-once backend for all code") | 150 "try to use the dedicated run-once backend for all code") |
| 151 DEFINE_bool(always_fast_compiler, false, | 151 DEFINE_bool(always_fast_compiler, false, |
| 152 "try to use the speculative optimizing backend for all code") | 152 "try to use the speculative optimizing backend for all code") |
| 153 DEFINE_bool(trace_bailout, false, | 153 DEFINE_bool(trace_bailout, false, |
| 154 "print reasons for falling back to using the classic V8 backend") | 154 "print reasons for falling back to using the classic V8 backend") |
| 155 DEFINE_bool(safe_int32_compiler, false, | 155 DEFINE_bool(safe_int32_compiler, true, |
| 156 "enable optimized side-effect-free int32 expressions.") | 156 "enable optimized side-effect-free int32 expressions.") |
| 157 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") | 157 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") |
| 158 | 158 |
| 159 // compilation-cache.cc | 159 // compilation-cache.cc |
| 160 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 160 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 161 | 161 |
| 162 // data-flow.cc |
| 163 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.") |
| 164 |
| 162 // debug.cc | 165 // debug.cc |
| 163 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 166 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 164 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 167 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 165 DEFINE_bool(debugger_auto_break, true, | 168 DEFINE_bool(debugger_auto_break, true, |
| 166 "automatically set the debug break flag when debugger commands are " | 169 "automatically set the debug break flag when debugger commands are " |
| 167 "in the queue") | 170 "in the queue") |
| 168 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 171 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
| 169 | 172 |
| 170 // frames.cc | 173 // frames.cc |
| 171 DEFINE_int(max_stack_trace_source_length, 300, | 174 DEFINE_int(max_stack_trace_source_length, 300, |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 #undef FLAG | 429 #undef FLAG |
| 427 | 430 |
| 428 #undef DEFINE_bool | 431 #undef DEFINE_bool |
| 429 #undef DEFINE_int | 432 #undef DEFINE_int |
| 430 #undef DEFINE_string | 433 #undef DEFINE_string |
| 431 | 434 |
| 432 #undef FLAG_MODE_DECLARE | 435 #undef FLAG_MODE_DECLARE |
| 433 #undef FLAG_MODE_DEFINE | 436 #undef FLAG_MODE_DEFINE |
| 434 #undef FLAG_MODE_DEFINE_DEFAULTS | 437 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 435 #undef FLAG_MODE_META | 438 #undef FLAG_MODE_META |
| OLD | NEW |