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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 DEFINE_bool(always_full_compiler, false, | 332 DEFINE_bool(always_full_compiler, false, |
333 "try to use the dedicated run-once backend for all code") | 333 "try to use the dedicated run-once backend for all code") |
334 DEFINE_int(max_opt_count, 10, | 334 DEFINE_int(max_opt_count, 10, |
335 "maximum number of optimization attempts before giving up.") | 335 "maximum number of optimization attempts before giving up.") |
336 | 336 |
337 // compilation-cache.cc | 337 // compilation-cache.cc |
338 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 338 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
339 | 339 |
340 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 340 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
341 | 341 |
342 // cpu-profiler.cc | |
343 DEFINE_int(cpu_profiler_sampling_period, 1000, | |
344 "CPU profiler sampling period in microseconds") | |
345 | |
346 // debug.cc | 342 // debug.cc |
347 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 343 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
348 DEFINE_bool(debugger_auto_break, true, | 344 DEFINE_bool(debugger_auto_break, true, |
349 "automatically set the debug break flag when debugger commands are " | 345 "automatically set the debug break flag when debugger commands are " |
350 "in the queue") | 346 "in the queue") |
351 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") | 347 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") |
352 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") | 348 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") |
353 | 349 |
354 // execution.cc | 350 // execution.cc |
355 // Slightly less than 1MB on 64-bit, since Windows' default stack size for | 351 // Slightly less than 1MB on 64-bit, since Windows' default stack size for |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 #undef DEFINE_bool | 699 #undef DEFINE_bool |
704 #undef DEFINE_int | 700 #undef DEFINE_int |
705 #undef DEFINE_string | 701 #undef DEFINE_string |
706 #undef DEFINE_implication | 702 #undef DEFINE_implication |
707 | 703 |
708 #undef FLAG_MODE_DECLARE | 704 #undef FLAG_MODE_DECLARE |
709 #undef FLAG_MODE_DEFINE | 705 #undef FLAG_MODE_DEFINE |
710 #undef FLAG_MODE_DEFINE_DEFAULTS | 706 #undef FLAG_MODE_DEFINE_DEFAULTS |
711 #undef FLAG_MODE_META | 707 #undef FLAG_MODE_META |
712 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 708 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |