| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "try to use the dedicated run-once backend for all code") | 216 "try to use the dedicated run-once backend for all code") |
| 217 DEFINE_bool(trace_bailout, false, | 217 DEFINE_bool(trace_bailout, false, |
| 218 "print reasons for falling back to using the classic V8 backend") | 218 "print reasons for falling back to using the classic V8 backend") |
| 219 DEFINE_bool(safe_int32_compiler, true, | 219 DEFINE_bool(safe_int32_compiler, true, |
| 220 "enable optimized side-effect-free int32 expressions.") | 220 "enable optimized side-effect-free int32 expressions.") |
| 221 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") | 221 DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations") |
| 222 | 222 |
| 223 // compilation-cache.cc | 223 // compilation-cache.cc |
| 224 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 224 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 225 | 225 |
| 226 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
| 227 |
| 226 // data-flow.cc | 228 // data-flow.cc |
| 227 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.") | 229 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.") |
| 228 | 230 |
| 229 // debug.cc | 231 // debug.cc |
| 230 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 232 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 231 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 233 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 232 DEFINE_bool(debugger_auto_break, true, | 234 DEFINE_bool(debugger_auto_break, true, |
| 233 "automatically set the debug break flag when debugger commands are " | 235 "automatically set the debug break flag when debugger commands are " |
| 234 "in the queue") | 236 "in the queue") |
| 235 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 237 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 #undef FLAG | 553 #undef FLAG |
| 552 | 554 |
| 553 #undef DEFINE_bool | 555 #undef DEFINE_bool |
| 554 #undef DEFINE_int | 556 #undef DEFINE_int |
| 555 #undef DEFINE_string | 557 #undef DEFINE_string |
| 556 | 558 |
| 557 #undef FLAG_MODE_DECLARE | 559 #undef FLAG_MODE_DECLARE |
| 558 #undef FLAG_MODE_DEFINE | 560 #undef FLAG_MODE_DEFINE |
| 559 #undef FLAG_MODE_DEFINE_DEFAULTS | 561 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 560 #undef FLAG_MODE_META | 562 #undef FLAG_MODE_META |
| OLD | NEW |