| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 DEFINE_bool(always_full_compiler, false, | 365 DEFINE_bool(always_full_compiler, false, |
| 366 "try to use the dedicated run-once backend for all code") | 366 "try to use the dedicated run-once backend for all code") |
| 367 DEFINE_int(max_opt_count, 10, | 367 DEFINE_int(max_opt_count, 10, |
| 368 "maximum number of optimization attempts before giving up.") | 368 "maximum number of optimization attempts before giving up.") |
| 369 | 369 |
| 370 // compilation-cache.cc | 370 // compilation-cache.cc |
| 371 DEFINE_bool(compilation_cache, true, "enable compilation cache") | 371 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 372 | 372 |
| 373 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") | 373 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") |
| 374 | 374 |
| 375 // cpu-profiler.cc | |
| 376 DEFINE_int(cpu_profiler_sampling_period, 1000, | |
| 377 "CPU profiler sampling period in microseconds") | |
| 378 | |
| 379 // debug.cc | 375 // debug.cc |
| 380 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 376 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 381 DEFINE_bool(trace_js_array_abuse, false, | 377 DEFINE_bool(trace_js_array_abuse, false, |
| 382 "trace out-of-bounds accesses to JS arrays") | 378 "trace out-of-bounds accesses to JS arrays") |
| 383 DEFINE_bool(trace_external_array_abuse, false, | 379 DEFINE_bool(trace_external_array_abuse, false, |
| 384 "trace out-of-bounds-accesses to external arrays") | 380 "trace out-of-bounds-accesses to external arrays") |
| 385 DEFINE_bool(trace_array_abuse, false, | 381 DEFINE_bool(trace_array_abuse, false, |
| 386 "trace out-of-bounds accesses to all arrays") | 382 "trace out-of-bounds accesses to all arrays") |
| 387 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) | 383 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) |
| 388 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) | 384 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 #undef DEFINE_bool | 752 #undef DEFINE_bool |
| 757 #undef DEFINE_int | 753 #undef DEFINE_int |
| 758 #undef DEFINE_string | 754 #undef DEFINE_string |
| 759 #undef DEFINE_implication | 755 #undef DEFINE_implication |
| 760 | 756 |
| 761 #undef FLAG_MODE_DECLARE | 757 #undef FLAG_MODE_DECLARE |
| 762 #undef FLAG_MODE_DEFINE | 758 #undef FLAG_MODE_DEFINE |
| 763 #undef FLAG_MODE_DEFINE_DEFAULTS | 759 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 764 #undef FLAG_MODE_META | 760 #undef FLAG_MODE_META |
| 765 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 761 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |