| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 DEFINE_bool(concurrent_recompilation, true, | 337 DEFINE_bool(concurrent_recompilation, true, |
| 338 "optimizing hot functions asynchronously on a separate thread") | 338 "optimizing hot functions asynchronously on a separate thread") |
| 339 DEFINE_bool(trace_concurrent_recompilation, false, | 339 DEFINE_bool(trace_concurrent_recompilation, false, |
| 340 "track concurrent recompilation") | 340 "track concurrent recompilation") |
| 341 DEFINE_int(concurrent_recompilation_queue_length, 8, | 341 DEFINE_int(concurrent_recompilation_queue_length, 8, |
| 342 "the length of the concurrent compilation queue") | 342 "the length of the concurrent compilation queue") |
| 343 DEFINE_int(concurrent_recompilation_delay, 0, | 343 DEFINE_int(concurrent_recompilation_delay, 0, |
| 344 "artificial compilation delay in ms") | 344 "artificial compilation delay in ms") |
| 345 DEFINE_bool(block_concurrent_recompilation, false, | 345 DEFINE_bool(block_concurrent_recompilation, false, |
| 346 "block queued jobs until released") | 346 "block queued jobs until released") |
| 347 DEFINE_bool(concurrent_osr, false, | 347 DEFINE_bool(concurrent_osr, true, |
| 348 "concurrent on-stack replacement") | 348 "concurrent on-stack replacement") |
| 349 DEFINE_implication(concurrent_osr, concurrent_recompilation) | 349 DEFINE_implication(concurrent_osr, concurrent_recompilation) |
| 350 | 350 |
| 351 DEFINE_bool(omit_map_checks_for_leaf_maps, true, | 351 DEFINE_bool(omit_map_checks_for_leaf_maps, true, |
| 352 "do not emit check maps for constant values that have a leaf map, " | 352 "do not emit check maps for constant values that have a leaf map, " |
| 353 "deoptimize the optimized code if the layout of the maps changes.") | 353 "deoptimize the optimized code if the layout of the maps changes.") |
| 354 | 354 |
| 355 // Profiler flags. | 355 // Profiler flags. |
| 356 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") | 356 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") |
| 357 // 0x1800 fits in the immediate field of an ARM instruction. | 357 // 0x1800 fits in the immediate field of an ARM instruction. |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 #undef DEFINE_ALIAS_float | 910 #undef DEFINE_ALIAS_float |
| 911 #undef DEFINE_ALIAS_args | 911 #undef DEFINE_ALIAS_args |
| 912 | 912 |
| 913 #undef FLAG_MODE_DECLARE | 913 #undef FLAG_MODE_DECLARE |
| 914 #undef FLAG_MODE_DEFINE | 914 #undef FLAG_MODE_DEFINE |
| 915 #undef FLAG_MODE_DEFINE_DEFAULTS | 915 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 916 #undef FLAG_MODE_META | 916 #undef FLAG_MODE_META |
| 917 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 917 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 918 | 918 |
| 919 #undef COMMA | 919 #undef COMMA |
| OLD | NEW |