OLD | NEW |
---|---|
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
224 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.") | 224 DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.") |
225 | 225 |
226 // debug.cc | 226 // debug.cc |
227 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 227 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
228 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 228 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
229 DEFINE_bool(debugger_auto_break, true, | 229 DEFINE_bool(debugger_auto_break, true, |
230 "automatically set the debug break flag when debugger commands are " | 230 "automatically set the debug break flag when debugger commands are " |
231 "in the queue") | 231 "in the queue") |
232 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 232 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
233 | 233 |
234 // execution.cc | |
235 DEFINE_int(stack_size_kb, kPointerSize * 128, | |
Kevin Millikin (Chromium)
2011/02/11 12:55:47
For the heap limits, the flag is something like ma
antonm
2011/02/11 14:20:32
Unified with max_new_space_size.
| |
236 "default size of stack region v8 is allowed to use") | |
237 | |
234 // frames.cc | 238 // frames.cc |
235 DEFINE_int(max_stack_trace_source_length, 300, | 239 DEFINE_int(max_stack_trace_source_length, 300, |
236 "maximum length of function source code printed in a stack trace.") | 240 "maximum length of function source code printed in a stack trace.") |
237 | 241 |
238 // full-codegen.cc | 242 // full-codegen.cc |
239 DEFINE_bool(always_inline_smi_code, false, | 243 DEFINE_bool(always_inline_smi_code, false, |
240 "always inline smi code in non-opt code") | 244 "always inline smi code in non-opt code") |
241 | 245 |
242 // heap.cc | 246 // heap.cc |
243 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") | 247 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
536 #undef FLAG | 540 #undef FLAG |
537 | 541 |
538 #undef DEFINE_bool | 542 #undef DEFINE_bool |
539 #undef DEFINE_int | 543 #undef DEFINE_int |
540 #undef DEFINE_string | 544 #undef DEFINE_string |
541 | 545 |
542 #undef FLAG_MODE_DECLARE | 546 #undef FLAG_MODE_DECLARE |
543 #undef FLAG_MODE_DEFINE | 547 #undef FLAG_MODE_DEFINE |
544 #undef FLAG_MODE_DEFINE_DEFAULTS | 548 #undef FLAG_MODE_DEFINE_DEFAULTS |
545 #undef FLAG_MODE_META | 549 #undef FLAG_MODE_META |
OLD | NEW |