| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 DEFINE_bool(check_stack, true, | 135 DEFINE_bool(check_stack, true, |
| 136 "check stack for overflow, interrupt, breakpoint") | 136 "check stack for overflow, interrupt, breakpoint") |
| 137 | 137 |
| 138 // codegen.cc | 138 // codegen.cc |
| 139 DEFINE_bool(lazy, true, "use lazy compilation") | 139 DEFINE_bool(lazy, true, "use lazy compilation") |
| 140 DEFINE_bool(debug_info, true, "add debug information to compiled functions") | 140 DEFINE_bool(debug_info, true, "add debug information to compiled functions") |
| 141 | 141 |
| 142 // compiler.cc | 142 // compiler.cc |
| 143 DEFINE_bool(strict, false, "strict error checking") | 143 DEFINE_bool(strict, false, "strict error checking") |
| 144 DEFINE_int(min_preparse_length, 1024, | 144 DEFINE_int(min_preparse_length, 1024, |
| 145 "Minimum length for automatic enable preparsing") | 145 "minimum length for automatic enable preparsing") |
| 146 DEFINE_bool(fast_compiler, true, |
| 147 "use the fast-mode compiler for some top-level code") |
| 148 DEFINE_bool(trace_bailout, false, |
| 149 "print reasons for failing to use fast compilation") |
| 146 | 150 |
| 147 // compilation-cache.cc | 151 // compilation-cache.cc |
| 148 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 152 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 149 | 153 |
| 150 // debug.cc | 154 // debug.cc |
| 151 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 155 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 152 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 156 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 153 DEFINE_bool(debugger_auto_break, false, | 157 DEFINE_bool(debugger_auto_break, false, |
| 154 "automatically set the debug break flag when debugger commands are " | 158 "automatically set the debug break flag when debugger commands are " |
| 155 "in the queue (experimental)") | 159 "in the queue (experimental)") |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 #undef FLAG | 401 #undef FLAG |
| 398 | 402 |
| 399 #undef DEFINE_bool | 403 #undef DEFINE_bool |
| 400 #undef DEFINE_int | 404 #undef DEFINE_int |
| 401 #undef DEFINE_string | 405 #undef DEFINE_string |
| 402 | 406 |
| 403 #undef FLAG_MODE_DECLARE | 407 #undef FLAG_MODE_DECLARE |
| 404 #undef FLAG_MODE_DEFINE | 408 #undef FLAG_MODE_DEFINE |
| 405 #undef FLAG_MODE_DEFINE_DEFAULTS | 409 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 406 #undef FLAG_MODE_META | 410 #undef FLAG_MODE_META |
| OLD | NEW |