| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 // debug.cc | 464 // debug.cc |
| 465 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 465 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 466 DEFINE_bool(trace_js_array_abuse, false, | 466 DEFINE_bool(trace_js_array_abuse, false, |
| 467 "trace out-of-bounds accesses to JS arrays") | 467 "trace out-of-bounds accesses to JS arrays") |
| 468 DEFINE_bool(trace_external_array_abuse, false, | 468 DEFINE_bool(trace_external_array_abuse, false, |
| 469 "trace out-of-bounds-accesses to external arrays") | 469 "trace out-of-bounds-accesses to external arrays") |
| 470 DEFINE_bool(trace_array_abuse, false, | 470 DEFINE_bool(trace_array_abuse, false, |
| 471 "trace out-of-bounds accesses to all arrays") | 471 "trace out-of-bounds accesses to all arrays") |
| 472 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) | 472 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) |
| 473 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) | 473 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) |
| 474 DEFINE_bool(debugger_auto_break, true, | |
| 475 "automatically set the debug break flag when debugger commands are " | |
| 476 "in the queue") | |
| 477 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 474 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
| 478 DEFINE_bool(hard_abort, true, "abort by crashing") | 475 DEFINE_bool(hard_abort, true, "abort by crashing") |
| 479 | 476 |
| 480 // execution.cc | 477 // execution.cc |
| 481 // Slightly less than 1MB on 64-bit, since Windows' default stack size for | 478 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
| 482 // the main execution thread is 1MB for both 32 and 64-bit. | 479 // the main execution thread is 1MB for both 32 and 64-bit. |
| 483 DEFINE_int(stack_size, kPointerSize * 123, | 480 DEFINE_int(stack_size, kPointerSize * 123, |
| 484 "default size of stack region v8 is allowed to use (in kBytes)") | 481 "default size of stack region v8 is allowed to use (in kBytes)") |
| 485 | 482 |
| 486 // frames.cc | 483 // frames.cc |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 #undef DEFINE_ALIAS_float | 921 #undef DEFINE_ALIAS_float |
| 925 #undef DEFINE_ALIAS_args | 922 #undef DEFINE_ALIAS_args |
| 926 | 923 |
| 927 #undef FLAG_MODE_DECLARE | 924 #undef FLAG_MODE_DECLARE |
| 928 #undef FLAG_MODE_DEFINE | 925 #undef FLAG_MODE_DEFINE |
| 929 #undef FLAG_MODE_DEFINE_DEFAULTS | 926 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 930 #undef FLAG_MODE_META | 927 #undef FLAG_MODE_META |
| 931 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 928 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 932 | 929 |
| 933 #undef COMMA | 930 #undef COMMA |
| OLD | NEW |