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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 DEFINE_bool(block_concurrent_recompilation, false, | 331 DEFINE_bool(block_concurrent_recompilation, false, |
332 "block queued jobs until released") | 332 "block queued jobs until released") |
333 DEFINE_bool(concurrent_osr, false, | 333 DEFINE_bool(concurrent_osr, false, |
334 "concurrent on-stack replacement") | 334 "concurrent on-stack replacement") |
335 DEFINE_implication(concurrent_osr, concurrent_recompilation) | 335 DEFINE_implication(concurrent_osr, concurrent_recompilation) |
336 | 336 |
337 DEFINE_bool(omit_map_checks_for_leaf_maps, true, | 337 DEFINE_bool(omit_map_checks_for_leaf_maps, true, |
338 "do not emit check maps for constant values that have a leaf map, " | 338 "do not emit check maps for constant values that have a leaf map, " |
339 "deoptimize the optimized code if the layout of the maps changes.") | 339 "deoptimize the optimized code if the layout of the maps changes.") |
340 | 340 |
| 341 DEFINE_bool(new_string_add, false, "enable new string addition") |
| 342 |
341 // Experimental profiler changes. | 343 // Experimental profiler changes. |
342 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") | 344 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") |
343 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") | 345 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") |
344 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") | 346 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") |
345 DEFINE_bool(self_optimization, false, | 347 DEFINE_bool(self_optimization, false, |
346 "primitive functions trigger their own optimization") | 348 "primitive functions trigger their own optimization") |
347 DEFINE_bool(direct_self_opt, false, | 349 DEFINE_bool(direct_self_opt, false, |
348 "call recompile stub directly when self-optimizing") | 350 "call recompile stub directly when self-optimizing") |
349 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed") | 351 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed") |
350 DEFINE_bool(interrupt_at_exit, false, | 352 DEFINE_bool(interrupt_at_exit, false, |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 #undef DEFINE_ALIAS_float | 884 #undef DEFINE_ALIAS_float |
883 #undef DEFINE_ALIAS_args | 885 #undef DEFINE_ALIAS_args |
884 | 886 |
885 #undef FLAG_MODE_DECLARE | 887 #undef FLAG_MODE_DECLARE |
886 #undef FLAG_MODE_DEFINE | 888 #undef FLAG_MODE_DEFINE |
887 #undef FLAG_MODE_DEFINE_DEFAULTS | 889 #undef FLAG_MODE_DEFINE_DEFAULTS |
888 #undef FLAG_MODE_META | 890 #undef FLAG_MODE_META |
889 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 891 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
890 | 892 |
891 #undef COMMA | 893 #undef COMMA |
OLD | NEW |