| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 "cache optimized code for closures") | 279 "cache optimized code for closures") |
| 280 DEFINE_bool(flush_optimized_code_cache, true, | 280 DEFINE_bool(flush_optimized_code_cache, true, |
| 281 "flushes the cache of optimized code for closures on every GC") | 281 "flushes the cache of optimized code for closures on every GC") |
| 282 DEFINE_bool(inline_construct, true, "inline constructor calls") | 282 DEFINE_bool(inline_construct, true, "inline constructor calls") |
| 283 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") | 283 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") |
| 284 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") | 284 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") |
| 285 DEFINE_int(loop_weight, 1, "loop weight for representation inference") | 285 DEFINE_int(loop_weight, 1, "loop weight for representation inference") |
| 286 | 286 |
| 287 DEFINE_bool(optimize_for_in, true, | 287 DEFINE_bool(optimize_for_in, true, |
| 288 "optimize functions containing for-in loops") | 288 "optimize functions containing for-in loops") |
| 289 DEFINE_bool(optimize_for_of, true, |
| 290 "optimize functions containing for-of loops") |
| 289 DEFINE_bool(opt_safe_uint32_operations, true, | 291 DEFINE_bool(opt_safe_uint32_operations, true, |
| 290 "allow uint32 values on optimize frames if they are used only in " | 292 "allow uint32 values on optimize frames if they are used only in " |
| 291 "safe operations") | 293 "safe operations") |
| 292 | 294 |
| 293 DEFINE_bool(parallel_recompilation, false, | 295 DEFINE_bool(parallel_recompilation, false, |
| 294 "optimizing hot functions asynchronously on a separate thread") | 296 "optimizing hot functions asynchronously on a separate thread") |
| 295 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation") | 297 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation") |
| 296 DEFINE_int(parallel_recompilation_queue_length, 3, | 298 DEFINE_int(parallel_recompilation_queue_length, 3, |
| 297 "the length of the parallel compilation queue") | 299 "the length of the parallel compilation queue") |
| 298 DEFINE_int(parallel_recompilation_delay, 0, | 300 DEFINE_int(parallel_recompilation_delay, 0, |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 #undef DEFINE_bool | 798 #undef DEFINE_bool |
| 797 #undef DEFINE_int | 799 #undef DEFINE_int |
| 798 #undef DEFINE_string | 800 #undef DEFINE_string |
| 799 #undef DEFINE_implication | 801 #undef DEFINE_implication |
| 800 | 802 |
| 801 #undef FLAG_MODE_DECLARE | 803 #undef FLAG_MODE_DECLARE |
| 802 #undef FLAG_MODE_DEFINE | 804 #undef FLAG_MODE_DEFINE |
| 803 #undef FLAG_MODE_DEFINE_DEFAULTS | 805 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 804 #undef FLAG_MODE_META | 806 #undef FLAG_MODE_META |
| 805 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 807 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |