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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 DEFINE_int(max_opt_count, 10, | 356 DEFINE_int(max_opt_count, 10, |
357 "maximum number of optimization attempts before giving up.") | 357 "maximum number of optimization attempts before giving up.") |
358 | 358 |
359 // compilation-cache.cc | 359 // compilation-cache.cc |
360 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 360 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
361 | 361 |
362 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 362 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
363 | 363 |
364 // debug.cc | 364 // debug.cc |
365 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 365 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
366 DEFINE_bool(trace_array_abuse, false, "trace out-of-bounds array accesses") | 366 DEFINE_bool(trace_js_array_abuse, false, |
| 367 "trace out-of-bounds accesses to JS arrays") |
| 368 DEFINE_bool(trace_external_array_abuse, false, |
| 369 "trace out-of-bounds-accesses to external arrays") |
| 370 DEFINE_bool(trace_array_abuse, false, |
| 371 "trace out-of-bounds accesses to all arrays") |
| 372 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) |
| 373 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) |
367 DEFINE_bool(debugger_auto_break, true, | 374 DEFINE_bool(debugger_auto_break, true, |
368 "automatically set the debug break flag when debugger commands are " | 375 "automatically set the debug break flag when debugger commands are " |
369 "in the queue") | 376 "in the queue") |
370 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 377 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
371 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") | 378 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") |
372 | 379 |
373 // execution.cc | 380 // execution.cc |
374 // Slightly less than 1MB on 64-bit, since Windows' default stack size for | 381 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
375 // the main execution thread is 1MB for both 32 and 64-bit. | 382 // the main execution thread is 1MB for both 32 and 64-bit. |
376 DEFINE_int(stack_size, kPointerSize * 123, | 383 DEFINE_int(stack_size, kPointerSize * 123, |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 #undef DEFINE_bool | 741 #undef DEFINE_bool |
735 #undef DEFINE_int | 742 #undef DEFINE_int |
736 #undef DEFINE_string | 743 #undef DEFINE_string |
737 #undef DEFINE_implication | 744 #undef DEFINE_implication |
738 | 745 |
739 #undef FLAG_MODE_DECLARE | 746 #undef FLAG_MODE_DECLARE |
740 #undef FLAG_MODE_DEFINE | 747 #undef FLAG_MODE_DEFINE |
741 #undef FLAG_MODE_DEFINE_DEFAULTS | 748 #undef FLAG_MODE_DEFINE_DEFAULTS |
742 #undef FLAG_MODE_META | 749 #undef FLAG_MODE_META |
743 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 750 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |