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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 DEFINE_bool(always_full_compiler, false, | 343 DEFINE_bool(always_full_compiler, false, |
344 "try to use the dedicated run-once backend for all code") | 344 "try to use the dedicated run-once backend for all code") |
345 DEFINE_int(max_opt_count, 10, | 345 DEFINE_int(max_opt_count, 10, |
346 "maximum number of optimization attempts before giving up.") | 346 "maximum number of optimization attempts before giving up.") |
347 | 347 |
348 // compilation-cache.cc | 348 // compilation-cache.cc |
349 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 349 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
350 | 350 |
351 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 351 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
352 | 352 |
353 // cpu-profiler.cc | |
354 DEFINE_int(cpu_profiler_sampling_period, 1000, | |
355 "CPU profiler sampling period in microseconds") | |
356 | |
357 // debug.cc | 353 // debug.cc |
358 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 354 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
359 DEFINE_bool(debugger_auto_break, true, | 355 DEFINE_bool(debugger_auto_break, true, |
360 "automatically set the debug break flag when debugger commands are " | 356 "automatically set the debug break flag when debugger commands are " |
361 "in the queue") | 357 "in the queue") |
362 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 358 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
363 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") | 359 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") |
364 | 360 |
365 // execution.cc | 361 // execution.cc |
366 // Slightly less than 1MB on 64-bit, since Windows' default stack size for | 362 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
723 #undef DEFINE_bool | 719 #undef DEFINE_bool |
724 #undef DEFINE_int | 720 #undef DEFINE_int |
725 #undef DEFINE_string | 721 #undef DEFINE_string |
726 #undef DEFINE_implication | 722 #undef DEFINE_implication |
727 | 723 |
728 #undef FLAG_MODE_DECLARE | 724 #undef FLAG_MODE_DECLARE |
729 #undef FLAG_MODE_DEFINE | 725 #undef FLAG_MODE_DEFINE |
730 #undef FLAG_MODE_DEFINE_DEFAULTS | 726 #undef FLAG_MODE_DEFINE_DEFAULTS |
731 #undef FLAG_MODE_META | 727 #undef FLAG_MODE_META |
732 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 728 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |