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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 "safe operations") | 324 "safe operations") |
325 | 325 |
326 DEFINE_bool(concurrent_recompilation, true, | 326 DEFINE_bool(concurrent_recompilation, true, |
327 "optimizing hot functions asynchronously on a separate thread") | 327 "optimizing hot functions asynchronously on a separate thread") |
328 DEFINE_bool(trace_concurrent_recompilation, false, | 328 DEFINE_bool(trace_concurrent_recompilation, false, |
329 "track concurrent recompilation") | 329 "track concurrent recompilation") |
330 DEFINE_int(concurrent_recompilation_queue_length, 8, | 330 DEFINE_int(concurrent_recompilation_queue_length, 8, |
331 "the length of the concurrent compilation queue") | 331 "the length of the concurrent compilation queue") |
332 DEFINE_int(concurrent_recompilation_delay, 0, | 332 DEFINE_int(concurrent_recompilation_delay, 0, |
333 "artificial compilation delay in ms") | 333 "artificial compilation delay in ms") |
| 334 DEFINE_bool(speculative_concurrent_osr, false, |
| 335 "speculative concurrent on-stack replacement") |
334 | 336 |
335 DEFINE_bool(omit_map_checks_for_leaf_maps, true, | 337 DEFINE_bool(omit_map_checks_for_leaf_maps, true, |
336 "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, " |
337 "deoptimize the optimized code if the layout of the maps changes.") | 339 "deoptimize the optimized code if the layout of the maps changes.") |
338 | 340 |
339 // Experimental profiler changes. | 341 // Experimental profiler changes. |
340 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") | 342 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") |
341 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") | 343 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") |
342 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") | 344 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") |
343 DEFINE_bool(self_optimization, false, | 345 DEFINE_bool(self_optimization, false, |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 #undef DEFINE_ALIAS_int | 851 #undef DEFINE_ALIAS_int |
850 #undef DEFINE_ALIAS_string | 852 #undef DEFINE_ALIAS_string |
851 #undef DEFINE_ALIAS_float | 853 #undef DEFINE_ALIAS_float |
852 #undef DEFINE_ALIAS_args | 854 #undef DEFINE_ALIAS_args |
853 | 855 |
854 #undef FLAG_MODE_DECLARE | 856 #undef FLAG_MODE_DECLARE |
855 #undef FLAG_MODE_DEFINE | 857 #undef FLAG_MODE_DEFINE |
856 #undef FLAG_MODE_DEFINE_DEFAULTS | 858 #undef FLAG_MODE_DEFINE_DEFAULTS |
857 #undef FLAG_MODE_META | 859 #undef FLAG_MODE_META |
858 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 860 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |