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