| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 305 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 306 DEFINE_bool(debugger_auto_break, true, | 306 DEFINE_bool(debugger_auto_break, true, |
| 307 "automatically set the debug break flag when debugger commands are " | 307 "automatically set the debug break flag when debugger commands are " |
| 308 "in the queue") | 308 "in the queue") |
| 309 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 309 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
| 310 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") | 310 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") |
| 311 | 311 |
| 312 // execution.cc | 312 // execution.cc |
| 313 // Slightly less than 1MB on 64-bit, since Windows' default stack size for | 313 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
| 314 // the main execution thread is 1MB for both 32 and 64-bit. | 314 // the main execution thread is 1MB for both 32 and 64-bit. |
| 315 DEFINE_int(stack_size, kPointerSize * 125, | 315 DEFINE_int(stack_size, kPointerSize * 123, |
| 316 "default size of stack region v8 is allowed to use (in kBytes)") | 316 "default size of stack region v8 is allowed to use (in kBytes)") |
| 317 | 317 |
| 318 // frames.cc | 318 // frames.cc |
| 319 DEFINE_int(max_stack_trace_source_length, 300, | 319 DEFINE_int(max_stack_trace_source_length, 300, |
| 320 "maximum length of function source code printed in a stack trace.") | 320 "maximum length of function source code printed in a stack trace.") |
| 321 | 321 |
| 322 // full-codegen.cc | 322 // full-codegen.cc |
| 323 DEFINE_bool(always_inline_smi_code, false, | 323 DEFINE_bool(always_inline_smi_code, false, |
| 324 "always inline smi code in non-opt code") | 324 "always inline smi code in non-opt code") |
| 325 | 325 |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 #undef DEFINE_bool | 644 #undef DEFINE_bool |
| 645 #undef DEFINE_int | 645 #undef DEFINE_int |
| 646 #undef DEFINE_string | 646 #undef DEFINE_string |
| 647 #undef DEFINE_implication | 647 #undef DEFINE_implication |
| 648 | 648 |
| 649 #undef FLAG_MODE_DECLARE | 649 #undef FLAG_MODE_DECLARE |
| 650 #undef FLAG_MODE_DEFINE | 650 #undef FLAG_MODE_DEFINE |
| 651 #undef FLAG_MODE_DEFINE_DEFAULTS | 651 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 652 #undef FLAG_MODE_META | 652 #undef FLAG_MODE_META |
| 653 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 653 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |