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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
327 DEFINE_int(concurrent_recompilation_queue_length, 8, | 327 DEFINE_int(concurrent_recompilation_queue_length, 8, |
328 "the length of the concurrent compilation queue") | 328 "the length of the concurrent compilation queue") |
329 DEFINE_int(concurrent_recompilation_delay, 0, | 329 DEFINE_int(concurrent_recompilation_delay, 0, |
330 "artificial compilation delay in ms") | 330 "artificial compilation delay in ms") |
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(verify_concurrency, false, | |
Jakob Kummerow
2013/11/07 16:13:20
As discussed, the existing Runtime_IsConcurrentRec
| |
338 "crash if we are not spawning concurrent threads"); | |
339 | |
337 DEFINE_bool(omit_map_checks_for_leaf_maps, true, | 340 DEFINE_bool(omit_map_checks_for_leaf_maps, true, |
338 "do not emit check maps for constant values that have a leaf map, " | 341 "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.") | 342 "deoptimize the optimized code if the layout of the maps changes.") |
340 | 343 |
341 // Experimental profiler changes. | 344 // Experimental profiler changes. |
342 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") | 345 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") |
343 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") | 346 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") |
344 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") | 347 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") |
345 DEFINE_bool(self_optimization, false, | 348 DEFINE_bool(self_optimization, false, |
346 "primitive functions trigger their own optimization") | 349 "primitive functions trigger their own optimization") |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
882 #undef DEFINE_ALIAS_float | 885 #undef DEFINE_ALIAS_float |
883 #undef DEFINE_ALIAS_args | 886 #undef DEFINE_ALIAS_args |
884 | 887 |
885 #undef FLAG_MODE_DECLARE | 888 #undef FLAG_MODE_DECLARE |
886 #undef FLAG_MODE_DEFINE | 889 #undef FLAG_MODE_DEFINE |
887 #undef FLAG_MODE_DEFINE_DEFAULTS | 890 #undef FLAG_MODE_DEFINE_DEFAULTS |
888 #undef FLAG_MODE_META | 891 #undef FLAG_MODE_META |
889 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 892 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
890 | 893 |
891 #undef COMMA | 894 #undef COMMA |
OLD | NEW |