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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 DEFINE_bool(always_full_compiler, false, | 357 DEFINE_bool(always_full_compiler, false, |
358 "try to use the dedicated run-once backend for all code") | 358 "try to use the dedicated run-once backend for all code") |
359 DEFINE_int(max_opt_count, 10, | 359 DEFINE_int(max_opt_count, 10, |
360 "maximum number of optimization attempts before giving up.") | 360 "maximum number of optimization attempts before giving up.") |
361 | 361 |
362 // compilation-cache.cc | 362 // compilation-cache.cc |
363 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 363 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
364 | 364 |
365 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 365 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
366 | 366 |
| 367 // cpu-profiler.cc |
| 368 DEFINE_int(cpu_profiler_sampling_period, 1000, |
| 369 "CPU profiler sampling period in microseconds") |
| 370 |
367 // debug.cc | 371 // debug.cc |
368 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 372 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
369 DEFINE_bool(trace_js_array_abuse, false, | 373 DEFINE_bool(trace_js_array_abuse, false, |
370 "trace out-of-bounds accesses to JS arrays") | 374 "trace out-of-bounds accesses to JS arrays") |
371 DEFINE_bool(trace_external_array_abuse, false, | 375 DEFINE_bool(trace_external_array_abuse, false, |
372 "trace out-of-bounds-accesses to external arrays") | 376 "trace out-of-bounds-accesses to external arrays") |
373 DEFINE_bool(trace_array_abuse, false, | 377 DEFINE_bool(trace_array_abuse, false, |
374 "trace out-of-bounds accesses to all arrays") | 378 "trace out-of-bounds accesses to all arrays") |
375 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) | 379 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) |
376 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) | 380 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 #undef DEFINE_bool | 748 #undef DEFINE_bool |
745 #undef DEFINE_int | 749 #undef DEFINE_int |
746 #undef DEFINE_string | 750 #undef DEFINE_string |
747 #undef DEFINE_implication | 751 #undef DEFINE_implication |
748 | 752 |
749 #undef FLAG_MODE_DECLARE | 753 #undef FLAG_MODE_DECLARE |
750 #undef FLAG_MODE_DEFINE | 754 #undef FLAG_MODE_DEFINE |
751 #undef FLAG_MODE_DEFINE_DEFAULTS | 755 #undef FLAG_MODE_DEFINE_DEFAULTS |
752 #undef FLAG_MODE_META | 756 #undef FLAG_MODE_META |
753 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 757 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |