| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "use the fast-mode compiler for some top-level code") | 147 "use the fast-mode compiler for some top-level code") |
| 148 DEFINE_bool(trace_bailout, false, | 148 DEFINE_bool(trace_bailout, false, |
| 149 "print reasons for failing to use fast compilation") | 149 "print reasons for failing to use fast compilation") |
| 150 | 150 |
| 151 // compilation-cache.cc | 151 // compilation-cache.cc |
| 152 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 152 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 153 | 153 |
| 154 // debug.cc | 154 // debug.cc |
| 155 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 155 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 156 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 156 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 157 DEFINE_bool(debugger_auto_break, false, | 157 DEFINE_bool(debugger_auto_break, true, |
| 158 "automatically set the debug break flag when debugger commands are " | 158 "automatically set the debug break flag when debugger commands are " |
| 159 "in the queue (experimental)") | 159 "in the queue") |
| 160 | 160 |
| 161 // frames.cc | 161 // frames.cc |
| 162 DEFINE_int(max_stack_trace_source_length, 300, | 162 DEFINE_int(max_stack_trace_source_length, 300, |
| 163 "maximum length of function source code printed in a stack trace.") | 163 "maximum length of function source code printed in a stack trace.") |
| 164 | 164 |
| 165 // heap.cc | 165 // heap.cc |
| 166 DEFINE_int(max_new_space_size, 0, "max size of the new generation") | 166 DEFINE_int(max_new_space_size, 0, "max size of the new generation") |
| 167 DEFINE_int(max_old_space_size, 0, "max size of the old generation") | 167 DEFINE_int(max_old_space_size, 0, "max size of the old generation") |
| 168 DEFINE_bool(gc_global, false, "always perform global GCs") | 168 DEFINE_bool(gc_global, false, "always perform global GCs") |
| 169 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") | 169 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 #undef FLAG | 403 #undef FLAG |
| 404 | 404 |
| 405 #undef DEFINE_bool | 405 #undef DEFINE_bool |
| 406 #undef DEFINE_int | 406 #undef DEFINE_int |
| 407 #undef DEFINE_string | 407 #undef DEFINE_string |
| 408 | 408 |
| 409 #undef FLAG_MODE_DECLARE | 409 #undef FLAG_MODE_DECLARE |
| 410 #undef FLAG_MODE_DEFINE | 410 #undef FLAG_MODE_DEFINE |
| 411 #undef FLAG_MODE_DEFINE_DEFAULTS | 411 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 412 #undef FLAG_MODE_META | 412 #undef FLAG_MODE_META |
| OLD | NEW |