| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, false, |
| 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 (experimental)") |
| 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(new_space_size, 0, "size of (each semispace in) the new generation") | 166 DEFINE_int(max_new_space_size, 0, "max size of the new generation") |
| 167 DEFINE_int(old_space_size, 0, "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") |
| 170 DEFINE_bool(trace_gc, false, | 170 DEFINE_bool(trace_gc, false, |
| 171 "print one trace line following each garbage collection") | 171 "print one trace line following each garbage collection") |
| 172 DEFINE_bool(trace_gc_verbose, false, | 172 DEFINE_bool(trace_gc_verbose, false, |
| 173 "print more details following each garbage collection") | 173 "print more details following each garbage collection") |
| 174 DEFINE_bool(collect_maps, true, | 174 DEFINE_bool(collect_maps, true, |
| 175 "garbage collect maps from which no objects can be reached") | 175 "garbage collect maps from which no objects can be reached") |
| 176 | 176 |
| 177 // v8.cc | 177 // v8.cc |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 #undef FLAG | 402 #undef FLAG |
| 403 | 403 |
| 404 #undef DEFINE_bool | 404 #undef DEFINE_bool |
| 405 #undef DEFINE_int | 405 #undef DEFINE_int |
| 406 #undef DEFINE_string | 406 #undef DEFINE_string |
| 407 | 407 |
| 408 #undef FLAG_MODE_DECLARE | 408 #undef FLAG_MODE_DECLARE |
| 409 #undef FLAG_MODE_DEFINE | 409 #undef FLAG_MODE_DEFINE |
| 410 #undef FLAG_MODE_DEFINE_DEFAULTS | 410 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 411 #undef FLAG_MODE_META | 411 #undef FLAG_MODE_META |
| OLD | NEW |