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