| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") | 222 DEFINE_bool(inline_arguments, true, "inline functions with arguments object") |
| 223 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") | 223 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors") |
| 224 DEFINE_int(loop_weight, 1, "loop weight for representation inference") | 224 DEFINE_int(loop_weight, 1, "loop weight for representation inference") |
| 225 | 225 |
| 226 DEFINE_bool(optimize_for_in, true, | 226 DEFINE_bool(optimize_for_in, true, |
| 227 "optimize functions containing for-in loops") | 227 "optimize functions containing for-in loops") |
| 228 DEFINE_bool(opt_safe_uint32_operations, true, | 228 DEFINE_bool(opt_safe_uint32_operations, true, |
| 229 "allow uint32 values on optimize frames if they are used only in " | 229 "allow uint32 values on optimize frames if they are used only in " |
| 230 "safe operations") | 230 "safe operations") |
| 231 | 231 |
| 232 DEFINE_bool(use_ssi, false, "use single static information") |
| 233 |
| 232 DEFINE_bool(parallel_recompilation, false, | 234 DEFINE_bool(parallel_recompilation, false, |
| 233 "optimizing hot functions asynchronously on a separate thread") | 235 "optimizing hot functions asynchronously on a separate thread") |
| 234 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation") | 236 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation") |
| 235 DEFINE_int(parallel_recompilation_queue_length, 2, | 237 DEFINE_int(parallel_recompilation_queue_length, 2, |
| 236 "the length of the parallel compilation queue") | 238 "the length of the parallel compilation queue") |
| 237 DEFINE_bool(manual_parallel_recompilation, false, | 239 DEFINE_bool(manual_parallel_recompilation, false, |
| 238 "disable automatic optimization") | 240 "disable automatic optimization") |
| 239 DEFINE_implication(manual_parallel_recompilation, parallel_recompilation) | 241 DEFINE_implication(manual_parallel_recompilation, parallel_recompilation) |
| 240 | 242 |
| 241 // Experimental profiler changes. | 243 // Experimental profiler changes. |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 #undef DEFINE_bool | 719 #undef DEFINE_bool |
| 718 #undef DEFINE_int | 720 #undef DEFINE_int |
| 719 #undef DEFINE_string | 721 #undef DEFINE_string |
| 720 #undef DEFINE_implication | 722 #undef DEFINE_implication |
| 721 | 723 |
| 722 #undef FLAG_MODE_DECLARE | 724 #undef FLAG_MODE_DECLARE |
| 723 #undef FLAG_MODE_DEFINE | 725 #undef FLAG_MODE_DEFINE |
| 724 #undef FLAG_MODE_DEFINE_DEFAULTS | 726 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 725 #undef FLAG_MODE_META | 727 #undef FLAG_MODE_META |
| 726 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 728 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |